@mui/x-data-grid-pro
Version:
The Pro plan edition of the MUI X Data Grid components.
13 lines • 662 B
TypeScript
import { GridRowId, GridRowTreeConfig } from '@mui/x-data-grid';
import { GridRowTreeCreationParams } from '@mui/x-data-grid/internals';
export declare function skipFiltering(rowTree: GridRowTreeConfig): {
filteredRowsLookup: {};
filteredChildrenCountLookup: Record<GridRowId, number>;
filteredDescendantCountLookup: {};
};
export declare function skipSorting(rowTree: GridRowTreeConfig): GridRowId[];
/**
* Retrieves the parent path for a row from the previous tree state.
* Used during full tree updates to maintain correct hierarchy.
*/
export declare function getParentPath(rowId: GridRowId, treeCreationParams: GridRowTreeCreationParams): string[];