UNPKG

@mui/x-data-grid

Version:

The Community plan edition of the MUI X Data Grid components.

24 lines 1.25 kB
import type { GridStateCommunity } from "../../../models/gridStateCommunity.mjs"; import type { GridRowId } from "../../../models/gridRows.mjs"; export declare const gridRowReorderStateSelector: import("@mui/x-data-grid").OutputSelector<GridStateCommunity, unknown, import("./gridRowReorderInterfaces.mjs").GridRowReorderState>; export declare const gridIsRowDragActiveSelector: (args_0: import("react").RefObject<{ state: GridStateCommunity; } | null>) => boolean; export declare const gridRowDropTargetSelector: (args_0: import("react").RefObject<{ state: GridStateCommunity; } | null>) => { rowId: GridRowId; position: import("../../../internals/index.mjs").RowReorderDropPosition; } | { rowId: null; position: null; }; export declare const gridRowDropTargetRowIdSelector: (args_0: import("react").RefObject<{ state: GridStateCommunity; } | null>) => GridRowId | null; export declare const gridRowDropPositionSelector: (args_0: import("react").RefObject<{ state: GridStateCommunity; } | null>, rowId: GridRowId) => import("../../../internals/index.mjs").RowReorderDropPosition | null; export declare const gridDraggedRowIdSelector: (args_0: import("react").RefObject<{ state: GridStateCommunity; } | null>) => GridRowId | null;