@mui/x-data-grid
Version:
The Community plan edition of the MUI X Data Grid components.
26 lines • 812 B
TypeScript
import { RefObject } from '@mui/x-internals/types';
import { GridRowId } from "../../../models/index.js";
import { GridPrivateApiCommunity } from "../../../models/api/gridApiCommunity.js";
export declare const getLeftColumnIndex: ({
currentColIndex,
firstColIndex,
lastColIndex,
isRtl
}: {
currentColIndex: number;
firstColIndex: number;
lastColIndex: number;
isRtl: boolean;
}) => number | null;
export declare const getRightColumnIndex: ({
currentColIndex,
firstColIndex,
lastColIndex,
isRtl
}: {
currentColIndex: number;
firstColIndex: number;
lastColIndex: number;
isRtl: boolean;
}) => number | null;
export declare function findNonRowSpannedCell(apiRef: RefObject<GridPrivateApiCommunity>, rowId: GridRowId, colIndex: number, rowSpanScanDirection: 'up' | 'down'): GridRowId;