@mui/x-data-grid 5.0.0-beta.6 → 5.0.0-beta.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +80 -7
- package/LICENSE +1 -1
- package/data-grid.d.ts +1106 -194
- package/index-cjs.js +2 -2
- package/index-esm.js +2 -2
- package/package.json +3 -3
package/data-grid.d.ts
CHANGED
|
@@ -17,6 +17,11 @@ import * as reselect from 'reselect';
|
|
|
17
17
|
|
|
18
18
|
interface GridBodyProps {
|
|
19
19
|
children?: React$1.ReactNode;
|
|
20
|
+
VirtualScrollerComponent: React$1.JSXElementConstructor<React$1.HTMLAttributes<HTMLDivElement> & {
|
|
21
|
+
ref: React$1.Ref<HTMLDivElement>;
|
|
22
|
+
selectionLookup: {};
|
|
23
|
+
disableVirtualization: boolean;
|
|
24
|
+
}>;
|
|
20
25
|
}
|
|
21
26
|
declare function GridBody(props: GridBodyProps): JSX.Element;
|
|
22
27
|
declare namespace GridBody {
|
|
@@ -92,16 +97,36 @@ interface GridRowModelUpdate extends GridRowModel {
|
|
|
92
97
|
_action?: GridUpdateAction;
|
|
93
98
|
}
|
|
94
99
|
interface GridRowTreeNodeConfig {
|
|
100
|
+
/**
|
|
101
|
+
* The grid row id.
|
|
102
|
+
*/
|
|
95
103
|
id: GridRowId;
|
|
96
|
-
|
|
97
|
-
|
|
104
|
+
/**
|
|
105
|
+
* The id of the row children.
|
|
106
|
+
*/
|
|
107
|
+
children?: GridRowId[];
|
|
108
|
+
/**
|
|
109
|
+
* The row id of the parent (null if this row is a top level row).
|
|
110
|
+
*/
|
|
111
|
+
parent: GridRowId | null;
|
|
112
|
+
/**
|
|
113
|
+
* Current expansion status of the row.
|
|
114
|
+
*/
|
|
98
115
|
expanded?: boolean;
|
|
99
116
|
/**
|
|
100
|
-
*
|
|
117
|
+
* 0-based depth of the row in the tree.
|
|
118
|
+
*/
|
|
119
|
+
depth: number;
|
|
120
|
+
/**
|
|
121
|
+
* The value used to group the children of this row.
|
|
122
|
+
*/
|
|
123
|
+
groupingValue: string;
|
|
124
|
+
/**
|
|
125
|
+
* If `true`, this node has been automatically added to fill a gap in the tree structure.
|
|
101
126
|
*/
|
|
102
|
-
|
|
127
|
+
isAutoGenerated?: boolean;
|
|
103
128
|
}
|
|
104
|
-
declare type GridRowTreeConfig =
|
|
129
|
+
declare type GridRowTreeConfig = Record<GridRowId, GridRowTreeNodeConfig>;
|
|
105
130
|
declare type GridRowsLookup = Record<GridRowId, GridRowModel>;
|
|
106
131
|
/**
|
|
107
132
|
* The type of Id supported by the grid.
|
|
@@ -172,6 +197,10 @@ interface GridCellParams<V = any, R = any, F = V> {
|
|
|
172
197
|
* The row model of the row that the current cell belongs to.
|
|
173
198
|
*/
|
|
174
199
|
row: GridRowModel<R>;
|
|
200
|
+
/**
|
|
201
|
+
* The node of the row that the current cell belongs to.
|
|
202
|
+
*/
|
|
203
|
+
rowNode: GridRowTreeNodeConfig;
|
|
175
204
|
/**
|
|
176
205
|
* The column of the row that the current cell belongs to.
|
|
177
206
|
*/
|
|
@@ -598,6 +627,14 @@ declare type GridColumnLookup = {
|
|
|
598
627
|
interface GridColumnsState {
|
|
599
628
|
all: string[];
|
|
600
629
|
lookup: GridColumnLookup;
|
|
630
|
+
}
|
|
631
|
+
declare type GridColDefOverride = Omit<Partial<GridColDef>, 'field'>;
|
|
632
|
+
declare type GridColDefOverrideCallback = (params: GridColDefOverrideParams) => GridColDefOverride;
|
|
633
|
+
interface GridColDefOverrideParams {
|
|
634
|
+
/**
|
|
635
|
+
* The column we are generating before the override.
|
|
636
|
+
*/
|
|
637
|
+
colDef: GridColDef;
|
|
601
638
|
}
|
|
602
639
|
|
|
603
640
|
declare const GRID_ACTIONS_COL_DEF: GridColTypeDef;
|
|
@@ -970,72 +1007,6 @@ interface GridPreferencePanelState {
|
|
|
970
1007
|
}
|
|
971
1008
|
declare type GridPreferencePanelInitialState = GridPreferencePanelState;
|
|
972
1009
|
|
|
973
|
-
interface GridRowsState {
|
|
974
|
-
idRowsLookup: Record<GridRowId, GridRowModel>;
|
|
975
|
-
allRows: GridRowId[];
|
|
976
|
-
totalRowCount: number;
|
|
977
|
-
}
|
|
978
|
-
|
|
979
|
-
interface GridSortingState {
|
|
980
|
-
sortedRows: GridRowId[];
|
|
981
|
-
sortModel: GridSortModel;
|
|
982
|
-
}
|
|
983
|
-
interface GridSortingInitialState {
|
|
984
|
-
sortModel?: GridSortModel;
|
|
985
|
-
}
|
|
986
|
-
|
|
987
|
-
interface GridRenderingState {
|
|
988
|
-
virtualPage: number;
|
|
989
|
-
virtualRowsCount: number;
|
|
990
|
-
renderContext: Partial<GridRenderContextProps> | null;
|
|
991
|
-
realScroll: GridScrollParams;
|
|
992
|
-
renderingZoneScroll: GridScrollParams;
|
|
993
|
-
}
|
|
994
|
-
|
|
995
|
-
interface GridPaginationState {
|
|
996
|
-
pageSize: number;
|
|
997
|
-
page: number;
|
|
998
|
-
pageCount: number;
|
|
999
|
-
rowCount: number;
|
|
1000
|
-
}
|
|
1001
|
-
|
|
1002
|
-
declare const getDefaultGridFilterModel: () => GridFilterModel;
|
|
1003
|
-
interface GridFilterState {
|
|
1004
|
-
filterModel: GridFilterModel;
|
|
1005
|
-
visibleRowsLookup: Record<GridRowId, boolean>;
|
|
1006
|
-
visibleRows: GridRowId[] | null;
|
|
1007
|
-
}
|
|
1008
|
-
interface GridFilterInitialState {
|
|
1009
|
-
filterModel?: GridFilterModel;
|
|
1010
|
-
}
|
|
1011
|
-
|
|
1012
|
-
interface GridState {
|
|
1013
|
-
rows: GridRowsState;
|
|
1014
|
-
editRows: GridEditRowsModel;
|
|
1015
|
-
pagination: GridPaginationState;
|
|
1016
|
-
columns: GridColumnsState;
|
|
1017
|
-
columnReorder: GridColumnReorderState;
|
|
1018
|
-
columnResize: GridColumnResizeState;
|
|
1019
|
-
columnMenu: GridColumnMenuState;
|
|
1020
|
-
rendering: GridRenderingState;
|
|
1021
|
-
containerSizes: GridContainerProps | null;
|
|
1022
|
-
viewportSizes: GridViewportSizeState;
|
|
1023
|
-
scrollBar: GridScrollBarState;
|
|
1024
|
-
sorting: GridSortingState;
|
|
1025
|
-
focus: GridFocusState;
|
|
1026
|
-
tabIndex: GridTabIndexState;
|
|
1027
|
-
selection: GridSelectionModel;
|
|
1028
|
-
filter: GridFilterState;
|
|
1029
|
-
preferencePanel: GridPreferencePanelState;
|
|
1030
|
-
density: GridDensityState;
|
|
1031
|
-
error?: any;
|
|
1032
|
-
}
|
|
1033
|
-
interface GridInitialState {
|
|
1034
|
-
sorting?: GridSortingInitialState;
|
|
1035
|
-
filter?: GridFilterInitialState;
|
|
1036
|
-
preferencePanel?: GridPreferencePanelInitialState;
|
|
1037
|
-
}
|
|
1038
|
-
|
|
1039
1010
|
/**
|
|
1040
1011
|
* The column API interface that is available in the grid [[apiRef]].
|
|
1041
1012
|
*/
|
|
@@ -1796,6 +1767,20 @@ interface GridRowApi {
|
|
|
1796
1767
|
* @returns {GridRowModel} The row data.
|
|
1797
1768
|
*/
|
|
1798
1769
|
getRow: (id: GridRowId) => GridRowModel | null;
|
|
1770
|
+
/**
|
|
1771
|
+
* Gets the row node from the internal tree structure.
|
|
1772
|
+
* @param {GridRowId} id The id of the row.
|
|
1773
|
+
* @returns {GridRowTreeNodeConfig} The row data.
|
|
1774
|
+
* @ignore - do not document.
|
|
1775
|
+
*/
|
|
1776
|
+
unstable_getRowNode: (id: GridRowId) => GridRowTreeNodeConfig | null;
|
|
1777
|
+
/**
|
|
1778
|
+
* Expand or collapse a row children.
|
|
1779
|
+
* @param {GridRowId} id the ID of the row to expand or collapse.
|
|
1780
|
+
* @param {boolean} isExpanded A boolean indicating if the row must be expanded or collapsed.
|
|
1781
|
+
* @ignore - do not document.
|
|
1782
|
+
*/
|
|
1783
|
+
unstable_setRowExpansion: (id: GridRowId, isExpanded: boolean) => void;
|
|
1799
1784
|
}
|
|
1800
1785
|
|
|
1801
1786
|
/**
|
|
@@ -1948,56 +1933,141 @@ interface GridColumnsPreProcessingApi {
|
|
|
1948
1933
|
* Register a column pre-processing and emit an event to re-apply all the columns pre-processing
|
|
1949
1934
|
* @param {string} processingName Name of the pre-processing. Used to clean the previous version of the pre-processing.
|
|
1950
1935
|
* @param {GridColumnsPreProcessing | null } columnsPreProcessing Pre-processing to register.
|
|
1951
|
-
* @ignore - do not document
|
|
1936
|
+
* @ignore - do not document.
|
|
1952
1937
|
*/
|
|
1953
1938
|
unstable_registerColumnPreProcessing: (processingName: string, columnsPreProcessing: GridColumnsPreProcessing) => void;
|
|
1954
1939
|
/**
|
|
1955
1940
|
* Apply all the columns pre-processing
|
|
1956
1941
|
* @param {GridColumns} columns. Columns to pre-process
|
|
1957
1942
|
* @returns {GridColumns} The pre-processed columns
|
|
1958
|
-
* @ignore - do not document
|
|
1943
|
+
* @ignore - do not document.
|
|
1959
1944
|
*/
|
|
1960
1945
|
unstable_applyAllColumnPreProcessing: (columns: GridColumns) => GridColumns;
|
|
1961
1946
|
}
|
|
1962
1947
|
|
|
1963
|
-
|
|
1948
|
+
/**
|
|
1949
|
+
* The full grid API.
|
|
1950
|
+
*/
|
|
1951
|
+
interface GridApi extends GridCoreApi, GridStateApi, GridLoggerApi, GridColumnsPreProcessingApi, GridRowGroupsPreProcessingApi, GridDensityApi, GridEventsApi, GridRowApi, GridEditRowApi, GridParamsApi, GridColumnApi, GridSelectionApi, GridSortApi, GridPageApi, GridPageSizeApi, GridCsvExportApi, GridFocusApi, GridFilterApi, GridColumnMenuApi, GridPreferencesPanelApi, GridPrintExportApi, GridDisableVirtualizationApi, GridLocaleTextApi, GridControlStateApi, GridClipboardApi, GridScrollApi {
|
|
1952
|
+
}
|
|
1953
|
+
|
|
1954
|
+
/**
|
|
1955
|
+
* The apiRef component prop type.
|
|
1956
|
+
*/
|
|
1957
|
+
declare type GridApiRef = React$1.MutableRefObject<GridApi>;
|
|
1958
|
+
|
|
1959
|
+
interface GridRowGroupParams {
|
|
1964
1960
|
ids: GridRowId[];
|
|
1965
1961
|
idRowsLookup: GridRowsLookup;
|
|
1966
|
-
}
|
|
1962
|
+
}
|
|
1967
1963
|
interface GridRowGroupingResult {
|
|
1968
1964
|
tree: GridRowTreeConfig;
|
|
1969
|
-
|
|
1965
|
+
treeDepth: number;
|
|
1966
|
+
ids: GridRowId[];
|
|
1970
1967
|
idRowsLookup: GridRowsLookup;
|
|
1971
1968
|
}
|
|
1972
|
-
declare type GridRowGroupingPreProcessing = (params:
|
|
1969
|
+
declare type GridRowGroupingPreProcessing = (params: GridRowGroupParams) => GridRowGroupingResult | null;
|
|
1973
1970
|
interface GridRowGroupsPreProcessingApi {
|
|
1974
1971
|
/**
|
|
1975
|
-
* Register a column pre-processing and emit an event to re-apply the row grouping pre-processing
|
|
1972
|
+
* Register a column pre-processing and emit an event to re-apply the row grouping pre-processing.
|
|
1976
1973
|
* @param {string} processingName Name of the pre-processing. Used to clean the previous version of the pre-processing.
|
|
1977
1974
|
* @param {GridRowGroupingPreProcessing} columnsPreProcessing Pre-processing to register.
|
|
1978
|
-
* @ignore - do not document
|
|
1975
|
+
* @ignore - do not document.
|
|
1979
1976
|
*/
|
|
1980
1977
|
unstable_registerRowGroupsBuilder: (processingName: string, groupingFunction: GridRowGroupingPreProcessing | null) => void;
|
|
1981
1978
|
/**
|
|
1982
|
-
* Apply the first row grouping pre-processing that does not return null
|
|
1983
|
-
* @param {GridRowsLookup} rowsLookup. Lookup of the rows to group
|
|
1984
|
-
* @param {GridRowId[]} List of the rows IDs
|
|
1985
|
-
* @returns {GridRowGroupingResult} The grouped rows
|
|
1986
|
-
* @ignore - do not document
|
|
1979
|
+
* Apply the first row grouping pre-processing that does not return null.
|
|
1980
|
+
* @param {GridRowsLookup} rowsLookup. Lookup of the rows to group.
|
|
1981
|
+
* @param {GridRowId[]} List of the rows IDs.
|
|
1982
|
+
* @returns {GridRowGroupingResult} The grouped rows.
|
|
1983
|
+
* @ignore - do not document.
|
|
1987
1984
|
*/
|
|
1988
|
-
unstable_groupRows: (params:
|
|
1985
|
+
unstable_groupRows: (params: GridRowGroupParams) => GridRowGroupingResult;
|
|
1989
1986
|
}
|
|
1990
1987
|
|
|
1991
|
-
|
|
1992
|
-
|
|
1993
|
-
|
|
1994
|
-
|
|
1988
|
+
interface GridRowsState extends GridRowGroupingResult {
|
|
1989
|
+
/**
|
|
1990
|
+
* Amount of rows before applying the filtering.
|
|
1991
|
+
* It also count the expanded and collapsed children rows.
|
|
1992
|
+
*/
|
|
1993
|
+
totalRowCount: number;
|
|
1994
|
+
/**
|
|
1995
|
+
* Amount of rows before applying the filtering.
|
|
1996
|
+
* It does not count the expanded children rows.
|
|
1997
|
+
*/
|
|
1998
|
+
totalTopLevelRowCount: number;
|
|
1995
1999
|
}
|
|
1996
2000
|
|
|
1997
|
-
|
|
1998
|
-
|
|
1999
|
-
|
|
2000
|
-
|
|
2001
|
+
interface GridSortingState {
|
|
2002
|
+
sortedRows: GridRowId[];
|
|
2003
|
+
sortModel: GridSortModel;
|
|
2004
|
+
}
|
|
2005
|
+
interface GridSortingInitialState {
|
|
2006
|
+
sortModel?: GridSortModel;
|
|
2007
|
+
}
|
|
2008
|
+
|
|
2009
|
+
interface GridRenderingState {
|
|
2010
|
+
virtualPage: number;
|
|
2011
|
+
virtualRowsCount: number;
|
|
2012
|
+
renderContext: Partial<GridRenderContextProps> | null;
|
|
2013
|
+
realScroll: GridScrollParams;
|
|
2014
|
+
renderingZoneScroll: GridScrollParams;
|
|
2015
|
+
}
|
|
2016
|
+
|
|
2017
|
+
interface GridPaginationState {
|
|
2018
|
+
pageSize: number;
|
|
2019
|
+
page: number;
|
|
2020
|
+
pageCount: number;
|
|
2021
|
+
rowCount: number;
|
|
2022
|
+
}
|
|
2023
|
+
|
|
2024
|
+
declare const getDefaultGridFilterModel: () => GridFilterModel;
|
|
2025
|
+
interface GridFilterState {
|
|
2026
|
+
filterModel: GridFilterModel;
|
|
2027
|
+
/**
|
|
2028
|
+
* Visibility status for each row.
|
|
2029
|
+
* A row is visible if it is passing the filters AND if its parent is expanded.
|
|
2030
|
+
* If a row is not registered in this lookup, it is visible.
|
|
2031
|
+
*/
|
|
2032
|
+
visibleRowsLookup: Record<GridRowId, boolean>;
|
|
2033
|
+
/**
|
|
2034
|
+
* Amount of descendants that are passing the filters.
|
|
2035
|
+
* For the Tree Data, it includes all the intermediate depth levels (= amount of children + amount of grand children + ...).
|
|
2036
|
+
* For the Row Grouping by Column, it does not include the intermediate depth levels (= amount of descendant of maximum depth).
|
|
2037
|
+
* If a row is not registered in this lookup, it is supposed to have no descendant passing the filters..
|
|
2038
|
+
*/
|
|
2039
|
+
filteredDescendantCountLookup: Record<GridRowId, number>;
|
|
2040
|
+
}
|
|
2041
|
+
interface GridFilterInitialState {
|
|
2042
|
+
filterModel?: GridFilterModel;
|
|
2043
|
+
}
|
|
2044
|
+
|
|
2045
|
+
interface GridState {
|
|
2046
|
+
rows: GridRowsState;
|
|
2047
|
+
editRows: GridEditRowsModel;
|
|
2048
|
+
pagination: GridPaginationState;
|
|
2049
|
+
columns: GridColumnsState;
|
|
2050
|
+
columnReorder: GridColumnReorderState;
|
|
2051
|
+
columnResize: GridColumnResizeState;
|
|
2052
|
+
columnMenu: GridColumnMenuState;
|
|
2053
|
+
rendering: GridRenderingState;
|
|
2054
|
+
containerSizes: GridContainerProps | null;
|
|
2055
|
+
viewportSizes: GridViewportSizeState;
|
|
2056
|
+
scrollBar: GridScrollBarState;
|
|
2057
|
+
sorting: GridSortingState;
|
|
2058
|
+
focus: GridFocusState;
|
|
2059
|
+
tabIndex: GridTabIndexState;
|
|
2060
|
+
selection: GridSelectionModel;
|
|
2061
|
+
filter: GridFilterState;
|
|
2062
|
+
preferencePanel: GridPreferencePanelState;
|
|
2063
|
+
density: GridDensityState;
|
|
2064
|
+
error?: any;
|
|
2065
|
+
}
|
|
2066
|
+
interface GridInitialState {
|
|
2067
|
+
sorting?: GridSortingInitialState;
|
|
2068
|
+
filter?: GridFilterInitialState;
|
|
2069
|
+
preferencePanel?: GridPreferencePanelInitialState;
|
|
2070
|
+
}
|
|
2001
2071
|
|
|
2002
2072
|
interface GridStateChangeParams {
|
|
2003
2073
|
state: GridState;
|
|
@@ -2346,6 +2416,9 @@ declare namespace GridColumnHeadersItemCollection {
|
|
|
2346
2416
|
var propTypes: any;
|
|
2347
2417
|
}
|
|
2348
2418
|
|
|
2419
|
+
declare type GridIconButtonContainerProps = React$1.HTMLAttributes<HTMLDivElement>;
|
|
2420
|
+
declare const GridIconButtonContainer: React$1.ForwardRefExoticComponent<GridIconButtonContainerProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2421
|
+
|
|
2349
2422
|
declare const GridCellCheckboxForwardRef: React$1.ForwardRefExoticComponent<GridCellParams<any, any, any> & React$1.RefAttributes<HTMLInputElement>>;
|
|
2350
2423
|
|
|
2351
2424
|
declare const GridCellCheckboxRenderer: React$1.MemoExoticComponent<React$1.ForwardRefExoticComponent<GridCellParams<any, any, any> & React$1.RefAttributes<HTMLInputElement>>>;
|
|
@@ -2660,7 +2733,7 @@ declare enum GridEvents {
|
|
|
2660
2733
|
*/
|
|
2661
2734
|
unmount = "unmount",
|
|
2662
2735
|
/**
|
|
2663
|
-
* Fired when the mode of a cell changes. Called with a [[
|
|
2736
|
+
* Fired when the mode of a cell changes. Called with a [[GridCellParams]] object.
|
|
2664
2737
|
* @ignore - do not document
|
|
2665
2738
|
*/
|
|
2666
2739
|
cellModeChange = "cellModeChange",
|
|
@@ -2898,6 +2971,11 @@ declare enum GridEvents {
|
|
|
2898
2971
|
* @ignore - do not document.
|
|
2899
2972
|
*/
|
|
2900
2973
|
rowsSet = "rowsSet",
|
|
2974
|
+
/**
|
|
2975
|
+
* Fired when the expansion of a row is changed. Called with a [[GridRowTreeNodeConfig]] object.
|
|
2976
|
+
* @ignore - do not document.
|
|
2977
|
+
*/
|
|
2978
|
+
rowExpansionChange = "rowExpansionChange",
|
|
2901
2979
|
/**
|
|
2902
2980
|
* Fired when the visible rows are updated
|
|
2903
2981
|
* @ignore - do not document.
|
|
@@ -2910,12 +2988,12 @@ declare enum GridEvents {
|
|
|
2910
2988
|
columnsChange = "columnsChange",
|
|
2911
2989
|
/**
|
|
2912
2990
|
* Fired when a column pre-processing is changed
|
|
2913
|
-
* @ignore - do not document
|
|
2991
|
+
* @ignore - do not document.
|
|
2914
2992
|
*/
|
|
2915
2993
|
columnsPreProcessingChange = "columnsPreProcessingChange",
|
|
2916
2994
|
/**
|
|
2917
2995
|
* Fired when the row grouping function is changed
|
|
2918
|
-
* @ignore - do not document
|
|
2996
|
+
* @ignore - do not document.
|
|
2919
2997
|
*/
|
|
2920
2998
|
rowGroupsPreProcessingChange = "rowGroupsPreProcessingChange",
|
|
2921
2999
|
/**
|
|
@@ -2943,144 +3021,964 @@ declare const GRID_DEFAULT_LOCALE_TEXT: GridLocaleText;
|
|
|
2943
3021
|
declare const gridColumnMenuSelector: (state: GridState) => GridColumnMenuState;
|
|
2944
3022
|
|
|
2945
3023
|
declare const gridColumnReorderSelector: (state: GridState) => GridColumnReorderState;
|
|
2946
|
-
declare const gridColumnReorderDragColSelector: reselect.OutputSelector<GridState, string, (
|
|
3024
|
+
declare const gridColumnReorderDragColSelector: reselect.OutputSelector<[(state: GridState) => GridColumnReorderState], string, never, ((args_0: GridColumnReorderState, ...args_1: unknown[]) => string) & ((...args: any[]) => any) & {
|
|
3025
|
+
clearCache: () => void;
|
|
3026
|
+
}>;
|
|
2947
3027
|
|
|
2948
3028
|
declare const gridColumnResizeSelector: (state: GridState) => GridColumnResizeState;
|
|
2949
|
-
declare const gridResizingColumnFieldSelector: reselect.OutputSelector<GridState, string, (
|
|
3029
|
+
declare const gridResizingColumnFieldSelector: reselect.OutputSelector<[(state: GridState) => GridColumnResizeState], string, never, ((args_0: GridColumnResizeState, ...args_1: unknown[]) => string) & ((...args: any[]) => any) & {
|
|
3030
|
+
clearCache: () => void;
|
|
3031
|
+
}>;
|
|
2950
3032
|
|
|
2951
3033
|
declare const gridColumnsSelector: (state: GridState) => GridColumnsState;
|
|
2952
3034
|
declare const allGridColumnsFieldsSelector: (state: GridState) => string[];
|
|
2953
3035
|
declare const gridColumnLookupSelector: (state: GridState) => GridColumnLookup;
|
|
2954
|
-
declare const allGridColumnsSelector: reselect.OutputSelector<GridState, GridStateColDef[], (
|
|
2955
|
-
|
|
2956
|
-
|
|
3036
|
+
declare const allGridColumnsSelector: reselect.OutputSelector<[(state: GridState) => string[], (state: GridState) => GridColumnLookup], GridStateColDef[], never, ((args_0: string[], args_1: GridColumnLookup, ...args_2: unknown[]) => GridStateColDef[]) & ((...args: any[]) => any) & {
|
|
3037
|
+
clearCache: () => void;
|
|
3038
|
+
}>;
|
|
3039
|
+
declare const visibleGridColumnsSelector: reselect.OutputSelector<[reselect.OutputSelector<[(state: GridState) => string[], (state: GridState) => GridColumnLookup], GridStateColDef[], never, ((args_0: string[], args_1: GridColumnLookup, ...args_2: unknown[]) => GridStateColDef[]) & ((...args: any[]) => any) & {
|
|
3040
|
+
clearCache: () => void;
|
|
3041
|
+
}>], GridStateColDef[], never, ((args_0: GridStateColDef[], ...args_1: unknown[]) => GridStateColDef[]) & ((...args: any[]) => any) & {
|
|
3042
|
+
clearCache: () => void;
|
|
3043
|
+
}>;
|
|
3044
|
+
declare const gridColumnsMetaSelector: reselect.OutputSelector<[reselect.OutputSelector<[reselect.OutputSelector<[(state: GridState) => string[], (state: GridState) => GridColumnLookup], GridStateColDef[], never, ((args_0: string[], args_1: GridColumnLookup, ...args_2: unknown[]) => GridStateColDef[]) & ((...args: any[]) => any) & {
|
|
3045
|
+
clearCache: () => void;
|
|
3046
|
+
}>], GridStateColDef[], never, ((args_0: GridStateColDef[], ...args_1: unknown[]) => GridStateColDef[]) & ((...args: any[]) => any) & {
|
|
3047
|
+
clearCache: () => void;
|
|
3048
|
+
}>], {
|
|
2957
3049
|
totalWidth: number;
|
|
2958
3050
|
positions: number[];
|
|
2959
|
-
}, (
|
|
3051
|
+
}, never, ((args_0: GridStateColDef[], ...args_1: unknown[]) => {
|
|
2960
3052
|
totalWidth: number;
|
|
2961
3053
|
positions: number[];
|
|
3054
|
+
}) & ((...args: any[]) => any) & {
|
|
3055
|
+
clearCache: () => void;
|
|
3056
|
+
}>;
|
|
3057
|
+
declare const filterableGridColumnsSelector: reselect.OutputSelector<[reselect.OutputSelector<[(state: GridState) => string[], (state: GridState) => GridColumnLookup], GridStateColDef[], never, ((args_0: string[], args_1: GridColumnLookup, ...args_2: unknown[]) => GridStateColDef[]) & ((...args: any[]) => any) & {
|
|
3058
|
+
clearCache: () => void;
|
|
3059
|
+
}>], GridStateColDef[], never, ((args_0: GridStateColDef[], ...args_1: unknown[]) => GridStateColDef[]) & ((...args: any[]) => any) & {
|
|
3060
|
+
clearCache: () => void;
|
|
3061
|
+
}>;
|
|
3062
|
+
declare const filterableGridColumnsIdsSelector: reselect.OutputSelector<[reselect.OutputSelector<[reselect.OutputSelector<[(state: GridState) => string[], (state: GridState) => GridColumnLookup], GridStateColDef[], never, ((args_0: string[], args_1: GridColumnLookup, ...args_2: unknown[]) => GridStateColDef[]) & ((...args: any[]) => any) & {
|
|
3063
|
+
clearCache: () => void;
|
|
3064
|
+
}>], GridStateColDef[], never, ((args_0: GridStateColDef[], ...args_1: unknown[]) => GridStateColDef[]) & ((...args: any[]) => any) & {
|
|
3065
|
+
clearCache: () => void;
|
|
3066
|
+
}>], string[], never, ((args_0: GridStateColDef[], ...args_1: unknown[]) => string[]) & ((...args: any[]) => any) & {
|
|
3067
|
+
clearCache: () => void;
|
|
2962
3068
|
}>;
|
|
2963
|
-
declare const
|
|
2964
|
-
|
|
2965
|
-
|
|
2966
|
-
|
|
3069
|
+
declare const visibleGridColumnsLengthSelector: reselect.OutputSelector<[reselect.OutputSelector<[reselect.OutputSelector<[(state: GridState) => string[], (state: GridState) => GridColumnLookup], GridStateColDef[], never, ((args_0: string[], args_1: GridColumnLookup, ...args_2: unknown[]) => GridStateColDef[]) & ((...args: any[]) => any) & {
|
|
3070
|
+
clearCache: () => void;
|
|
3071
|
+
}>], GridStateColDef[], never, ((args_0: GridStateColDef[], ...args_1: unknown[]) => GridStateColDef[]) & ((...args: any[]) => any) & {
|
|
3072
|
+
clearCache: () => void;
|
|
3073
|
+
}>], number, never, ((args_0: GridStateColDef[], ...args_1: unknown[]) => number) & ((...args: any[]) => any) & {
|
|
3074
|
+
clearCache: () => void;
|
|
3075
|
+
}>;
|
|
3076
|
+
declare const gridColumnsTotalWidthSelector: reselect.OutputSelector<[reselect.OutputSelector<[reselect.OutputSelector<[reselect.OutputSelector<[(state: GridState) => string[], (state: GridState) => GridColumnLookup], GridStateColDef[], never, ((args_0: string[], args_1: GridColumnLookup, ...args_2: unknown[]) => GridStateColDef[]) & ((...args: any[]) => any) & {
|
|
3077
|
+
clearCache: () => void;
|
|
3078
|
+
}>], GridStateColDef[], never, ((args_0: GridStateColDef[], ...args_1: unknown[]) => GridStateColDef[]) & ((...args: any[]) => any) & {
|
|
3079
|
+
clearCache: () => void;
|
|
3080
|
+
}>], {
|
|
3081
|
+
totalWidth: number;
|
|
3082
|
+
positions: number[];
|
|
3083
|
+
}, never, ((args_0: GridStateColDef[], ...args_1: unknown[]) => {
|
|
3084
|
+
totalWidth: number;
|
|
3085
|
+
positions: number[];
|
|
3086
|
+
}) & ((...args: any[]) => any) & {
|
|
3087
|
+
clearCache: () => void;
|
|
3088
|
+
}>], number, never, ((args_0: {
|
|
2967
3089
|
totalWidth: number;
|
|
2968
3090
|
positions: number[];
|
|
2969
|
-
}) => number
|
|
3091
|
+
}, ...args_1: unknown[]) => number) & ((...args: any[]) => any) & {
|
|
3092
|
+
clearCache: () => void;
|
|
3093
|
+
}>;
|
|
2970
3094
|
|
|
2971
3095
|
declare const gridDensitySelector: (state: GridState) => GridDensityState;
|
|
2972
|
-
declare const gridDensityValueSelector: reselect.OutputSelector<GridState, GridDensity, (
|
|
2973
|
-
|
|
2974
|
-
|
|
3096
|
+
declare const gridDensityValueSelector: reselect.OutputSelector<[(state: GridState) => GridDensityState], GridDensity, never, ((args_0: GridDensityState, ...args_1: unknown[]) => GridDensity) & ((...args: any[]) => any) & {
|
|
3097
|
+
clearCache: () => void;
|
|
3098
|
+
}>;
|
|
3099
|
+
declare const gridDensityRowHeightSelector: reselect.OutputSelector<[(state: GridState) => GridDensityState], number, never, ((args_0: GridDensityState, ...args_1: unknown[]) => number) & ((...args: any[]) => any) & {
|
|
3100
|
+
clearCache: () => void;
|
|
3101
|
+
}>;
|
|
3102
|
+
declare const gridDensityHeaderHeightSelector: reselect.OutputSelector<[(state: GridState) => GridDensityState], number, never, ((args_0: GridDensityState, ...args_1: unknown[]) => number) & ((...args: any[]) => any) & {
|
|
3103
|
+
clearCache: () => void;
|
|
3104
|
+
}>;
|
|
2975
3105
|
|
|
2976
3106
|
declare const gridEditRowsStateSelector: (state: GridState) => GridEditRowsModel;
|
|
2977
3107
|
|
|
3108
|
+
declare const gridRowsStateSelector: (state: GridState) => GridRowsState;
|
|
3109
|
+
declare const gridRowCountSelector: reselect.OutputSelector<[(state: GridState) => GridRowsState], number, never, ((args_0: GridRowsState, ...args_1: unknown[]) => number) & ((...args: any[]) => any) & {
|
|
3110
|
+
clearCache: () => void;
|
|
3111
|
+
}>;
|
|
3112
|
+
declare const gridTopLevelRowCountSelector: reselect.OutputSelector<[(state: GridState) => GridRowsState], number, never, ((args_0: GridRowsState, ...args_1: unknown[]) => number) & ((...args: any[]) => any) & {
|
|
3113
|
+
clearCache: () => void;
|
|
3114
|
+
}>;
|
|
3115
|
+
declare const gridRowsLookupSelector: reselect.OutputSelector<[(state: GridState) => GridRowsState], GridRowsLookup, never, ((args_0: GridRowsState, ...args_1: unknown[]) => GridRowsLookup) & ((...args: any[]) => any) & {
|
|
3116
|
+
clearCache: () => void;
|
|
3117
|
+
}>;
|
|
3118
|
+
declare const gridRowTreeSelector: reselect.OutputSelector<[(state: GridState) => GridRowsState], GridRowTreeConfig, never, ((args_0: GridRowsState, ...args_1: unknown[]) => GridRowTreeConfig) & ((...args: any[]) => any) & {
|
|
3119
|
+
clearCache: () => void;
|
|
3120
|
+
}>;
|
|
3121
|
+
declare const gridRowTreeDepthSelector: reselect.OutputSelector<[(state: GridState) => GridRowsState], number, never, ((args_0: GridRowsState, ...args_1: unknown[]) => number) & ((...args: any[]) => any) & {
|
|
3122
|
+
clearCache: () => void;
|
|
3123
|
+
}>;
|
|
3124
|
+
declare const gridRowIdsSelector: reselect.OutputSelector<[(state: GridState) => GridRowsState], GridRowId[], never, ((args_0: GridRowsState, ...args_1: unknown[]) => GridRowId[]) & ((...args: any[]) => any) & {
|
|
3125
|
+
clearCache: () => void;
|
|
3126
|
+
}>;
|
|
3127
|
+
|
|
2978
3128
|
declare const gridFilterStateSelector: (state: GridState) => GridFilterState;
|
|
2979
|
-
declare const gridFilterModelSelector: reselect.OutputSelector<GridState, GridFilterModel, (
|
|
2980
|
-
|
|
2981
|
-
|
|
3129
|
+
declare const gridFilterModelSelector: reselect.OutputSelector<[(state: GridState) => GridFilterState], GridFilterModel, never, ((args_0: GridFilterState, ...args_1: unknown[]) => GridFilterModel) & ((...args: any[]) => any) & {
|
|
3130
|
+
clearCache: () => void;
|
|
3131
|
+
}>;
|
|
3132
|
+
declare const gridVisibleRowsLookupSelector: reselect.OutputSelector<[(state: GridState) => GridFilterState], Record<GridRowId, boolean>, never, ((args_0: GridFilterState, ...args_1: unknown[]) => Record<GridRowId, boolean>) & ((...args: any[]) => any) & {
|
|
3133
|
+
clearCache: () => void;
|
|
3134
|
+
}>;
|
|
3135
|
+
declare const gridFilteredDescendantCountLookupSelector: reselect.OutputSelector<[(state: GridState) => GridFilterState], Record<GridRowId, number>, never, ((args_0: GridFilterState, ...args_1: unknown[]) => Record<GridRowId, number>) & ((...args: any[]) => any) & {
|
|
3136
|
+
clearCache: () => void;
|
|
3137
|
+
}>;
|
|
3138
|
+
declare const gridVisibleSortedRowEntriesSelector: reselect.OutputSelector<[reselect.OutputSelector<[(state: GridState) => GridFilterState], Record<GridRowId, boolean>, never, ((args_0: GridFilterState, ...args_1: unknown[]) => Record<GridRowId, boolean>) & ((...args: any[]) => any) & {
|
|
3139
|
+
clearCache: () => void;
|
|
3140
|
+
}>, reselect.OutputSelector<[reselect.OutputSelector<[(state: GridState) => GridSortingState], GridRowId[], never, ((args_0: GridSortingState, ...args_1: unknown[]) => GridRowId[]) & ((...args: any[]) => any) & {
|
|
3141
|
+
clearCache: () => void;
|
|
3142
|
+
}>, reselect.OutputSelector<[(state: GridState) => GridRowsState], GridRowsLookup, never, ((args_0: GridRowsState, ...args_1: unknown[]) => GridRowsLookup) & ((...args: any[]) => any) & {
|
|
3143
|
+
clearCache: () => void;
|
|
3144
|
+
}>], {
|
|
2982
3145
|
id: GridRowId;
|
|
2983
3146
|
model: {
|
|
2984
3147
|
[key: string]: any;
|
|
2985
3148
|
};
|
|
2986
|
-
}[], (
|
|
3149
|
+
}[], never, ((args_0: GridRowId[], args_1: GridRowsLookup, ...args_2: unknown[]) => {
|
|
2987
3150
|
id: GridRowId;
|
|
2988
3151
|
model: {
|
|
2989
3152
|
[key: string]: any;
|
|
2990
3153
|
};
|
|
2991
|
-
}[]) => {
|
|
3154
|
+
}[]) & ((...args: any[]) => any) & {
|
|
3155
|
+
clearCache: () => void;
|
|
3156
|
+
}>], {
|
|
2992
3157
|
id: GridRowId;
|
|
2993
3158
|
model: {
|
|
2994
3159
|
[key: string]: any;
|
|
2995
3160
|
};
|
|
2996
|
-
}[]
|
|
2997
|
-
declare const gridVisibleSortedRowIdsSelector: reselect.OutputSelector<GridState, GridRowId[], (res: {
|
|
3161
|
+
}[], never, ((args_0: Record<GridRowId, boolean>, args_1: {
|
|
2998
3162
|
id: GridRowId;
|
|
2999
3163
|
model: {
|
|
3000
3164
|
[key: string]: any;
|
|
3001
3165
|
};
|
|
3002
|
-
}[]) =>
|
|
3003
|
-
declare const gridVisibleRowCountSelector: reselect.OutputSelector<GridState, number, (res1: GridFilterState, res2: number) => number>;
|
|
3004
|
-
declare const gridFilterActiveItemsSelector: reselect.OutputSelector<GridState, GridFilterItem[], (res1: GridFilterModel, res2: GridColumnLookup) => GridFilterItem[]>;
|
|
3005
|
-
declare type GridFilterActiveItemsLookup = {
|
|
3006
|
-
[columnField: string]: GridFilterItem[];
|
|
3007
|
-
};
|
|
3008
|
-
declare const gridFilterActiveItemsLookupSelector: reselect.OutputSelector<GridState, GridFilterActiveItemsLookup, (res: GridFilterItem[]) => GridFilterActiveItemsLookup>;
|
|
3009
|
-
|
|
3010
|
-
declare const gridFocusStateSelector: (state: GridState) => GridFocusState;
|
|
3011
|
-
declare const gridFocusCellSelector: reselect.OutputSelector<GridState, GridCellIdentifier | null, (res: GridFocusState) => GridCellIdentifier | null>;
|
|
3012
|
-
declare const gridFocusColumnHeaderSelector: reselect.OutputSelector<GridState, GridColumnIdentifier | null, (res: GridFocusState) => GridColumnIdentifier | null>;
|
|
3013
|
-
declare const gridTabIndexStateSelector: (state: GridState) => GridTabIndexState;
|
|
3014
|
-
declare const gridTabIndexCellSelector: reselect.OutputSelector<GridState, GridCellIdentifier | null, (res: GridTabIndexState) => GridCellIdentifier | null>;
|
|
3015
|
-
declare const gridTabIndexColumnHeaderSelector: reselect.OutputSelector<GridState, GridColumnIdentifier | null, (res: GridTabIndexState) => GridColumnIdentifier | null>;
|
|
3016
|
-
|
|
3017
|
-
declare const gridPaginationSelector: (state: GridState) => GridPaginationState;
|
|
3018
|
-
declare const gridPageSelector: reselect.OutputSelector<GridState, number, (res: GridPaginationState) => number>;
|
|
3019
|
-
declare const gridPageSizeSelector: reselect.OutputSelector<GridState, number, (res: GridPaginationState) => number>;
|
|
3020
|
-
declare const gridPaginatedVisibleSortedGridRowIdsSelector: reselect.OutputSelector<GridState, GridRowId[], (res1: GridPaginationState, res2: GridRowId[]) => GridRowId[]>;
|
|
3021
|
-
|
|
3022
|
-
declare const gridPreferencePanelStateSelector: (state: GridState) => GridPreferencePanelState;
|
|
3023
|
-
declare const gridViewportSizeStateSelector: (state: GridState) => ElementSize;
|
|
3024
|
-
|
|
3025
|
-
declare const gridRowsStateSelector: (state: GridState) => GridRowsState;
|
|
3026
|
-
declare const gridRowCountSelector: reselect.OutputSelector<GridState, number, (res: GridRowsState) => number>;
|
|
3027
|
-
declare const gridRowsLookupSelector: reselect.OutputSelector<GridState, Record<GridRowId, {
|
|
3028
|
-
[key: string]: any;
|
|
3029
|
-
}>, (res: GridRowsState) => Record<GridRowId, {
|
|
3030
|
-
[key: string]: any;
|
|
3031
|
-
}>>;
|
|
3032
|
-
declare const gridRowIdsSelector: reselect.OutputSelector<GridState, GridRowId[], (res: GridRowsState) => GridRowId[]>;
|
|
3033
|
-
|
|
3034
|
-
declare const gridSelectionStateSelector: (state: GridState) => GridSelectionModel;
|
|
3035
|
-
declare const selectedGridRowsCountSelector: reselect.OutputSelector<GridState, number, (res: GridSelectionModel) => number>;
|
|
3036
|
-
declare const selectedGridRowsSelector: reselect.OutputSelector<GridState, Map<GridRowId, {
|
|
3037
|
-
[key: string]: any;
|
|
3038
|
-
}>, (res1: GridSelectionModel, res2: Record<GridRowId, {
|
|
3039
|
-
[key: string]: any;
|
|
3040
|
-
}>) => Map<GridRowId, {
|
|
3041
|
-
[key: string]: any;
|
|
3042
|
-
}>>;
|
|
3043
|
-
declare const selectedIdsLookupSelector: reselect.OutputSelector<GridState, {}, (res: GridSelectionModel) => {}>;
|
|
3044
|
-
|
|
3045
|
-
declare const gridSortedRowIdsSelector: reselect.OutputSelector<GridState, GridRowId[], (res1: GridSortingState, res2: GridRowId[]) => GridRowId[]>;
|
|
3046
|
-
declare const gridSortedRowEntriesSelector: reselect.OutputSelector<GridState, {
|
|
3166
|
+
}[], ...args_2: unknown[]) => {
|
|
3047
3167
|
id: GridRowId;
|
|
3048
3168
|
model: {
|
|
3049
3169
|
[key: string]: any;
|
|
3050
3170
|
};
|
|
3051
|
-
}[]
|
|
3052
|
-
|
|
3053
|
-
}
|
|
3171
|
+
}[]) & ((...args: any[]) => any) & {
|
|
3172
|
+
clearCache: () => void;
|
|
3173
|
+
}>;
|
|
3174
|
+
declare const gridVisibleSortedRowIdsSelector: reselect.OutputSelector<[reselect.OutputSelector<[reselect.OutputSelector<[(state: GridState) => GridFilterState], Record<GridRowId, boolean>, never, ((args_0: GridFilterState, ...args_1: unknown[]) => Record<GridRowId, boolean>) & ((...args: any[]) => any) & {
|
|
3175
|
+
clearCache: () => void;
|
|
3176
|
+
}>, reselect.OutputSelector<[reselect.OutputSelector<[(state: GridState) => GridSortingState], GridRowId[], never, ((args_0: GridSortingState, ...args_1: unknown[]) => GridRowId[]) & ((...args: any[]) => any) & {
|
|
3177
|
+
clearCache: () => void;
|
|
3178
|
+
}>, reselect.OutputSelector<[(state: GridState) => GridRowsState], GridRowsLookup, never, ((args_0: GridRowsState, ...args_1: unknown[]) => GridRowsLookup) & ((...args: any[]) => any) & {
|
|
3179
|
+
clearCache: () => void;
|
|
3180
|
+
}>], {
|
|
3054
3181
|
id: GridRowId;
|
|
3055
3182
|
model: {
|
|
3056
3183
|
[key: string]: any;
|
|
3057
3184
|
};
|
|
3058
|
-
}[]
|
|
3059
|
-
|
|
3060
|
-
|
|
3061
|
-
|
|
3062
|
-
|
|
3063
|
-
}
|
|
3064
|
-
|
|
3065
|
-
|
|
3066
|
-
|
|
3067
|
-
|
|
3068
|
-
|
|
3069
|
-
|
|
3070
|
-
|
|
3071
|
-
|
|
3072
|
-
|
|
3073
|
-
|
|
3074
|
-
|
|
3075
|
-
|
|
3076
|
-
|
|
3077
|
-
|
|
3078
|
-
|
|
3079
|
-
|
|
3080
|
-
}
|
|
3081
|
-
|
|
3082
|
-
|
|
3083
|
-
|
|
3185
|
+
}[], never, ((args_0: GridRowId[], args_1: GridRowsLookup, ...args_2: unknown[]) => {
|
|
3186
|
+
id: GridRowId;
|
|
3187
|
+
model: {
|
|
3188
|
+
[key: string]: any;
|
|
3189
|
+
};
|
|
3190
|
+
}[]) & ((...args: any[]) => any) & {
|
|
3191
|
+
clearCache: () => void;
|
|
3192
|
+
}>], {
|
|
3193
|
+
id: GridRowId;
|
|
3194
|
+
model: {
|
|
3195
|
+
[key: string]: any;
|
|
3196
|
+
};
|
|
3197
|
+
}[], never, ((args_0: Record<GridRowId, boolean>, args_1: {
|
|
3198
|
+
id: GridRowId;
|
|
3199
|
+
model: {
|
|
3200
|
+
[key: string]: any;
|
|
3201
|
+
};
|
|
3202
|
+
}[], ...args_2: unknown[]) => {
|
|
3203
|
+
id: GridRowId;
|
|
3204
|
+
model: {
|
|
3205
|
+
[key: string]: any;
|
|
3206
|
+
};
|
|
3207
|
+
}[]) & ((...args: any[]) => any) & {
|
|
3208
|
+
clearCache: () => void;
|
|
3209
|
+
}>], GridRowId[], never, ((args_0: {
|
|
3210
|
+
id: GridRowId;
|
|
3211
|
+
model: {
|
|
3212
|
+
[key: string]: any;
|
|
3213
|
+
};
|
|
3214
|
+
}[], ...args_1: unknown[]) => GridRowId[]) & ((...args: any[]) => any) & {
|
|
3215
|
+
clearCache: () => void;
|
|
3216
|
+
}>;
|
|
3217
|
+
/**
|
|
3218
|
+
* @deprecated Use `gridVisibleSortedRowIdsSelector` instead
|
|
3219
|
+
*/
|
|
3220
|
+
declare const gridVisibleRowsSelector: reselect.OutputSelector<[reselect.OutputSelector<[reselect.OutputSelector<[(state: GridState) => GridFilterState], Record<GridRowId, boolean>, never, ((args_0: GridFilterState, ...args_1: unknown[]) => Record<GridRowId, boolean>) & ((...args: any[]) => any) & {
|
|
3221
|
+
clearCache: () => void;
|
|
3222
|
+
}>, reselect.OutputSelector<[reselect.OutputSelector<[(state: GridState) => GridSortingState], GridRowId[], never, ((args_0: GridSortingState, ...args_1: unknown[]) => GridRowId[]) & ((...args: any[]) => any) & {
|
|
3223
|
+
clearCache: () => void;
|
|
3224
|
+
}>, reselect.OutputSelector<[(state: GridState) => GridRowsState], GridRowsLookup, never, ((args_0: GridRowsState, ...args_1: unknown[]) => GridRowsLookup) & ((...args: any[]) => any) & {
|
|
3225
|
+
clearCache: () => void;
|
|
3226
|
+
}>], {
|
|
3227
|
+
id: GridRowId;
|
|
3228
|
+
model: {
|
|
3229
|
+
[key: string]: any;
|
|
3230
|
+
};
|
|
3231
|
+
}[], never, ((args_0: GridRowId[], args_1: GridRowsLookup, ...args_2: unknown[]) => {
|
|
3232
|
+
id: GridRowId;
|
|
3233
|
+
model: {
|
|
3234
|
+
[key: string]: any;
|
|
3235
|
+
};
|
|
3236
|
+
}[]) & ((...args: any[]) => any) & {
|
|
3237
|
+
clearCache: () => void;
|
|
3238
|
+
}>], {
|
|
3239
|
+
id: GridRowId;
|
|
3240
|
+
model: {
|
|
3241
|
+
[key: string]: any;
|
|
3242
|
+
};
|
|
3243
|
+
}[], never, ((args_0: Record<GridRowId, boolean>, args_1: {
|
|
3244
|
+
id: GridRowId;
|
|
3245
|
+
model: {
|
|
3246
|
+
[key: string]: any;
|
|
3247
|
+
};
|
|
3248
|
+
}[], ...args_2: unknown[]) => {
|
|
3249
|
+
id: GridRowId;
|
|
3250
|
+
model: {
|
|
3251
|
+
[key: string]: any;
|
|
3252
|
+
};
|
|
3253
|
+
}[]) & ((...args: any[]) => any) & {
|
|
3254
|
+
clearCache: () => void;
|
|
3255
|
+
}>], GridRowId[], never, ((args_0: {
|
|
3256
|
+
id: GridRowId;
|
|
3257
|
+
model: {
|
|
3258
|
+
[key: string]: any;
|
|
3259
|
+
};
|
|
3260
|
+
}[], ...args_1: unknown[]) => GridRowId[]) & ((...args: any[]) => any) & {
|
|
3261
|
+
clearCache: () => void;
|
|
3262
|
+
}>;
|
|
3263
|
+
declare const gridVisibleSortedTopLevelRowEntriesSelector: reselect.OutputSelector<[reselect.OutputSelector<[reselect.OutputSelector<[(state: GridState) => GridFilterState], Record<GridRowId, boolean>, never, ((args_0: GridFilterState, ...args_1: unknown[]) => Record<GridRowId, boolean>) & ((...args: any[]) => any) & {
|
|
3264
|
+
clearCache: () => void;
|
|
3265
|
+
}>, reselect.OutputSelector<[reselect.OutputSelector<[(state: GridState) => GridSortingState], GridRowId[], never, ((args_0: GridSortingState, ...args_1: unknown[]) => GridRowId[]) & ((...args: any[]) => any) & {
|
|
3266
|
+
clearCache: () => void;
|
|
3267
|
+
}>, reselect.OutputSelector<[(state: GridState) => GridRowsState], GridRowsLookup, never, ((args_0: GridRowsState, ...args_1: unknown[]) => GridRowsLookup) & ((...args: any[]) => any) & {
|
|
3268
|
+
clearCache: () => void;
|
|
3269
|
+
}>], {
|
|
3270
|
+
id: GridRowId;
|
|
3271
|
+
model: {
|
|
3272
|
+
[key: string]: any;
|
|
3273
|
+
};
|
|
3274
|
+
}[], never, ((args_0: GridRowId[], args_1: GridRowsLookup, ...args_2: unknown[]) => {
|
|
3275
|
+
id: GridRowId;
|
|
3276
|
+
model: {
|
|
3277
|
+
[key: string]: any;
|
|
3278
|
+
};
|
|
3279
|
+
}[]) & ((...args: any[]) => any) & {
|
|
3280
|
+
clearCache: () => void;
|
|
3281
|
+
}>], {
|
|
3282
|
+
id: GridRowId;
|
|
3283
|
+
model: {
|
|
3284
|
+
[key: string]: any;
|
|
3285
|
+
};
|
|
3286
|
+
}[], never, ((args_0: Record<GridRowId, boolean>, args_1: {
|
|
3287
|
+
id: GridRowId;
|
|
3288
|
+
model: {
|
|
3289
|
+
[key: string]: any;
|
|
3290
|
+
};
|
|
3291
|
+
}[], ...args_2: unknown[]) => {
|
|
3292
|
+
id: GridRowId;
|
|
3293
|
+
model: {
|
|
3294
|
+
[key: string]: any;
|
|
3295
|
+
};
|
|
3296
|
+
}[]) & ((...args: any[]) => any) & {
|
|
3297
|
+
clearCache: () => void;
|
|
3298
|
+
}>, reselect.OutputSelector<[(state: GridState) => GridRowsState], GridRowTreeConfig, never, ((args_0: GridRowsState, ...args_1: unknown[]) => GridRowTreeConfig) & ((...args: any[]) => any) & {
|
|
3299
|
+
clearCache: () => void;
|
|
3300
|
+
}>, reselect.OutputSelector<[(state: GridState) => GridRowsState], number, never, ((args_0: GridRowsState, ...args_1: unknown[]) => number) & ((...args: any[]) => any) & {
|
|
3301
|
+
clearCache: () => void;
|
|
3302
|
+
}>], {
|
|
3303
|
+
id: GridRowId;
|
|
3304
|
+
model: {
|
|
3305
|
+
[key: string]: any;
|
|
3306
|
+
};
|
|
3307
|
+
}[], never, ((args_0: {
|
|
3308
|
+
id: GridRowId;
|
|
3309
|
+
model: {
|
|
3310
|
+
[key: string]: any;
|
|
3311
|
+
};
|
|
3312
|
+
}[], args_1: GridRowTreeConfig, args_2: number, ...args_3: unknown[]) => {
|
|
3313
|
+
id: GridRowId;
|
|
3314
|
+
model: {
|
|
3315
|
+
[key: string]: any;
|
|
3316
|
+
};
|
|
3317
|
+
}[]) & ((...args: any[]) => any) & {
|
|
3318
|
+
clearCache: () => void;
|
|
3319
|
+
}>;
|
|
3320
|
+
declare const gridVisibleRowCountSelector: reselect.OutputSelector<[reselect.OutputSelector<[reselect.OutputSelector<[(state: GridState) => GridFilterState], Record<GridRowId, boolean>, never, ((args_0: GridFilterState, ...args_1: unknown[]) => Record<GridRowId, boolean>) & ((...args: any[]) => any) & {
|
|
3321
|
+
clearCache: () => void;
|
|
3322
|
+
}>, reselect.OutputSelector<[reselect.OutputSelector<[(state: GridState) => GridSortingState], GridRowId[], never, ((args_0: GridSortingState, ...args_1: unknown[]) => GridRowId[]) & ((...args: any[]) => any) & {
|
|
3323
|
+
clearCache: () => void;
|
|
3324
|
+
}>, reselect.OutputSelector<[(state: GridState) => GridRowsState], GridRowsLookup, never, ((args_0: GridRowsState, ...args_1: unknown[]) => GridRowsLookup) & ((...args: any[]) => any) & {
|
|
3325
|
+
clearCache: () => void;
|
|
3326
|
+
}>], {
|
|
3327
|
+
id: GridRowId;
|
|
3328
|
+
model: {
|
|
3329
|
+
[key: string]: any;
|
|
3330
|
+
};
|
|
3331
|
+
}[], never, ((args_0: GridRowId[], args_1: GridRowsLookup, ...args_2: unknown[]) => {
|
|
3332
|
+
id: GridRowId;
|
|
3333
|
+
model: {
|
|
3334
|
+
[key: string]: any;
|
|
3335
|
+
};
|
|
3336
|
+
}[]) & ((...args: any[]) => any) & {
|
|
3337
|
+
clearCache: () => void;
|
|
3338
|
+
}>], {
|
|
3339
|
+
id: GridRowId;
|
|
3340
|
+
model: {
|
|
3341
|
+
[key: string]: any;
|
|
3342
|
+
};
|
|
3343
|
+
}[], never, ((args_0: Record<GridRowId, boolean>, args_1: {
|
|
3344
|
+
id: GridRowId;
|
|
3345
|
+
model: {
|
|
3346
|
+
[key: string]: any;
|
|
3347
|
+
};
|
|
3348
|
+
}[], ...args_2: unknown[]) => {
|
|
3349
|
+
id: GridRowId;
|
|
3350
|
+
model: {
|
|
3351
|
+
[key: string]: any;
|
|
3352
|
+
};
|
|
3353
|
+
}[]) & ((...args: any[]) => any) & {
|
|
3354
|
+
clearCache: () => void;
|
|
3355
|
+
}>], number, never, ((args_0: {
|
|
3356
|
+
id: GridRowId;
|
|
3357
|
+
model: {
|
|
3358
|
+
[key: string]: any;
|
|
3359
|
+
};
|
|
3360
|
+
}[], ...args_1: unknown[]) => number) & ((...args: any[]) => any) & {
|
|
3361
|
+
clearCache: () => void;
|
|
3362
|
+
}>;
|
|
3363
|
+
declare const gridVisibleTopLevelRowCountSelector: reselect.OutputSelector<[reselect.OutputSelector<[reselect.OutputSelector<[reselect.OutputSelector<[(state: GridState) => GridFilterState], Record<GridRowId, boolean>, never, ((args_0: GridFilterState, ...args_1: unknown[]) => Record<GridRowId, boolean>) & ((...args: any[]) => any) & {
|
|
3364
|
+
clearCache: () => void;
|
|
3365
|
+
}>, reselect.OutputSelector<[reselect.OutputSelector<[(state: GridState) => GridSortingState], GridRowId[], never, ((args_0: GridSortingState, ...args_1: unknown[]) => GridRowId[]) & ((...args: any[]) => any) & {
|
|
3366
|
+
clearCache: () => void;
|
|
3367
|
+
}>, reselect.OutputSelector<[(state: GridState) => GridRowsState], GridRowsLookup, never, ((args_0: GridRowsState, ...args_1: unknown[]) => GridRowsLookup) & ((...args: any[]) => any) & {
|
|
3368
|
+
clearCache: () => void;
|
|
3369
|
+
}>], {
|
|
3370
|
+
id: GridRowId;
|
|
3371
|
+
model: {
|
|
3372
|
+
[key: string]: any;
|
|
3373
|
+
};
|
|
3374
|
+
}[], never, ((args_0: GridRowId[], args_1: GridRowsLookup, ...args_2: unknown[]) => {
|
|
3375
|
+
id: GridRowId;
|
|
3376
|
+
model: {
|
|
3377
|
+
[key: string]: any;
|
|
3378
|
+
};
|
|
3379
|
+
}[]) & ((...args: any[]) => any) & {
|
|
3380
|
+
clearCache: () => void;
|
|
3381
|
+
}>], {
|
|
3382
|
+
id: GridRowId;
|
|
3383
|
+
model: {
|
|
3384
|
+
[key: string]: any;
|
|
3385
|
+
};
|
|
3386
|
+
}[], never, ((args_0: Record<GridRowId, boolean>, args_1: {
|
|
3387
|
+
id: GridRowId;
|
|
3388
|
+
model: {
|
|
3389
|
+
[key: string]: any;
|
|
3390
|
+
};
|
|
3391
|
+
}[], ...args_2: unknown[]) => {
|
|
3392
|
+
id: GridRowId;
|
|
3393
|
+
model: {
|
|
3394
|
+
[key: string]: any;
|
|
3395
|
+
};
|
|
3396
|
+
}[]) & ((...args: any[]) => any) & {
|
|
3397
|
+
clearCache: () => void;
|
|
3398
|
+
}>, reselect.OutputSelector<[(state: GridState) => GridRowsState], GridRowTreeConfig, never, ((args_0: GridRowsState, ...args_1: unknown[]) => GridRowTreeConfig) & ((...args: any[]) => any) & {
|
|
3399
|
+
clearCache: () => void;
|
|
3400
|
+
}>, reselect.OutputSelector<[(state: GridState) => GridRowsState], number, never, ((args_0: GridRowsState, ...args_1: unknown[]) => number) & ((...args: any[]) => any) & {
|
|
3401
|
+
clearCache: () => void;
|
|
3402
|
+
}>], {
|
|
3403
|
+
id: GridRowId;
|
|
3404
|
+
model: {
|
|
3405
|
+
[key: string]: any;
|
|
3406
|
+
};
|
|
3407
|
+
}[], never, ((args_0: {
|
|
3408
|
+
id: GridRowId;
|
|
3409
|
+
model: {
|
|
3410
|
+
[key: string]: any;
|
|
3411
|
+
};
|
|
3412
|
+
}[], args_1: GridRowTreeConfig, args_2: number, ...args_3: unknown[]) => {
|
|
3413
|
+
id: GridRowId;
|
|
3414
|
+
model: {
|
|
3415
|
+
[key: string]: any;
|
|
3416
|
+
};
|
|
3417
|
+
}[]) & ((...args: any[]) => any) & {
|
|
3418
|
+
clearCache: () => void;
|
|
3419
|
+
}>], number, never, ((args_0: {
|
|
3420
|
+
id: GridRowId;
|
|
3421
|
+
model: {
|
|
3422
|
+
[key: string]: any;
|
|
3423
|
+
};
|
|
3424
|
+
}[], ...args_1: unknown[]) => number) & ((...args: any[]) => any) & {
|
|
3425
|
+
clearCache: () => void;
|
|
3426
|
+
}>;
|
|
3427
|
+
declare const gridFilterActiveItemsSelector: reselect.OutputSelector<[reselect.OutputSelector<[(state: GridState) => GridFilterState], GridFilterModel, never, ((args_0: GridFilterState, ...args_1: unknown[]) => GridFilterModel) & ((...args: any[]) => any) & {
|
|
3428
|
+
clearCache: () => void;
|
|
3429
|
+
}>, (state: GridState) => GridColumnLookup], GridFilterItem[], never, ((args_0: GridFilterModel, args_1: GridColumnLookup, ...args_2: unknown[]) => GridFilterItem[]) & ((...args: any[]) => any) & {
|
|
3430
|
+
clearCache: () => void;
|
|
3431
|
+
}>;
|
|
3432
|
+
declare type GridFilterActiveItemsLookup = {
|
|
3433
|
+
[columnField: string]: GridFilterItem[];
|
|
3434
|
+
};
|
|
3435
|
+
declare const gridFilterActiveItemsLookupSelector: reselect.OutputSelector<[reselect.OutputSelector<[reselect.OutputSelector<[(state: GridState) => GridFilterState], GridFilterModel, never, ((args_0: GridFilterState, ...args_1: unknown[]) => GridFilterModel) & ((...args: any[]) => any) & {
|
|
3436
|
+
clearCache: () => void;
|
|
3437
|
+
}>, (state: GridState) => GridColumnLookup], GridFilterItem[], never, ((args_0: GridFilterModel, args_1: GridColumnLookup, ...args_2: unknown[]) => GridFilterItem[]) & ((...args: any[]) => any) & {
|
|
3438
|
+
clearCache: () => void;
|
|
3439
|
+
}>], GridFilterActiveItemsLookup, never, ((args_0: GridFilterItem[], ...args_1: unknown[]) => GridFilterActiveItemsLookup) & ((...args: any[]) => any) & {
|
|
3440
|
+
clearCache: () => void;
|
|
3441
|
+
}>;
|
|
3442
|
+
|
|
3443
|
+
declare const gridFocusStateSelector: (state: GridState) => GridFocusState;
|
|
3444
|
+
declare const gridFocusCellSelector: reselect.OutputSelector<[(state: GridState) => GridFocusState], GridCellIdentifier | null, never, ((args_0: GridFocusState, ...args_1: unknown[]) => GridCellIdentifier | null) & ((...args: any[]) => any) & {
|
|
3445
|
+
clearCache: () => void;
|
|
3446
|
+
}>;
|
|
3447
|
+
declare const gridFocusColumnHeaderSelector: reselect.OutputSelector<[(state: GridState) => GridFocusState], GridColumnIdentifier | null, never, ((args_0: GridFocusState, ...args_1: unknown[]) => GridColumnIdentifier | null) & ((...args: any[]) => any) & {
|
|
3448
|
+
clearCache: () => void;
|
|
3449
|
+
}>;
|
|
3450
|
+
declare const gridTabIndexStateSelector: (state: GridState) => GridTabIndexState;
|
|
3451
|
+
declare const gridTabIndexCellSelector: reselect.OutputSelector<[(state: GridState) => GridTabIndexState], GridCellIdentifier | null, never, ((args_0: GridTabIndexState, ...args_1: unknown[]) => GridCellIdentifier | null) & ((...args: any[]) => any) & {
|
|
3452
|
+
clearCache: () => void;
|
|
3453
|
+
}>;
|
|
3454
|
+
declare const gridTabIndexColumnHeaderSelector: reselect.OutputSelector<[(state: GridState) => GridTabIndexState], GridColumnIdentifier | null, never, ((args_0: GridTabIndexState, ...args_1: unknown[]) => GridColumnIdentifier | null) & ((...args: any[]) => any) & {
|
|
3455
|
+
clearCache: () => void;
|
|
3456
|
+
}>;
|
|
3457
|
+
|
|
3458
|
+
declare const gridPaginationSelector: (state: GridState) => GridPaginationState;
|
|
3459
|
+
declare const gridPageSelector: reselect.OutputSelector<[(state: GridState) => GridPaginationState], number, never, ((args_0: GridPaginationState, ...args_1: unknown[]) => number) & ((...args: any[]) => any) & {
|
|
3460
|
+
clearCache: () => void;
|
|
3461
|
+
}>;
|
|
3462
|
+
declare const gridPageSizeSelector: reselect.OutputSelector<[(state: GridState) => GridPaginationState], number, never, ((args_0: GridPaginationState, ...args_1: unknown[]) => number) & ((...args: any[]) => any) & {
|
|
3463
|
+
clearCache: () => void;
|
|
3464
|
+
}>;
|
|
3465
|
+
declare const gridPaginationRowRangeSelector: reselect.OutputSelector<[(state: GridState) => GridPaginationState, reselect.OutputSelector<[(state: GridState) => GridRowsState], GridRowTreeConfig, never, ((args_0: GridRowsState, ...args_1: unknown[]) => GridRowTreeConfig) & ((...args: any[]) => any) & {
|
|
3466
|
+
clearCache: () => void;
|
|
3467
|
+
}>, reselect.OutputSelector<[(state: GridState) => GridRowsState], number, never, ((args_0: GridRowsState, ...args_1: unknown[]) => number) & ((...args: any[]) => any) & {
|
|
3468
|
+
clearCache: () => void;
|
|
3469
|
+
}>, reselect.OutputSelector<[reselect.OutputSelector<[(state: GridState) => GridFilterState], Record<GridRowId, boolean>, never, ((args_0: GridFilterState, ...args_1: unknown[]) => Record<GridRowId, boolean>) & ((...args: any[]) => any) & {
|
|
3470
|
+
clearCache: () => void;
|
|
3471
|
+
}>, reselect.OutputSelector<[reselect.OutputSelector<[(state: GridState) => GridSortingState], GridRowId[], never, ((args_0: GridSortingState, ...args_1: unknown[]) => GridRowId[]) & ((...args: any[]) => any) & {
|
|
3472
|
+
clearCache: () => void;
|
|
3473
|
+
}>, reselect.OutputSelector<[(state: GridState) => GridRowsState], GridRowsLookup, never, ((args_0: GridRowsState, ...args_1: unknown[]) => GridRowsLookup) & ((...args: any[]) => any) & {
|
|
3474
|
+
clearCache: () => void;
|
|
3475
|
+
}>], {
|
|
3476
|
+
id: GridRowId;
|
|
3477
|
+
model: {
|
|
3478
|
+
[key: string]: any;
|
|
3479
|
+
};
|
|
3480
|
+
}[], never, ((args_0: GridRowId[], args_1: GridRowsLookup, ...args_2: unknown[]) => {
|
|
3481
|
+
id: GridRowId;
|
|
3482
|
+
model: {
|
|
3483
|
+
[key: string]: any;
|
|
3484
|
+
};
|
|
3485
|
+
}[]) & ((...args: any[]) => any) & {
|
|
3486
|
+
clearCache: () => void;
|
|
3487
|
+
}>], {
|
|
3488
|
+
id: GridRowId;
|
|
3489
|
+
model: {
|
|
3490
|
+
[key: string]: any;
|
|
3491
|
+
};
|
|
3492
|
+
}[], never, ((args_0: Record<GridRowId, boolean>, args_1: {
|
|
3493
|
+
id: GridRowId;
|
|
3494
|
+
model: {
|
|
3495
|
+
[key: string]: any;
|
|
3496
|
+
};
|
|
3497
|
+
}[], ...args_2: unknown[]) => {
|
|
3498
|
+
id: GridRowId;
|
|
3499
|
+
model: {
|
|
3500
|
+
[key: string]: any;
|
|
3501
|
+
};
|
|
3502
|
+
}[]) & ((...args: any[]) => any) & {
|
|
3503
|
+
clearCache: () => void;
|
|
3504
|
+
}>, reselect.OutputSelector<[reselect.OutputSelector<[reselect.OutputSelector<[(state: GridState) => GridFilterState], Record<GridRowId, boolean>, never, ((args_0: GridFilterState, ...args_1: unknown[]) => Record<GridRowId, boolean>) & ((...args: any[]) => any) & {
|
|
3505
|
+
clearCache: () => void;
|
|
3506
|
+
}>, reselect.OutputSelector<[reselect.OutputSelector<[(state: GridState) => GridSortingState], GridRowId[], never, ((args_0: GridSortingState, ...args_1: unknown[]) => GridRowId[]) & ((...args: any[]) => any) & {
|
|
3507
|
+
clearCache: () => void;
|
|
3508
|
+
}>, reselect.OutputSelector<[(state: GridState) => GridRowsState], GridRowsLookup, never, ((args_0: GridRowsState, ...args_1: unknown[]) => GridRowsLookup) & ((...args: any[]) => any) & {
|
|
3509
|
+
clearCache: () => void;
|
|
3510
|
+
}>], {
|
|
3511
|
+
id: GridRowId;
|
|
3512
|
+
model: {
|
|
3513
|
+
[key: string]: any;
|
|
3514
|
+
};
|
|
3515
|
+
}[], never, ((args_0: GridRowId[], args_1: GridRowsLookup, ...args_2: unknown[]) => {
|
|
3516
|
+
id: GridRowId;
|
|
3517
|
+
model: {
|
|
3518
|
+
[key: string]: any;
|
|
3519
|
+
};
|
|
3520
|
+
}[]) & ((...args: any[]) => any) & {
|
|
3521
|
+
clearCache: () => void;
|
|
3522
|
+
}>], {
|
|
3523
|
+
id: GridRowId;
|
|
3524
|
+
model: {
|
|
3525
|
+
[key: string]: any;
|
|
3526
|
+
};
|
|
3527
|
+
}[], never, ((args_0: Record<GridRowId, boolean>, args_1: {
|
|
3528
|
+
id: GridRowId;
|
|
3529
|
+
model: {
|
|
3530
|
+
[key: string]: any;
|
|
3531
|
+
};
|
|
3532
|
+
}[], ...args_2: unknown[]) => {
|
|
3533
|
+
id: GridRowId;
|
|
3534
|
+
model: {
|
|
3535
|
+
[key: string]: any;
|
|
3536
|
+
};
|
|
3537
|
+
}[]) & ((...args: any[]) => any) & {
|
|
3538
|
+
clearCache: () => void;
|
|
3539
|
+
}>, reselect.OutputSelector<[(state: GridState) => GridRowsState], GridRowTreeConfig, never, ((args_0: GridRowsState, ...args_1: unknown[]) => GridRowTreeConfig) & ((...args: any[]) => any) & {
|
|
3540
|
+
clearCache: () => void;
|
|
3541
|
+
}>, reselect.OutputSelector<[(state: GridState) => GridRowsState], number, never, ((args_0: GridRowsState, ...args_1: unknown[]) => number) & ((...args: any[]) => any) & {
|
|
3542
|
+
clearCache: () => void;
|
|
3543
|
+
}>], {
|
|
3544
|
+
id: GridRowId;
|
|
3545
|
+
model: {
|
|
3546
|
+
[key: string]: any;
|
|
3547
|
+
};
|
|
3548
|
+
}[], never, ((args_0: {
|
|
3549
|
+
id: GridRowId;
|
|
3550
|
+
model: {
|
|
3551
|
+
[key: string]: any;
|
|
3552
|
+
};
|
|
3553
|
+
}[], args_1: GridRowTreeConfig, args_2: number, ...args_3: unknown[]) => {
|
|
3554
|
+
id: GridRowId;
|
|
3555
|
+
model: {
|
|
3556
|
+
[key: string]: any;
|
|
3557
|
+
};
|
|
3558
|
+
}[]) & ((...args: any[]) => any) & {
|
|
3559
|
+
clearCache: () => void;
|
|
3560
|
+
}>], {
|
|
3561
|
+
firstRowIndex: number;
|
|
3562
|
+
lastRowIndex: number;
|
|
3563
|
+
} | null, never, ((args_0: GridPaginationState, args_1: GridRowTreeConfig, args_2: number, args_3: {
|
|
3564
|
+
id: GridRowId;
|
|
3565
|
+
model: {
|
|
3566
|
+
[key: string]: any;
|
|
3567
|
+
};
|
|
3568
|
+
}[], args_4: {
|
|
3569
|
+
id: GridRowId;
|
|
3570
|
+
model: {
|
|
3571
|
+
[key: string]: any;
|
|
3572
|
+
};
|
|
3573
|
+
}[], ...args_5: unknown[]) => {
|
|
3574
|
+
firstRowIndex: number;
|
|
3575
|
+
lastRowIndex: number;
|
|
3576
|
+
} | null) & ((...args: any[]) => any) & {
|
|
3577
|
+
clearCache: () => void;
|
|
3578
|
+
}>;
|
|
3579
|
+
declare const gridPaginatedVisibleSortedGridRowEntriesSelector: reselect.OutputSelector<[reselect.OutputSelector<[reselect.OutputSelector<[(state: GridState) => GridFilterState], Record<GridRowId, boolean>, never, ((args_0: GridFilterState, ...args_1: unknown[]) => Record<GridRowId, boolean>) & ((...args: any[]) => any) & {
|
|
3580
|
+
clearCache: () => void;
|
|
3581
|
+
}>, reselect.OutputSelector<[reselect.OutputSelector<[(state: GridState) => GridSortingState], GridRowId[], never, ((args_0: GridSortingState, ...args_1: unknown[]) => GridRowId[]) & ((...args: any[]) => any) & {
|
|
3582
|
+
clearCache: () => void;
|
|
3583
|
+
}>, reselect.OutputSelector<[(state: GridState) => GridRowsState], GridRowsLookup, never, ((args_0: GridRowsState, ...args_1: unknown[]) => GridRowsLookup) & ((...args: any[]) => any) & {
|
|
3584
|
+
clearCache: () => void;
|
|
3585
|
+
}>], {
|
|
3586
|
+
id: GridRowId;
|
|
3587
|
+
model: {
|
|
3588
|
+
[key: string]: any;
|
|
3589
|
+
};
|
|
3590
|
+
}[], never, ((args_0: GridRowId[], args_1: GridRowsLookup, ...args_2: unknown[]) => {
|
|
3591
|
+
id: GridRowId;
|
|
3592
|
+
model: {
|
|
3593
|
+
[key: string]: any;
|
|
3594
|
+
};
|
|
3595
|
+
}[]) & ((...args: any[]) => any) & {
|
|
3596
|
+
clearCache: () => void;
|
|
3597
|
+
}>], {
|
|
3598
|
+
id: GridRowId;
|
|
3599
|
+
model: {
|
|
3600
|
+
[key: string]: any;
|
|
3601
|
+
};
|
|
3602
|
+
}[], never, ((args_0: Record<GridRowId, boolean>, args_1: {
|
|
3603
|
+
id: GridRowId;
|
|
3604
|
+
model: {
|
|
3605
|
+
[key: string]: any;
|
|
3606
|
+
};
|
|
3607
|
+
}[], ...args_2: unknown[]) => {
|
|
3608
|
+
id: GridRowId;
|
|
3609
|
+
model: {
|
|
3610
|
+
[key: string]: any;
|
|
3611
|
+
};
|
|
3612
|
+
}[]) & ((...args: any[]) => any) & {
|
|
3613
|
+
clearCache: () => void;
|
|
3614
|
+
}>, reselect.OutputSelector<[(state: GridState) => GridPaginationState, reselect.OutputSelector<[(state: GridState) => GridRowsState], GridRowTreeConfig, never, ((args_0: GridRowsState, ...args_1: unknown[]) => GridRowTreeConfig) & ((...args: any[]) => any) & {
|
|
3615
|
+
clearCache: () => void;
|
|
3616
|
+
}>, reselect.OutputSelector<[(state: GridState) => GridRowsState], number, never, ((args_0: GridRowsState, ...args_1: unknown[]) => number) & ((...args: any[]) => any) & {
|
|
3617
|
+
clearCache: () => void;
|
|
3618
|
+
}>, reselect.OutputSelector<[reselect.OutputSelector<[(state: GridState) => GridFilterState], Record<GridRowId, boolean>, never, ((args_0: GridFilterState, ...args_1: unknown[]) => Record<GridRowId, boolean>) & ((...args: any[]) => any) & {
|
|
3619
|
+
clearCache: () => void;
|
|
3620
|
+
}>, reselect.OutputSelector<[reselect.OutputSelector<[(state: GridState) => GridSortingState], GridRowId[], never, ((args_0: GridSortingState, ...args_1: unknown[]) => GridRowId[]) & ((...args: any[]) => any) & {
|
|
3621
|
+
clearCache: () => void;
|
|
3622
|
+
}>, reselect.OutputSelector<[(state: GridState) => GridRowsState], GridRowsLookup, never, ((args_0: GridRowsState, ...args_1: unknown[]) => GridRowsLookup) & ((...args: any[]) => any) & {
|
|
3623
|
+
clearCache: () => void;
|
|
3624
|
+
}>], {
|
|
3625
|
+
id: GridRowId;
|
|
3626
|
+
model: {
|
|
3627
|
+
[key: string]: any;
|
|
3628
|
+
};
|
|
3629
|
+
}[], never, ((args_0: GridRowId[], args_1: GridRowsLookup, ...args_2: unknown[]) => {
|
|
3630
|
+
id: GridRowId;
|
|
3631
|
+
model: {
|
|
3632
|
+
[key: string]: any;
|
|
3633
|
+
};
|
|
3634
|
+
}[]) & ((...args: any[]) => any) & {
|
|
3635
|
+
clearCache: () => void;
|
|
3636
|
+
}>], {
|
|
3637
|
+
id: GridRowId;
|
|
3638
|
+
model: {
|
|
3639
|
+
[key: string]: any;
|
|
3640
|
+
};
|
|
3641
|
+
}[], never, ((args_0: Record<GridRowId, boolean>, args_1: {
|
|
3642
|
+
id: GridRowId;
|
|
3643
|
+
model: {
|
|
3644
|
+
[key: string]: any;
|
|
3645
|
+
};
|
|
3646
|
+
}[], ...args_2: unknown[]) => {
|
|
3647
|
+
id: GridRowId;
|
|
3648
|
+
model: {
|
|
3649
|
+
[key: string]: any;
|
|
3650
|
+
};
|
|
3651
|
+
}[]) & ((...args: any[]) => any) & {
|
|
3652
|
+
clearCache: () => void;
|
|
3653
|
+
}>, reselect.OutputSelector<[reselect.OutputSelector<[reselect.OutputSelector<[(state: GridState) => GridFilterState], Record<GridRowId, boolean>, never, ((args_0: GridFilterState, ...args_1: unknown[]) => Record<GridRowId, boolean>) & ((...args: any[]) => any) & {
|
|
3654
|
+
clearCache: () => void;
|
|
3655
|
+
}>, reselect.OutputSelector<[reselect.OutputSelector<[(state: GridState) => GridSortingState], GridRowId[], never, ((args_0: GridSortingState, ...args_1: unknown[]) => GridRowId[]) & ((...args: any[]) => any) & {
|
|
3656
|
+
clearCache: () => void;
|
|
3657
|
+
}>, reselect.OutputSelector<[(state: GridState) => GridRowsState], GridRowsLookup, never, ((args_0: GridRowsState, ...args_1: unknown[]) => GridRowsLookup) & ((...args: any[]) => any) & {
|
|
3658
|
+
clearCache: () => void;
|
|
3659
|
+
}>], {
|
|
3660
|
+
id: GridRowId;
|
|
3661
|
+
model: {
|
|
3662
|
+
[key: string]: any;
|
|
3663
|
+
};
|
|
3664
|
+
}[], never, ((args_0: GridRowId[], args_1: GridRowsLookup, ...args_2: unknown[]) => {
|
|
3665
|
+
id: GridRowId;
|
|
3666
|
+
model: {
|
|
3667
|
+
[key: string]: any;
|
|
3668
|
+
};
|
|
3669
|
+
}[]) & ((...args: any[]) => any) & {
|
|
3670
|
+
clearCache: () => void;
|
|
3671
|
+
}>], {
|
|
3672
|
+
id: GridRowId;
|
|
3673
|
+
model: {
|
|
3674
|
+
[key: string]: any;
|
|
3675
|
+
};
|
|
3676
|
+
}[], never, ((args_0: Record<GridRowId, boolean>, args_1: {
|
|
3677
|
+
id: GridRowId;
|
|
3678
|
+
model: {
|
|
3679
|
+
[key: string]: any;
|
|
3680
|
+
};
|
|
3681
|
+
}[], ...args_2: unknown[]) => {
|
|
3682
|
+
id: GridRowId;
|
|
3683
|
+
model: {
|
|
3684
|
+
[key: string]: any;
|
|
3685
|
+
};
|
|
3686
|
+
}[]) & ((...args: any[]) => any) & {
|
|
3687
|
+
clearCache: () => void;
|
|
3688
|
+
}>, reselect.OutputSelector<[(state: GridState) => GridRowsState], GridRowTreeConfig, never, ((args_0: GridRowsState, ...args_1: unknown[]) => GridRowTreeConfig) & ((...args: any[]) => any) & {
|
|
3689
|
+
clearCache: () => void;
|
|
3690
|
+
}>, reselect.OutputSelector<[(state: GridState) => GridRowsState], number, never, ((args_0: GridRowsState, ...args_1: unknown[]) => number) & ((...args: any[]) => any) & {
|
|
3691
|
+
clearCache: () => void;
|
|
3692
|
+
}>], {
|
|
3693
|
+
id: GridRowId;
|
|
3694
|
+
model: {
|
|
3695
|
+
[key: string]: any;
|
|
3696
|
+
};
|
|
3697
|
+
}[], never, ((args_0: {
|
|
3698
|
+
id: GridRowId;
|
|
3699
|
+
model: {
|
|
3700
|
+
[key: string]: any;
|
|
3701
|
+
};
|
|
3702
|
+
}[], args_1: GridRowTreeConfig, args_2: number, ...args_3: unknown[]) => {
|
|
3703
|
+
id: GridRowId;
|
|
3704
|
+
model: {
|
|
3705
|
+
[key: string]: any;
|
|
3706
|
+
};
|
|
3707
|
+
}[]) & ((...args: any[]) => any) & {
|
|
3708
|
+
clearCache: () => void;
|
|
3709
|
+
}>], {
|
|
3710
|
+
firstRowIndex: number;
|
|
3711
|
+
lastRowIndex: number;
|
|
3712
|
+
} | null, never, ((args_0: GridPaginationState, args_1: GridRowTreeConfig, args_2: number, args_3: {
|
|
3713
|
+
id: GridRowId;
|
|
3714
|
+
model: {
|
|
3715
|
+
[key: string]: any;
|
|
3716
|
+
};
|
|
3717
|
+
}[], args_4: {
|
|
3718
|
+
id: GridRowId;
|
|
3719
|
+
model: {
|
|
3720
|
+
[key: string]: any;
|
|
3721
|
+
};
|
|
3722
|
+
}[], ...args_5: unknown[]) => {
|
|
3723
|
+
firstRowIndex: number;
|
|
3724
|
+
lastRowIndex: number;
|
|
3725
|
+
} | null) & ((...args: any[]) => any) & {
|
|
3726
|
+
clearCache: () => void;
|
|
3727
|
+
}>], {
|
|
3728
|
+
id: GridRowId;
|
|
3729
|
+
model: {
|
|
3730
|
+
[key: string]: any;
|
|
3731
|
+
};
|
|
3732
|
+
}[], never, ((args_0: {
|
|
3733
|
+
id: GridRowId;
|
|
3734
|
+
model: {
|
|
3735
|
+
[key: string]: any;
|
|
3736
|
+
};
|
|
3737
|
+
}[], args_1: {
|
|
3738
|
+
firstRowIndex: number;
|
|
3739
|
+
lastRowIndex: number;
|
|
3740
|
+
} | null, ...args_2: unknown[]) => {
|
|
3741
|
+
id: GridRowId;
|
|
3742
|
+
model: {
|
|
3743
|
+
[key: string]: any;
|
|
3744
|
+
};
|
|
3745
|
+
}[]) & ((...args: any[]) => any) & {
|
|
3746
|
+
clearCache: () => void;
|
|
3747
|
+
}>;
|
|
3748
|
+
declare const gridPaginatedVisibleSortedGridRowIdsSelector: reselect.OutputSelector<[reselect.OutputSelector<[reselect.OutputSelector<[reselect.OutputSelector<[(state: GridState) => GridFilterState], Record<GridRowId, boolean>, never, ((args_0: GridFilterState, ...args_1: unknown[]) => Record<GridRowId, boolean>) & ((...args: any[]) => any) & {
|
|
3749
|
+
clearCache: () => void;
|
|
3750
|
+
}>, reselect.OutputSelector<[reselect.OutputSelector<[(state: GridState) => GridSortingState], GridRowId[], never, ((args_0: GridSortingState, ...args_1: unknown[]) => GridRowId[]) & ((...args: any[]) => any) & {
|
|
3751
|
+
clearCache: () => void;
|
|
3752
|
+
}>, reselect.OutputSelector<[(state: GridState) => GridRowsState], GridRowsLookup, never, ((args_0: GridRowsState, ...args_1: unknown[]) => GridRowsLookup) & ((...args: any[]) => any) & {
|
|
3753
|
+
clearCache: () => void;
|
|
3754
|
+
}>], {
|
|
3755
|
+
id: GridRowId;
|
|
3756
|
+
model: {
|
|
3757
|
+
[key: string]: any;
|
|
3758
|
+
};
|
|
3759
|
+
}[], never, ((args_0: GridRowId[], args_1: GridRowsLookup, ...args_2: unknown[]) => {
|
|
3760
|
+
id: GridRowId;
|
|
3761
|
+
model: {
|
|
3762
|
+
[key: string]: any;
|
|
3763
|
+
};
|
|
3764
|
+
}[]) & ((...args: any[]) => any) & {
|
|
3765
|
+
clearCache: () => void;
|
|
3766
|
+
}>], {
|
|
3767
|
+
id: GridRowId;
|
|
3768
|
+
model: {
|
|
3769
|
+
[key: string]: any;
|
|
3770
|
+
};
|
|
3771
|
+
}[], never, ((args_0: Record<GridRowId, boolean>, args_1: {
|
|
3772
|
+
id: GridRowId;
|
|
3773
|
+
model: {
|
|
3774
|
+
[key: string]: any;
|
|
3775
|
+
};
|
|
3776
|
+
}[], ...args_2: unknown[]) => {
|
|
3777
|
+
id: GridRowId;
|
|
3778
|
+
model: {
|
|
3779
|
+
[key: string]: any;
|
|
3780
|
+
};
|
|
3781
|
+
}[]) & ((...args: any[]) => any) & {
|
|
3782
|
+
clearCache: () => void;
|
|
3783
|
+
}>], GridRowId[], never, ((args_0: {
|
|
3784
|
+
id: GridRowId;
|
|
3785
|
+
model: {
|
|
3786
|
+
[key: string]: any;
|
|
3787
|
+
};
|
|
3788
|
+
}[], ...args_1: unknown[]) => GridRowId[]) & ((...args: any[]) => any) & {
|
|
3789
|
+
clearCache: () => void;
|
|
3790
|
+
}>, reselect.OutputSelector<[(state: GridState) => GridPaginationState, reselect.OutputSelector<[(state: GridState) => GridRowsState], GridRowTreeConfig, never, ((args_0: GridRowsState, ...args_1: unknown[]) => GridRowTreeConfig) & ((...args: any[]) => any) & {
|
|
3791
|
+
clearCache: () => void;
|
|
3792
|
+
}>, reselect.OutputSelector<[(state: GridState) => GridRowsState], number, never, ((args_0: GridRowsState, ...args_1: unknown[]) => number) & ((...args: any[]) => any) & {
|
|
3793
|
+
clearCache: () => void;
|
|
3794
|
+
}>, reselect.OutputSelector<[reselect.OutputSelector<[(state: GridState) => GridFilterState], Record<GridRowId, boolean>, never, ((args_0: GridFilterState, ...args_1: unknown[]) => Record<GridRowId, boolean>) & ((...args: any[]) => any) & {
|
|
3795
|
+
clearCache: () => void;
|
|
3796
|
+
}>, reselect.OutputSelector<[reselect.OutputSelector<[(state: GridState) => GridSortingState], GridRowId[], never, ((args_0: GridSortingState, ...args_1: unknown[]) => GridRowId[]) & ((...args: any[]) => any) & {
|
|
3797
|
+
clearCache: () => void;
|
|
3798
|
+
}>, reselect.OutputSelector<[(state: GridState) => GridRowsState], GridRowsLookup, never, ((args_0: GridRowsState, ...args_1: unknown[]) => GridRowsLookup) & ((...args: any[]) => any) & {
|
|
3799
|
+
clearCache: () => void;
|
|
3800
|
+
}>], {
|
|
3801
|
+
id: GridRowId;
|
|
3802
|
+
model: {
|
|
3803
|
+
[key: string]: any;
|
|
3804
|
+
};
|
|
3805
|
+
}[], never, ((args_0: GridRowId[], args_1: GridRowsLookup, ...args_2: unknown[]) => {
|
|
3806
|
+
id: GridRowId;
|
|
3807
|
+
model: {
|
|
3808
|
+
[key: string]: any;
|
|
3809
|
+
};
|
|
3810
|
+
}[]) & ((...args: any[]) => any) & {
|
|
3811
|
+
clearCache: () => void;
|
|
3812
|
+
}>], {
|
|
3813
|
+
id: GridRowId;
|
|
3814
|
+
model: {
|
|
3815
|
+
[key: string]: any;
|
|
3816
|
+
};
|
|
3817
|
+
}[], never, ((args_0: Record<GridRowId, boolean>, args_1: {
|
|
3818
|
+
id: GridRowId;
|
|
3819
|
+
model: {
|
|
3820
|
+
[key: string]: any;
|
|
3821
|
+
};
|
|
3822
|
+
}[], ...args_2: unknown[]) => {
|
|
3823
|
+
id: GridRowId;
|
|
3824
|
+
model: {
|
|
3825
|
+
[key: string]: any;
|
|
3826
|
+
};
|
|
3827
|
+
}[]) & ((...args: any[]) => any) & {
|
|
3828
|
+
clearCache: () => void;
|
|
3829
|
+
}>, reselect.OutputSelector<[reselect.OutputSelector<[reselect.OutputSelector<[(state: GridState) => GridFilterState], Record<GridRowId, boolean>, never, ((args_0: GridFilterState, ...args_1: unknown[]) => Record<GridRowId, boolean>) & ((...args: any[]) => any) & {
|
|
3830
|
+
clearCache: () => void;
|
|
3831
|
+
}>, reselect.OutputSelector<[reselect.OutputSelector<[(state: GridState) => GridSortingState], GridRowId[], never, ((args_0: GridSortingState, ...args_1: unknown[]) => GridRowId[]) & ((...args: any[]) => any) & {
|
|
3832
|
+
clearCache: () => void;
|
|
3833
|
+
}>, reselect.OutputSelector<[(state: GridState) => GridRowsState], GridRowsLookup, never, ((args_0: GridRowsState, ...args_1: unknown[]) => GridRowsLookup) & ((...args: any[]) => any) & {
|
|
3834
|
+
clearCache: () => void;
|
|
3835
|
+
}>], {
|
|
3836
|
+
id: GridRowId;
|
|
3837
|
+
model: {
|
|
3838
|
+
[key: string]: any;
|
|
3839
|
+
};
|
|
3840
|
+
}[], never, ((args_0: GridRowId[], args_1: GridRowsLookup, ...args_2: unknown[]) => {
|
|
3841
|
+
id: GridRowId;
|
|
3842
|
+
model: {
|
|
3843
|
+
[key: string]: any;
|
|
3844
|
+
};
|
|
3845
|
+
}[]) & ((...args: any[]) => any) & {
|
|
3846
|
+
clearCache: () => void;
|
|
3847
|
+
}>], {
|
|
3848
|
+
id: GridRowId;
|
|
3849
|
+
model: {
|
|
3850
|
+
[key: string]: any;
|
|
3851
|
+
};
|
|
3852
|
+
}[], never, ((args_0: Record<GridRowId, boolean>, args_1: {
|
|
3853
|
+
id: GridRowId;
|
|
3854
|
+
model: {
|
|
3855
|
+
[key: string]: any;
|
|
3856
|
+
};
|
|
3857
|
+
}[], ...args_2: unknown[]) => {
|
|
3858
|
+
id: GridRowId;
|
|
3859
|
+
model: {
|
|
3860
|
+
[key: string]: any;
|
|
3861
|
+
};
|
|
3862
|
+
}[]) & ((...args: any[]) => any) & {
|
|
3863
|
+
clearCache: () => void;
|
|
3864
|
+
}>, reselect.OutputSelector<[(state: GridState) => GridRowsState], GridRowTreeConfig, never, ((args_0: GridRowsState, ...args_1: unknown[]) => GridRowTreeConfig) & ((...args: any[]) => any) & {
|
|
3865
|
+
clearCache: () => void;
|
|
3866
|
+
}>, reselect.OutputSelector<[(state: GridState) => GridRowsState], number, never, ((args_0: GridRowsState, ...args_1: unknown[]) => number) & ((...args: any[]) => any) & {
|
|
3867
|
+
clearCache: () => void;
|
|
3868
|
+
}>], {
|
|
3869
|
+
id: GridRowId;
|
|
3870
|
+
model: {
|
|
3871
|
+
[key: string]: any;
|
|
3872
|
+
};
|
|
3873
|
+
}[], never, ((args_0: {
|
|
3874
|
+
id: GridRowId;
|
|
3875
|
+
model: {
|
|
3876
|
+
[key: string]: any;
|
|
3877
|
+
};
|
|
3878
|
+
}[], args_1: GridRowTreeConfig, args_2: number, ...args_3: unknown[]) => {
|
|
3879
|
+
id: GridRowId;
|
|
3880
|
+
model: {
|
|
3881
|
+
[key: string]: any;
|
|
3882
|
+
};
|
|
3883
|
+
}[]) & ((...args: any[]) => any) & {
|
|
3884
|
+
clearCache: () => void;
|
|
3885
|
+
}>], {
|
|
3886
|
+
firstRowIndex: number;
|
|
3887
|
+
lastRowIndex: number;
|
|
3888
|
+
} | null, never, ((args_0: GridPaginationState, args_1: GridRowTreeConfig, args_2: number, args_3: {
|
|
3889
|
+
id: GridRowId;
|
|
3890
|
+
model: {
|
|
3891
|
+
[key: string]: any;
|
|
3892
|
+
};
|
|
3893
|
+
}[], args_4: {
|
|
3894
|
+
id: GridRowId;
|
|
3895
|
+
model: {
|
|
3896
|
+
[key: string]: any;
|
|
3897
|
+
};
|
|
3898
|
+
}[], ...args_5: unknown[]) => {
|
|
3899
|
+
firstRowIndex: number;
|
|
3900
|
+
lastRowIndex: number;
|
|
3901
|
+
} | null) & ((...args: any[]) => any) & {
|
|
3902
|
+
clearCache: () => void;
|
|
3903
|
+
}>], GridRowId[], never, ((args_0: GridRowId[], args_1: {
|
|
3904
|
+
firstRowIndex: number;
|
|
3905
|
+
lastRowIndex: number;
|
|
3906
|
+
} | null, ...args_2: unknown[]) => GridRowId[]) & ((...args: any[]) => any) & {
|
|
3907
|
+
clearCache: () => void;
|
|
3908
|
+
}>;
|
|
3909
|
+
|
|
3910
|
+
declare const gridPreferencePanelStateSelector: (state: GridState) => GridPreferencePanelState;
|
|
3911
|
+
|
|
3912
|
+
declare const gridSelectionStateSelector: (state: GridState) => GridSelectionModel;
|
|
3913
|
+
declare const selectedGridRowsCountSelector: reselect.OutputSelector<[(state: GridState) => GridSelectionModel], number, never, ((args_0: GridSelectionModel, ...args_1: unknown[]) => number) & ((...args: any[]) => any) & {
|
|
3914
|
+
clearCache: () => void;
|
|
3915
|
+
}>;
|
|
3916
|
+
declare const selectedGridRowsSelector: reselect.OutputSelector<[(state: GridState) => GridSelectionModel, reselect.OutputSelector<[(state: GridState) => GridRowsState], GridRowsLookup, never, ((args_0: GridRowsState, ...args_1: unknown[]) => GridRowsLookup) & ((...args: any[]) => any) & {
|
|
3917
|
+
clearCache: () => void;
|
|
3918
|
+
}>], Map<GridRowId, {
|
|
3919
|
+
[key: string]: any;
|
|
3920
|
+
}>, never, ((args_0: GridSelectionModel, args_1: GridRowsLookup, ...args_2: unknown[]) => Map<GridRowId, {
|
|
3921
|
+
[key: string]: any;
|
|
3922
|
+
}>) & ((...args: any[]) => any) & {
|
|
3923
|
+
clearCache: () => void;
|
|
3924
|
+
}>;
|
|
3925
|
+
declare const selectedIdsLookupSelector: reselect.OutputSelector<[(state: GridState) => GridSelectionModel], {}, never, ((args_0: GridSelectionModel, ...args_1: unknown[]) => {}) & ((...args: any[]) => any) & {
|
|
3926
|
+
clearCache: () => void;
|
|
3927
|
+
}>;
|
|
3928
|
+
|
|
3929
|
+
declare const gridSortedRowIdsSelector: reselect.OutputSelector<[(state: GridState) => GridSortingState], GridRowId[], never, ((args_0: GridSortingState, ...args_1: unknown[]) => GridRowId[]) & ((...args: any[]) => any) & {
|
|
3930
|
+
clearCache: () => void;
|
|
3931
|
+
}>;
|
|
3932
|
+
declare const gridSortedRowEntriesSelector: reselect.OutputSelector<[reselect.OutputSelector<[(state: GridState) => GridSortingState], GridRowId[], never, ((args_0: GridSortingState, ...args_1: unknown[]) => GridRowId[]) & ((...args: any[]) => any) & {
|
|
3933
|
+
clearCache: () => void;
|
|
3934
|
+
}>, reselect.OutputSelector<[(state: GridState) => GridRowsState], GridRowsLookup, never, ((args_0: GridRowsState, ...args_1: unknown[]) => GridRowsLookup) & ((...args: any[]) => any) & {
|
|
3935
|
+
clearCache: () => void;
|
|
3936
|
+
}>], {
|
|
3937
|
+
id: GridRowId;
|
|
3938
|
+
model: {
|
|
3939
|
+
[key: string]: any;
|
|
3940
|
+
};
|
|
3941
|
+
}[], never, ((args_0: GridRowId[], args_1: GridRowsLookup, ...args_2: unknown[]) => {
|
|
3942
|
+
id: GridRowId;
|
|
3943
|
+
model: {
|
|
3944
|
+
[key: string]: any;
|
|
3945
|
+
};
|
|
3946
|
+
}[]) & ((...args: any[]) => any) & {
|
|
3947
|
+
clearCache: () => void;
|
|
3948
|
+
}>;
|
|
3949
|
+
declare const gridSortModelSelector: reselect.OutputSelector<[(state: GridState) => GridSortingState], GridSortModel, never, ((args_0: GridSortingState, ...args_1: unknown[]) => GridSortModel) & ((...args: any[]) => any) & {
|
|
3950
|
+
clearCache: () => void;
|
|
3951
|
+
}>;
|
|
3952
|
+
declare type GridSortColumnLookup = Record<string, {
|
|
3953
|
+
sortDirection: GridSortDirection;
|
|
3954
|
+
sortIndex?: number;
|
|
3955
|
+
}>;
|
|
3956
|
+
declare const gridSortColumnLookupSelector: reselect.OutputSelector<[reselect.OutputSelector<[(state: GridState) => GridSortingState], GridSortModel, never, ((args_0: GridSortingState, ...args_1: unknown[]) => GridSortModel) & ((...args: any[]) => any) & {
|
|
3957
|
+
clearCache: () => void;
|
|
3958
|
+
}>], GridSortColumnLookup, never, ((args_0: GridSortModel, ...args_1: unknown[]) => GridSortColumnLookup) & ((...args: any[]) => any) & {
|
|
3959
|
+
clearCache: () => void;
|
|
3960
|
+
}>;
|
|
3961
|
+
|
|
3962
|
+
declare const gridRenderingSelector: (state: GridState) => GridRenderingState;
|
|
3963
|
+
declare const gridScrollSelector: reselect.OutputSelector<[(state: GridState) => GridRenderingState], GridScrollParams, never, ((args_0: GridRenderingState, ...args_1: unknown[]) => GridScrollParams) & ((...args: any[]) => any) & {
|
|
3964
|
+
clearCache: () => void;
|
|
3965
|
+
}>;
|
|
3966
|
+
|
|
3967
|
+
declare const useGridApi: (apiRef: GridApiRef) => GridApi;
|
|
3968
|
+
|
|
3969
|
+
declare function useGridApiContext(): GridApiRef;
|
|
3970
|
+
|
|
3971
|
+
/**
|
|
3972
|
+
* Signal to the underlying logic what version of the public component API
|
|
3973
|
+
* of the data grid is exposed.
|
|
3974
|
+
*/
|
|
3975
|
+
declare enum GridSignature {
|
|
3976
|
+
DataGrid = "DataGrid",
|
|
3977
|
+
DataGridPro = "DataGridPro"
|
|
3978
|
+
}
|
|
3979
|
+
declare function useGridApiEventHandler<Params, Event extends MuiEvent>(apiRef: GridApiRef, eventName: string, handler?: GridListener<Params, Event>, options?: GridSubscribeEventOptions): void;
|
|
3980
|
+
declare function useGridApiOptionHandler<Params, Event extends MuiEvent>(apiRef: GridApiRef, eventName: string, handler?: GridListener<Params, Event>): void;
|
|
3981
|
+
|
|
3084
3982
|
declare function useGridApiMethod<T extends Partial<GridApi>>(apiRef: GridApiRef, apiMethods: T, apiName: string): void;
|
|
3085
3983
|
|
|
3086
3984
|
declare function useGridApiRef(): GridApiRef;
|
|
@@ -3208,6 +4106,11 @@ interface GridSimpleOptions {
|
|
|
3208
4106
|
* @default false
|
|
3209
4107
|
*/
|
|
3210
4108
|
disableMultipleColumnsFiltering: boolean;
|
|
4109
|
+
/**
|
|
4110
|
+
* If `true`, the filtering will only be applied to the top level rows.
|
|
4111
|
+
* @default false
|
|
4112
|
+
*/
|
|
4113
|
+
disableChildrenFiltering: boolean;
|
|
3211
4114
|
/**
|
|
3212
4115
|
* If `true`, multiple selection using the CTRL or CMD key is disabled.
|
|
3213
4116
|
* @default false
|
|
@@ -3218,6 +4121,11 @@ interface GridSimpleOptions {
|
|
|
3218
4121
|
* @default false
|
|
3219
4122
|
*/
|
|
3220
4123
|
disableMultipleColumnsSorting: boolean;
|
|
4124
|
+
/**
|
|
4125
|
+
* If `true`, the sorting will only be applied to the top level rows.
|
|
4126
|
+
* @default false
|
|
4127
|
+
*/
|
|
4128
|
+
disableChildrenSorting: boolean;
|
|
3221
4129
|
/**
|
|
3222
4130
|
* If `true`, the selection on click on a row or cell is disabled.
|
|
3223
4131
|
* @default false
|
|
@@ -3641,6 +4549,7 @@ interface GridComponentOtherProps {
|
|
|
3641
4549
|
columnTypes?: GridColumnTypesRecord;
|
|
3642
4550
|
/**
|
|
3643
4551
|
* Set the total number of rows, if it is different than the length of the value `rows` prop.
|
|
4552
|
+
* If some of the rows have children (for instance in the tree data), this number represents the amount of top level rows.
|
|
3644
4553
|
*/
|
|
3645
4554
|
rowCount?: number;
|
|
3646
4555
|
/**
|
|
@@ -3876,6 +4785,7 @@ interface GridComponentOtherProps {
|
|
|
3876
4785
|
onPageChange?: (page: number, details: GridCallbackDetails) => void;
|
|
3877
4786
|
/**
|
|
3878
4787
|
* Set the number of rows in one page.
|
|
4788
|
+
* If some of the rows have children (for instance in the tree data), this number represents the amount of top level rows wanted on each page.
|
|
3879
4789
|
* @default 100
|
|
3880
4790
|
*/
|
|
3881
4791
|
pageSize?: number;
|
|
@@ -4005,6 +4915,8 @@ declare const faIR: Localization;
|
|
|
4005
4915
|
|
|
4006
4916
|
declare const frFR: Localization;
|
|
4007
4917
|
|
|
4918
|
+
declare const heIL: Localization;
|
|
4919
|
+
|
|
4008
4920
|
declare const itIT: Localization;
|
|
4009
4921
|
|
|
4010
4922
|
declare const jaJP: Localization;
|
|
@@ -4029,7 +4941,7 @@ declare const viVN: Localization;
|
|
|
4029
4941
|
|
|
4030
4942
|
declare const zhCN: Localization;
|
|
4031
4943
|
|
|
4032
|
-
declare const DataGrid: React$1.MemoExoticComponent<React$1.ForwardRefExoticComponent<Omit<GridInputComponentProps, "apiRef" | "checkboxSelectionVisibleOnly" | "disableColumnResize" | "disableColumnReorder" | "disableMultipleColumnsFiltering" | "disableMultipleColumnsSorting" | "disableMultipleSelection" | "throttleRowsMs" | "hideFooterRowCount" | "options" | "onRowsScrollEnd" | "scrollEndThreshold" | "signature"> & {
|
|
4944
|
+
declare const DataGrid: React$1.MemoExoticComponent<React$1.ForwardRefExoticComponent<Omit<GridInputComponentProps, "apiRef" | "checkboxSelectionVisibleOnly" | "disableColumnResize" | "disableColumnReorder" | "disableMultipleColumnsFiltering" | "disableMultipleColumnsSorting" | "disableMultipleSelection" | "disableChildrenFiltering" | "disableChildrenSorting" | "throttleRowsMs" | "hideFooterRowCount" | "options" | "onRowsScrollEnd" | "scrollEndThreshold" | "signature"> & {
|
|
4033
4945
|
pagination?: true | undefined;
|
|
4034
4946
|
} & React$1.RefAttributes<HTMLDivElement>>>;
|
|
4035
4947
|
|
|
@@ -4037,10 +4949,10 @@ declare const MAX_PAGE_SIZE = 100;
|
|
|
4037
4949
|
/**
|
|
4038
4950
|
* The grid component react props interface.
|
|
4039
4951
|
*/
|
|
4040
|
-
declare type DataGridProps = Omit<GridInputComponentProps, 'apiRef' | 'checkboxSelectionVisibleOnly' | 'disableColumnResize' | 'disableColumnReorder' | 'disableMultipleColumnsFiltering' | 'disableMultipleColumnsSorting' | 'disableMultipleSelection' | 'throttleRowsMs' | 'hideFooterRowCount' | 'options' | 'onRowsScrollEnd' | 'scrollEndThreshold' | 'signature'> & {
|
|
4952
|
+
declare type DataGridProps = Omit<GridInputComponentProps, 'apiRef' | 'checkboxSelectionVisibleOnly' | 'disableColumnResize' | 'disableColumnReorder' | 'disableMultipleColumnsFiltering' | 'disableMultipleColumnsSorting' | 'disableMultipleSelection' | 'disableChildrenFiltering' | 'disableChildrenSorting' | 'throttleRowsMs' | 'hideFooterRowCount' | 'options' | 'onRowsScrollEnd' | 'scrollEndThreshold' | 'signature'> & {
|
|
4041
4953
|
pagination?: true;
|
|
4042
4954
|
};
|
|
4043
4955
|
|
|
4044
4956
|
declare const useDataGridComponent: (apiRef: GridApiRef, props: GridComponentProps) => void;
|
|
4045
4957
|
|
|
4046
|
-
export { AutoSizerProps, AutoSizerSize, CursorCoordinates, DEFAULT_GRID_COL_TYPE_KEY, DataGrid, DataGridProps, ElementSize, GRID_ACTIONS_COL_DEF, GRID_BOOLEAN_COL_DEF, GRID_CHECKBOX_SELECTION_COL_DEF, GRID_DATETIME_COL_DEF, GRID_DATE_COL_DEF, GRID_DEFAULT_LOCALE_TEXT, GRID_EXPERIMENTAL_ENABLED, GRID_NUMERIC_COL_DEF, GRID_SINGLE_SELECT_COL_DEF, GRID_STRING_COL_DEF, GridActionsCell, GridActionsCellItem, GridActionsCellItemProps, GridActionsColDef, GridAddIcon, GridAlignment, GridApi, GridApiContext, GridApiRef, GridArrowDownwardIcon, GridArrowUpwardIcon, GridAutoSizer, GridBody, GridCallbackDetails, GridCell, GridCellCheckboxForwardRef, GridCellCheckboxRenderer, GridCellClassFn, GridCellClassNamePropType, GridCellEditCommitParams, GridCellIdentifier, GridCellIndexCoordinates, GridCellMode, GridCellModes, GridCellParams, GridCellProps, GridCellValue, GridCheckCircleIcon, GridCheckIcon, GridClassKey, GridClasses, GridClipboardApi, GridCloseIcon, GridColDef, GridColType, GridColTypeDef, GridColumnApi, GridColumnHeaderClassFn, GridColumnHeaderClassNamePropType, GridColumnHeaderIndexCoordinates, GridColumnHeaderItem, GridColumnHeaderMenu, GridColumnHeaderMenuProps, GridColumnHeaderParams, GridColumnHeaderSeparator, GridColumnHeaderSeparatorProps, GridColumnHeaderSortIcon, GridColumnHeaderSortIconProps, GridColumnHeaderTitle, GridColumnHeaderTitleProps, GridColumnHeadersItemCollection, GridColumnHeadersItemCollectionProps, GridColumnIcon, GridColumnIdentifier, GridColumnLookup, GridColumnMenu, GridColumnMenuApi, GridColumnMenuContainer, GridColumnMenuProps, GridColumnMenuState, GridColumnOrderChangeParams, GridColumnReorderState, GridColumnResizeParams, GridColumnResizeState, GridColumnTypesRecord, GridColumnVisibilityChangeParams, GridColumns, GridColumnsContainer, GridColumnsHeader, GridColumnsMenuItem, GridColumnsMeta, GridColumnsPanel, GridColumnsState, GridCommitCellChangeParams, GridComparatorFn, GridComponentProps, GridContainerProps, GridControlStateApi, GridCoreApi, GridCsvExportApi, GridCsvExportOptions, GridDensity, GridDensityApi, GridDensityOption, GridDensityState, GridDensityTypes, GridDisableVirtualizationApi, GridDragIcon, GridEditCellProps, GridEditCellPropsParams, GridEditCellValueParams, GridEditInputCell, GridEditMode, GridEditModes, GridEditRowApi, GridEditRowProps, GridEditRowsModel, GridEditSingleSelectCell, GridEnrichedColDef, GridErrorHandler, GridEvents, GridEventsApi, GridExportFormat, GridFeatureMode, GridFeatureModeConstant, GridFieldComparatorList, GridFilterActiveItemsLookup, GridFilterAltIcon, GridFilterApi, GridFilterForm, GridFilterFormProps, GridFilterInitialState, GridFilterInputValue, GridFilterInputValueProps, GridFilterItem, GridFilterItemProps, GridFilterListIcon, GridFilterMenuItem, GridFilterModel, GridFilterOperator, GridFilterPanel, GridFilterState, GridFocusApi, GridFocusState, GridFooter, GridFooterContainer, GridFooterContainerProps, GridFooterPlaceholder, GridHeader, GridHeaderCheckbox, GridHeaderPlaceholder, GridHeaderSelectionCheckboxParams, GridIconSlotsComponent, GridInitialState, GridInputComponentProps, GridInputSelectionModel, GridLinkOperator, GridLoadIcon, GridLoadingOverlay, GridLocaleText, GridLocaleTextApi, GridMenu, GridMenuIcon, GridMenuProps, GridMoreVertIcon, GridNativeColTypes, GridNoRowsOverlay, GridOverlay, GridOverlayProps, GridOverlays, GridPageApi, GridPageSizeApi, GridPagination, GridPaginationState, GridPanel, GridPanelClasses, GridPanelContent, GridPanelFooter, GridPanelHeader, GridPanelProps, GridPanelWrapper, GridParamsApi, GridPreferencePanelInitialState, GridPreferencePanelState, GridPreferencePanelsValue, GridPreferencesPanel, GridPreferencesPanelApi, GridPrintExportApi, GridPrintExportOptions, GridRenderCellParams, GridRenderColumnsProps, GridRenderContextProps, GridRenderEditCellParams, GridRenderPaginationProps, GridRenderRowProps, GridRenderingState, GridRoot, GridRootContainerRef, GridRootProps, GridRow, GridRowApi, GridRowCount, GridRowData, GridRowEntry, GridRowId, GridRowIdGetter, GridRowMode, GridRowModel, GridRowModelUpdate, GridRowModes, GridRowParams, GridRowProps, GridRowScrollEndParams, GridRowSelectionCheckboxParams, GridRowTreeConfig, GridRowTreeNodeConfig, GridRowsLookup, GridRowsProp, GridRowsState, GridSaveAltIcon, GridScrollApi, GridScrollArea, GridScrollBarState, GridScrollFn, GridScrollParams, GridSearchIcon, GridSelectedRowCount, GridSelectionApi, GridSelectionModel, GridSeparatorIcon, GridSignature, GridSlotsComponent, GridSlotsComponentsProps, GridSortApi, GridSortCellParams, GridSortColumnLookup, GridSortDirection, GridSortItem, GridSortModel, GridSortModelParams, GridSortingInitialState, GridSortingState, GridState, GridStateApi, GridStateChangeParams, GridStateColDef, GridTabIndexState, GridTableRowsIcon, GridToolbar, GridToolbarColumnsButton, GridToolbarContainer, GridToolbarContainerProps, GridToolbarDensitySelector, GridToolbarExport, GridToolbarExportProps, GridToolbarFilterButton, GridToolbarFilterButtonProps, GridTranslationKeys, GridTripleDotsVerticalIcon, GridTypeFilterInputValueProps, GridUpdateAction, GridValueFormatterParams, GridValueGetterParams, GridValueOptionsParams, GridValueSetterParams, GridViewHeadlineIcon, GridViewStreamIcon, GridViewportSizeState, HideGridColMenuItem, Logger, MAX_PAGE_SIZE, MuiEvent, SUBMIT_FILTER_STROKE_TIME, SortGridMenuItems, allGridColumnsFieldsSelector, allGridColumnsSelector, arSD, bgBG, checkGridRowIdIsValid, csCZ, deDE, elGR, enUS, esES, faIR, filterableGridColumnsIdsSelector, filterableGridColumnsSelector, frFR, getDataGridUtilityClass, getDefaultGridFilterModel, getGridBooleanOperators, getGridColDef, getGridDateOperators, getGridDefaultColumnTypes, getGridNumericColumnOperators, getGridSingleSelectOperators, getGridStringOperators, gridClasses, gridColumnLookupSelector, gridColumnMenuSelector, gridColumnReorderDragColSelector, gridColumnReorderSelector, gridColumnResizeSelector, gridColumnsMetaSelector, gridColumnsSelector, gridColumnsTotalWidthSelector, gridDateFormatter, gridDateTimeFormatter, gridDensityHeaderHeightSelector, gridDensityRowHeightSelector, gridDensitySelector, gridDensityValueSelector, gridEditRowsStateSelector, gridFilterActiveItemsLookupSelector, gridFilterActiveItemsSelector, gridFilterModelSelector, gridFilterStateSelector, gridFocusCellSelector, gridFocusColumnHeaderSelector, gridFocusStateSelector, gridPageSelector, gridPageSizeSelector, gridPaginatedVisibleSortedGridRowIdsSelector, gridPaginationSelector, gridPanelClasses, gridPreferencePanelStateSelector, gridRenderingSelector, gridResizingColumnFieldSelector, gridRowCountSelector, gridRowIdsSelector, gridRowsLookupSelector, gridRowsStateSelector, gridScrollSelector, gridSelectionStateSelector, gridSortColumnLookupSelector, gridSortModelSelector, gridSortedRowEntriesSelector, gridSortedRowIdsSelector, gridTabIndexCellSelector, gridTabIndexColumnHeaderSelector, gridTabIndexStateSelector,
|
|
4958
|
+
export { AutoSizerProps, AutoSizerSize, CursorCoordinates, DEFAULT_GRID_COL_TYPE_KEY, DataGrid, DataGridProps, ElementSize, GRID_ACTIONS_COL_DEF, GRID_BOOLEAN_COL_DEF, GRID_CHECKBOX_SELECTION_COL_DEF, GRID_DATETIME_COL_DEF, GRID_DATE_COL_DEF, GRID_DEFAULT_LOCALE_TEXT, GRID_EXPERIMENTAL_ENABLED, GRID_NUMERIC_COL_DEF, GRID_SINGLE_SELECT_COL_DEF, GRID_STRING_COL_DEF, GridActionsCell, GridActionsCellItem, GridActionsCellItemProps, GridActionsColDef, GridAddIcon, GridAlignment, GridApi, GridApiContext, GridApiRef, GridArrowDownwardIcon, GridArrowUpwardIcon, GridAutoSizer, GridBody, GridCallbackDetails, GridCell, GridCellCheckboxForwardRef, GridCellCheckboxRenderer, GridCellClassFn, GridCellClassNamePropType, GridCellEditCommitParams, GridCellIdentifier, GridCellIndexCoordinates, GridCellMode, GridCellModes, GridCellParams, GridCellProps, GridCellValue, GridCheckCircleIcon, GridCheckIcon, GridClassKey, GridClasses, GridClipboardApi, GridCloseIcon, GridColDef, GridColDefOverride, GridColDefOverrideCallback, GridColDefOverrideParams, GridColType, GridColTypeDef, GridColumnApi, GridColumnHeaderClassFn, GridColumnHeaderClassNamePropType, GridColumnHeaderIndexCoordinates, GridColumnHeaderItem, GridColumnHeaderMenu, GridColumnHeaderMenuProps, GridColumnHeaderParams, GridColumnHeaderSeparator, GridColumnHeaderSeparatorProps, GridColumnHeaderSortIcon, GridColumnHeaderSortIconProps, GridColumnHeaderTitle, GridColumnHeaderTitleProps, GridColumnHeadersItemCollection, GridColumnHeadersItemCollectionProps, GridColumnIcon, GridColumnIdentifier, GridColumnLookup, GridColumnMenu, GridColumnMenuApi, GridColumnMenuContainer, GridColumnMenuProps, GridColumnMenuState, GridColumnOrderChangeParams, GridColumnReorderState, GridColumnResizeParams, GridColumnResizeState, GridColumnTypesRecord, GridColumnVisibilityChangeParams, GridColumns, GridColumnsContainer, GridColumnsHeader, GridColumnsMenuItem, GridColumnsMeta, GridColumnsPanel, GridColumnsState, GridCommitCellChangeParams, GridComparatorFn, GridComponentProps, GridContainerProps, GridControlStateApi, GridCoreApi, GridCsvExportApi, GridCsvExportOptions, GridDensity, GridDensityApi, GridDensityOption, GridDensityState, GridDensityTypes, GridDisableVirtualizationApi, GridDragIcon, GridEditCellProps, GridEditCellPropsParams, GridEditCellValueParams, GridEditInputCell, GridEditMode, GridEditModes, GridEditRowApi, GridEditRowProps, GridEditRowsModel, GridEditSingleSelectCell, GridEnrichedColDef, GridErrorHandler, GridEvents, GridEventsApi, GridExportFormat, GridFeatureMode, GridFeatureModeConstant, GridFieldComparatorList, GridFilterActiveItemsLookup, GridFilterAltIcon, GridFilterApi, GridFilterForm, GridFilterFormProps, GridFilterInitialState, GridFilterInputValue, GridFilterInputValueProps, GridFilterItem, GridFilterItemProps, GridFilterListIcon, GridFilterMenuItem, GridFilterModel, GridFilterOperator, GridFilterPanel, GridFilterState, GridFocusApi, GridFocusState, GridFooter, GridFooterContainer, GridFooterContainerProps, GridFooterPlaceholder, GridHeader, GridHeaderCheckbox, GridHeaderPlaceholder, GridHeaderSelectionCheckboxParams, GridIconButtonContainer, GridIconButtonContainerProps, GridIconSlotsComponent, GridInitialState, GridInputComponentProps, GridInputSelectionModel, GridLinkOperator, GridLoadIcon, GridLoadingOverlay, GridLocaleText, GridLocaleTextApi, GridMenu, GridMenuIcon, GridMenuProps, GridMoreVertIcon, GridNativeColTypes, GridNoRowsOverlay, GridOverlay, GridOverlayProps, GridOverlays, GridPageApi, GridPageSizeApi, GridPagination, GridPaginationState, GridPanel, GridPanelClasses, GridPanelContent, GridPanelFooter, GridPanelHeader, GridPanelProps, GridPanelWrapper, GridParamsApi, GridPreferencePanelInitialState, GridPreferencePanelState, GridPreferencePanelsValue, GridPreferencesPanel, GridPreferencesPanelApi, GridPrintExportApi, GridPrintExportOptions, GridRenderCellParams, GridRenderColumnsProps, GridRenderContextProps, GridRenderEditCellParams, GridRenderPaginationProps, GridRenderRowProps, GridRenderingState, GridRoot, GridRootContainerRef, GridRootProps, GridRow, GridRowApi, GridRowCount, GridRowData, GridRowEntry, GridRowId, GridRowIdGetter, GridRowMode, GridRowModel, GridRowModelUpdate, GridRowModes, GridRowParams, GridRowProps, GridRowScrollEndParams, GridRowSelectionCheckboxParams, GridRowTreeConfig, GridRowTreeNodeConfig, GridRowsLookup, GridRowsProp, GridRowsState, GridSaveAltIcon, GridScrollApi, GridScrollArea, GridScrollBarState, GridScrollFn, GridScrollParams, GridSearchIcon, GridSelectedRowCount, GridSelectionApi, GridSelectionModel, GridSeparatorIcon, GridSignature, GridSlotsComponent, GridSlotsComponentsProps, GridSortApi, GridSortCellParams, GridSortColumnLookup, GridSortDirection, GridSortItem, GridSortModel, GridSortModelParams, GridSortingInitialState, GridSortingState, GridState, GridStateApi, GridStateChangeParams, GridStateColDef, GridTabIndexState, GridTableRowsIcon, GridToolbar, GridToolbarColumnsButton, GridToolbarContainer, GridToolbarContainerProps, GridToolbarDensitySelector, GridToolbarExport, GridToolbarExportProps, GridToolbarFilterButton, GridToolbarFilterButtonProps, GridTranslationKeys, GridTripleDotsVerticalIcon, GridTypeFilterInputValueProps, GridUpdateAction, GridValueFormatterParams, GridValueGetterParams, GridValueOptionsParams, GridValueSetterParams, GridViewHeadlineIcon, GridViewStreamIcon, GridViewportSizeState, HideGridColMenuItem, Logger, MAX_PAGE_SIZE, MuiEvent, SUBMIT_FILTER_STROKE_TIME, SortGridMenuItems, allGridColumnsFieldsSelector, allGridColumnsSelector, arSD, bgBG, checkGridRowIdIsValid, csCZ, deDE, elGR, enUS, esES, faIR, filterableGridColumnsIdsSelector, filterableGridColumnsSelector, frFR, getDataGridUtilityClass, getDefaultGridFilterModel, getGridBooleanOperators, getGridColDef, getGridDateOperators, getGridDefaultColumnTypes, getGridNumericColumnOperators, getGridSingleSelectOperators, getGridStringOperators, gridClasses, gridColumnLookupSelector, gridColumnMenuSelector, gridColumnReorderDragColSelector, gridColumnReorderSelector, gridColumnResizeSelector, gridColumnsMetaSelector, gridColumnsSelector, gridColumnsTotalWidthSelector, gridDateFormatter, gridDateTimeFormatter, gridDensityHeaderHeightSelector, gridDensityRowHeightSelector, gridDensitySelector, gridDensityValueSelector, gridEditRowsStateSelector, gridFilterActiveItemsLookupSelector, gridFilterActiveItemsSelector, gridFilterModelSelector, gridFilterStateSelector, gridFilteredDescendantCountLookupSelector, gridFocusCellSelector, gridFocusColumnHeaderSelector, gridFocusStateSelector, gridPageSelector, gridPageSizeSelector, gridPaginatedVisibleSortedGridRowEntriesSelector, gridPaginatedVisibleSortedGridRowIdsSelector, gridPaginationRowRangeSelector, gridPaginationSelector, gridPanelClasses, gridPreferencePanelStateSelector, gridRenderingSelector, gridResizingColumnFieldSelector, gridRowCountSelector, gridRowIdsSelector, gridRowTreeDepthSelector, gridRowTreeSelector, gridRowsLookupSelector, gridRowsStateSelector, gridScrollSelector, gridSelectionStateSelector, gridSortColumnLookupSelector, gridSortModelSelector, gridSortedRowEntriesSelector, gridSortedRowIdsSelector, gridTabIndexCellSelector, gridTabIndexColumnHeaderSelector, gridTabIndexStateSelector, gridTopLevelRowCountSelector, gridVisibleRowCountSelector, gridVisibleRowsLookupSelector, gridVisibleRowsSelector, gridVisibleSortedRowEntriesSelector, gridVisibleSortedRowIdsSelector, gridVisibleSortedTopLevelRowEntriesSelector, gridVisibleTopLevelRowCountSelector, heIL, itIT, jaJP, koKR, nlNL, plPL, ptBR, renderActionsCell, renderEditInputCell, renderEditSingleSelectCell, ruRU, selectedGridRowsCountSelector, selectedGridRowsSelector, selectedIdsLookupSelector, skSK, trTR, ukUA, useDataGridComponent, useGridApi, useGridApiContext, useGridApiEventHandler, useGridApiMethod, useGridApiOptionHandler, useGridApiRef, useGridLogger, useGridNativeEventListener, useGridProcessedProps, useGridRootProps, useGridScrollFn, useGridSelector, useGridState, viVN, visibleGridColumnsLengthSelector, visibleGridColumnsSelector, zhCN };
|