@infinite-table/infinite-react 4.3.6 → 4.3.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.d.ts CHANGED
@@ -632,7 +632,13 @@ declare type InfiniteTableColumn<DATA_TYPE> = {
632
632
  field?: KeyOfNoSymbol<DATA_TYPE>;
633
633
  valueGetter?: InfiniteTableColumnValueGetter<DATA_TYPE>;
634
634
  defaultSortable?: InfiniteTableColumnSortable<DATA_TYPE>;
635
- draggable?: boolean;
635
+ /**
636
+ * Whether the column is draggable by default.
637
+ *
638
+ * This prop overrides the top-level columnDefaultDraggable prop, but is
639
+ * overridden by the top-level draggableColumns prop.
640
+ */
641
+ defaultDraggable?: boolean;
636
642
  resizable?: boolean;
637
643
  shouldAcceptEdit?: (params: InfiniteTablePropOnEditAcceptedParams<DATA_TYPE>) => boolean | Error | Promise<boolean | Error>;
638
644
  contentFocusable?: InfiniteTableColumnContentFocusable<DATA_TYPE>;
@@ -1460,7 +1466,8 @@ interface InfiniteTableMappedState<T> {
1460
1466
  columnDefaultWidth: NonUndefined<InfiniteTableProps<T>['columnDefaultWidth']>;
1461
1467
  columnDefaultFlex: InfiniteTableProps<T>['columnDefaultFlex'];
1462
1468
  columnCssEllipsis: NonUndefined<InfiniteTableProps<T>['columnCssEllipsis']>;
1463
- draggableColumns: NonUndefined<InfiniteTableProps<T>['draggableColumns']>;
1469
+ draggableColumns: InfiniteTableProps<T>['draggableColumns'];
1470
+ columnDefaultDraggable: InfiniteTableProps<T>['columnDefaultDraggable'];
1464
1471
  sortable: InfiniteTableProps<T>['sortable'];
1465
1472
  hideEmptyGroupColumns: NonUndefined<InfiniteTableProps<T>['hideEmptyGroupColumns']>;
1466
1473
  hideColumnWhenGrouped: NonUndefined<InfiniteTableProps<T>['hideColumnWhenGrouped']>;
@@ -1821,6 +1828,7 @@ interface DataSourceMappedState<T> {
1821
1828
  refetchKey: NonUndefined<DataSourceProps<T>['refetchKey']>;
1822
1829
  isRowSelected: DataSourceProps<T>['isRowSelected'];
1823
1830
  debugId: DataSourceProps<T>['debugId'];
1831
+ batchOperationDelay: DataSourceProps<T>['batchOperationDelay'];
1824
1832
  onDataArrayChange: DataSourceProps<T>['onDataArrayChange'];
1825
1833
  onDataMutations: DataSourceProps<T>['onDataMutations'];
1826
1834
  onReady: DataSourceProps<T>['onReady'];
@@ -2001,6 +2009,7 @@ declare type DataSourceProps<T> = {
2001
2009
  */
2002
2010
  fields?: (keyof T)[];
2003
2011
  refetchKey?: number | string | object;
2012
+ batchOperationDelay?: number;
2004
2013
  rowInfoReducers?: DataSourcePropRowInfoReducers<T>;
2005
2014
  data: DataSourceData<T>;
2006
2015
  selectionMode?: DataSourcePropSelectionMode;
@@ -2313,7 +2322,7 @@ declare const useManagedDataSource: (props: unknown) => {
2313
2322
  };
2314
2323
  lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
2315
2324
  pivotMappings?: never;
2316
- propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
2325
+ propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "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" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
2317
2326
  showSeparatePivotColumnForSingleAggregation: never;
2318
2327
  dataParams?: never;
2319
2328
  originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
@@ -2368,6 +2377,7 @@ declare const useManagedDataSource: (props: unknown) => {
2368
2377
  refetchKey: never;
2369
2378
  isRowSelected: never;
2370
2379
  debugId: never;
2380
+ batchOperationDelay: never;
2371
2381
  onDataArrayChange: never;
2372
2382
  onDataMutations: never;
2373
2383
  onReady: never;
@@ -2406,7 +2416,7 @@ declare const useManagedDataSource: (props: unknown) => {
2406
2416
  };
2407
2417
  lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
2408
2418
  pivotMappings?: never;
2409
- propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
2419
+ propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "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" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
2410
2420
  showSeparatePivotColumnForSingleAggregation: never;
2411
2421
  dataParams?: never;
2412
2422
  originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
@@ -2461,6 +2471,7 @@ declare const useManagedDataSource: (props: unknown) => {
2461
2471
  refetchKey: never;
2462
2472
  isRowSelected: never;
2463
2473
  debugId: never;
2474
+ batchOperationDelay: never;
2464
2475
  onDataArrayChange: never;
2465
2476
  onDataMutations: never;
2466
2477
  onReady: never;
@@ -2499,7 +2510,7 @@ declare const useManagedDataSource: (props: unknown) => {
2499
2510
  };
2500
2511
  lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
2501
2512
  pivotMappings?: never;
2502
- propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
2513
+ propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "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" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
2503
2514
  showSeparatePivotColumnForSingleAggregation: never;
2504
2515
  dataParams?: never;
2505
2516
  originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
@@ -2554,6 +2565,7 @@ declare const useManagedDataSource: (props: unknown) => {
2554
2565
  refetchKey: never;
2555
2566
  isRowSelected: never;
2556
2567
  debugId: never;
2568
+ batchOperationDelay: never;
2557
2569
  onDataArrayChange: never;
2558
2570
  onDataMutations: never;
2559
2571
  onReady: never;
@@ -2593,7 +2605,7 @@ declare const useManagedDataSource: (props: unknown) => {
2593
2605
  };
2594
2606
  lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
2595
2607
  pivotMappings?: never;
2596
- propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
2608
+ propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "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" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
2597
2609
  showSeparatePivotColumnForSingleAggregation: never;
2598
2610
  dataParams?: never;
2599
2611
  originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
@@ -2648,6 +2660,7 @@ declare const useManagedDataSource: (props: unknown) => {
2648
2660
  refetchKey: never;
2649
2661
  isRowSelected: never;
2650
2662
  debugId: never;
2663
+ batchOperationDelay: never;
2651
2664
  onDataArrayChange: never;
2652
2665
  onDataMutations: never;
2653
2666
  onReady: never;
@@ -2686,7 +2699,7 @@ declare const useManagedDataSource: (props: unknown) => {
2686
2699
  };
2687
2700
  lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
2688
2701
  pivotMappings?: never;
2689
- propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
2702
+ propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "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" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
2690
2703
  showSeparatePivotColumnForSingleAggregation: never;
2691
2704
  dataParams?: never;
2692
2705
  originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
@@ -2741,6 +2754,7 @@ declare const useManagedDataSource: (props: unknown) => {
2741
2754
  refetchKey: never;
2742
2755
  isRowSelected: never;
2743
2756
  debugId: never;
2757
+ batchOperationDelay: never;
2744
2758
  onDataArrayChange: never;
2745
2759
  onDataMutations: never;
2746
2760
  onReady: never;
@@ -2779,7 +2793,7 @@ declare const useManagedDataSource: (props: unknown) => {
2779
2793
  };
2780
2794
  lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
2781
2795
  pivotMappings?: never;
2782
- propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
2796
+ propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "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" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
2783
2797
  showSeparatePivotColumnForSingleAggregation: never;
2784
2798
  dataParams?: never;
2785
2799
  originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
@@ -2834,6 +2848,7 @@ declare const useManagedDataSource: (props: unknown) => {
2834
2848
  refetchKey: never;
2835
2849
  isRowSelected: never;
2836
2850
  debugId: never;
2851
+ batchOperationDelay: never;
2837
2852
  onDataArrayChange: never;
2838
2853
  onDataMutations: never;
2839
2854
  onReady: never;
@@ -2873,7 +2888,7 @@ declare const useManagedDataSource: (props: unknown) => {
2873
2888
  };
2874
2889
  lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
2875
2890
  pivotMappings?: never;
2876
- propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
2891
+ propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "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" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
2877
2892
  showSeparatePivotColumnForSingleAggregation: never;
2878
2893
  dataParams?: never;
2879
2894
  originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
@@ -2928,6 +2943,7 @@ declare const useManagedDataSource: (props: unknown) => {
2928
2943
  refetchKey: never;
2929
2944
  isRowSelected: never;
2930
2945
  debugId: never;
2946
+ batchOperationDelay: never;
2931
2947
  onDataArrayChange: never;
2932
2948
  onDataMutations: never;
2933
2949
  onReady: never;
@@ -2966,7 +2982,7 @@ declare const useManagedDataSource: (props: unknown) => {
2966
2982
  };
2967
2983
  lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
2968
2984
  pivotMappings?: never;
2969
- propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
2985
+ propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "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" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
2970
2986
  showSeparatePivotColumnForSingleAggregation: never;
2971
2987
  dataParams?: never;
2972
2988
  originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
@@ -3021,6 +3037,7 @@ declare const useManagedDataSource: (props: unknown) => {
3021
3037
  refetchKey: never;
3022
3038
  isRowSelected: never;
3023
3039
  debugId: never;
3040
+ batchOperationDelay: never;
3024
3041
  onDataArrayChange: never;
3025
3042
  onDataMutations: never;
3026
3043
  onReady: never;
@@ -3059,7 +3076,7 @@ declare const useManagedDataSource: (props: unknown) => {
3059
3076
  };
3060
3077
  lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
3061
3078
  pivotMappings?: never;
3062
- propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
3079
+ propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "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" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
3063
3080
  showSeparatePivotColumnForSingleAggregation: never;
3064
3081
  dataParams?: never;
3065
3082
  originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
@@ -3114,6 +3131,7 @@ declare const useManagedDataSource: (props: unknown) => {
3114
3131
  refetchKey: never;
3115
3132
  isRowSelected: never;
3116
3133
  debugId: never;
3134
+ batchOperationDelay: never;
3117
3135
  onDataArrayChange: never;
3118
3136
  onDataMutations: never;
3119
3137
  onReady: never;
@@ -3153,7 +3171,7 @@ declare const useManagedDataSource: (props: unknown) => {
3153
3171
  };
3154
3172
  lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
3155
3173
  pivotMappings?: never;
3156
- propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
3174
+ propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "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" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
3157
3175
  showSeparatePivotColumnForSingleAggregation: never;
3158
3176
  dataParams?: never;
3159
3177
  originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
@@ -3208,6 +3226,7 @@ declare const useManagedDataSource: (props: unknown) => {
3208
3226
  refetchKey: never;
3209
3227
  isRowSelected: never;
3210
3228
  debugId: never;
3229
+ batchOperationDelay: never;
3211
3230
  onDataArrayChange: never;
3212
3231
  onDataMutations: never;
3213
3232
  onReady: never;
@@ -3246,7 +3265,7 @@ declare const useManagedDataSource: (props: unknown) => {
3246
3265
  };
3247
3266
  lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
3248
3267
  pivotMappings?: never;
3249
- propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
3268
+ propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "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" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
3250
3269
  showSeparatePivotColumnForSingleAggregation: never;
3251
3270
  dataParams?: never;
3252
3271
  originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
@@ -3301,6 +3320,7 @@ declare const useManagedDataSource: (props: unknown) => {
3301
3320
  refetchKey: never;
3302
3321
  isRowSelected: never;
3303
3322
  debugId: never;
3323
+ batchOperationDelay: never;
3304
3324
  onDataArrayChange: never;
3305
3325
  onDataMutations: never;
3306
3326
  onReady: never;
@@ -3339,7 +3359,7 @@ declare const useManagedDataSource: (props: unknown) => {
3339
3359
  };
3340
3360
  lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
3341
3361
  pivotMappings?: never;
3342
- propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
3362
+ propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "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" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
3343
3363
  showSeparatePivotColumnForSingleAggregation: never;
3344
3364
  dataParams?: never;
3345
3365
  originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
@@ -3394,6 +3414,7 @@ declare const useManagedDataSource: (props: unknown) => {
3394
3414
  refetchKey: never;
3395
3415
  isRowSelected: never;
3396
3416
  debugId: never;
3417
+ batchOperationDelay: never;
3397
3418
  onDataArrayChange: never;
3398
3419
  onDataMutations: never;
3399
3420
  onReady: never;
@@ -3433,7 +3454,7 @@ declare const useManagedDataSource: (props: unknown) => {
3433
3454
  };
3434
3455
  lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
3435
3456
  pivotMappings?: never;
3436
- propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
3457
+ propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "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" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
3437
3458
  showSeparatePivotColumnForSingleAggregation: never;
3438
3459
  dataParams?: never;
3439
3460
  originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
@@ -3488,6 +3509,7 @@ declare const useManagedDataSource: (props: unknown) => {
3488
3509
  refetchKey: never;
3489
3510
  isRowSelected: never;
3490
3511
  debugId: never;
3512
+ batchOperationDelay: never;
3491
3513
  onDataArrayChange: never;
3492
3514
  onDataMutations: never;
3493
3515
  onReady: never;
@@ -3526,7 +3548,7 @@ declare const useManagedDataSource: (props: unknown) => {
3526
3548
  };
3527
3549
  lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
3528
3550
  pivotMappings?: never;
3529
- propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
3551
+ propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "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" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
3530
3552
  showSeparatePivotColumnForSingleAggregation: never;
3531
3553
  dataParams?: never;
3532
3554
  originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
@@ -3581,6 +3603,7 @@ declare const useManagedDataSource: (props: unknown) => {
3581
3603
  refetchKey: never;
3582
3604
  isRowSelected: never;
3583
3605
  debugId: never;
3606
+ batchOperationDelay: never;
3584
3607
  onDataArrayChange: never;
3585
3608
  onDataMutations: never;
3586
3609
  onReady: never;
@@ -3619,7 +3642,7 @@ declare const useManagedDataSource: (props: unknown) => {
3619
3642
  };
3620
3643
  lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
3621
3644
  pivotMappings?: never;
3622
- propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
3645
+ propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "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" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
3623
3646
  showSeparatePivotColumnForSingleAggregation: never;
3624
3647
  dataParams?: never;
3625
3648
  originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
@@ -3674,6 +3697,7 @@ declare const useManagedDataSource: (props: unknown) => {
3674
3697
  refetchKey: never;
3675
3698
  isRowSelected: never;
3676
3699
  debugId: never;
3700
+ batchOperationDelay: never;
3677
3701
  onDataArrayChange: never;
3678
3702
  onDataMutations: never;
3679
3703
  onReady: never;
@@ -3714,7 +3738,7 @@ declare const useManagedDataSource: (props: unknown) => {
3714
3738
  };
3715
3739
  lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
3716
3740
  pivotMappings?: never;
3717
- propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
3741
+ propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "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" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
3718
3742
  showSeparatePivotColumnForSingleAggregation: never;
3719
3743
  dataParams?: never;
3720
3744
  originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
@@ -3769,6 +3793,7 @@ declare const useManagedDataSource: (props: unknown) => {
3769
3793
  refetchKey: never;
3770
3794
  isRowSelected: never;
3771
3795
  debugId: never;
3796
+ batchOperationDelay: never;
3772
3797
  onDataArrayChange: never;
3773
3798
  onDataMutations: never;
3774
3799
  onReady: never;
@@ -3807,7 +3832,7 @@ declare const useManagedDataSource: (props: unknown) => {
3807
3832
  };
3808
3833
  lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
3809
3834
  pivotMappings?: never;
3810
- propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
3835
+ propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "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" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
3811
3836
  showSeparatePivotColumnForSingleAggregation: never;
3812
3837
  dataParams?: never;
3813
3838
  originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
@@ -3862,6 +3887,7 @@ declare const useManagedDataSource: (props: unknown) => {
3862
3887
  refetchKey: never;
3863
3888
  isRowSelected: never;
3864
3889
  debugId: never;
3890
+ batchOperationDelay: never;
3865
3891
  onDataArrayChange: never;
3866
3892
  onDataMutations: never;
3867
3893
  onReady: never;
@@ -3900,7 +3926,7 @@ declare const useManagedDataSource: (props: unknown) => {
3900
3926
  };
3901
3927
  lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
3902
3928
  pivotMappings?: never;
3903
- propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
3929
+ propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "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" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
3904
3930
  showSeparatePivotColumnForSingleAggregation: never;
3905
3931
  dataParams?: never;
3906
3932
  originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
@@ -3955,6 +3981,7 @@ declare const useManagedDataSource: (props: unknown) => {
3955
3981
  refetchKey: never;
3956
3982
  isRowSelected: never;
3957
3983
  debugId: never;
3984
+ batchOperationDelay: never;
3958
3985
  onDataArrayChange: never;
3959
3986
  onDataMutations: never;
3960
3987
  onReady: never;
@@ -3993,7 +4020,7 @@ declare const useManagedDataSource: (props: unknown) => {
3993
4020
  };
3994
4021
  lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
3995
4022
  pivotMappings?: never;
3996
- propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
4023
+ propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "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" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
3997
4024
  showSeparatePivotColumnForSingleAggregation: never;
3998
4025
  dataParams?: never;
3999
4026
  originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
@@ -4048,6 +4075,7 @@ declare const useManagedDataSource: (props: unknown) => {
4048
4075
  refetchKey: never;
4049
4076
  isRowSelected: never;
4050
4077
  debugId: never;
4078
+ batchOperationDelay: never;
4051
4079
  onDataArrayChange: never;
4052
4080
  onDataMutations: never;
4053
4081
  onReady: never;
@@ -4086,7 +4114,7 @@ declare const useManagedDataSource: (props: unknown) => {
4086
4114
  };
4087
4115
  lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
4088
4116
  pivotMappings?: never;
4089
- propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
4117
+ propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "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" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
4090
4118
  showSeparatePivotColumnForSingleAggregation: never;
4091
4119
  dataParams?: never;
4092
4120
  originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
@@ -4141,6 +4169,7 @@ declare const useManagedDataSource: (props: unknown) => {
4141
4169
  refetchKey: never;
4142
4170
  isRowSelected: never;
4143
4171
  debugId: never;
4172
+ batchOperationDelay: never;
4144
4173
  onDataArrayChange: never;
4145
4174
  onDataMutations: never;
4146
4175
  onReady: never;
@@ -4179,7 +4208,7 @@ declare const useManagedDataSource: (props: unknown) => {
4179
4208
  };
4180
4209
  lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
4181
4210
  pivotMappings?: never;
4182
- propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
4211
+ propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "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" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
4183
4212
  showSeparatePivotColumnForSingleAggregation: never;
4184
4213
  dataParams?: never;
4185
4214
  originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
@@ -4234,6 +4263,7 @@ declare const useManagedDataSource: (props: unknown) => {
4234
4263
  refetchKey: never;
4235
4264
  isRowSelected: never;
4236
4265
  debugId: never;
4266
+ batchOperationDelay: never;
4237
4267
  onDataArrayChange: never;
4238
4268
  onDataMutations: never;
4239
4269
  onReady: never;
@@ -4783,7 +4813,7 @@ declare type InfiniteTableColumnType<T> = {
4783
4813
  defaultHiddenWhenGroupedBy?: InfiniteTableColumn<T>['defaultHiddenWhenGroupedBy'];
4784
4814
  header?: InfiniteTableColumn<T>['header'];
4785
4815
  comparer?: InfiniteTableColumn<T>['comparer'];
4786
- draggable?: InfiniteTableColumn<T>['draggable'];
4816
+ draggable?: InfiniteTableColumn<T>['defaultDraggable'];
4787
4817
  resizable?: InfiniteTableColumn<T>['resizable'];
4788
4818
  align?: InfiniteTableColumn<T>['align'];
4789
4819
  headerAlign?: InfiniteTableColumn<T>['headerAlign'];
@@ -4942,6 +4972,7 @@ interface InfiniteTableApi<T> {
4942
4972
  getSortingForColumn: (columnId: string) => SortDir | null;
4943
4973
  getColumnApi: (columnId: string) => InfiniteTableColumnApi<T> | null;
4944
4974
  setVisibilityForColumn: (columnId: string, visible: boolean) => void;
4975
+ setVisibilityForColumnGroup: (columnGroupId: string, visible: boolean) => void;
4945
4976
  getVisibleColumnsCount: () => number;
4946
4977
  scrollRowIntoView: (rowIndex: number, config?: {
4947
4978
  scrollAdjustPosition?: ScrollAdjustPosition;
@@ -5095,6 +5126,7 @@ interface InfiniteTableProps<T> {
5095
5126
  hideEmptyGroupColumns?: boolean;
5096
5127
  columnVisibility?: InfiniteTablePropColumnVisibility;
5097
5128
  columnGroupVisibility?: InfiniteTablePropColumnGroupVisibility;
5129
+ defaultColumnGroupVisibility?: InfiniteTablePropColumnGroupVisibility;
5098
5130
  defaultColumnVisibility?: InfiniteTablePropColumnVisibility;
5099
5131
  pinnedStartMaxWidth?: number;
5100
5132
  pinnedEndMaxWidth?: number;
@@ -5120,6 +5152,7 @@ interface InfiniteTableProps<T> {
5120
5152
  collapsedColumnGroups?: InfiniteTablePropCollapsedColumnGroups;
5121
5153
  onScrollbarsChange?: (scrollbars: Scrollbars) => void;
5122
5154
  onColumnVisibilityChange?: (columnVisibility: InfiniteTablePropColumnVisibility) => void;
5155
+ onColumnGroupVisibilityChange?: (columnGroupVisibility: InfiniteTablePropColumnGroupVisibility) => void;
5123
5156
  columnTypes?: InfiniteTablePropColumnTypes<T>;
5124
5157
  showSeparatePivotColumnForSingleAggregation?: boolean;
5125
5158
  isRowDetailExpanded?: (rowInfo: InfiniteTableRowInfo<T>) => boolean;
@@ -5172,6 +5205,17 @@ interface InfiniteTableProps<T> {
5172
5205
  onActiveCellIndexChange?: (activeCellIndex: [number, number]) => void;
5173
5206
  activeCellIndex?: [number, number] | null;
5174
5207
  defaultActiveCellIndex?: [number, number] | null;
5208
+ /**
5209
+ * Whether the columns are draggable by default.
5210
+ *
5211
+ * This is the prop that has the lowest priority - it's overridden by column.defaultDraggable and ultimately by draggableColumns
5212
+ */
5213
+ columnDefaultDraggable?: boolean;
5214
+ /**
5215
+ * Whether the columns are draggable by default.
5216
+ *
5217
+ * This is the prop that has the highest priority - overrides columnDefaultDraggable and column.defaultDraggable
5218
+ */
5175
5219
  draggableColumns?: boolean;
5176
5220
  draggableColumnsRestrictTo?: false | 'group';
5177
5221
  header?: boolean;