@mui/x-data-grid
Version:
The Community plan edition of the Data Grid components (MUI X).
16 lines (15 loc) • 753 B
TypeScript
import { GridStateCommunity } from '../../../models/gridStateCommunity';
import { GridRowId } from '../../../models/gridRows';
import { GridEditMode } from '../../../models/gridEditRowModel';
/**
* Select the row editing state.
*/
export declare const gridEditRowsStateSelector: (state: GridStateCommunity) => import("../../..").GridEditingState;
export declare const gridRowIsEditingSelector: import("../../../utils/createSelector").OutputSelectorV8<GridStateCommunity, {
rowId: GridRowId;
editMode: GridEditMode;
}, boolean>;
export declare const gridEditCellStateSelector: import("../../../utils/createSelector").OutputSelectorV8<GridStateCommunity, {
rowId: GridRowId;
field: string;
}, import("../../..").GridEditCellProps<any>>;