@infinite-table/infinite-react 4.4.0 → 4.4.2-canary.0

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.
Files changed (7) hide show
  1. package/index.css +10 -10
  2. package/index.d.ts +327 -110
  3. package/index.dev.js +1780 -1029
  4. package/index.dev.mjs +1779 -1029
  5. package/index.js +1780 -1029
  6. package/index.mjs +1779 -1029
  7. package/package.json +2 -2
package/index.d.ts CHANGED
@@ -118,7 +118,82 @@ declare class DeepMap<KeyType, ValueType> {
118
118
 
119
119
  declare type VoidFn = () => void;
120
120
 
121
+ declare type TableRenderRange = {
122
+ start: [number, number];
123
+ end: [number, number];
124
+ rowFixed?: FixedPosition;
125
+ colFixed?: FixedPosition;
126
+ };
121
127
  declare type FixedPosition = false | 'start' | 'end';
128
+ declare type WhichDirection = {
129
+ horizontal?: boolean;
130
+ vertical?: boolean;
131
+ };
132
+ declare type ItemSizeFunction = (index: number) => number;
133
+ interface IBrain {
134
+ getColCount: () => number;
135
+ getRowCount: () => number;
136
+ getFixedCellInfo: () => {
137
+ fixedRowsStart: number;
138
+ fixedColsStart: number;
139
+ fixedRowsEnd: number;
140
+ fixedColsEnd: number;
141
+ };
142
+ getRowspanParent: (rowIndex: number, colIndex: number) => number;
143
+ getColspanParent: (rowIndex: number, colIndex: number) => number;
144
+ getRowHeight: (rowIndex: number) => number;
145
+ getColWidth: (colIndex: number) => number;
146
+ getRowHeightWithSpan: (rowIndex: number, colIndex: number, rowspan: number) => number;
147
+ getColWidthWithSpan: (rowIndex: number, colIndex: number, colspan: number) => number;
148
+ isRowFixedStart: (rowIndex: number) => boolean;
149
+ isRowFixedEnd: (rowIndex: number) => boolean;
150
+ getScrollPosition: () => ScrollPosition;
151
+ getItemOffsetFor: (itemIndex: number, direction: 'horizontal' | 'vertical') => number;
152
+ getItemSize: (itemIndex: number, direction: 'horizontal' | 'vertical') => number;
153
+ getItemAt: (scrollPos: number, direction: 'horizontal' | 'vertical') => number;
154
+ getAvailableSize: () => Size;
155
+ getFixedStartRowsHeight: () => number;
156
+ getFixedEndRowsHeight: (options?: {
157
+ skipScroll: boolean;
158
+ }) => number;
159
+ getFixedStartColsWidth: () => number;
160
+ getFixedEndColsWidth: (options?: {
161
+ skipScroll: boolean;
162
+ }) => number;
163
+ getFixedEndColsOffsets: (options?: {
164
+ skipScroll: boolean;
165
+ }) => number[];
166
+ getFixedEndRowsOffsets: (options?: {
167
+ skipScroll: boolean;
168
+ }) => number[];
169
+ isRowFixed: (rowIndex: number) => boolean;
170
+ isColFixed: (colIndex: number) => boolean;
171
+ getRenderRange: () => TableRenderRange;
172
+ getExtraSpanCellsForRange: (options: {
173
+ horizontal: {
174
+ startIndex: number;
175
+ endIndex: number;
176
+ };
177
+ vertical: {
178
+ startIndex: number;
179
+ endIndex: number;
180
+ };
181
+ }) => [number, number][];
182
+ getRowspan: (rowIndex: number, colIndex: number) => number;
183
+ getColspan: (rowIndex: number, colIndex: number) => number;
184
+ getCellOffset: (rowIndex: number, colIndex: number) => {
185
+ x: number;
186
+ y: number;
187
+ };
188
+ name: string;
189
+ onRenderRangeChange: (fn: (renderRange: TableRenderRange) => void) => VoidFunction;
190
+ onScroll: (fn: OnScrollFn) => VoidFunction;
191
+ onAvailableSizeChange: (fn: (size: Size) => void) => VoidFunction;
192
+ onDestroy: (fn: VoidFunction) => void;
193
+ onScrollStart: (fn: VoidFunction) => VoidFunction;
194
+ onScrollStop: (fn: (scrollPos: ScrollPosition) => void) => VoidFunction;
195
+ }
196
+
122
197
  declare type SpanFunction = ({ rowIndex, colIndex, }: {
123
198
  rowIndex: number;
124
199
  colIndex: number;
@@ -127,7 +202,6 @@ declare type RenderRangeType = {
127
202
  startIndex: number;
128
203
  endIndex: number;
129
204
  };
130
- declare type ItemSizeFunction = (index: number) => number;
131
205
  declare type MatrixBrainOptions = {
132
206
  width: number;
133
207
  height: number;
@@ -138,16 +212,7 @@ declare type MatrixBrainOptions = {
138
212
  rowspan?: SpanFunction;
139
213
  colspan?: SpanFunction;
140
214
  };
141
- declare type TableRenderRange = {
142
- start: [number, number];
143
- end: [number, number];
144
- rowFixed?: FixedPosition;
145
- colFixed?: FixedPosition;
146
- };
147
- declare type WhichDirection = {
148
- horizontal?: boolean;
149
- vertical?: boolean;
150
- };
215
+
151
216
  declare type FnOnRenderRangeChange = (range: TableRenderRange) => void;
152
217
  declare type FnOnDirectionalRenderRangeChange = (range: [number, number]) => void;
153
218
  declare type FnOnRenderCountChange = ({ horizontal, vertical, }: {
@@ -155,39 +220,61 @@ declare type FnOnRenderCountChange = ({ horizontal, vertical, }: {
155
220
  vertical: number;
156
221
  }) => void;
157
222
  declare type OnAvailableSizeChange = (size: Size) => void;
158
- declare class MatrixBrain extends Logger {
223
+ declare type ShouldUpdateRenderCountOptions = {
224
+ horizontalChange: boolean;
225
+ colsChanged: boolean;
226
+ colWidthChanged: boolean;
227
+ widthChanged: boolean;
228
+ colspanChanged: boolean;
229
+ verticalChange: boolean;
230
+ rowsChanged: boolean;
231
+ rowHeightChanged: boolean;
232
+ heightChanged: boolean;
233
+ rowspanChanged: boolean;
234
+ };
235
+ declare class MatrixBrain extends Logger implements IBrain {
159
236
  private scrolling;
160
- private width;
237
+ protected availableWidth: MatrixBrainOptions['width'];
238
+ protected availableRenderWidth: number;
239
+ isHorizontalLayoutBrain: boolean;
161
240
  name: string;
162
- private height;
163
- private cols;
164
- private rows;
165
- private rowHeight;
166
- private colWidth;
241
+ protected availableHeight: MatrixBrainOptions['height'];
242
+ protected availableRenderHeight: number;
243
+ protected cols: MatrixBrainOptions['cols'];
244
+ protected rows: MatrixBrainOptions['rows'];
245
+ /**
246
+ * This is only here for easier accessing in the renderer, when the horizontal layout is enabled.
247
+ * In this way, the API is the same for both brains, so we don't have to cast the brain type in the renderer.
248
+ */
249
+ set rowsPerPage(rowsPerPage: number);
250
+ get rowsPerPage(): number;
251
+ protected _rowsPerPage: number;
252
+ protected rowHeight: MatrixBrainOptions['rowHeight'];
253
+ protected colWidth: MatrixBrainOptions['colWidth'];
167
254
  private rowspan;
168
255
  private colspan;
169
256
  private rowspanParent;
170
257
  private rowspanValue;
171
- private rowHeightCache;
172
- private rowOffsetCache;
258
+ protected rowHeightCache: number[];
259
+ protected rowOffsetCache: number[];
173
260
  private verticalTotalSize;
174
261
  private colspanParent;
175
262
  private colspanValue;
176
- private colWidthCache;
177
- private colOffsetCache;
263
+ protected colWidthCache: number[];
264
+ protected colOffsetCache: number[];
178
265
  private horizontalTotalSize;
179
266
  private horizontalRenderCount?;
180
267
  private verticalRenderCount?;
181
- private horizontalRenderRange;
182
- private verticalRenderRange;
183
- private extraSpanCells;
268
+ protected horizontalRenderRange: RenderRangeType;
269
+ protected verticalRenderRange: RenderRangeType;
270
+ protected extraSpanCells: [number, number][];
184
271
  private scrollPosition;
185
272
  private onScrollFns;
186
273
  private onRenderRangeChangeFns;
187
274
  private onVerticalRenderRangeChangeFns;
188
275
  private onHorizontalRenderRangeChangeFns;
189
276
  private onDestroyFns;
190
- private destroyed;
277
+ protected destroyed: boolean;
191
278
  private onRenderCountChangeFns;
192
279
  private onAvailableSizeChangeFns;
193
280
  private onScrollStartFns;
@@ -210,37 +297,38 @@ declare class MatrixBrain extends Logger {
210
297
  * Number of rows that are fixed at the end
211
298
  */
212
299
  private fixedRowsEnd;
213
- constructor(name?: string);
300
+ constructor(name: string);
214
301
  private reset;
215
302
  private resetVertical;
216
303
  private resetHorizontal;
217
304
  setScrollStopDelay: (scrollStopDelay: number) => void;
305
+ getVirtualColIndex(colIndex: number, _opts?: {
306
+ pageIndex: number;
307
+ }): number;
218
308
  getRowCount: () => number;
219
309
  getColCount: () => number;
220
- update: (options: Partial<MatrixBrainOptions>) => void;
221
- setRowAndColumnSizes({ rowHeight, colWidth, }: {
222
- rowHeight: number | ItemSizeFunction;
223
- colWidth: number | ItemSizeFunction;
224
- }): void;
225
- setRowsAndCols: ({ rows, cols }: {
226
- rows: number;
227
- cols: number;
228
- }) => void;
229
- setAvailableSize(size: Partial<Size>, config?: {
230
- skipUpdateRenderCount?: boolean;
231
- }): void;
232
- updateRenderCount: (which?: WhichDirection) => void;
233
- private doUpdateRenderCount;
310
+ update(options: Partial<MatrixBrainOptions>, shouldUpdateRenderCount?: (options: ShouldUpdateRenderCountOptions) => boolean): void;
311
+ /**
312
+ *
313
+ * @param options.left - if true, extends the left side with the amount of current visible columns, otherwise with the specified number
314
+ * @param options.right - if true, extends the right side with the amount of current visible columns, otherwise with the specified number
315
+ */
316
+ extendRenderRange(options: {
317
+ left?: number | boolean;
318
+ right?: number | boolean;
319
+ }): () => void;
320
+ updateRenderCount(which?: WhichDirection): void;
321
+ protected doUpdateRenderCount(which?: WhichDirection): void;
234
322
  get scrollTopMax(): number;
235
323
  get scrollLeftMax(): number;
236
324
  private setScrolling;
237
325
  private notifyScrollStart;
238
326
  private notifyScrollStop;
239
- setScrollPosition: (scrollPosition: ScrollPosition, callback?: ((scrollPos: ScrollPosition) => void) | undefined) => void;
240
- private notifyAvailableSizeChange;
241
- private notifyRenderRangeChange;
242
- private notifyVerticalRenderRangeChange;
243
- private notifyHorizontalRenderRangeChange;
327
+ setScrollPosition(scrollPosition: ScrollPosition, callback?: (scrollPos: ScrollPosition) => void): void;
328
+ protected notifyAvailableSizeChange: () => void;
329
+ protected notifyRenderRangeChange(): void;
330
+ protected notifyVerticalRenderRangeChange: () => void;
331
+ protected notifyHorizontalRenderRangeChange: () => void;
244
332
  private notifyScrollChange;
245
333
  private computeDirectionalRenderCount;
246
334
  getFixedSize(direction: 'horizontal' | 'vertical'): number;
@@ -318,12 +406,15 @@ declare class MatrixBrain extends Logger {
318
406
  endIndex: number;
319
407
  };
320
408
  getItemAt: (scrollPos: number, direction: 'horizontal' | 'vertical') => number;
321
- getCellOffset: (rowIndex: number, colIndex: number) => {
409
+ getCellOffset(rowIndex: number, colIndex: number): {
322
410
  x: number;
323
411
  y: number;
324
412
  };
325
- getItemOffsetFor: (itemIndex: number, direction: 'horizontal' | 'vertical') => number;
326
- private computeCacheFor;
413
+ getInitialRowHeight(): number | ItemSizeFunction;
414
+ getInitialCols(): number;
415
+ getInitialRows(): number;
416
+ getItemOffsetFor(itemIndex: number, direction: 'horizontal' | 'vertical'): number;
417
+ protected computeCacheFor: (itemIndex: number, direction: 'horizontal' | 'vertical') => void;
327
418
  private getItemSizeCacheFor;
328
419
  private computeItemSpanUpTo;
329
420
  private getCellSpan;
@@ -343,11 +434,13 @@ declare class MatrixBrain extends Logger {
343
434
  * @returns the size of the specified item
344
435
  */
345
436
  getItemSize: (itemIndex: number, direction: 'horizontal' | 'vertical') => number;
346
- getTotalSize: () => {
437
+ getRowIndexInPage(rowIndex: number): number;
438
+ getPageIndexForRow(_rowIndex: number): number;
439
+ getVirtualizedContentSize(): {
347
440
  height: number;
348
441
  width: number;
349
442
  };
350
- getTotalSizeFor: (direction: 'horizontal' | 'vertical') => number;
443
+ getVirtualizedContentSizeFor(direction: 'horizontal' | 'vertical'): number;
351
444
  setRenderRange: ({ horizontal, vertical, extraCells, }: {
352
445
  horizontal: RenderRangeType;
353
446
  vertical: RenderRangeType;
@@ -373,8 +466,12 @@ declare class MatrixBrain extends Logger {
373
466
  width: number;
374
467
  height: number;
375
468
  };
469
+ protected getAvailableRenderSize: () => {
470
+ width: number;
471
+ height: number;
472
+ };
376
473
  private notifyDestroy;
377
- destroy: () => void;
474
+ destroy(): void;
378
475
  }
379
476
 
380
477
  declare enum InfiniteTableActionType {
@@ -397,6 +494,7 @@ declare type InfiniteTableAction = {
397
494
  declare type InfiniteTableBaseCellProps<T> = {
398
495
  column: InfiniteTableComputedColumn<T>;
399
496
  align?: InfiniteTableColumnAlignValues;
497
+ horizontalLayoutPageIndex: number | null;
400
498
  rowId?: any;
401
499
  renderChildren: () => Renderable;
402
500
  width: number;
@@ -489,6 +587,7 @@ declare type InfiniteTableColumnHeaderParam<DATA_TYPE, COL_TYPE = InfiniteTableC
489
587
  columnSortInfo: DataSourceSingleSortInfo<DATA_TYPE> | null;
490
588
  columnFilterValue: DataSourceFilterValueItem<DATA_TYPE> | null;
491
589
  selectionMode: DataSourcePropSelectionMode;
590
+ horizontalLayoutPageIndex: null | number;
492
591
  allRowsSelected: boolean;
493
592
  someRowsSelected: boolean;
494
593
  filtered: boolean;
@@ -518,6 +617,9 @@ declare type InfiniteTableColumnRenderBag = {
518
617
  };
519
618
  declare type InfiniteTableColumnRenderParamBase<DATA_TYPE, COL_TYPE = InfiniteTableComputedColumn<DATA_TYPE>> = {
520
619
  domRef: InfiniteTableCellProps<DATA_TYPE>['domRef'];
620
+ htmlElementRef: React__default.MutableRefObject<HTMLElement | null>;
621
+ rowIndexInHorizontalLayoutPage: null | number;
622
+ horizontalLayoutPageIndex: null | number;
521
623
  value: string | number | Renderable;
522
624
  align: InfiniteTableColumnAlignValues;
523
625
  verticalAlign: InfiniteTableColumnVerticalAlignValues;
@@ -569,6 +671,11 @@ declare type InfiniteTableColumnRenderFunctionForNormalRows<DATA_TYPE, COL_TYPE
569
671
  }) => Renderable | null;
570
672
  declare type InfiniteTableColumnRenderFunction<DATA_TYPE, COL_TYPE = InfiniteTableComputedColumn<DATA_TYPE>> = (renderParams: InfiniteTableColumnCellContextType<DATA_TYPE, COL_TYPE>) => Renderable | null;
571
673
  declare type InfiniteTableColumnHeaderRenderFunction<T> = (headerParams: InfiniteTableColumnHeaderParam<T>) => Renderable;
674
+ declare type InfiniteTableColumnOrHeaderRenderFunction<T> = (params: (InfiniteTableColumnCellContextType<T> & {
675
+ rowInfo: InfiniteTableRowInfo<T>;
676
+ }) | (InfiniteTableColumnHeaderParam<T> & {
677
+ rowInfo: null;
678
+ })) => ReturnType<InfiniteTableColumnRenderFunction<T>>;
572
679
  declare type InfiniteTableColumnContentFocusable<T> = boolean | InfiniteTableColumnContentFocusableFn<T>;
573
680
  declare type InfiniteTableColumnEditable<T> = boolean | InfiniteTableColumnEditableFn<T>;
574
681
  declare type InfiniteTableColumnContentFocusableFn<T> = (params: InfiniteTableColumnContentFocusableParams<T>) => boolean;
@@ -586,6 +693,8 @@ declare type InfiniteTableColumnTypeNames = 'string' | 'number' | 'date' | strin
586
693
  declare type InfiniteTableColumnStylingFnParams<T> = {
587
694
  value: Renderable;
588
695
  column: InfiniteTableComputedColumn<T>;
696
+ rowIndexInHorizontalLayoutPage: null | number;
697
+ horizontalLayoutPageIndex: null | number;
589
698
  inEdit: boolean;
590
699
  rowHasSelectedCells: boolean;
591
700
  editError: InfiniteTableColumnRenderParamBase<T>['editError'];
@@ -681,7 +790,7 @@ declare type InfiniteTableColumn<DATA_TYPE> = {
681
790
  renderRowDetailIcon?: boolean | InfiniteTableColumnRenderFunction<DATA_TYPE>;
682
791
  renderSortIcon?: InfiniteTableColumnHeaderRenderFunction<DATA_TYPE>;
683
792
  renderFilterIcon?: InfiniteTableColumnHeaderRenderFunction<DATA_TYPE>;
684
- renderSelectionCheckBox?: boolean | InfiniteTableColumnRenderFunction<DATA_TYPE>;
793
+ renderSelectionCheckBox?: boolean | InfiniteTableColumnOrHeaderRenderFunction<DATA_TYPE>;
685
794
  renderMenuIcon?: boolean | InfiniteTableColumnHeaderRenderFunction<DATA_TYPE>;
686
795
  renderHeaderSelectionCheckBox?: boolean | InfiniteTableColumnHeaderRenderFunction<DATA_TYPE>;
687
796
  components?: {
@@ -1169,6 +1278,85 @@ declare class RowDetailState<KeyType = any> extends BooleanCollectionState<RowDe
1169
1278
  toggleRowDetails(key: KeyType): void;
1170
1279
  }
1171
1280
 
1281
+ declare type SubscriptionCallbackOnChangeFn<T> = (node: T | null) => void;
1282
+ interface SubscriptionCallback<T> {
1283
+ (node: T, callback?: () => void): void;
1284
+ get: () => T | null;
1285
+ destroy: VoidFn;
1286
+ onChange: (fn: SubscriptionCallbackOnChangeFn<T>) => VoidFn;
1287
+ }
1288
+
1289
+ /**
1290
+ * This class abstracts the following behavior:
1291
+ *
1292
+ * in the DOM, we have a list (flat, so no nesting) of elements that represent table cells
1293
+ * At any one time, just a fraction of all table cells are rendered/present in the DOM
1294
+ * and we need to keep track and know for each element what cell represents and for each
1295
+ * rendered cell, to what element it is currently mapped (so we need a bi-directional mapping)
1296
+ *
1297
+ * This class has tests - see tests/mapped-cells.spec.ts
1298
+ */
1299
+ declare class MappedCells<T_ADDITIONAL_CELL_INFO = any> extends Logger {
1300
+ /**
1301
+ * This is the mapping from element index to cell info.
1302
+ * The index in the array is the element index while the value at the position is an array where
1303
+ * the first number is the row index and the second number is the column index.
1304
+ */
1305
+ private elementIndexToCell;
1306
+ /**
1307
+ * This is the mapping from cell address to element index.
1308
+ * The key in the map is the cell address (built like this: `${rowIndex}:${columnIndex}`)
1309
+ * while the value is the element index it is being rendered to.
1310
+ */
1311
+ private cellToElementIndex;
1312
+ private cellAdditionalInfo;
1313
+ /**
1314
+ * Keeps the JSX of rendered elements in memory, so we can possibly reuse it later.
1315
+ */
1316
+ private renderedElements;
1317
+ private withCellAdditionalInfo;
1318
+ constructor(opts?: {
1319
+ withCellAdditionalInfo: boolean;
1320
+ });
1321
+ getElementFromListForColumn: (elementsOutsideItemRange: number[], colIndex: number) => number | undefined;
1322
+ init(): void;
1323
+ reset(): void;
1324
+ destroy(): void;
1325
+ /**
1326
+ * Retrieves the elements that contain rendered cells that are outside
1327
+ * of the specified range
1328
+ *
1329
+ * @param start in [rowIndex, colIndex] format - represents the topmost-leftmost cell visible of the render range
1330
+ * @param end in [rowIndex, colIndex] format - represents the bottom-right corner of the visible range. The end is not inclusive,
1331
+ * so the last visible cell will be [rowIndex-1, colIndex-1]
1332
+ *
1333
+ * @returns an array of element indexes that are outside the specified range
1334
+ */
1335
+ getElementsOutsideRenderRange: (range: TableRenderRange) => number[];
1336
+ isCellRendered: (rowIndex: number, columnIndex: number) => boolean;
1337
+ getCellAdditionalInfo: (rowIndex: number, columnIndex: number) => T_ADDITIONAL_CELL_INFO | undefined;
1338
+ isElementRendered: (elementIndex: number) => boolean;
1339
+ getElementsForRowIndex: (rowIndex: number) => number[];
1340
+ getAdditionalInfoForRowIndex: (rowIndex: number) => T_ADDITIONAL_CELL_INFO[];
1341
+ getRenderedNodeAtElement: (elementIndex: number) => Renderable | null;
1342
+ getRenderedCellAtElement: (elementIndex: number) => [
1343
+ number,
1344
+ number
1345
+ ] | null;
1346
+ getRenderedNodeForCell: (rowIndex: number, columnIndex: number) => Renderable | null;
1347
+ getElementIndexForCell: (rowIndex: number, columnIndex: number) => number | null;
1348
+ renderCellAtElement: (rowIndex: number, colIndex: number, elementIndex: number, renderNode: Renderable | undefined, cellAdditionalInfo?: T_ADDITIONAL_CELL_INFO | undefined) => void;
1349
+ discardCell: (rowIndex: number, colIndex: number) => void;
1350
+ discardElement: (elementIndex: number) => [
1351
+ number,
1352
+ number
1353
+ ] | null;
1354
+ discardElementsStartingWith: (elIndex: number, callback?: ((index: number, cell: [
1355
+ number,
1356
+ number
1357
+ ] | null) => void) | undefined) => boolean;
1358
+ }
1359
+
1172
1360
  declare type TableRenderCellFnParam = {
1173
1361
  domRef: RefCallback<HTMLElement>;
1174
1362
  rowIndex: number;
@@ -1196,19 +1384,25 @@ declare type TableRenderDetailRowFnParam = {
1196
1384
  };
1197
1385
  declare type TableRenderCellFn = (param: TableRenderCellFnParam) => Renderable;
1198
1386
  declare type TableRenderDetailRowFn = (param: TableRenderDetailRowFnParam) => Renderable;
1387
+ declare type HorizontalLayoutColVisibilityOptions = {
1388
+ horizontalLayoutPageIndex?: number;
1389
+ };
1199
1390
  declare class ReactHeadlessTableRenderer extends Logger {
1200
- private brain;
1391
+ protected brain: MatrixBrain;
1201
1392
  debugId: string;
1202
- private destroyed;
1393
+ protected destroyed: boolean;
1203
1394
  private scrolling;
1204
1395
  cellHoverClassNames: string[];
1205
1396
  private itemDOMElements;
1206
- private itemDOMRefs;
1207
- private updaters;
1397
+ protected itemDOMRefs: RefCallback<HTMLElement>[];
1398
+ protected updaters: SubscriptionCallback<Renderable>[];
1208
1399
  private detailRowDOMElements;
1209
1400
  private detailRowDOMRefs;
1210
1401
  private detailRowUpdaters;
1211
- private mappedCells;
1402
+ protected mappedCells: MappedCells<{
1403
+ renderRowIndex: number;
1404
+ renderColIndex: number;
1405
+ }>;
1212
1406
  private mappedDetailRows;
1213
1407
  private items;
1214
1408
  private detailItems;
@@ -1228,7 +1422,7 @@ declare class ReactHeadlessTableRenderer extends Logger {
1228
1422
  scrollLeft?: boolean | undefined;
1229
1423
  scrollTop?: boolean | undefined;
1230
1424
  }, zIndex: number | 'auto' | undefined | null) => void;
1231
- constructor(brain: MatrixBrain);
1425
+ constructor(brain: MatrixBrain, debugId?: string);
1232
1426
  getFullyVisibleRowsRange: () => {
1233
1427
  start: number;
1234
1428
  end: number;
@@ -1236,11 +1430,12 @@ declare class ReactHeadlessTableRenderer extends Logger {
1236
1430
  getScrollPositionForScrollRowIntoView: (rowIndex: number, config?: {
1237
1431
  scrollAdjustPosition?: ScrollAdjustPosition;
1238
1432
  offset?: number;
1433
+ colIndex?: number;
1239
1434
  }) => ScrollPosition | null;
1240
1435
  getScrollPositionForScrollColumnIntoView: (colIndex: number, config?: {
1241
1436
  scrollAdjustPosition?: ScrollAdjustPosition;
1242
1437
  offset?: number;
1243
- }) => ScrollPosition | null;
1438
+ } & HorizontalLayoutColVisibilityOptions) => ScrollPosition | null;
1244
1439
  getScrollPositionForScrollCellIntoView: (rowIndex: number, colIndex: number, config?: {
1245
1440
  rowScrollAdjustPosition?: ScrollAdjustPosition;
1246
1441
  colScrollAdjustPosition?: ScrollAdjustPosition;
@@ -1252,31 +1447,46 @@ declare class ReactHeadlessTableRenderer extends Logger {
1252
1447
  isRowVisible: (rowIndex: number, offsetMargin?: number) => boolean;
1253
1448
  isRowRendered: (rowIndex: number) => boolean;
1254
1449
  isCellVisible: (rowIndex: number, colIndex: number) => boolean;
1255
- isCellFullyVisible: (rowIndex: number, colIndex: number) => boolean;
1256
- isColumnFullyVisible: (colIndex: number, offsetMargin?: number) => boolean;
1257
- isColumnVisible: (colIndex: number, offsetMargin?: number) => boolean;
1258
- isCellRendered: (rowIndex: number, colIndex: number) => boolean;
1259
- isColumnRendered: (colIndex: number) => boolean;
1450
+ isCellFullyVisible: (rowIndex: number, colIndex: number, opts?: HorizontalLayoutColVisibilityOptions | undefined) => boolean;
1451
+ isColumnFullyVisible: (colIndex: number, offsetMargin?: number, opts?: HorizontalLayoutColVisibilityOptions | undefined) => boolean;
1452
+ isColumnVisible: (colIndex: number, offsetMargin?: number, opts?: HorizontalLayoutColVisibilityOptions | undefined) => boolean;
1453
+ isCellRendered: (rowIndex: number, colIndex: number, opts?: HorizontalLayoutColVisibilityOptions | undefined) => boolean;
1454
+ isColumnRendered: (colIndex: number, opts?: HorizontalLayoutColVisibilityOptions | undefined) => boolean;
1260
1455
  getExtraSpanCellsForRange: (range: TableRenderRange) => [number, number][];
1261
- renderRange: (range: TableRenderRange, { renderCell, renderDetailRow, force, onRender, }: {
1262
- force?: boolean | undefined;
1456
+ isCellRenderedAndMappedCorrectly(row: number, col: number): {
1457
+ rendered: boolean;
1458
+ mapped: boolean;
1459
+ };
1460
+ renderRange(range: TableRenderRange, { renderCell, renderDetailRow, force, onRender, }: {
1461
+ force?: boolean;
1263
1462
  renderCell: TableRenderCellFn;
1264
- renderDetailRow?: TableRenderDetailRowFn | undefined;
1463
+ renderDetailRow?: TableRenderDetailRowFn;
1265
1464
  onRender: (items: Renderable[]) => void;
1266
- }) => Renderable[];
1465
+ }): Renderable[];
1267
1466
  private renderElement;
1268
1467
  private renderDetailElement;
1269
1468
  getFixedRanges: (currentRenderRange: TableRenderRange) => TableRenderRange[];
1270
- private isCellFixed;
1271
- private isCellCovered;
1469
+ protected isCellFixed: (rowIndex: number, colIndex: number) => {
1470
+ row: FixedPosition;
1471
+ col: FixedPosition;
1472
+ };
1473
+ protected isCellCovered: (rowIndex: number, colIndex: number) => false | number[];
1272
1474
  private renderDetailRowAtElement;
1273
- private renderCellAtElement;
1274
- private onMouseEnter;
1475
+ protected getCellRealCoordinates(rowIndex: number, colIndex: number): {
1476
+ rowIndex: number;
1477
+ colIndex: number;
1478
+ };
1479
+ protected renderCellAtElement(rowIndex: number, colIndex: number, elementIndex: number, renderCell: TableRenderCellFn): void;
1480
+ protected onMouseEnter: (rowIndex: number) => void;
1275
1481
  private addHoverClass;
1276
- private onMouseLeave;
1482
+ protected onMouseLeave: (rowIndex: number) => void;
1277
1483
  private removeHoverClass;
1278
- private updateHoverClassNamesForRow;
1279
- private updateElementPosition;
1484
+ protected updateHoverClassNamesForRow: (rowIndex: number) => void;
1485
+ protected updateElementPosition: (elementIndex: number, options?: {
1486
+ hidden: boolean;
1487
+ rowspan: number;
1488
+ colspan: number;
1489
+ } | undefined) => void;
1280
1490
  private updateDetailElementPosition;
1281
1491
  private onScrollStart;
1282
1492
  private onScrollStop;
@@ -1285,14 +1495,6 @@ declare class ReactHeadlessTableRenderer extends Logger {
1285
1495
  reset(): void;
1286
1496
  }
1287
1497
 
1288
- declare type SubscriptionCallbackOnChangeFn<T> = (node: T | null) => void;
1289
- interface SubscriptionCallback<T> {
1290
- (node: T, callback?: () => void): void;
1291
- get: () => T | null;
1292
- destroy: VoidFn;
1293
- onChange: (fn: SubscriptionCallbackOnChangeFn<T>) => VoidFn;
1294
- }
1295
-
1296
1498
  declare class ScrollListener {
1297
1499
  private scrollPosition;
1298
1500
  private onScrollFns;
@@ -1318,11 +1520,13 @@ declare type ContextMenuLocationWithEvent = Partial<CellContextMenuLocation> & {
1318
1520
  target: HTMLElement;
1319
1521
  };
1320
1522
  interface InfiniteTableSetupState<T> {
1523
+ brain: MatrixBrain;
1524
+ headerBrain: MatrixBrain;
1321
1525
  renderer: ReactHeadlessTableRenderer;
1526
+ onRenderUpdater: SubscriptionCallback<Renderable>;
1322
1527
  lastRowToExpandRef: MutableRefObject<any | null>;
1323
1528
  lastRowToCollapseRef: MutableRefObject<any | null>;
1324
1529
  getDOMNodeForCell: (cellPos: CellPositionByIndex) => HTMLElement | null;
1325
- onRenderUpdater: SubscriptionCallback<Renderable>;
1326
1530
  propsCache: Map<keyof InfiniteTableProps<T>, WeakMap<any, any>>;
1327
1531
  columnsWhenInlineGroupRenderStrategy?: Record<string, InfiniteTableColumn<T>>;
1328
1532
  domRef: MutableRefObject<HTMLDivElement | null>;
@@ -1361,8 +1565,6 @@ interface InfiniteTableSetupState<T> {
1361
1565
  keyDown: SubscriptionCallback<KeyboardEvent>;
1362
1566
  columnsWhenGrouping?: InfiniteTablePropColumns<T>;
1363
1567
  bodySize: Size;
1364
- brain: MatrixBrain;
1365
- headerBrain: MatrixBrain;
1366
1568
  focused: boolean;
1367
1569
  ready: boolean;
1368
1570
  columnReorderDragColumnId: false | string;
@@ -1406,6 +1608,7 @@ interface InfiniteTableMappedState<T> {
1406
1608
  groupColumn: InfiniteTableProps<T>['groupColumn'];
1407
1609
  onKeyDown: InfiniteTableProps<T>['onKeyDown'];
1408
1610
  onCellClick: InfiniteTableProps<T>['onCellClick'];
1611
+ wrapRowsHorizontally: InfiniteTableProps<T>['wrapRowsHorizontally'];
1409
1612
  rowDetailCache: RowDetailCache<RowDetailCacheKey, RowDetailCacheEntry>;
1410
1613
  headerOptions: NonUndefined<InfiniteTableProps<T>['headerOptions']>;
1411
1614
  draggableColumnsRestrictTo: NonUndefined<InfiniteTableProps<T>['draggableColumnsRestrictTo']>;
@@ -1788,7 +1991,7 @@ declare class RowDisabledState<KeyType = any> extends BooleanCollectionState<Row
1788
1991
  enableAll(): void;
1789
1992
  isRowEnabled: (key: KeyType) => boolean;
1790
1993
  isRowDisabled(key: KeyType): boolean;
1791
- setRowEnabled(key: KeyType, shouldExpand: boolean): void;
1994
+ setRowEnabled(key: KeyType, enabled: boolean): void;
1792
1995
  disableRow(key: KeyType): void;
1793
1996
  enableRow(key: KeyType): void;
1794
1997
  toggleRow(key: KeyType): void;
@@ -2021,6 +2224,14 @@ interface DataSourceApi<T> {
2021
2224
  insertData(data: T, options: DataSourceInsertParam): Promise<any>;
2022
2225
  insertDataArray(data: T[], options: DataSourceInsertParam): Promise<any>;
2023
2226
  setSortInfo(sortInfo: null | DataSourceSingleSortInfo<T>[]): void;
2227
+ isRowDisabledAt: (rowIndex: number) => boolean;
2228
+ isRowDisabled: (primaryKey: any) => boolean;
2229
+ setRowEnabledAt: (rowIndex: number, enabled: boolean) => void;
2230
+ setRowEnabled: (primaryKey: any, enabled: boolean) => void;
2231
+ enableAllRows: () => void;
2232
+ disableAllRows: () => void;
2233
+ areAllRowsEnabled: () => boolean;
2234
+ areAllRowsDisabled: () => boolean;
2024
2235
  }
2025
2236
  declare type DataSourcePropRowInfoReducers<T> = Record<string, DataSourceRowInfoReducer<T>>;
2026
2237
  declare type DataSourceRowInfoReducer<T> = DataSourceRawReducer<InfiniteTableRowInfo<T>, any>;
@@ -2049,6 +2260,7 @@ declare type DataSourceProps<T> = {
2049
2260
  onCellSelectionChange?: DataSourcePropOnCellSelectionChange;
2050
2261
  rowDisabledState?: RowDisabledState | RowDisabledStateObject<any>;
2051
2262
  defaultRowDisabledState?: RowDisabledState | RowDisabledStateObject<any>;
2263
+ onRowDisabledStateChange?: (rowDisabledState: RowDisabledState) => void;
2052
2264
  isRowDisabled?: (rowInfo: InfiniteTableRowInfo<T>) => boolean;
2053
2265
  isRowSelected?: DataSourcePropIsRowSelected<T>;
2054
2266
  lazyLoad?: boolean | {
@@ -2246,6 +2458,7 @@ declare function useInfiniteHeaderCell<T>(): {
2246
2458
  columnSortInfo: DataSourceSingleSortInfo<T> | null;
2247
2459
  columnFilterValue: DataSourceFilterValueItem<T> | null;
2248
2460
  selectionMode: DataSourcePropSelectionMode;
2461
+ horizontalLayoutPageIndex: number | null;
2249
2462
  allRowsSelected: boolean;
2250
2463
  someRowsSelected: boolean;
2251
2464
  filtered: boolean;
@@ -2354,7 +2567,7 @@ declare const useManagedDataSource: (props: unknown) => {
2354
2567
  };
2355
2568
  lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
2356
2569
  pivotMappings?: never;
2357
- propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "isRowDisabled" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "rowDisabledState" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultRowDisabledState" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
2570
+ propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "isRowDisabled" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "rowDisabledState" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultRowDisabledState" | "onRowDisabledStateChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
2358
2571
  showSeparatePivotColumnForSingleAggregation: never;
2359
2572
  dataParams?: never;
2360
2573
  originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
@@ -2450,7 +2663,7 @@ declare const useManagedDataSource: (props: unknown) => {
2450
2663
  };
2451
2664
  lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
2452
2665
  pivotMappings?: never;
2453
- propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "isRowDisabled" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "rowDisabledState" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultRowDisabledState" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
2666
+ propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "isRowDisabled" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "rowDisabledState" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultRowDisabledState" | "onRowDisabledStateChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
2454
2667
  showSeparatePivotColumnForSingleAggregation: never;
2455
2668
  dataParams?: never;
2456
2669
  originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
@@ -2546,7 +2759,7 @@ declare const useManagedDataSource: (props: unknown) => {
2546
2759
  };
2547
2760
  lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
2548
2761
  pivotMappings?: never;
2549
- propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "isRowDisabled" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "rowDisabledState" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultRowDisabledState" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
2762
+ propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "isRowDisabled" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "rowDisabledState" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultRowDisabledState" | "onRowDisabledStateChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
2550
2763
  showSeparatePivotColumnForSingleAggregation: never;
2551
2764
  dataParams?: never;
2552
2765
  originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
@@ -2643,7 +2856,7 @@ declare const useManagedDataSource: (props: unknown) => {
2643
2856
  };
2644
2857
  lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
2645
2858
  pivotMappings?: never;
2646
- propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "isRowDisabled" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "rowDisabledState" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultRowDisabledState" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
2859
+ propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "isRowDisabled" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "rowDisabledState" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultRowDisabledState" | "onRowDisabledStateChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
2647
2860
  showSeparatePivotColumnForSingleAggregation: never;
2648
2861
  dataParams?: never;
2649
2862
  originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
@@ -2739,7 +2952,7 @@ declare const useManagedDataSource: (props: unknown) => {
2739
2952
  };
2740
2953
  lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
2741
2954
  pivotMappings?: never;
2742
- propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "isRowDisabled" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "rowDisabledState" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultRowDisabledState" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
2955
+ propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "isRowDisabled" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "rowDisabledState" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultRowDisabledState" | "onRowDisabledStateChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
2743
2956
  showSeparatePivotColumnForSingleAggregation: never;
2744
2957
  dataParams?: never;
2745
2958
  originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
@@ -2835,7 +3048,7 @@ declare const useManagedDataSource: (props: unknown) => {
2835
3048
  };
2836
3049
  lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
2837
3050
  pivotMappings?: never;
2838
- propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "isRowDisabled" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "rowDisabledState" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultRowDisabledState" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
3051
+ propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "isRowDisabled" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "rowDisabledState" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultRowDisabledState" | "onRowDisabledStateChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
2839
3052
  showSeparatePivotColumnForSingleAggregation: never;
2840
3053
  dataParams?: never;
2841
3054
  originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
@@ -2932,7 +3145,7 @@ declare const useManagedDataSource: (props: unknown) => {
2932
3145
  };
2933
3146
  lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
2934
3147
  pivotMappings?: never;
2935
- propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "isRowDisabled" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "rowDisabledState" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultRowDisabledState" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
3148
+ propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "isRowDisabled" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "rowDisabledState" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultRowDisabledState" | "onRowDisabledStateChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
2936
3149
  showSeparatePivotColumnForSingleAggregation: never;
2937
3150
  dataParams?: never;
2938
3151
  originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
@@ -3028,7 +3241,7 @@ declare const useManagedDataSource: (props: unknown) => {
3028
3241
  };
3029
3242
  lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
3030
3243
  pivotMappings?: never;
3031
- propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "isRowDisabled" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "rowDisabledState" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultRowDisabledState" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
3244
+ propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "isRowDisabled" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "rowDisabledState" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultRowDisabledState" | "onRowDisabledStateChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
3032
3245
  showSeparatePivotColumnForSingleAggregation: never;
3033
3246
  dataParams?: never;
3034
3247
  originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
@@ -3124,7 +3337,7 @@ declare const useManagedDataSource: (props: unknown) => {
3124
3337
  };
3125
3338
  lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
3126
3339
  pivotMappings?: never;
3127
- propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "isRowDisabled" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "rowDisabledState" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultRowDisabledState" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
3340
+ propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "isRowDisabled" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "rowDisabledState" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultRowDisabledState" | "onRowDisabledStateChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
3128
3341
  showSeparatePivotColumnForSingleAggregation: never;
3129
3342
  dataParams?: never;
3130
3343
  originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
@@ -3221,7 +3434,7 @@ declare const useManagedDataSource: (props: unknown) => {
3221
3434
  };
3222
3435
  lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
3223
3436
  pivotMappings?: never;
3224
- propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "isRowDisabled" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "rowDisabledState" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultRowDisabledState" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
3437
+ propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "isRowDisabled" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "rowDisabledState" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultRowDisabledState" | "onRowDisabledStateChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
3225
3438
  showSeparatePivotColumnForSingleAggregation: never;
3226
3439
  dataParams?: never;
3227
3440
  originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
@@ -3317,7 +3530,7 @@ declare const useManagedDataSource: (props: unknown) => {
3317
3530
  };
3318
3531
  lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
3319
3532
  pivotMappings?: never;
3320
- propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "isRowDisabled" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "rowDisabledState" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultRowDisabledState" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
3533
+ propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "isRowDisabled" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "rowDisabledState" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultRowDisabledState" | "onRowDisabledStateChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
3321
3534
  showSeparatePivotColumnForSingleAggregation: never;
3322
3535
  dataParams?: never;
3323
3536
  originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
@@ -3413,7 +3626,7 @@ declare const useManagedDataSource: (props: unknown) => {
3413
3626
  };
3414
3627
  lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
3415
3628
  pivotMappings?: never;
3416
- propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "isRowDisabled" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "rowDisabledState" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultRowDisabledState" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
3629
+ propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "isRowDisabled" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "rowDisabledState" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultRowDisabledState" | "onRowDisabledStateChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
3417
3630
  showSeparatePivotColumnForSingleAggregation: never;
3418
3631
  dataParams?: never;
3419
3632
  originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
@@ -3510,7 +3723,7 @@ declare const useManagedDataSource: (props: unknown) => {
3510
3723
  };
3511
3724
  lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
3512
3725
  pivotMappings?: never;
3513
- propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "isRowDisabled" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "rowDisabledState" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultRowDisabledState" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
3726
+ propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "isRowDisabled" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "rowDisabledState" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultRowDisabledState" | "onRowDisabledStateChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
3514
3727
  showSeparatePivotColumnForSingleAggregation: never;
3515
3728
  dataParams?: never;
3516
3729
  originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
@@ -3606,7 +3819,7 @@ declare const useManagedDataSource: (props: unknown) => {
3606
3819
  };
3607
3820
  lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
3608
3821
  pivotMappings?: never;
3609
- propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "isRowDisabled" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "rowDisabledState" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultRowDisabledState" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
3822
+ propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "isRowDisabled" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "rowDisabledState" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultRowDisabledState" | "onRowDisabledStateChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
3610
3823
  showSeparatePivotColumnForSingleAggregation: never;
3611
3824
  dataParams?: never;
3612
3825
  originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
@@ -3702,7 +3915,7 @@ declare const useManagedDataSource: (props: unknown) => {
3702
3915
  };
3703
3916
  lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
3704
3917
  pivotMappings?: never;
3705
- propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "isRowDisabled" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "rowDisabledState" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultRowDisabledState" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
3918
+ propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "isRowDisabled" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "rowDisabledState" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultRowDisabledState" | "onRowDisabledStateChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
3706
3919
  showSeparatePivotColumnForSingleAggregation: never;
3707
3920
  dataParams?: never;
3708
3921
  originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
@@ -3800,7 +4013,7 @@ declare const useManagedDataSource: (props: unknown) => {
3800
4013
  };
3801
4014
  lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
3802
4015
  pivotMappings?: never;
3803
- propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "isRowDisabled" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "rowDisabledState" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultRowDisabledState" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
4016
+ propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "isRowDisabled" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "rowDisabledState" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultRowDisabledState" | "onRowDisabledStateChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
3804
4017
  showSeparatePivotColumnForSingleAggregation: never;
3805
4018
  dataParams?: never;
3806
4019
  originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
@@ -3896,7 +4109,7 @@ declare const useManagedDataSource: (props: unknown) => {
3896
4109
  };
3897
4110
  lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
3898
4111
  pivotMappings?: never;
3899
- propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "isRowDisabled" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "rowDisabledState" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultRowDisabledState" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
4112
+ propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "isRowDisabled" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "rowDisabledState" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultRowDisabledState" | "onRowDisabledStateChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
3900
4113
  showSeparatePivotColumnForSingleAggregation: never;
3901
4114
  dataParams?: never;
3902
4115
  originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
@@ -3992,7 +4205,7 @@ declare const useManagedDataSource: (props: unknown) => {
3992
4205
  };
3993
4206
  lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
3994
4207
  pivotMappings?: never;
3995
- propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "isRowDisabled" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "rowDisabledState" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultRowDisabledState" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
4208
+ propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "isRowDisabled" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "rowDisabledState" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultRowDisabledState" | "onRowDisabledStateChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
3996
4209
  showSeparatePivotColumnForSingleAggregation: never;
3997
4210
  dataParams?: never;
3998
4211
  originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
@@ -4088,7 +4301,7 @@ declare const useManagedDataSource: (props: unknown) => {
4088
4301
  };
4089
4302
  lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
4090
4303
  pivotMappings?: never;
4091
- propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "isRowDisabled" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "rowDisabledState" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultRowDisabledState" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
4304
+ propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "isRowDisabled" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "rowDisabledState" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultRowDisabledState" | "onRowDisabledStateChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
4092
4305
  showSeparatePivotColumnForSingleAggregation: never;
4093
4306
  dataParams?: never;
4094
4307
  originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
@@ -4184,7 +4397,7 @@ declare const useManagedDataSource: (props: unknown) => {
4184
4397
  };
4185
4398
  lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
4186
4399
  pivotMappings?: never;
4187
- propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "isRowDisabled" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "rowDisabledState" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultRowDisabledState" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
4400
+ propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "isRowDisabled" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "rowDisabledState" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultRowDisabledState" | "onRowDisabledStateChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
4188
4401
  showSeparatePivotColumnForSingleAggregation: never;
4189
4402
  dataParams?: never;
4190
4403
  originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
@@ -4280,7 +4493,7 @@ declare const useManagedDataSource: (props: unknown) => {
4280
4493
  };
4281
4494
  lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
4282
4495
  pivotMappings?: never;
4283
- propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "isRowDisabled" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "rowDisabledState" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultRowDisabledState" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
4496
+ propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "isRowDisabled" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "rowDisabledState" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultRowDisabledState" | "onRowDisabledStateChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
4284
4497
  showSeparatePivotColumnForSingleAggregation: never;
4285
4498
  dataParams?: never;
4286
4499
  originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
@@ -5073,11 +5286,14 @@ declare type InfiniteTablePropColumnGroups = Record<string, InfiniteTableColumnG
5073
5286
  declare type InfiniteTablePropCollapsedColumnGroups = Map<string[], string>;
5074
5287
  declare type InfiniteTableColumnGroupHeaderRenderParams = {
5075
5288
  columnGroup: InfiniteTableComputedColumnGroup;
5289
+ horizontalLayoutPageIndex: number | null;
5076
5290
  };
5077
5291
  declare type InfiniteTableColumnGroupHeaderRenderFunction = (params: InfiniteTableColumnGroupHeaderRenderParams) => Renderable;
5292
+ declare type InfiniteTableColumnGroupStyleFunction = (params: InfiniteTableColumnGroupHeaderRenderParams) => React$1.CSSProperties;
5078
5293
  declare type InfiniteTableColumnGroup = {
5079
5294
  columnGroup?: string;
5080
5295
  header?: Renderable | InfiniteTableColumnGroupHeaderRenderFunction;
5296
+ style?: React$1.CSSProperties | InfiniteTableColumnGroupStyleFunction;
5081
5297
  };
5082
5298
  declare type InfiniteTableComputedColumnGroup = InfiniteTableColumnGroup & {
5083
5299
  id: string;
@@ -5172,6 +5388,7 @@ interface InfiniteTableProps<T> {
5172
5388
  children?: React$1.JSX.Element | React$1.JSX.Element[] | React$1.ReactNode;
5173
5389
  loadingText?: Renderable;
5174
5390
  components?: InfiniteTablePropComponents<T>;
5391
+ wrapRowsHorizontally?: boolean;
5175
5392
  keyboardShortcuts?: InfiniteTablePropKeyboardShorcut[];
5176
5393
  viewportReservedWidth?: number;
5177
5394
  onViewportReservedWidthChange?: (viewportReservedWidth: number) => void;
@@ -5526,4 +5743,4 @@ declare const components: {
5526
5743
  NumberFilterEditor: typeof NumberFilterEditor;
5527
5744
  };
5528
5745
 
5529
- export { AdvancedAlignable, CellSelectionState, CellSelectionStateObject, ColumnTypeWithInherit, DataClient, DataSource, DataSourceAction, DataSourceActionType, DataSourceAggregationReducer, DataSourceApi, DataSourceCRUDParam, DataSourceComponentActions, DataSourceContextValue, DataSourceData, DataSourceDataParams, DataSourceDataParamsChanges, DataSourceDerivedState, DataSourceFilterFunctionParam, DataSourceFilterOperator, DataSourceFilterOperatorFunction, DataSourceFilterOperatorFunctionParam, DataSourceFilterType, DataSourceFilterValueItem, DataSourceFilterValueItemValueGetter, DataSourceGroupBy, DataSourceGroupRowsList, DataSourceInsertParam, DataSourceLivePaginationCursorFn, DataSourceLivePaginationCursorParams, DataSourceLivePaginationCursorValue, DataSourceMappedState, DataSourceMappings, DataSourceMasterDetailContextValue, DataSourcePivotBy, DataSourcePropAggregationReducers, DataSourcePropCellSelection, DataSourcePropCellSelection_MultiCell, DataSourcePropCellSelection_SingleCell, DataSourcePropFilterFunction, DataSourcePropFilterTypes, DataSourcePropFilterValue, DataSourcePropGroupBy, DataSourcePropGroupRowsStateObject, DataSourcePropIsRowSelected, DataSourcePropLivePaginationCursor, DataSourcePropMultiRowSelectionChangeParamType, DataSourcePropOnCellSelectionChange, DataSourcePropOnCellSelectionChange_MultiCell, DataSourcePropOnCellSelectionChange_SingleCell, DataSourcePropOnRowSelectionChange, DataSourcePropOnRowSelectionChange_MultiRow, DataSourcePropOnRowSelectionChange_SingleRow, DataSourcePropPivotBy, DataSourcePropRowInfoReducers, DataSourcePropRowSelection, DataSourcePropRowSelection_MultiRow, DataSourcePropRowSelection_SingleRow, DataSourcePropSelectionMode, DataSourcePropShouldReloadData, DataSourcePropShouldReloadDataObject, DataSourcePropSortFn, DataSourcePropSortInfo, DataSourcePropSortTypes, DataSourceProps, DataSourcePropsWithChildren, DataSourceRawReducer, DataSourceRemoteData, DataSourceRowInfoReducer, DataSourceSetupState, DataSourceSingleSortInfo, DataSourceSortInfo, DataSourceState, DebugLogger, DeepMap, ElementContainerGetter, FixedSizeSet, GroupRowsState, InfiniteColumnEditorContextType, InfiniteTable, InfiniteTableAction, InfiniteTableActionType, InfiniteTableApi, InfiniteTableClassName, InfiniteTableColumn, InfiniteTableColumnAggregator, InfiniteTableColumnApi, InfiniteTableColumnCellContextType, InfiniteTableColumnComparer, InfiniteTableColumnGroup, InfiniteTableColumnRenderFunctionForGroupRows, InfiniteTableColumnRenderFunctionForNormalRows, InfiniteTableColumnRenderValueParam, InfiniteTableColumnRowspanParam, InfiniteTableColumnSizingOptions, InfiniteTableColumnValueFormatterParams, InfiniteTableColumnValueGetterParams, InfiniteTableComponent, InfiniteTableComputedColumn, InfiniteTableComputedValues, InfiniteTableContextValue, InfiniteTableGroupColumnBase, InfiniteTableGroupColumnFunction, InfiniteTableGroupColumnGetterOptions, InfiniteTablePivotColumn, InfiniteTablePropAutoSizeColumnsKey, InfiniteTablePropColumnGroupVisibility, InfiniteTablePropColumnGroups, InfiniteTablePropColumnOrder, InfiniteTablePropColumnPinning, InfiniteTablePropColumnSizing, InfiniteTablePropColumnTypes, InfiniteTablePropColumnVisibility, InfiniteTablePropColumns, InfiniteTablePropComponents, InfiniteTablePropGetCellContextMenuItems, InfiniteTablePropGetColumnMenuItems, InfiniteTablePropGroupColumn, InfiniteTablePropGroupRenderStrategy, InfiniteTablePropHeaderOptions, InfiniteTablePropKeyboardNavigation, InfiniteTablePropKeyboardShorcut, InfiniteTablePropMultiSortBehavior, InfiniteTablePropRowClassName, InfiniteTablePropRowStyle, InfiniteTableProps, InfiniteTableRowClassNameFn, InfiniteTableRowInfo, InfiniteTableRowStyleFn, InfiniteTableState, InfiniteTable_HasGrouping_RowInfoGroup, InfiniteTable_HasGrouping_RowInfoNormal, LazyGroupDataDeepMap, LazyGroupDataItem, LazyRowInfoGroup, Menu, MenuChildrenFnParam, MenuColumn, MenuColumnRenderParam, MenuDecoration, MenuIconProps, MenuItemActionContext, MenuItemDefinition, MenuItemObject, MenuProps, MenuRenderable, MenuRuntimeItem, MenuRuntimeItemSelectable, MenuSeparator, OverlayShowParams, RowDetailCache, RowDetailState, RowDetailStateObject, RowDisabledStateObject, RowSelectionState, ScrollStopInfo, Scrollbars, ShowOverlayFn, TableRenderRange, WeakFixedSizeSet, components, debounce, debug, defaultFilterTypes, eventMatchesKeyboardShortcut, defaultFilterTypes as filterTypes, flatten, buildManagedComponent as getComponentStateRoot, group, interceptMap, keyboardShortcuts, multisort, queryKeyToCacheKey, useManagedComponentState as useComponentState, useDataSourceInternal, useDataSourceState, useEffectWithChanges, useEffectWithObject, useGridScroll, useInfiniteColumnCell, useInfiniteColumnEditor, useInfiniteColumnFilterEditor, useInfiniteHeaderCell, useManagedDataSource, useMasterRowInfo, useOverlay, useOverlayPortal, useRowInfoReducers, useVisibleColumnSizes };
5746
+ export { AdvancedAlignable, CellSelectionState, CellSelectionStateObject, ColumnTypeWithInherit, DataClient, DataSource, DataSourceAction, DataSourceActionType, DataSourceAggregationReducer, DataSourceApi, DataSourceCRUDParam, DataSourceComponentActions, DataSourceContextValue, DataSourceData, DataSourceDataParams, DataSourceDataParamsChanges, DataSourceDerivedState, DataSourceFilterFunctionParam, DataSourceFilterOperator, DataSourceFilterOperatorFunction, DataSourceFilterOperatorFunctionParam, DataSourceFilterType, DataSourceFilterValueItem, DataSourceFilterValueItemValueGetter, DataSourceGroupBy, DataSourceGroupRowsList, DataSourceInsertParam, DataSourceLivePaginationCursorFn, DataSourceLivePaginationCursorParams, DataSourceLivePaginationCursorValue, DataSourceMappedState, DataSourceMappings, DataSourceMasterDetailContextValue, DataSourcePivotBy, DataSourcePropAggregationReducers, DataSourcePropCellSelection, DataSourcePropCellSelection_MultiCell, DataSourcePropCellSelection_SingleCell, DataSourcePropFilterFunction, DataSourcePropFilterTypes, DataSourcePropFilterValue, DataSourcePropGroupBy, DataSourcePropGroupRowsStateObject, DataSourcePropIsRowSelected, DataSourcePropLivePaginationCursor, DataSourcePropMultiRowSelectionChangeParamType, DataSourcePropOnCellSelectionChange, DataSourcePropOnCellSelectionChange_MultiCell, DataSourcePropOnCellSelectionChange_SingleCell, DataSourcePropOnRowSelectionChange, DataSourcePropOnRowSelectionChange_MultiRow, DataSourcePropOnRowSelectionChange_SingleRow, DataSourcePropPivotBy, DataSourcePropRowInfoReducers, DataSourcePropRowSelection, DataSourcePropRowSelection_MultiRow, DataSourcePropRowSelection_SingleRow, DataSourcePropSelectionMode, DataSourcePropShouldReloadData, DataSourcePropShouldReloadDataObject, DataSourcePropSortFn, DataSourcePropSortInfo, DataSourcePropSortTypes, DataSourceProps, DataSourcePropsWithChildren, DataSourceRawReducer, DataSourceRemoteData, DataSourceRowInfoReducer, DataSourceSetupState, DataSourceSingleSortInfo, DataSourceSortInfo, DataSourceState, DebugLogger, DeepMap, ElementContainerGetter, FixedSizeSet, GroupRowsState, InfiniteColumnEditorContextType, InfiniteTable, InfiniteTableAction, InfiniteTableActionType, InfiniteTableApi, InfiniteTableClassName, InfiniteTableColumn, InfiniteTableColumnAggregator, InfiniteTableColumnApi, InfiniteTableColumnCellContextType, InfiniteTableColumnComparer, InfiniteTableColumnGroup, InfiniteTableColumnRenderFunctionForGroupRows, InfiniteTableColumnRenderFunctionForNormalRows, InfiniteTableColumnRenderValueParam, InfiniteTableColumnRowspanParam, InfiniteTableColumnSizingOptions, InfiniteTableColumnValueFormatterParams, InfiniteTableColumnValueGetterParams, InfiniteTableComponent, InfiniteTableComputedColumn, InfiniteTableComputedValues, InfiniteTableContextValue, InfiniteTableGroupColumnBase, InfiniteTableGroupColumnFunction, InfiniteTableGroupColumnGetterOptions, InfiniteTablePivotColumn, InfiniteTablePropAutoSizeColumnsKey, InfiniteTablePropColumnGroupVisibility, InfiniteTablePropColumnGroups, InfiniteTablePropColumnOrder, InfiniteTablePropColumnPinning, InfiniteTablePropColumnSizing, InfiniteTablePropColumnTypes, InfiniteTablePropColumnVisibility, InfiniteTablePropColumns, InfiniteTablePropComponents, InfiniteTablePropGetCellContextMenuItems, InfiniteTablePropGetColumnMenuItems, InfiniteTablePropGroupColumn, InfiniteTablePropGroupRenderStrategy, InfiniteTablePropHeaderOptions, InfiniteTablePropKeyboardNavigation, InfiniteTablePropKeyboardShorcut, InfiniteTablePropMultiSortBehavior, InfiniteTablePropRowClassName, InfiniteTablePropRowStyle, InfiniteTableProps, InfiniteTableRowClassNameFn, InfiniteTableRowInfo, InfiniteTableRowStyleFn, InfiniteTableState, InfiniteTable_HasGrouping_RowInfoGroup, InfiniteTable_HasGrouping_RowInfoNormal, LazyGroupDataDeepMap, LazyGroupDataItem, LazyRowInfoGroup, Menu, MenuChildrenFnParam, MenuColumn, MenuColumnRenderParam, MenuDecoration, MenuIconProps, MenuItemActionContext, MenuItemDefinition, MenuItemObject, MenuProps, MenuRenderable, MenuRuntimeItem, MenuRuntimeItemSelectable, MenuSeparator, OverlayShowParams, RowDetailCache, RowDetailState, RowDetailStateObject, RowDisabledState, RowDisabledStateObject, RowSelectionState, ScrollStopInfo, Scrollbars, ShowOverlayFn, TableRenderRange, WeakFixedSizeSet, components, debounce, debug, defaultFilterTypes, eventMatchesKeyboardShortcut, defaultFilterTypes as filterTypes, flatten, buildManagedComponent as getComponentStateRoot, group, interceptMap, keyboardShortcuts, multisort, queryKeyToCacheKey, useManagedComponentState as useComponentState, useDataSourceInternal, useDataSourceState, useEffectWithChanges, useEffectWithObject, useGridScroll, useInfiniteColumnCell, useInfiniteColumnEditor, useInfiniteColumnFilterEditor, useInfiniteHeaderCell, useManagedDataSource, useMasterRowInfo, useOverlay, useOverlayPortal, useRowInfoReducers, useVisibleColumnSizes };