@mui/x-data-grid-pro
Version:
The Pro plan edition of the MUI X Data Grid components.
20 lines • 909 B
TypeScript
import { GridStatePro } from "../../../models/gridStatePro.js";
export declare const gridDetailPanelStateSelector: import("@mui/x-data-grid").OutputSelector<GridStatePro, unknown, import("./gridDetailPanelInterface.js").GridDetailPanelState>;
export declare const gridDetailPanelExpandedRowIdsSelector: (args_0: import("react").RefObject<{
state: GridStatePro;
} | null>) => Set<import("@mui/x-data-grid").GridRowId>;
export declare const gridDetailPanelExpandedRowsContentCacheSelector: (args_0: import("react").RefObject<{
state: GridStatePro;
} | null>) => Record<import("@mui/x-data-grid").GridRowId, import("react").ReactNode>;
export declare const gridDetailPanelRawHeightCacheSelector: (args_0: import("react").RefObject<{
state: GridStatePro;
} | null>) => {
[x: string]: {
autoHeight: boolean;
height: number;
};
[x: number]: {
autoHeight: boolean;
height: number;
};
};