@redsift/table 12.5.1 → 12.5.2-muiv6-alpha.2
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/_internal/BaseComponents.js +1 -1
- package/_internal/BasePopper.js +2449 -0
- package/_internal/BasePopper.js.map +1 -0
- package/_internal/ControlledPagination.js +10538 -0
- package/_internal/ControlledPagination.js.map +1 -0
- package/_internal/DataGrid2.js +76 -115
- package/_internal/DataGrid2.js.map +1 -1
- package/_internal/GridToolbarFilterSemanticField2.js +3 -1340
- package/_internal/GridToolbarFilterSemanticField2.js.map +1 -1
- package/_internal/Pagination.js +1 -1
- package/_internal/Portal.js +4363 -0
- package/_internal/Portal.js.map +1 -0
- package/_internal/StatefulDataGrid.js +1 -1
- package/_internal/StatefulDataGrid2.js +1505 -761
- package/_internal/StatefulDataGrid2.js.map +1 -1
- package/_internal/Toolbar2.js +6 -23
- package/_internal/Toolbar2.js.map +1 -1
- package/_internal/ToolbarWrapper2.js +1 -1
- package/_internal/jsx-runtime.js +1342 -0
- package/_internal/jsx-runtime.js.map +1 -0
- package/_internal/useControlledDatagridState.js +211 -13
- package/_internal/useControlledDatagridState.js.map +1 -1
- package/index.d.ts +350 -500
- package/index.js +15 -46
- package/index.js.map +1 -1
- package/package.json +10 -9
- package/_internal/BaseIconButton.js +0 -126
- package/_internal/BaseIconButton.js.map +0 -1
- package/_internal/ServerSideControlledPagination.js +0 -318
- package/_internal/ServerSideControlledPagination.js.map +0 -1
package/index.d.ts
CHANGED
|
@@ -1,18 +1,89 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
import
|
|
1
|
+
import * as _mui_x_data_grid_pro from '@mui/x-data-grid-pro';
|
|
2
|
+
import { GridColumnTypesRecord, GridColDef, GridFilterOperator, GridFilterItem, GridCellParams, GridFilterInputValue, GridFilterInputSingleSelect, GridFilterInputMultipleValue, GridFilterInputMultipleSingleSelect, DataGridProProps, GridFilterModel, GridPaginationModel, GridSortModel, GridSortItem, GridColumnVisibilityModel, GridPinnedColumns, GridSlotsComponent, GridApiPro as GridApiPro$1, GridRowParams, GridRowSelectionModel, GridToolbarExportProps, GridToolbarFilterButtonProps, GridToolbarColumnsButton, GridToolbarDensitySelector } from '@mui/x-data-grid-pro';
|
|
3
|
+
export { GridAlignment, GridColDef, GridFilterItem, GridFilterModel, getGridBooleanOperators, getGridDateOperators, getGridSingleSelectOperators } from '@mui/x-data-grid-pro';
|
|
4
|
+
import { GridInitialStatePro } from '@mui/x-data-grid-pro/models/gridStatePro';
|
|
5
|
+
import React, { ReactNode, ComponentProps, MutableRefObject, RefObject } from 'react';
|
|
5
6
|
import { TablePaginationProps } from '@mui/material';
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
declare const
|
|
10
|
-
|
|
11
|
-
declare const
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
declare const
|
|
7
|
+
import { Theme, Comp, IconProps, NotificationsColorPalette, ProductColorPalette, ShieldVariant } from '@redsift/design-system';
|
|
8
|
+
import { GridApiPro } from '@mui/x-data-grid-pro/models/gridApiPro';
|
|
9
|
+
|
|
10
|
+
declare const DETAIL_PANEL_TOGGLE_COL_DEF: _mui_x_data_grid_pro.GridColDef;
|
|
11
|
+
|
|
12
|
+
declare const getRsStringColumnType: () => {
|
|
13
|
+
type: string;
|
|
14
|
+
filterOperators: _mui_x_data_grid_pro.GridFilterOperator<any, string | number | null, any>[];
|
|
15
|
+
};
|
|
16
|
+
declare const getRsNumberColumnType: () => {
|
|
17
|
+
type: string;
|
|
18
|
+
filterOperators: _mui_x_data_grid_pro.GridFilterOperator<any, string | number | null, any>[];
|
|
19
|
+
};
|
|
20
|
+
declare const getRsSingleSelectColumnType: () => {
|
|
21
|
+
type: string;
|
|
22
|
+
filterOperators: ({
|
|
23
|
+
InputComponent: typeof _mui_x_data_grid_pro.GridFilterInputSingleSelect;
|
|
24
|
+
label: string;
|
|
25
|
+
value: string;
|
|
26
|
+
getApplyFilterFn: (filterItem: _mui_x_data_grid_pro.GridFilterItem) => ((params: _mui_x_data_grid_pro.GridCellParams) => boolean) | null;
|
|
27
|
+
} | {
|
|
28
|
+
label: string;
|
|
29
|
+
value: string;
|
|
30
|
+
getApplyFilterFn: (filterItem: _mui_x_data_grid_pro.GridFilterItem) => ((params: _mui_x_data_grid_pro.GridCellParams) => boolean) | null;
|
|
31
|
+
InputComponent: typeof _mui_x_data_grid_pro.GridFilterInputMultipleValue;
|
|
32
|
+
} | {
|
|
33
|
+
InputComponent: typeof _mui_x_data_grid_pro.GridFilterInputMultipleSingleSelect;
|
|
34
|
+
label: string;
|
|
35
|
+
value: string;
|
|
36
|
+
getApplyFilterFn: (filterItem: _mui_x_data_grid_pro.GridFilterItem) => ((params: _mui_x_data_grid_pro.GridCellParams) => boolean) | null;
|
|
37
|
+
})[];
|
|
38
|
+
};
|
|
39
|
+
declare const getRsSingleSelectWithShortOperatorListColumnType: () => {
|
|
40
|
+
type: string;
|
|
41
|
+
filterOperators: ({
|
|
42
|
+
InputComponent: typeof _mui_x_data_grid_pro.GridFilterInputSingleSelect;
|
|
43
|
+
label: string;
|
|
44
|
+
value: string;
|
|
45
|
+
getApplyFilterFn: (filterItem: _mui_x_data_grid_pro.GridFilterItem) => ((params: _mui_x_data_grid_pro.GridCellParams) => boolean) | null;
|
|
46
|
+
} | {
|
|
47
|
+
InputComponent: typeof _mui_x_data_grid_pro.GridFilterInputMultipleSingleSelect;
|
|
48
|
+
label: string;
|
|
49
|
+
value: string;
|
|
50
|
+
getApplyFilterFn: (filterItem: _mui_x_data_grid_pro.GridFilterItem) => ((params: _mui_x_data_grid_pro.GridCellParams) => boolean) | null;
|
|
51
|
+
})[];
|
|
52
|
+
};
|
|
53
|
+
declare const getRsMultipleSelectColumnType: () => {
|
|
54
|
+
type: string;
|
|
55
|
+
filterOperators: ({
|
|
56
|
+
InputComponent: typeof _mui_x_data_grid_pro.GridFilterInputSingleSelect;
|
|
57
|
+
label: string;
|
|
58
|
+
value: string;
|
|
59
|
+
getApplyFilterFn: (filterItem: _mui_x_data_grid_pro.GridFilterItem) => ((params: _mui_x_data_grid_pro.GridCellParams) => boolean) | null;
|
|
60
|
+
} | {
|
|
61
|
+
InputComponent: typeof _mui_x_data_grid_pro.GridFilterInputMultipleSingleSelect;
|
|
62
|
+
label: string;
|
|
63
|
+
value: string;
|
|
64
|
+
getApplyFilterFn: (filterItem: _mui_x_data_grid_pro.GridFilterItem) => ((params: _mui_x_data_grid_pro.GridCellParams) => boolean) | null;
|
|
65
|
+
} | {
|
|
66
|
+
label: string;
|
|
67
|
+
value: string;
|
|
68
|
+
getApplyFilterFn: (_filterItem: _mui_x_data_grid_pro.GridFilterItem) => (params: _mui_x_data_grid_pro.GridCellParams) => boolean;
|
|
69
|
+
requiresFilterValue: boolean;
|
|
70
|
+
})[];
|
|
71
|
+
};
|
|
72
|
+
declare const getRsMultipleSelectWithShortOperatorListColumnType: () => {
|
|
73
|
+
type: string;
|
|
74
|
+
filterOperators: ({
|
|
75
|
+
InputComponent: typeof _mui_x_data_grid_pro.GridFilterInputSingleSelect;
|
|
76
|
+
label: string;
|
|
77
|
+
value: string;
|
|
78
|
+
getApplyFilterFn: (filterItem: _mui_x_data_grid_pro.GridFilterItem) => ((params: _mui_x_data_grid_pro.GridCellParams) => boolean) | null;
|
|
79
|
+
} | {
|
|
80
|
+
InputComponent: typeof _mui_x_data_grid_pro.GridFilterInputMultipleSingleSelect;
|
|
81
|
+
label: string;
|
|
82
|
+
value: string;
|
|
83
|
+
getApplyFilterFn: (filterItem: _mui_x_data_grid_pro.GridFilterItem) => ((params: _mui_x_data_grid_pro.GridCellParams) => boolean) | null;
|
|
84
|
+
})[];
|
|
85
|
+
};
|
|
86
|
+
declare const customColumnTypes: Partial<GridColumnTypesRecord>;
|
|
16
87
|
|
|
17
88
|
type StringOperatorName = 'contains' | 'doesNotContain' | 'equals' | 'doesNotEqual' | 'startsWith' | 'doesNotStartWith' | 'endsWith' | 'doesNotEndWith' | 'isEmpty' | 'isNotEmpty' | 'isAnyOf' | 'isNotAnyOf' | 'containsAnyOf' | 'doesNotContainAnyOf' | 'startsWithAnyOf' | 'doesNotStartWithAnyOf' | 'endsWithAnyOf' | 'doesNotEndWithAnyOf';
|
|
18
89
|
type NumberOperatorName = '=' | '!=' | '>' | '>=' | '<' | '<=' | 'isEmpty' | 'isNotEmpty' | 'isBetween';
|
|
@@ -54,174 +125,242 @@ type ColumnOptions<T extends ColumnType> = T extends 'string' ? StringColumnOpti
|
|
|
54
125
|
*/
|
|
55
126
|
declare function createColumn<T extends ColumnType>(type: T, options?: ColumnOptions<T>): Partial<GridColDef>;
|
|
56
127
|
|
|
57
|
-
declare const ARRAY_IS_EMPTY:
|
|
58
|
-
|
|
128
|
+
declare const ARRAY_IS_EMPTY: {
|
|
129
|
+
label: string;
|
|
130
|
+
value: string;
|
|
131
|
+
getApplyFilterFn: (_filterItem: GridFilterItem) => (params: GridCellParams) => boolean;
|
|
132
|
+
requiresFilterValue: boolean;
|
|
133
|
+
};
|
|
134
|
+
declare const ARRAY_IS_NOT_EMPTY: {
|
|
135
|
+
label: string;
|
|
136
|
+
value: string;
|
|
137
|
+
getApplyFilterFn: (_filterItem: GridFilterItem) => (params: GridCellParams) => boolean;
|
|
138
|
+
requiresFilterValue: boolean;
|
|
139
|
+
};
|
|
59
140
|
|
|
60
|
-
declare const DATE_IS_BETWEEN:
|
|
141
|
+
declare const DATE_IS_BETWEEN: {
|
|
142
|
+
label: string;
|
|
143
|
+
value: string;
|
|
144
|
+
getApplyFilterFn: (filterItem: GridFilterItem) => ((params: GridCellParams<any, any>) => boolean) | null;
|
|
145
|
+
InputComponent: (props: any) => JSX.Element;
|
|
146
|
+
};
|
|
61
147
|
|
|
62
148
|
declare const getGridDateOperatorsExtended: (showTime?: boolean) => GridFilterOperator[];
|
|
63
149
|
|
|
64
|
-
declare const IS_BETWEEN:
|
|
150
|
+
declare const IS_BETWEEN: {
|
|
151
|
+
label: string;
|
|
152
|
+
value: string;
|
|
153
|
+
getApplyFilterFn: (filterItem: GridFilterItem) => ((params: GridCellParams<any, any>) => boolean) | null;
|
|
154
|
+
InputComponent: (props: any) => JSX.Element;
|
|
155
|
+
};
|
|
65
156
|
|
|
66
|
-
declare const getGridNumericOperators: () => GridFilterOperator<any,
|
|
157
|
+
declare const getGridNumericOperators: () => GridFilterOperator<any, number | string | null, any>[];
|
|
67
158
|
|
|
68
|
-
declare const DOES_NOT_CONTAIN:
|
|
159
|
+
declare const DOES_NOT_CONTAIN: {
|
|
160
|
+
label: string;
|
|
161
|
+
value: string;
|
|
162
|
+
getApplyFilterFn: (filterItem: GridFilterItem) => ((params: GridCellParams) => boolean) | null;
|
|
163
|
+
InputComponent: typeof GridFilterInputValue;
|
|
164
|
+
};
|
|
69
165
|
|
|
70
|
-
declare const DOES_NOT_END_WITH:
|
|
166
|
+
declare const DOES_NOT_END_WITH: {
|
|
167
|
+
label: string;
|
|
168
|
+
value: string;
|
|
169
|
+
getApplyFilterFn: (filterItem: GridFilterItem) => ((params: GridCellParams) => boolean) | null;
|
|
170
|
+
InputComponent: typeof GridFilterInputValue;
|
|
171
|
+
};
|
|
71
172
|
|
|
72
|
-
declare const DOES_NOT_EQUAL:
|
|
173
|
+
declare const DOES_NOT_EQUAL: {
|
|
174
|
+
label: string;
|
|
175
|
+
value: string;
|
|
176
|
+
getApplyFilterFn: (filterItem: GridFilterItem) => ((params: GridCellParams) => boolean) | null;
|
|
177
|
+
InputComponent: typeof GridFilterInputValue;
|
|
178
|
+
};
|
|
73
179
|
|
|
74
|
-
declare const DOES_NOT_HAVE:
|
|
180
|
+
declare const DOES_NOT_HAVE: {
|
|
181
|
+
label: string;
|
|
182
|
+
value: string;
|
|
183
|
+
getApplyFilterFn: (filterItem: GridFilterItem) => ((params: GridCellParams) => boolean) | null;
|
|
184
|
+
InputComponent: typeof GridFilterInputValue;
|
|
185
|
+
};
|
|
75
186
|
declare const DOES_NOT_HAVE_WITH_SELECT: {
|
|
76
187
|
InputComponent: typeof GridFilterInputSingleSelect;
|
|
77
|
-
label
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
getApplyFilterFn: _mui_x_data_grid.GetApplyFilterFn<any, string | string[], any>;
|
|
81
|
-
InputComponentProps?: Partial<_mui_x_data_grid.GridFilterInputValueProps> | undefined;
|
|
82
|
-
getValueAsString?: (value: _mui_x_data_grid.GridFilterItem["value"]) => string;
|
|
83
|
-
requiresFilterValue?: boolean;
|
|
188
|
+
label: string;
|
|
189
|
+
value: string;
|
|
190
|
+
getApplyFilterFn: (filterItem: GridFilterItem) => ((params: GridCellParams) => boolean) | null;
|
|
84
191
|
};
|
|
85
192
|
|
|
86
|
-
declare const DOES_NOT_START_WITH:
|
|
193
|
+
declare const DOES_NOT_START_WITH: {
|
|
194
|
+
label: string;
|
|
195
|
+
value: string;
|
|
196
|
+
getApplyFilterFn: (filterItem: GridFilterItem) => ((params: GridCellParams) => boolean) | null;
|
|
197
|
+
InputComponent: typeof GridFilterInputValue;
|
|
198
|
+
};
|
|
87
199
|
|
|
88
|
-
declare const HAS:
|
|
200
|
+
declare const HAS: {
|
|
201
|
+
label: string;
|
|
202
|
+
value: string;
|
|
203
|
+
getApplyFilterFn: (filterItem: GridFilterItem) => ((params: GridCellParams) => boolean) | null;
|
|
204
|
+
InputComponent: typeof GridFilterInputValue;
|
|
205
|
+
};
|
|
89
206
|
declare const HAS_WITH_SELECT: {
|
|
90
207
|
InputComponent: typeof GridFilterInputSingleSelect;
|
|
91
|
-
label
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
getApplyFilterFn: _mui_x_data_grid.GetApplyFilterFn<any, string | string[], any>;
|
|
95
|
-
InputComponentProps?: Partial<_mui_x_data_grid.GridFilterInputValueProps> | undefined;
|
|
96
|
-
getValueAsString?: (value: _mui_x_data_grid.GridFilterItem["value"]) => string;
|
|
97
|
-
requiresFilterValue?: boolean;
|
|
208
|
+
label: string;
|
|
209
|
+
value: string;
|
|
210
|
+
getApplyFilterFn: (filterItem: GridFilterItem) => ((params: GridCellParams) => boolean) | null;
|
|
98
211
|
};
|
|
99
212
|
|
|
100
|
-
declare const HAS_ONLY:
|
|
213
|
+
declare const HAS_ONLY: {
|
|
214
|
+
label: string;
|
|
215
|
+
value: string;
|
|
216
|
+
getApplyFilterFn: (filterItem: GridFilterItem) => ((params: GridCellParams) => boolean) | null;
|
|
217
|
+
InputComponent: typeof GridFilterInputValue;
|
|
218
|
+
};
|
|
101
219
|
declare const HAS_ONLY_WITH_SELECT: {
|
|
102
220
|
InputComponent: typeof GridFilterInputSingleSelect;
|
|
103
|
-
label
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
getApplyFilterFn: _mui_x_data_grid.GetApplyFilterFn<any, string | string[], any>;
|
|
107
|
-
InputComponentProps?: Partial<_mui_x_data_grid.GridFilterInputValueProps> | undefined;
|
|
108
|
-
getValueAsString?: (value: _mui_x_data_grid.GridFilterItem["value"]) => string;
|
|
109
|
-
requiresFilterValue?: boolean;
|
|
221
|
+
label: string;
|
|
222
|
+
value: string;
|
|
223
|
+
getApplyFilterFn: (filterItem: GridFilterItem) => ((params: GridCellParams) => boolean) | null;
|
|
110
224
|
};
|
|
111
225
|
|
|
112
|
-
declare const IS:
|
|
226
|
+
declare const IS: {
|
|
227
|
+
label: string;
|
|
228
|
+
value: string;
|
|
229
|
+
getApplyFilterFn: (filterItem: GridFilterItem) => ((params: GridCellParams) => boolean) | null;
|
|
230
|
+
InputComponent: typeof GridFilterInputValue;
|
|
231
|
+
};
|
|
113
232
|
declare const IS_WITH_SELECT: {
|
|
114
233
|
InputComponent: typeof GridFilterInputSingleSelect;
|
|
115
|
-
label
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
getApplyFilterFn: _mui_x_data_grid.GetApplyFilterFn<any, string | string[], any>;
|
|
119
|
-
InputComponentProps?: Partial<_mui_x_data_grid.GridFilterInputValueProps> | undefined;
|
|
120
|
-
getValueAsString?: (value: _mui_x_data_grid.GridFilterItem["value"]) => string;
|
|
121
|
-
requiresFilterValue?: boolean;
|
|
234
|
+
label: string;
|
|
235
|
+
value: string;
|
|
236
|
+
getApplyFilterFn: (filterItem: GridFilterItem) => ((params: GridCellParams) => boolean) | null;
|
|
122
237
|
};
|
|
123
238
|
|
|
124
|
-
declare const IS_NOT:
|
|
239
|
+
declare const IS_NOT: {
|
|
240
|
+
label: string;
|
|
241
|
+
value: string;
|
|
242
|
+
getApplyFilterFn: (filterItem: GridFilterItem) => ((params: GridCellParams) => boolean) | null;
|
|
243
|
+
InputComponent: typeof GridFilterInputValue;
|
|
244
|
+
};
|
|
125
245
|
declare const IS_NOT_WITH_SELECT: {
|
|
126
246
|
InputComponent: typeof GridFilterInputSingleSelect;
|
|
127
|
-
label
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
getApplyFilterFn: _mui_x_data_grid.GetApplyFilterFn<any, string | string[], any>;
|
|
131
|
-
InputComponentProps?: Partial<_mui_x_data_grid.GridFilterInputValueProps> | undefined;
|
|
132
|
-
getValueAsString?: (value: _mui_x_data_grid.GridFilterItem["value"]) => string;
|
|
133
|
-
requiresFilterValue?: boolean;
|
|
247
|
+
label: string;
|
|
248
|
+
value: string;
|
|
249
|
+
getApplyFilterFn: (filterItem: GridFilterItem) => ((params: GridCellParams) => boolean) | null;
|
|
134
250
|
};
|
|
135
251
|
|
|
136
|
-
declare const getGridStringOperators: () => GridFilterOperator<any,
|
|
252
|
+
declare const getGridStringOperators: () => GridFilterOperator<any, number | string | null, any>[];
|
|
137
253
|
|
|
138
|
-
declare const CONTAINS_ANY_OF:
|
|
254
|
+
declare const CONTAINS_ANY_OF: {
|
|
255
|
+
label: string;
|
|
256
|
+
value: string;
|
|
257
|
+
getApplyFilterFn: (filterItem: GridFilterItem) => ((params: GridCellParams) => boolean) | null;
|
|
258
|
+
InputComponent: typeof GridFilterInputMultipleValue;
|
|
259
|
+
};
|
|
139
260
|
|
|
140
|
-
declare const DOES_NOT_CONTAIN_ANY_OF:
|
|
261
|
+
declare const DOES_NOT_CONTAIN_ANY_OF: {
|
|
262
|
+
label: string;
|
|
263
|
+
value: string;
|
|
264
|
+
getApplyFilterFn: (filterItem: GridFilterItem) => ((params: GridCellParams) => boolean) | null;
|
|
265
|
+
InputComponent: typeof GridFilterInputMultipleValue;
|
|
266
|
+
};
|
|
141
267
|
|
|
142
|
-
declare const DOES_NOT_END_WITH_ANY_OF:
|
|
268
|
+
declare const DOES_NOT_END_WITH_ANY_OF: {
|
|
269
|
+
label: string;
|
|
270
|
+
value: string;
|
|
271
|
+
getApplyFilterFn: (filterItem: GridFilterItem) => ((params: GridCellParams) => boolean) | null;
|
|
272
|
+
InputComponent: typeof GridFilterInputMultipleValue;
|
|
273
|
+
};
|
|
143
274
|
|
|
144
|
-
declare const DOES_NOT_HAVE_ANY_OF:
|
|
275
|
+
declare const DOES_NOT_HAVE_ANY_OF: {
|
|
276
|
+
label: string;
|
|
277
|
+
value: string;
|
|
278
|
+
getApplyFilterFn: (filterItem: GridFilterItem) => ((params: GridCellParams) => boolean) | null;
|
|
279
|
+
InputComponent: typeof GridFilterInputMultipleValue;
|
|
280
|
+
};
|
|
145
281
|
declare const DOES_NOT_HAVE_ANY_OF_WITH_SELECT: {
|
|
146
282
|
InputComponent: typeof GridFilterInputMultipleSingleSelect;
|
|
147
|
-
label
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
getApplyFilterFn: _mui_x_data_grid.GetApplyFilterFn<any, string | string[], any>;
|
|
151
|
-
InputComponentProps?: Partial<_mui_x_data_grid.GridFilterInputValueProps> | undefined;
|
|
152
|
-
getValueAsString?: (value: _mui_x_data_grid.GridFilterItem["value"]) => string;
|
|
153
|
-
requiresFilterValue?: boolean;
|
|
283
|
+
label: string;
|
|
284
|
+
value: string;
|
|
285
|
+
getApplyFilterFn: (filterItem: GridFilterItem) => ((params: GridCellParams) => boolean) | null;
|
|
154
286
|
};
|
|
155
287
|
|
|
156
|
-
declare const DOES_NOT_START_WITH_ANY_OF:
|
|
288
|
+
declare const DOES_NOT_START_WITH_ANY_OF: {
|
|
289
|
+
label: string;
|
|
290
|
+
value: string;
|
|
291
|
+
getApplyFilterFn: (filterItem: GridFilterItem) => ((params: GridCellParams) => boolean) | null;
|
|
292
|
+
InputComponent: typeof GridFilterInputMultipleValue;
|
|
293
|
+
};
|
|
157
294
|
|
|
158
|
-
declare const ENDS_WITH_ANY_OF:
|
|
295
|
+
declare const ENDS_WITH_ANY_OF: {
|
|
296
|
+
label: string;
|
|
297
|
+
value: string;
|
|
298
|
+
getApplyFilterFn: (filterItem: GridFilterItem) => ((params: GridCellParams) => boolean) | null;
|
|
299
|
+
InputComponent: typeof GridFilterInputMultipleValue;
|
|
300
|
+
};
|
|
159
301
|
|
|
160
|
-
declare const HAS_ALL_OF:
|
|
302
|
+
declare const HAS_ALL_OF: {
|
|
303
|
+
label: string;
|
|
304
|
+
value: string;
|
|
305
|
+
getApplyFilterFn: (filterItem: GridFilterItem) => ((params: GridCellParams) => boolean) | null;
|
|
306
|
+
InputComponent: typeof GridFilterInputMultipleValue;
|
|
307
|
+
};
|
|
161
308
|
declare const HAS_ALL_OF_WITH_SELECT: {
|
|
162
309
|
InputComponent: typeof GridFilterInputMultipleSingleSelect;
|
|
163
|
-
label
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
getApplyFilterFn: _mui_x_data_grid.GetApplyFilterFn<any, string | string[], any>;
|
|
167
|
-
InputComponentProps?: Partial<_mui_x_data_grid.GridFilterInputValueProps> | undefined;
|
|
168
|
-
getValueAsString?: (value: _mui_x_data_grid.GridFilterItem["value"]) => string;
|
|
169
|
-
requiresFilterValue?: boolean;
|
|
310
|
+
label: string;
|
|
311
|
+
value: string;
|
|
312
|
+
getApplyFilterFn: (filterItem: GridFilterItem) => ((params: GridCellParams) => boolean) | null;
|
|
170
313
|
};
|
|
171
314
|
|
|
172
|
-
declare const HAS_ANY_OF:
|
|
315
|
+
declare const HAS_ANY_OF: {
|
|
316
|
+
label: string;
|
|
317
|
+
value: string;
|
|
318
|
+
getApplyFilterFn: (filterItem: GridFilterItem) => ((params: GridCellParams) => boolean) | null;
|
|
319
|
+
InputComponent: typeof GridFilterInputMultipleValue;
|
|
320
|
+
};
|
|
173
321
|
declare const HAS_ANY_OF_WITH_SELECT: {
|
|
174
322
|
InputComponent: typeof GridFilterInputMultipleSingleSelect;
|
|
175
|
-
label
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
getApplyFilterFn: _mui_x_data_grid.GetApplyFilterFn<any, string | string[], any>;
|
|
179
|
-
InputComponentProps?: Partial<_mui_x_data_grid.GridFilterInputValueProps> | undefined;
|
|
180
|
-
getValueAsString?: (value: _mui_x_data_grid.GridFilterItem["value"]) => string;
|
|
181
|
-
requiresFilterValue?: boolean;
|
|
323
|
+
label: string;
|
|
324
|
+
value: string;
|
|
325
|
+
getApplyFilterFn: (filterItem: GridFilterItem) => ((params: GridCellParams) => boolean) | null;
|
|
182
326
|
};
|
|
183
327
|
|
|
184
|
-
declare const IS_ANY_OF:
|
|
328
|
+
declare const IS_ANY_OF: {
|
|
329
|
+
label: string;
|
|
330
|
+
value: string;
|
|
331
|
+
getApplyFilterFn: (filterItem: GridFilterItem) => ((params: GridCellParams) => boolean) | null;
|
|
332
|
+
InputComponent: typeof GridFilterInputMultipleValue;
|
|
333
|
+
};
|
|
185
334
|
declare const IS_ANY_OF_WITH_SELECT: {
|
|
186
335
|
InputComponent: typeof GridFilterInputMultipleSingleSelect;
|
|
187
|
-
label
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
getApplyFilterFn: _mui_x_data_grid.GetApplyFilterFn<any, string | string[], any>;
|
|
191
|
-
InputComponentProps?: Partial<_mui_x_data_grid.GridFilterInputValueProps> | undefined;
|
|
192
|
-
getValueAsString?: (value: _mui_x_data_grid.GridFilterItem["value"]) => string;
|
|
193
|
-
requiresFilterValue?: boolean;
|
|
336
|
+
label: string;
|
|
337
|
+
value: string;
|
|
338
|
+
getApplyFilterFn: (filterItem: GridFilterItem) => ((params: GridCellParams) => boolean) | null;
|
|
194
339
|
};
|
|
195
340
|
|
|
196
|
-
declare const
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
value: _mui_x_data_grid.GridFilterItem["operator"];
|
|
202
|
-
getApplyFilterFn: _mui_x_data_grid.GetApplyFilterFn<any, string | string[], any>;
|
|
203
|
-
InputComponentProps?: Partial<_mui_x_data_grid.GridFilterInputValueProps> | undefined;
|
|
204
|
-
getValueAsString?: (value: _mui_x_data_grid.GridFilterItem["value"]) => string;
|
|
205
|
-
requiresFilterValue?: boolean;
|
|
341
|
+
declare const IS_NOT_ANY_OF: {
|
|
342
|
+
label: string;
|
|
343
|
+
value: string;
|
|
344
|
+
getApplyFilterFn: (filterItem: GridFilterItem) => ((params: GridCellParams) => boolean) | null;
|
|
345
|
+
InputComponent: typeof GridFilterInputMultipleValue;
|
|
206
346
|
};
|
|
207
|
-
|
|
208
|
-
declare const IS_NOT_ANY_OF: GridFilterOperator<any, string | string[], any, _mui_x_data_grid.GridFilterInputValueProps>;
|
|
209
347
|
declare const IS_NOT_ANY_OF_WITH_SELECT: {
|
|
210
348
|
InputComponent: typeof GridFilterInputMultipleSingleSelect;
|
|
211
|
-
label
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
getApplyFilterFn: _mui_x_data_grid.GetApplyFilterFn<any, string | string[], any>;
|
|
215
|
-
InputComponentProps?: Partial<_mui_x_data_grid.GridFilterInputValueProps> | undefined;
|
|
216
|
-
getValueAsString?: (value: _mui_x_data_grid.GridFilterItem["value"]) => string;
|
|
217
|
-
requiresFilterValue?: boolean;
|
|
349
|
+
label: string;
|
|
350
|
+
value: string;
|
|
351
|
+
getApplyFilterFn: (filterItem: GridFilterItem) => ((params: GridCellParams) => boolean) | null;
|
|
218
352
|
};
|
|
219
353
|
|
|
220
|
-
declare const STARTS_WITH_ANY_OF:
|
|
354
|
+
declare const STARTS_WITH_ANY_OF: {
|
|
355
|
+
label: string;
|
|
356
|
+
value: string;
|
|
357
|
+
getApplyFilterFn: (filterItem: GridFilterItem) => ((params: GridCellParams) => boolean) | null;
|
|
358
|
+
InputComponent: typeof GridFilterInputMultipleValue;
|
|
359
|
+
};
|
|
221
360
|
|
|
222
|
-
declare const getGridStringArrayOperators: () => GridFilterOperator<any,
|
|
223
|
-
declare const getGridStringArrayOperatorsWithSelect: () => GridFilterOperator<any,
|
|
224
|
-
declare const getGridStringArrayOperatorsWithSelectOnStringArrayColumns: () => GridFilterOperator<any,
|
|
361
|
+
declare const getGridStringArrayOperators: () => GridFilterOperator<any, number | string | null, any>[];
|
|
362
|
+
declare const getGridStringArrayOperatorsWithSelect: () => GridFilterOperator<any, number | string | null, any>[];
|
|
363
|
+
declare const getGridStringArrayOperatorsWithSelectOnStringArrayColumns: () => GridFilterOperator<any, number | string | null, any>[];
|
|
225
364
|
|
|
226
365
|
/**
|
|
227
366
|
* Wraps a filter operator's `getApplyFilterFn` to lowercase both the cell value
|
|
@@ -236,93 +375,69 @@ declare const wrapCaseInsensitive: (operator: GridFilterOperator) => GridFilterO
|
|
|
236
375
|
declare const makeCaseInsensitive: (operators: GridFilterOperator[]) => GridFilterOperator[];
|
|
237
376
|
|
|
238
377
|
declare const operatorList: {
|
|
239
|
-
string:
|
|
240
|
-
number:
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
headerLabel?: string;
|
|
253
|
-
value: _mui_x_data_grid.GridFilterItem["operator"];
|
|
254
|
-
getApplyFilterFn: _mui_x_data_grid.GetApplyFilterFn<any, string | string[], any>;
|
|
255
|
-
InputComponentProps?: Partial<_mui_x_data_grid.GridFilterInputValueProps> | undefined;
|
|
256
|
-
getValueAsString?: (value: _mui_x_data_grid.GridFilterItem["value"]) => string;
|
|
257
|
-
requiresFilterValue?: boolean;
|
|
378
|
+
string: _mui_x_data_grid_pro.GridFilterOperator<any, string | number | null, any>[];
|
|
379
|
+
number: _mui_x_data_grid_pro.GridFilterOperator<any, string | number | null, any>[];
|
|
380
|
+
boolean: _mui_x_data_grid_pro.GridFilterOperator<any, boolean | null, any>[];
|
|
381
|
+
date: _mui_x_data_grid_pro.GridFilterOperator<any, Date, any>[];
|
|
382
|
+
dateTime: _mui_x_data_grid_pro.GridFilterOperator<any, Date, any>[];
|
|
383
|
+
singleSelect: _mui_x_data_grid_pro.GridFilterOperator<any, any, any>[];
|
|
384
|
+
rsString: _mui_x_data_grid_pro.GridFilterOperator<any, string | number | null, any>[];
|
|
385
|
+
rsNumber: _mui_x_data_grid_pro.GridFilterOperator<any, string | number | null, any>[];
|
|
386
|
+
rsSingleSelect: ({
|
|
387
|
+
InputComponent: typeof _mui_x_data_grid_pro.GridFilterInputSingleSelect;
|
|
388
|
+
label: string;
|
|
389
|
+
value: string;
|
|
390
|
+
getApplyFilterFn: (filterItem: _mui_x_data_grid_pro.GridFilterItem) => ((params: _mui_x_data_grid_pro.GridCellParams) => boolean) | null;
|
|
258
391
|
} | {
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
392
|
+
label: string;
|
|
393
|
+
value: string;
|
|
394
|
+
getApplyFilterFn: (filterItem: _mui_x_data_grid_pro.GridFilterItem) => ((params: _mui_x_data_grid_pro.GridCellParams) => boolean) | null;
|
|
395
|
+
InputComponent: typeof _mui_x_data_grid_pro.GridFilterInputMultipleValue;
|
|
396
|
+
} | {
|
|
397
|
+
InputComponent: typeof _mui_x_data_grid_pro.GridFilterInputMultipleSingleSelect;
|
|
398
|
+
label: string;
|
|
399
|
+
value: string;
|
|
400
|
+
getApplyFilterFn: (filterItem: _mui_x_data_grid_pro.GridFilterItem) => ((params: _mui_x_data_grid_pro.GridCellParams) => boolean) | null;
|
|
267
401
|
})[];
|
|
268
402
|
rsSingleSelectWithShortOperatorList: ({
|
|
269
|
-
InputComponent: typeof
|
|
270
|
-
label
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
getApplyFilterFn: _mui_x_data_grid.GetApplyFilterFn<any, string | string[], any>;
|
|
274
|
-
InputComponentProps?: Partial<_mui_x_data_grid.GridFilterInputValueProps> | undefined;
|
|
275
|
-
getValueAsString?: (value: _mui_x_data_grid.GridFilterItem["value"]) => string;
|
|
276
|
-
requiresFilterValue?: boolean;
|
|
403
|
+
InputComponent: typeof _mui_x_data_grid_pro.GridFilterInputSingleSelect;
|
|
404
|
+
label: string;
|
|
405
|
+
value: string;
|
|
406
|
+
getApplyFilterFn: (filterItem: _mui_x_data_grid_pro.GridFilterItem) => ((params: _mui_x_data_grid_pro.GridCellParams) => boolean) | null;
|
|
277
407
|
} | {
|
|
278
|
-
InputComponent: typeof
|
|
279
|
-
label
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
getApplyFilterFn: _mui_x_data_grid.GetApplyFilterFn<any, string | string[], any>;
|
|
283
|
-
InputComponentProps?: Partial<_mui_x_data_grid.GridFilterInputValueProps> | undefined;
|
|
284
|
-
getValueAsString?: (value: _mui_x_data_grid.GridFilterItem["value"]) => string;
|
|
285
|
-
requiresFilterValue?: boolean;
|
|
408
|
+
InputComponent: typeof _mui_x_data_grid_pro.GridFilterInputMultipleSingleSelect;
|
|
409
|
+
label: string;
|
|
410
|
+
value: string;
|
|
411
|
+
getApplyFilterFn: (filterItem: _mui_x_data_grid_pro.GridFilterItem) => ((params: _mui_x_data_grid_pro.GridCellParams) => boolean) | null;
|
|
286
412
|
})[];
|
|
287
|
-
rsMultipleSelect: (
|
|
288
|
-
InputComponent: typeof
|
|
289
|
-
label
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
413
|
+
rsMultipleSelect: ({
|
|
414
|
+
InputComponent: typeof _mui_x_data_grid_pro.GridFilterInputSingleSelect;
|
|
415
|
+
label: string;
|
|
416
|
+
value: string;
|
|
417
|
+
getApplyFilterFn: (filterItem: _mui_x_data_grid_pro.GridFilterItem) => ((params: _mui_x_data_grid_pro.GridCellParams) => boolean) | null;
|
|
418
|
+
} | {
|
|
419
|
+
InputComponent: typeof _mui_x_data_grid_pro.GridFilterInputMultipleSingleSelect;
|
|
420
|
+
label: string;
|
|
421
|
+
value: string;
|
|
422
|
+
getApplyFilterFn: (filterItem: _mui_x_data_grid_pro.GridFilterItem) => ((params: _mui_x_data_grid_pro.GridCellParams) => boolean) | null;
|
|
296
423
|
} | {
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
getApplyFilterFn: _mui_x_data_grid.GetApplyFilterFn<any, string | string[], any>;
|
|
302
|
-
InputComponentProps?: Partial<_mui_x_data_grid.GridFilterInputValueProps> | undefined;
|
|
303
|
-
getValueAsString?: (value: _mui_x_data_grid.GridFilterItem["value"]) => string;
|
|
304
|
-
requiresFilterValue?: boolean;
|
|
424
|
+
label: string;
|
|
425
|
+
value: string;
|
|
426
|
+
getApplyFilterFn: (_filterItem: _mui_x_data_grid_pro.GridFilterItem) => (params: _mui_x_data_grid_pro.GridCellParams) => boolean;
|
|
427
|
+
requiresFilterValue: boolean;
|
|
305
428
|
})[];
|
|
306
429
|
rsMultipleSelectWithShortOperatorList: ({
|
|
307
|
-
InputComponent: typeof
|
|
308
|
-
label
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
getApplyFilterFn: _mui_x_data_grid.GetApplyFilterFn<any, string | string[], any>;
|
|
312
|
-
InputComponentProps?: Partial<_mui_x_data_grid.GridFilterInputValueProps> | undefined;
|
|
313
|
-
getValueAsString?: (value: _mui_x_data_grid.GridFilterItem["value"]) => string;
|
|
314
|
-
requiresFilterValue?: boolean;
|
|
430
|
+
InputComponent: typeof _mui_x_data_grid_pro.GridFilterInputSingleSelect;
|
|
431
|
+
label: string;
|
|
432
|
+
value: string;
|
|
433
|
+
getApplyFilterFn: (filterItem: _mui_x_data_grid_pro.GridFilterItem) => ((params: _mui_x_data_grid_pro.GridCellParams) => boolean) | null;
|
|
315
434
|
} | {
|
|
316
|
-
InputComponent: typeof
|
|
317
|
-
label
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
getApplyFilterFn: _mui_x_data_grid.GetApplyFilterFn<any, string | string[], any>;
|
|
321
|
-
InputComponentProps?: Partial<_mui_x_data_grid.GridFilterInputValueProps> | undefined;
|
|
322
|
-
getValueAsString?: (value: _mui_x_data_grid.GridFilterItem["value"]) => string;
|
|
323
|
-
requiresFilterValue?: boolean;
|
|
435
|
+
InputComponent: typeof _mui_x_data_grid_pro.GridFilterInputMultipleSingleSelect;
|
|
436
|
+
label: string;
|
|
437
|
+
value: string;
|
|
438
|
+
getApplyFilterFn: (filterItem: _mui_x_data_grid_pro.GridFilterItem) => ((params: _mui_x_data_grid_pro.GridCellParams) => boolean) | null;
|
|
324
439
|
})[];
|
|
325
|
-
rsStringArray:
|
|
440
|
+
rsStringArray: _mui_x_data_grid_pro.GridFilterOperator<any, string | number | null, any>[];
|
|
326
441
|
};
|
|
327
442
|
|
|
328
443
|
declare function getCompletion(text: string, role: string, openai_api_key: string | undefined, model?: string): Promise<string>;
|
|
@@ -336,241 +451,16 @@ declare const DIMENSION_MODEL_KEY = "dimension";
|
|
|
336
451
|
declare const FILTER_SEARCH_KEY = "searchModel";
|
|
337
452
|
declare const DENSITY_MODEL_KEY = "densityModel";
|
|
338
453
|
declare const COLUMN_ORDER_MODEL_KEY = "columnOrderModel";
|
|
339
|
-
declare const
|
|
340
|
-
declare const AGGREGATION_MODEL_KEY = "aggregationModel";
|
|
341
|
-
declare const PIVOT_MODEL_KEY = "pivotModel";
|
|
342
|
-
declare const CATEGORIES: readonly ["paginationModel", "filterModel", "sortModel", "visibilityModel", "dimension", "searchModel", "pinnedColumns", "densityModel", "columnOrderModel", "rowGroupingModel", "aggregationModel", "pivotModel"];
|
|
454
|
+
declare const CATEGORIES: readonly ["paginationModel", "filterModel", "sortModel", "visibilityModel", "dimension", "searchModel", "pinnedColumns", "densityModel", "columnOrderModel"];
|
|
343
455
|
type Category = (typeof CATEGORIES)[number];
|
|
344
456
|
declare const buildStorageKey: ({ id, version, category }: {
|
|
345
457
|
id: string;
|
|
346
458
|
version: number;
|
|
347
459
|
category: Category;
|
|
348
|
-
}) => `${string}:${number}:paginationModel` | `${string}:${number}:filterModel` | `${string}:${number}:sortModel` | `${string}:${number}:visibilityModel` | `${string}:${number}:pinnedColumns` | `${string}:${number}:dimension` | `${string}:${number}:searchModel` | `${string}:${number}:densityModel` | `${string}:${number}:columnOrderModel
|
|
460
|
+
}) => `${string}:${number}:paginationModel` | `${string}:${number}:filterModel` | `${string}:${number}:sortModel` | `${string}:${number}:visibilityModel` | `${string}:${number}:pinnedColumns` | `${string}:${number}:dimension` | `${string}:${number}:searchModel` | `${string}:${number}:densityModel` | `${string}:${number}:columnOrderModel`;
|
|
349
461
|
declare const clearPreviousVersionStorage: (id: string, previousLocalStorageVersions: number[]) => void;
|
|
350
462
|
|
|
351
|
-
|
|
352
|
-
* Type for legacy array-based row selection (v7 and earlier)
|
|
353
|
-
*/
|
|
354
|
-
type LegacyRowSelectionModel = GridRowId[];
|
|
355
|
-
/**
|
|
356
|
-
* Type that accepts both legacy array format and new v8 object format
|
|
357
|
-
*/
|
|
358
|
-
type RowSelectionModelInput = LegacyRowSelectionModel | GridRowSelectionModel;
|
|
359
|
-
/**
|
|
360
|
-
* Default empty row selection model for MUI DataGrid v8+
|
|
361
|
-
* In v8, GridRowSelectionModel changed from GridRowId[] to { type: 'include' | 'exclude'; ids: Set<GridRowId> }
|
|
362
|
-
*/
|
|
363
|
-
declare const EMPTY_ROW_SELECTION_MODEL: GridRowSelectionModel;
|
|
364
|
-
/**
|
|
365
|
-
* Creates a new row selection model with the given ids
|
|
366
|
-
*/
|
|
367
|
-
declare const createRowSelectionModel: (ids: GridRowId[] | Set<GridRowId>) => GridRowSelectionModel;
|
|
368
|
-
/**
|
|
369
|
-
* Normalizes a row selection model input to the v8 GridRowSelectionModel format.
|
|
370
|
-
* Accepts both legacy array format (v7) and new object format (v8).
|
|
371
|
-
* This allows consumers to continue using arrays while internally using the v8 format.
|
|
372
|
-
*/
|
|
373
|
-
declare const normalizeRowSelectionModel: (input: RowSelectionModelInput | undefined | null) => GridRowSelectionModel;
|
|
374
|
-
/**
|
|
375
|
-
* Gets the size/count of selected rows from a selection model
|
|
376
|
-
*/
|
|
377
|
-
declare const getSelectionCount: (model: GridRowSelectionModel) => number;
|
|
378
|
-
/**
|
|
379
|
-
* Checks if a row is selected in the given selection model
|
|
380
|
-
*/
|
|
381
|
-
declare const isRowSelected: (model: GridRowSelectionModel, rowId: GridRowId) => boolean;
|
|
382
|
-
/**
|
|
383
|
-
* Converts a selection model to an array of selected row IDs
|
|
384
|
-
* Note: For 'exclude' type, this only returns the ids that are explicitly excluded,
|
|
385
|
-
* not the actual selected rows (which would require knowing all row ids)
|
|
386
|
-
*/
|
|
387
|
-
declare const getSelectedIds: (model: GridRowSelectionModel) => GridRowId[];
|
|
388
|
-
|
|
389
|
-
/** Component Type. */
|
|
390
|
-
type Comp<P, T = HTMLElement> = {
|
|
391
|
-
(props: P & {
|
|
392
|
-
ref?: Ref<T>;
|
|
393
|
-
}): ReactElement | null;
|
|
394
|
-
/** React component type. */
|
|
395
|
-
readonly $$typeof?: symbol;
|
|
396
|
-
/** Component name. */
|
|
397
|
-
displayName?: string;
|
|
398
|
-
/** Component base class name. */
|
|
399
|
-
className?: string;
|
|
400
|
-
};
|
|
401
|
-
/** Get types of the values of a record. */
|
|
402
|
-
type ValueOf<T extends Record<any, any>> = T[keyof T];
|
|
403
|
-
|
|
404
|
-
/**
|
|
405
|
-
* Color palette.
|
|
406
|
-
*/
|
|
407
|
-
declare const Theme: {
|
|
408
|
-
readonly light: "light";
|
|
409
|
-
readonly dark: "dark";
|
|
410
|
-
};
|
|
411
|
-
type Theme = ValueOf<typeof Theme>;
|
|
412
|
-
declare const NotificationsColorPalette: {
|
|
413
|
-
readonly question: "question";
|
|
414
|
-
readonly 'no-data': "no-data";
|
|
415
|
-
readonly success: "success";
|
|
416
|
-
readonly warning: "warning";
|
|
417
|
-
readonly info: "info";
|
|
418
|
-
readonly primary: "primary";
|
|
419
|
-
readonly secondary: "secondary";
|
|
420
|
-
readonly error: "error";
|
|
421
|
-
};
|
|
422
|
-
type NotificationsColorPalette = ValueOf<typeof NotificationsColorPalette>;
|
|
423
|
-
declare const ProductColorPalette: {
|
|
424
|
-
readonly asm: "asm";
|
|
425
|
-
readonly 'brand-trust': "brand-trust";
|
|
426
|
-
readonly certificates: "certificates";
|
|
427
|
-
readonly ondmarc: "ondmarc";
|
|
428
|
-
readonly pulse: "pulse";
|
|
429
|
-
readonly radar: "radar";
|
|
430
|
-
readonly 'rojo-ds': "rojo-ds";
|
|
431
|
-
readonly 'vendor-secure': "vendor-secure";
|
|
432
|
-
readonly website: "website";
|
|
433
|
-
};
|
|
434
|
-
type ProductColorPalette = ValueOf<typeof ProductColorPalette>;
|
|
435
|
-
|
|
436
|
-
declare const AlignSelf: {
|
|
437
|
-
readonly auto: "auto";
|
|
438
|
-
readonly normal: "normal";
|
|
439
|
-
readonly start: "start";
|
|
440
|
-
readonly end: "end";
|
|
441
|
-
readonly center: "center";
|
|
442
|
-
readonly 'flex-start': "flex-start";
|
|
443
|
-
readonly 'flex-end': "flex-end";
|
|
444
|
-
readonly 'self-start': "self-start";
|
|
445
|
-
readonly 'self-end': "self-end";
|
|
446
|
-
readonly baseline: "baseline";
|
|
447
|
-
readonly stretch: "stretch";
|
|
448
|
-
};
|
|
449
|
-
type AlignSelf = ValueOf<typeof AlignSelf>;
|
|
450
|
-
interface LayoutProps {
|
|
451
|
-
/** When used in a flex layout, specifies how the element will grow or shrink to fit the space available. See <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/flex">MDN</a>. */
|
|
452
|
-
flex?: string;
|
|
453
|
-
/** When used in a flex layout, specifies how the element will grow to fit the space available. See <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/flex-grow">MDN</a>. */
|
|
454
|
-
flexGrow?: number;
|
|
455
|
-
/** When used in a flex layout, specifies how the element will shrink to fit the space available. See <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/flex-shrink">MDN</a>. */
|
|
456
|
-
flexShrink?: number;
|
|
457
|
-
/** When used in a flex layout, specifies the initial main size of the element. See <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/flex_basis">MDN</a>. */
|
|
458
|
-
flexBasis?: string;
|
|
459
|
-
/** Overrides the alignItems property of a flex or grid container. See <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/align-self">MDN</a>. */
|
|
460
|
-
alignSelf?: AlignSelf;
|
|
461
|
-
/** Specifies how the element is justified inside a flex or grid container. See <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/justify-self">MDN</a>. */
|
|
462
|
-
justifySelf?: string;
|
|
463
|
-
/** The layout order for the element within a flex or grid container. See <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/order">MDN</a>. */
|
|
464
|
-
order?: number;
|
|
465
|
-
/** When used in a grid layout, specifies the named grid area that the element should be placed in within the grid. See <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/grid-area">MDN</a>. */
|
|
466
|
-
gridArea?: string;
|
|
467
|
-
/** When used in a grid layout, specifies the column the element should be placed in within the grid. See <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column">MDN</a>. */
|
|
468
|
-
gridColumn?: string;
|
|
469
|
-
/** When used in a grid layout, specifies the row the element should be placed in within the grid. See <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row">MDN</a>. */
|
|
470
|
-
gridRow?: string;
|
|
471
|
-
/** When used in a grid layout, specifies the starting column to span within the grid. See <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column-start">MDN</a>. */
|
|
472
|
-
gridColumnStart?: string;
|
|
473
|
-
/** When used in a grid layout, specifies the ending column to span within the grid. See <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column-end">MDN</a>. */
|
|
474
|
-
gridColumnEnd?: string;
|
|
475
|
-
/** When used in a grid layout, specifies the starting row to span within the grid. See <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row-start">MDN</a>. */
|
|
476
|
-
gridRowStart?: string;
|
|
477
|
-
/** When used in a grid layout, specifies the ending row to span within the grid. See <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row-end">MDN</a>. */
|
|
478
|
-
gridRowEnd?: string;
|
|
479
|
-
}
|
|
480
|
-
interface SpacingProps {
|
|
481
|
-
/** The margin for all four sides of the element. See <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/margin">MDN</a>. */
|
|
482
|
-
margin?: string;
|
|
483
|
-
/** The margin for the bottom side of the element. See <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/margin-bottom">MDN</a>. */
|
|
484
|
-
marginBottom?: string;
|
|
485
|
-
/** The margin for the left side of the element. See <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/margin-left">MDN</a>. */
|
|
486
|
-
marginLeft?: string;
|
|
487
|
-
/** The margin for the right side of the element. See <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/margin-right">MDN</a>. */
|
|
488
|
-
marginRight?: string;
|
|
489
|
-
/** The margin for the top side of the element. See <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/margin-top">MDN</a>. */
|
|
490
|
-
marginTop?: string;
|
|
491
|
-
}
|
|
492
|
-
interface PositioningProps {
|
|
493
|
-
/** Specifies how the element is positioned. See <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/position">MDN</a>. */
|
|
494
|
-
position?: string;
|
|
495
|
-
/** The top position for the element. See <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/top">MDN</a>. */
|
|
496
|
-
top?: string;
|
|
497
|
-
/** The bottom position for the element. See <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/bottom">MDN</a>. */
|
|
498
|
-
bottom?: string;
|
|
499
|
-
/** The left position for the element. See <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/left">MDN</a>. Consider using start instead for RTL support. */
|
|
500
|
-
left?: string;
|
|
501
|
-
/** The right position for the element. See <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/right">MDN</a>. Consider using start instead for RTL support. */
|
|
502
|
-
right?: string;
|
|
503
|
-
/** The stacking order for the element. See <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/z-index">MDN</a>. */
|
|
504
|
-
zIndex?: string;
|
|
505
|
-
}
|
|
506
|
-
|
|
507
|
-
/**
|
|
508
|
-
* Component size.
|
|
509
|
-
*/
|
|
510
|
-
declare const IconSize: {
|
|
511
|
-
readonly xsmall: "xsmall";
|
|
512
|
-
readonly small: "small";
|
|
513
|
-
readonly medium: "medium";
|
|
514
|
-
readonly large: "large";
|
|
515
|
-
readonly xlarge: "xlarge";
|
|
516
|
-
readonly xxlarge: "xxlarge";
|
|
517
|
-
};
|
|
518
|
-
type IconSize = ValueOf<typeof IconSize>;
|
|
519
|
-
type IconDimensions = {
|
|
520
|
-
width?: number;
|
|
521
|
-
height?: number;
|
|
522
|
-
fontSize?: number;
|
|
523
|
-
lineHeight?: number;
|
|
524
|
-
};
|
|
525
|
-
/**
|
|
526
|
-
* Component props.
|
|
527
|
-
*/
|
|
528
|
-
interface IconProps extends ComponentProps<'span'>, LayoutProps, SpacingProps, PositioningProps {
|
|
529
|
-
/** Indicates whether the element is exposed to an accessibility API. */
|
|
530
|
-
'aria-hidden'?: boolean | 'false' | 'true';
|
|
531
|
-
/** A screen reader only label for the Icon. */
|
|
532
|
-
'aria-label'?: string;
|
|
533
|
-
/** Color variant. Either from color palette or hex or rgb strings. */
|
|
534
|
-
color?: NotificationsColorPalette | ProductColorPalette | (string & {});
|
|
535
|
-
/** Whether the icon has a badge attached to it. */
|
|
536
|
-
badge?: ReactElement;
|
|
537
|
-
/**
|
|
538
|
-
* Can be a string or an array of strings containing `d` property of the `path` SVG element.<br />
|
|
539
|
-
* Can also be a ReactElement.
|
|
540
|
-
*/
|
|
541
|
-
icon: string | string[] | ReactElement;
|
|
542
|
-
/**
|
|
543
|
-
* Icon size.
|
|
544
|
-
* @default 'medium'
|
|
545
|
-
*/
|
|
546
|
-
size?: IconSize | IconDimensions;
|
|
547
|
-
/** Additional properties to forward to the SVG tag. */
|
|
548
|
-
svgProps?: ComponentProps<'svg'>;
|
|
549
|
-
/** Theme. */
|
|
550
|
-
theme?: Theme;
|
|
551
|
-
}
|
|
552
|
-
|
|
553
|
-
/**
|
|
554
|
-
* Component variant.
|
|
555
|
-
*/
|
|
556
|
-
declare const ShieldVariant: {
|
|
557
|
-
readonly success: "success";
|
|
558
|
-
readonly successLocked: "successLocked";
|
|
559
|
-
readonly successUnlocked: "successUnlocked";
|
|
560
|
-
readonly fail: "fail";
|
|
561
|
-
readonly failLocked: "failLocked";
|
|
562
|
-
readonly failUnlocked: "failUnlocked";
|
|
563
|
-
readonly warning: "warning";
|
|
564
|
-
readonly warningLocked: "warningLocked";
|
|
565
|
-
readonly warningUnlocked: "warningUnlocked";
|
|
566
|
-
readonly ignored: "ignored";
|
|
567
|
-
readonly noData: "noData";
|
|
568
|
-
readonly question: "question";
|
|
569
|
-
readonly email: "email";
|
|
570
|
-
};
|
|
571
|
-
type ShieldVariant = ValueOf<typeof ShieldVariant>;
|
|
572
|
-
|
|
573
|
-
interface DataGridProps extends Partial<Pick<DataGridPremiumProps, 'rows'>>, Omit<DataGridPremiumProps, 'rows'> {
|
|
463
|
+
interface DataGridProps extends Partial<Pick<DataGridProProps, 'rows'>>, Omit<DataGridProProps, 'rows'> {
|
|
574
464
|
/** License key for MUI Datagrid Pro. */
|
|
575
465
|
license?: string;
|
|
576
466
|
/**
|
|
@@ -800,7 +690,7 @@ declare const getFilterModelFromString: (searchString: string, columns: DataGrid
|
|
|
800
690
|
declare const getSearchParamsFromFilterModel: (filterModel: ExtendedGridFilterModel) => URLSearchParams;
|
|
801
691
|
/** SORT */
|
|
802
692
|
declare const getSortingFromString: (searchString: string, columns: DataGridProps["columns"]) => GridSortModel | "invalid";
|
|
803
|
-
declare const getSearchParamsFromSorting: (sorting:
|
|
693
|
+
declare const getSearchParamsFromSorting: (sorting: GridSortItem[]) => URLSearchParams;
|
|
804
694
|
/** PAGINATION */
|
|
805
695
|
declare const getPaginationFromString: (searchString: string) => ExtendedGridPaginationModel | "invalid";
|
|
806
696
|
declare const getSearchParamsFromPagination: (pagination: ExtendedGridPaginationModel) => URLSearchParams;
|
|
@@ -808,7 +698,7 @@ declare const getSearchParamsFromPagination: (pagination: ExtendedGridPagination
|
|
|
808
698
|
declare const getColumnVisibilityFromString: (searchString: string, columns: DataGridProps["columns"]) => GridColumnVisibilityModel | "invalid";
|
|
809
699
|
declare const getSearchParamsFromColumnVisibility: (columnVisibility: GridColumnVisibilityModel, columns: DataGridProps["columns"]) => URLSearchParams;
|
|
810
700
|
declare const getPinnedColumnsFromString: (notParsed: string, tableColumns: DataGridProps["columns"]) => PinnedColumns | "invalid";
|
|
811
|
-
declare const getSearchParamsFromPinnedColumns: (pinnedColumns:
|
|
701
|
+
declare const getSearchParamsFromPinnedColumns: (pinnedColumns: GridPinnedColumns) => URLSearchParams;
|
|
812
702
|
declare const getSearchParamsFromTab: (search: string) => URLSearchParams;
|
|
813
703
|
/** DENSITY */
|
|
814
704
|
type GridDensityValue = 'compact' | 'standard' | 'comfortable';
|
|
@@ -818,43 +708,20 @@ declare const getSearchParamsFromDensity: (density: GridDensityValue) => URLSear
|
|
|
818
708
|
type ColumnOrderModel = string[];
|
|
819
709
|
declare const getColumnOrderFromString: (searchString: string) => ColumnOrderModel | "invalid";
|
|
820
710
|
declare const getSearchParamsFromColumnOrder: (columnOrder: ColumnOrderModel) => URLSearchParams;
|
|
821
|
-
/** ROW GROUPING */
|
|
822
|
-
declare const getRowGroupingFromString: (searchString: string) => GridRowGroupingModel | "invalid";
|
|
823
|
-
declare const getSearchParamsFromRowGrouping: (rowGrouping: GridRowGroupingModel) => URLSearchParams;
|
|
824
|
-
/** AGGREGATION */
|
|
825
|
-
declare const getAggregationFromString: (searchString: string) => GridAggregationModel | "invalid";
|
|
826
|
-
declare const getSearchParamsFromAggregation: (aggregation: GridAggregationModel) => URLSearchParams;
|
|
827
|
-
/** PIVOT */
|
|
828
|
-
interface PivotModel {
|
|
829
|
-
columns: string[];
|
|
830
|
-
rows: string[];
|
|
831
|
-
values: {
|
|
832
|
-
field: string;
|
|
833
|
-
aggFunc: string;
|
|
834
|
-
}[];
|
|
835
|
-
}
|
|
836
|
-
/**
|
|
837
|
-
* Pivot format: `cols:f1,f2;rows:f3;vals:f4.sum,f5.avg`
|
|
838
|
-
*/
|
|
839
|
-
declare const getPivotFromString: (searchString: string) => PivotModel | "invalid";
|
|
840
|
-
declare const getSearchParamsFromPivot: (pivot: PivotModel) => URLSearchParams;
|
|
841
711
|
type FinalSearchInput = {
|
|
842
712
|
localStorageVersion: number;
|
|
843
713
|
filterModel: GridFilterModel;
|
|
844
714
|
sortModel: GridSortModel;
|
|
845
715
|
paginationModel: ExtendedGridPaginationModel;
|
|
846
716
|
columnsVisibilityModel: GridColumnVisibilityModel;
|
|
847
|
-
pinnedColumnsModel:
|
|
717
|
+
pinnedColumnsModel: GridPinnedColumns;
|
|
848
718
|
density: GridDensityValue;
|
|
849
719
|
columnOrderModel: ColumnOrderModel;
|
|
850
720
|
defaultColumnOrder: ColumnOrderModel;
|
|
851
|
-
rowGroupingModel: GridRowGroupingModel;
|
|
852
|
-
aggregationModel: GridAggregationModel;
|
|
853
|
-
pivotModel: PivotModel;
|
|
854
721
|
search: string;
|
|
855
722
|
columns: DataGridProps['columns'];
|
|
856
723
|
};
|
|
857
|
-
declare const getFinalSearch: ({ search, localStorageVersion, filterModel, sortModel, paginationModel, columnsVisibilityModel, pinnedColumnsModel, density, columnOrderModel, defaultColumnOrder,
|
|
724
|
+
declare const getFinalSearch: ({ search, localStorageVersion, filterModel, sortModel, paginationModel, columnsVisibilityModel, pinnedColumnsModel, density, columnOrderModel, defaultColumnOrder, columns, }: FinalSearchInput) => URLSearchParams;
|
|
858
725
|
type PinnedColumns = {
|
|
859
726
|
left: string[];
|
|
860
727
|
right: string[];
|
|
@@ -874,12 +741,6 @@ type ModelsLocalStorage = {
|
|
|
874
741
|
setLocalStorageDensity: (density: string) => void;
|
|
875
742
|
localStorageColumnOrder: string;
|
|
876
743
|
setLocalStorageColumnOrder: (value: string) => void;
|
|
877
|
-
localStorageRowGrouping: string;
|
|
878
|
-
setLocalStorageRowGrouping: (value: string) => void;
|
|
879
|
-
localStorageAggregation: string;
|
|
880
|
-
setLocalStorageAggregation: (value: string) => void;
|
|
881
|
-
localStoragePivot: string;
|
|
882
|
-
setLocalStoragePivot: (value: string) => void;
|
|
883
744
|
};
|
|
884
745
|
type ModelsTable = {
|
|
885
746
|
filterModel: GridFilterModel;
|
|
@@ -889,40 +750,34 @@ type ModelsTable = {
|
|
|
889
750
|
pinnedColumnsModel: PinnedColumns;
|
|
890
751
|
density: GridDensityValue;
|
|
891
752
|
columnOrderModel: ColumnOrderModel;
|
|
892
|
-
rowGroupingModel: GridRowGroupingModel;
|
|
893
|
-
aggregationModel: GridAggregationModel;
|
|
894
|
-
pivotModel: PivotModel;
|
|
895
753
|
/** The display-format search string the URL should have. Null if no update needed. */
|
|
896
754
|
pendingSearch: string | null;
|
|
897
755
|
};
|
|
898
756
|
/** Return the state of the table given the URL and the local storage state */
|
|
899
|
-
declare const getModelsParsedOrUpdateLocalStorage: (search: string, localStorageVersion: number, columns: DataGridProps["columns"], initialState:
|
|
757
|
+
declare const getModelsParsedOrUpdateLocalStorage: (search: string, localStorageVersion: number, columns: DataGridProps["columns"], initialState: GridInitialStatePro | undefined, localStorage: ModelsLocalStorage) => ModelsTable;
|
|
900
758
|
type DataGridModel = {
|
|
901
759
|
filterModel: GridFilterModel;
|
|
902
760
|
sortModel: GridSortModel;
|
|
903
761
|
paginationModel: ExtendedGridPaginationModel;
|
|
904
762
|
columnsModel: GridColumnVisibilityModel;
|
|
905
|
-
pinnedColumnsModel:
|
|
763
|
+
pinnedColumnsModel: GridPinnedColumns;
|
|
906
764
|
density: GridDensityValue;
|
|
907
765
|
columnOrderModel: ColumnOrderModel;
|
|
908
766
|
defaultColumnOrder: ColumnOrderModel;
|
|
909
|
-
rowGroupingModel: GridRowGroupingModel;
|
|
910
|
-
aggregationModel: GridAggregationModel;
|
|
911
|
-
pivotModel: PivotModel;
|
|
912
767
|
};
|
|
913
|
-
declare const updateUrl: ({ filterModel, sortModel, paginationModel, columnsModel: columnsVisibilityModel, pinnedColumnsModel, density, columnOrderModel, defaultColumnOrder,
|
|
768
|
+
declare const updateUrl: ({ filterModel, sortModel, paginationModel, columnsModel: columnsVisibilityModel, pinnedColumnsModel, density, columnOrderModel, defaultColumnOrder, }: DataGridModel, search: string, localStorageVersion: number, historyReplace: (newSearch: string) => void, columns: DataGridProps["columns"]) => void;
|
|
914
769
|
declare const areFilterModelsEquivalent: (filterModel: GridFilterModel, filterModelToMatch: GridFilterModel) => boolean;
|
|
915
770
|
|
|
916
|
-
declare const BaseButton: React
|
|
771
|
+
declare const BaseButton: React.JSXElementConstructor<any>;
|
|
917
772
|
|
|
918
|
-
declare const BaseCheckbox: React
|
|
773
|
+
declare const BaseCheckbox: React.JSXElementConstructor<any>;
|
|
919
774
|
|
|
920
775
|
declare const muiIconToDSIcon: Partial<Record<keyof GridSlotsComponent, string>>;
|
|
921
|
-
declare const BaseIcon: React
|
|
776
|
+
declare const BaseIcon: React.JSXElementConstructor<any>;
|
|
922
777
|
|
|
923
|
-
declare const
|
|
778
|
+
declare const BasePopper: React.JSXElementConstructor<any>;
|
|
924
779
|
|
|
925
|
-
declare const BaseTextField: React
|
|
780
|
+
declare const BaseTextField: React.JSXElementConstructor<any>;
|
|
926
781
|
|
|
927
782
|
interface CompletionResponseItem {
|
|
928
783
|
field: string;
|
|
@@ -942,21 +797,16 @@ interface LocaleText {
|
|
|
942
797
|
powerTooltipContent?: string;
|
|
943
798
|
errorText?: string;
|
|
944
799
|
}
|
|
945
|
-
interface FilterConfigColumn {
|
|
946
|
-
field: string;
|
|
947
|
-
type?: string;
|
|
948
|
-
description?: string;
|
|
949
|
-
}
|
|
950
800
|
interface FilterConfig {
|
|
951
|
-
columns:
|
|
952
|
-
typeOperators:
|
|
801
|
+
columns: object[];
|
|
802
|
+
typeOperators: object;
|
|
953
803
|
notes: string;
|
|
954
804
|
openaiApiKey?: string;
|
|
955
805
|
completionFunc?: (nlpFilterConfig: FilterConfig, prompt: string, model: string) => Promise<CompletionResponse>;
|
|
956
806
|
}
|
|
957
807
|
interface GridToolbarFilterSemanticFieldProps extends ComponentProps<'form'> {
|
|
958
808
|
nlpFilterConfig: FilterConfig;
|
|
959
|
-
onFilterModelChange
|
|
809
|
+
onFilterModelChange: (filterModel: GridFilterModel) => void;
|
|
960
810
|
dateFormat?: string;
|
|
961
811
|
defaultModel?: string;
|
|
962
812
|
defaultFilter?: CompletionResponse;
|
|
@@ -980,14 +830,14 @@ type ControlledPaginationProps = {
|
|
|
980
830
|
displayRowsPerPage?: boolean;
|
|
981
831
|
displayPagination?: boolean;
|
|
982
832
|
selectionStatus: SelectionStatus;
|
|
983
|
-
apiRef: MutableRefObject<
|
|
833
|
+
apiRef: MutableRefObject<GridApiPro>;
|
|
984
834
|
paginationModel: GridPaginationModel;
|
|
985
|
-
onPaginationModelChange: (model: GridPaginationModel
|
|
835
|
+
onPaginationModelChange: (model: GridPaginationModel) => void;
|
|
986
836
|
pageSizeOptions?: number[];
|
|
987
837
|
isRowSelectable?: DataGridProps['isRowSelectable'];
|
|
988
838
|
paginationProps?: DataGridProps['paginationProps'];
|
|
989
839
|
};
|
|
990
|
-
declare const ControlledPagination: React
|
|
840
|
+
declare const ControlledPagination: React.FC<ControlledPaginationProps>;
|
|
991
841
|
|
|
992
842
|
type ServerSideControlledPaginationProps = {
|
|
993
843
|
displaySelection?: boolean;
|
|
@@ -995,7 +845,7 @@ type ServerSideControlledPaginationProps = {
|
|
|
995
845
|
displayPagination?: boolean;
|
|
996
846
|
selectionStatus: SelectionStatus;
|
|
997
847
|
paginationModel: GridPaginationModel;
|
|
998
|
-
onPaginationModelChange: (model: GridPaginationModel
|
|
848
|
+
onPaginationModelChange: (model: GridPaginationModel) => void;
|
|
999
849
|
pageSizeOptions?: number[];
|
|
1000
850
|
paginationProps?: DataGridProps['paginationProps'];
|
|
1001
851
|
rowCount: number;
|
|
@@ -1004,7 +854,7 @@ type ServerSideControlledPaginationProps = {
|
|
|
1004
854
|
/**
|
|
1005
855
|
* Get the IDs of all selectable rows currently loaded in the grid (i.e. the current page for server-side).
|
|
1006
856
|
*/
|
|
1007
|
-
declare const getSelectableRowIdsInPage: (apiRef: React
|
|
857
|
+
declare const getSelectableRowIdsInPage: (apiRef: React.MutableRefObject<GridApiPro$1>, isRowSelectable: ((params: GridRowParams<any>) => boolean) | undefined) => GridRowSelectionModel;
|
|
1008
858
|
/**
|
|
1009
859
|
* Intercept MUI's `onRowSelectionModelChange` for server-side pagination to fix the
|
|
1010
860
|
* header checkbox behavior when cross-page selections exist.
|
|
@@ -1018,9 +868,9 @@ declare const getSelectableRowIdsInPage: (apiRef: React$1.MutableRefObject<GridA
|
|
|
1018
868
|
* selections with 0 selected on current page), we merge all current page rows with the
|
|
1019
869
|
* existing cross-page selections instead.
|
|
1020
870
|
*/
|
|
1021
|
-
declare const fixServerSideHeaderCheckboxSelection: (newSelectionModel: GridRowSelectionModel, previousSelectionModel: GridRowSelectionModel, selectionStatus: React
|
|
1022
|
-
declare const onServerSideSelectionStatusChange: (newSelectionModel: GridRowSelectionModel, apiRef: React
|
|
1023
|
-
declare const ServerSideControlledPagination: React
|
|
871
|
+
declare const fixServerSideHeaderCheckboxSelection: (newSelectionModel: GridRowSelectionModel, previousSelectionModel: GridRowSelectionModel, selectionStatus: React.MutableRefObject<SelectionStatus>, apiRef: React.MutableRefObject<GridApiPro$1>, isRowSelectable: ((params: GridRowParams<any>) => boolean) | undefined) => GridRowSelectionModel;
|
|
872
|
+
declare const onServerSideSelectionStatusChange: (newSelectionModel: GridRowSelectionModel, apiRef: React.MutableRefObject<GridApiPro$1>, selectionStatus: React.MutableRefObject<SelectionStatus>, isRowSelectable: ((params: GridRowParams<any>) => boolean) | undefined, page: number, pageSize: number) => void;
|
|
873
|
+
declare const ServerSideControlledPagination: React.FC<ServerSideControlledPaginationProps>;
|
|
1024
874
|
|
|
1025
875
|
interface TextCellProps extends ComponentProps<'div'> {
|
|
1026
876
|
/** Including Badge Component. */
|
|
@@ -1048,16 +898,16 @@ interface TextCellProps extends ComponentProps<'div'> {
|
|
|
1048
898
|
*/
|
|
1049
899
|
declare const TextCell: Comp<TextCellProps, HTMLDivElement>;
|
|
1050
900
|
|
|
1051
|
-
type
|
|
1052
|
-
type
|
|
901
|
+
type GridToolbarColumnsProps = Omit<typeof GridToolbarColumnsButton, 'ref'>;
|
|
902
|
+
type GridToolbarDensityProps = Omit<typeof GridToolbarDensitySelector, 'ref'>;
|
|
1053
903
|
type GridToolbarFilterSemanticProps = Omit<GridToolbarFilterSemanticFieldProps, 'ref'>;
|
|
1054
904
|
interface ToolbarProps {
|
|
1055
905
|
/** Props to forward to the column button. */
|
|
1056
|
-
columnsButtonProps?:
|
|
906
|
+
columnsButtonProps?: GridToolbarColumnsProps;
|
|
1057
907
|
/** Column button ref. */
|
|
1058
908
|
columnsButtonRef?: RefObject<HTMLButtonElement>;
|
|
1059
909
|
/** Props to forward to the density button. */
|
|
1060
|
-
densityButtonProps?:
|
|
910
|
+
densityButtonProps?: GridToolbarDensityProps;
|
|
1061
911
|
/** Density button ref. */
|
|
1062
912
|
densityButtonRef?: RefObject<HTMLButtonElement>;
|
|
1063
913
|
/** Props to forward to the export button. */
|
|
@@ -1097,11 +947,11 @@ declare global {
|
|
|
1097
947
|
}
|
|
1098
948
|
}
|
|
1099
949
|
/** ------ */
|
|
1100
|
-
declare const Toolbar: React
|
|
950
|
+
declare const Toolbar: React.FC<ToolbarProps>;
|
|
1101
951
|
|
|
1102
952
|
type ToolbarWrapperProps = {
|
|
1103
953
|
hideToolbar: DataGridProps['hideToolbar'];
|
|
1104
|
-
RenderedToolbar: React
|
|
954
|
+
RenderedToolbar: React.JSXElementConstructor<any>;
|
|
1105
955
|
filterModel: DataGridProps['filterModel'];
|
|
1106
956
|
onFilterModelChange: DataGridProps['onFilterModelChange'];
|
|
1107
957
|
pagination: DataGridProps['pagination'];
|
|
@@ -1116,6 +966,6 @@ type ToolbarWrapperProps = {
|
|
|
1116
966
|
paginationMode?: DataGridProps['paginationMode'];
|
|
1117
967
|
rowCount?: DataGridProps['rowCount'];
|
|
1118
968
|
};
|
|
1119
|
-
declare const ToolbarWrapper: React
|
|
969
|
+
declare const ToolbarWrapper: React.FC<ToolbarWrapperProps>;
|
|
1120
970
|
|
|
1121
|
-
export {
|
|
971
|
+
export { ARRAY_IS_EMPTY, ARRAY_IS_NOT_EMPTY, BaseButton, BaseCheckbox, BaseIcon, BasePopper, BaseTextField, CATEGORIES, COLUMN_ORDER_MODEL_KEY, CONTAINS_ANY_OF, Category, ColumnOptions, ColumnOrderModel, ColumnType, CompletionResponse, ControlledPagination, ControlledPaginationProps, DATE_IS_BETWEEN, DEFAULT_OPERATORS, DENSITY_MODEL_KEY, DETAIL_PANEL_TOGGLE_COL_DEF, DIMENSION_MODEL_KEY, DOES_NOT_CONTAIN, DOES_NOT_CONTAIN_ANY_OF, DOES_NOT_END_WITH, DOES_NOT_END_WITH_ANY_OF, DOES_NOT_EQUAL, DOES_NOT_HAVE, DOES_NOT_HAVE_ANY_OF, DOES_NOT_HAVE_ANY_OF_WITH_SELECT, DOES_NOT_HAVE_WITH_SELECT, DOES_NOT_START_WITH, DOES_NOT_START_WITH_ANY_OF, DataGrid, DataGridModel, DataGridProps, DateOperatorName, ENDS_WITH_ANY_OF, FILTER_MODEL_KEY, FILTER_SEARCH_KEY, FilterConfig, GridDensityValue, GridToolbarFilterSemanticField, GridToolbarFilterSemanticFieldProps, HAS, HAS_ALL_OF, HAS_ALL_OF_WITH_SELECT, HAS_ANY_OF, HAS_ANY_OF_WITH_SELECT, HAS_ONLY, HAS_ONLY_WITH_SELECT, HAS_WITH_SELECT, IS, IS_ANY_OF, IS_ANY_OF_WITH_SELECT, IS_BETWEEN, IS_NOT, IS_NOT_ANY_OF, IS_NOT_ANY_OF_WITH_SELECT, IS_NOT_WITH_SELECT, IS_WITH_SELECT, MultiSelectOperatorName, NumberOperatorName, PAGINATION_MODEL_KEY, PINNED_COLUMNS, PinnedColumns, SORT_MODEL_KEY, STARTS_WITH_ANY_OF, SelectionStatus, ServerSideControlledPagination, ServerSideControlledPaginationProps, SingleSelectOperatorName, StatefulDataGrid, StatefulDataGridProps, StringOperatorName, StyledDataGridProps, TagsOperatorName, TextCell, Toolbar, ToolbarWrapper, ToolbarWrapperProps, VISIBILITY_MODEL_KEY, areFilterModelsEquivalent, areSearchStringsEqual, buildQueryParamsString, buildStorageKey, clearPreviousVersionStorage, convertFromDisplayFormat, convertToDisplayFormat, createColumn, customColumnTypes, decodeValue, encodeValue, fixServerSideHeaderCheckboxSelection, getColumnOrderFromString, getColumnVisibilityFromString, getCompletion, getDecodedSearchFromUrl, getDensityFromString, getFilterModelFromString, getFinalSearch, getGridDateOperatorsExtended, getGridNumericOperators, getGridStringArrayOperators, getGridStringArrayOperatorsWithSelect, getGridStringArrayOperatorsWithSelectOnStringArrayColumns, getGridStringOperators, getModelsParsedOrUpdateLocalStorage, getPaginationFromString, getPinnedColumnsFromString, getRsMultipleSelectColumnType, getRsMultipleSelectWithShortOperatorListColumnType, getRsNumberColumnType, getRsSingleSelectColumnType, getRsSingleSelectWithShortOperatorListColumnType, getRsStringColumnType, getSearchParamsFromColumnOrder, getSearchParamsFromColumnVisibility, getSearchParamsFromDensity, getSearchParamsFromFilterModel, getSearchParamsFromPagination, getSearchParamsFromPinnedColumns, getSearchParamsFromSorting, getSearchParamsFromTab, getSelectableRowIdsInPage, getSortingFromString, isOperatorValueValid, isValueValid, makeCaseInsensitive, muiIconToDSIcon, numberOperatorDecoder, numberOperatorEncoder, onServerSideSelectionStatusChange, operatorList, updateUrl, urlSearchParamsToString, wrapCaseInsensitive };
|