@infinite-table/infinite-react 7.5.0 → 8.0.0-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.
package/index.d.ts CHANGED
@@ -2426,14 +2426,16 @@ type InfiniteTableCellClickEventHandlerContext<T> = InfiniteTableEventHandlerCon
2426
2426
 
2427
2427
  type OnCellClickContext<T> = InfiniteTableCellClickEventHandlerContext<T> & InfiniteTableKeyboardEventHandlerContext<T>;
2428
2428
 
2429
- interface InfiniteTableContextValue<T> {
2429
+ interface InfiniteTableContextValue<T> extends InfiniteTableStableContextValue<T> {
2430
+ state: InfiniteTableState<T>;
2431
+ computed: InfiniteTableComputedValues<T>;
2430
2432
  children?: React.ReactNode;
2433
+ }
2434
+ interface InfiniteTableStableContextValue<T> {
2431
2435
  api: InfiniteTableApi<T>;
2432
2436
  dataSourceApi: DataSourceApi<T>;
2433
- state: InfiniteTableState<T>;
2434
2437
  actions: InfiniteTableActions<T>;
2435
2438
  dataSourceActions: DataSourceComponentActions<T>;
2436
- computed: InfiniteTableComputedValues<T>;
2437
2439
  getComputed: () => InfiniteTableComputedValues<T>;
2438
2440
  getState: () => InfiniteTableState<T>;
2439
2441
  getDataSourceState: () => DataSourceState<T>;
@@ -2795,13 +2797,13 @@ interface DataSourceSetupState<T> {
2795
2797
  debugTimings: Map<DebugTimingKey, number>;
2796
2798
  debugWarnings: Map<DataSourceDebugWarningKey, DebugWarningPayload>;
2797
2799
  indexer: Indexer<T, any>;
2798
- getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue | undefined>;
2799
- __apiRef: React$1.MutableRefObject<DataSourceApi<T> | null>;
2800
- lastSelectionUpdatedNodePathRef: React$1.MutableRefObject<{
2800
+ getDataSourceMasterContextRef: React$1.RefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
2801
+ __apiRef: React$1.RefObject<DataSourceApi<T> | null>;
2802
+ lastSelectionUpdatedNodePathRef: React$1.RefObject<{
2801
2803
  nodePath: NodePath$1;
2802
2804
  selected: boolean;
2803
2805
  } | null>;
2804
- lastExpandStateInfoRef: React$1.MutableRefObject<{
2806
+ lastExpandStateInfoRef: React$1.RefObject<{
2805
2807
  state: 'collapsed' | 'expanded';
2806
2808
  nodePath: NodePath$1 | null;
2807
2809
  }>;
@@ -3209,13 +3211,15 @@ type DataSourceDerivedState<T> = {
3209
3211
  selectionMode: NonUndefined<DataSourceProps<T>['selectionMode']>;
3210
3212
  };
3211
3213
  type DataSourceComponentActions<T> = ComponentStateActions<DataSourceState<T>>;
3212
- interface DataSourceContextValue<T> {
3213
- api: DataSourceApi<T>;
3214
- getState: () => DataSourceState<T>;
3214
+ interface DataSourceStableContextValue<T> {
3215
+ dataSourceApi: DataSourceApi<T>;
3216
+ getDataSourceState: () => DataSourceState<T>;
3215
3217
  assignState: (state: Partial<DataSourceState<T>>) => void;
3216
3218
  getDataSourceMasterContext: () => DataSourceMasterDetailContextValue<any> | undefined;
3217
- componentState: DataSourceState<T>;
3218
- componentActions: DataSourceComponentActions<T>;
3219
+ dataSourceActions: DataSourceComponentActions<T>;
3220
+ }
3221
+ interface DataSourceContextValue<T> extends DataSourceStableContextValue<T> {
3222
+ dataSourceState: DataSourceState<T>;
3219
3223
  }
3220
3224
  interface DataSourceMasterDetailContextValue<MASTER_TYPE = any> {
3221
3225
  registerDetail: (detail: DataSourceContextValue<any>) => void;
@@ -3331,7 +3335,7 @@ declare function HScrollSyncContent(props: HTMLAttributes<HTMLDivElement> & {
3331
3335
 
3332
3336
  declare function useGridScroll(onScroll: (scrollPosition: ScrollPosition) => void, deps: any[]): void;
3333
3337
 
3334
- declare function useVisibleColumnSizes(): {
3338
+ declare function useVisibleColumnSizes<T>(): {
3335
3339
  id: string;
3336
3340
  width: number;
3337
3341
  cssVarForWidth: string;
@@ -3426,7 +3430,7 @@ type RowDetailCacheEntry = {
3426
3430
 
3427
3431
  declare const defaultFilterTypes: Record<string, DataSourceFilterType<any>>;
3428
3432
 
3429
- declare function useDataSourceState<T>(): DataSourceState<T>;
3433
+ declare function useDataSourceState<T extends unknown>(selector: (ctx: DataSourceState<any>) => T): T;
3430
3434
 
3431
3435
  type FilterDataSourceParams<T> = {
3432
3436
  marker?: PerfMarker;
@@ -3443,6 +3447,22 @@ type FilterDataSourceParams<T> = {
3443
3447
  };
3444
3448
  declare function filterDataArray<T>(params: FilterDataSourceParams<T>): T[];
3445
3449
 
3450
+ /**
3451
+ * A selector hook that reads an object from the DataSource store.
3452
+ * Uses shallow equality — re-renders only when a property of the
3453
+ * returned object actually changes (by reference).
3454
+ *
3455
+ * Use this when the selector returns a derived object (e.g. picking
3456
+ * multiple properties), so that a new object literal with the same
3457
+ * values does not trigger a re-render.
3458
+ *
3459
+ * @param selector Function that extracts an object from the DataSource context.
3460
+ * Does NOT need to be memoized by the caller.
3461
+ */
3462
+ declare function useDataSourceSelector<R extends unknown>(selector: (ctx: DataSourceContextValue<any>) => R): R;
3463
+
3464
+ declare function useMasterRowInfo<T = any>(): InfiniteTableRowInfo<T> | undefined;
3465
+
3446
3466
  declare const useManagedDataSource: (props: object) => {
3447
3467
  contextValue: {
3448
3468
  componentState: {
@@ -3453,13 +3473,13 @@ declare const useManagedDataSource: (props: object) => {
3453
3473
  debugTimings: Map<DebugTimingKey, number>;
3454
3474
  debugWarnings: Map<DataSourceDebugWarningKey, DebugWarningPayload>;
3455
3475
  indexer: Indexer<unknown, any>;
3456
- getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue | undefined>;
3457
- __apiRef: React$1.MutableRefObject<DataSourceApi<unknown> | null>;
3458
- lastSelectionUpdatedNodePathRef: React$1.MutableRefObject<{
3476
+ getDataSourceMasterContextRef: React$1.RefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
3477
+ __apiRef: React$1.RefObject<DataSourceApi<unknown> | null>;
3478
+ lastSelectionUpdatedNodePathRef: React$1.RefObject<{
3459
3479
  nodePath: NodePath$1;
3460
3480
  selected: boolean;
3461
3481
  } | null>;
3462
- lastExpandStateInfoRef: React$1.MutableRefObject<{
3482
+ lastExpandStateInfoRef: React$1.RefObject<{
3463
3483
  state: "collapsed" | "expanded";
3464
3484
  nodePath: NodePath$1 | null;
3465
3485
  }>;
@@ -3595,13 +3615,13 @@ declare const useManagedDataSource: (props: object) => {
3595
3615
  debugTimings: Map<DebugTimingKey, number>;
3596
3616
  debugWarnings: Map<DataSourceDebugWarningKey, DebugWarningPayload>;
3597
3617
  indexer: Indexer<unknown, any>;
3598
- getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue | undefined>;
3599
- __apiRef: React$1.MutableRefObject<DataSourceApi<unknown> | null>;
3600
- lastSelectionUpdatedNodePathRef: React$1.MutableRefObject<{
3618
+ getDataSourceMasterContextRef: React$1.RefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
3619
+ __apiRef: React$1.RefObject<DataSourceApi<unknown> | null>;
3620
+ lastSelectionUpdatedNodePathRef: React$1.RefObject<{
3601
3621
  nodePath: NodePath$1;
3602
3622
  selected: boolean;
3603
3623
  } | null>;
3604
- lastExpandStateInfoRef: React$1.MutableRefObject<{
3624
+ lastExpandStateInfoRef: React$1.RefObject<{
3605
3625
  state: "collapsed" | "expanded";
3606
3626
  nodePath: NodePath$1 | null;
3607
3627
  }>;
@@ -3737,13 +3757,13 @@ declare const useManagedDataSource: (props: object) => {
3737
3757
  debugTimings: Map<DebugTimingKey, number>;
3738
3758
  debugWarnings: Map<DataSourceDebugWarningKey, DebugWarningPayload>;
3739
3759
  indexer: Indexer<unknown, any>;
3740
- getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue | undefined>;
3741
- __apiRef: React$1.MutableRefObject<DataSourceApi<unknown> | null>;
3742
- lastSelectionUpdatedNodePathRef: React$1.MutableRefObject<{
3760
+ getDataSourceMasterContextRef: React$1.RefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
3761
+ __apiRef: React$1.RefObject<DataSourceApi<unknown> | null>;
3762
+ lastSelectionUpdatedNodePathRef: React$1.RefObject<{
3743
3763
  nodePath: NodePath$1;
3744
3764
  selected: boolean;
3745
3765
  } | null>;
3746
- lastExpandStateInfoRef: React$1.MutableRefObject<{
3766
+ lastExpandStateInfoRef: React$1.RefObject<{
3747
3767
  state: "collapsed" | "expanded";
3748
3768
  nodePath: NodePath$1 | null;
3749
3769
  }>;
@@ -3880,13 +3900,13 @@ declare const useManagedDataSource: (props: object) => {
3880
3900
  debugTimings: Map<DebugTimingKey, number>;
3881
3901
  debugWarnings: Map<DataSourceDebugWarningKey, DebugWarningPayload>;
3882
3902
  indexer: Indexer<unknown, any>;
3883
- getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue | undefined>;
3884
- __apiRef: React$1.MutableRefObject<DataSourceApi<unknown> | null>;
3885
- lastSelectionUpdatedNodePathRef: React$1.MutableRefObject<{
3903
+ getDataSourceMasterContextRef: React$1.RefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
3904
+ __apiRef: React$1.RefObject<DataSourceApi<unknown> | null>;
3905
+ lastSelectionUpdatedNodePathRef: React$1.RefObject<{
3886
3906
  nodePath: NodePath$1;
3887
3907
  selected: boolean;
3888
3908
  } | null>;
3889
- lastExpandStateInfoRef: React$1.MutableRefObject<{
3909
+ lastExpandStateInfoRef: React$1.RefObject<{
3890
3910
  state: "collapsed" | "expanded";
3891
3911
  nodePath: NodePath$1 | null;
3892
3912
  }>;
@@ -4022,13 +4042,13 @@ declare const useManagedDataSource: (props: object) => {
4022
4042
  debugTimings: Map<DebugTimingKey, number>;
4023
4043
  debugWarnings: Map<DataSourceDebugWarningKey, DebugWarningPayload>;
4024
4044
  indexer: Indexer<unknown, any>;
4025
- getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue | undefined>;
4026
- __apiRef: React$1.MutableRefObject<DataSourceApi<unknown> | null>;
4027
- lastSelectionUpdatedNodePathRef: React$1.MutableRefObject<{
4045
+ getDataSourceMasterContextRef: React$1.RefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
4046
+ __apiRef: React$1.RefObject<DataSourceApi<unknown> | null>;
4047
+ lastSelectionUpdatedNodePathRef: React$1.RefObject<{
4028
4048
  nodePath: NodePath$1;
4029
4049
  selected: boolean;
4030
4050
  } | null>;
4031
- lastExpandStateInfoRef: React$1.MutableRefObject<{
4051
+ lastExpandStateInfoRef: React$1.RefObject<{
4032
4052
  state: "collapsed" | "expanded";
4033
4053
  nodePath: NodePath$1 | null;
4034
4054
  }>;
@@ -4164,13 +4184,13 @@ declare const useManagedDataSource: (props: object) => {
4164
4184
  debugTimings: Map<DebugTimingKey, number>;
4165
4185
  debugWarnings: Map<DataSourceDebugWarningKey, DebugWarningPayload>;
4166
4186
  indexer: Indexer<unknown, any>;
4167
- getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue | undefined>;
4168
- __apiRef: React$1.MutableRefObject<DataSourceApi<unknown> | null>;
4169
- lastSelectionUpdatedNodePathRef: React$1.MutableRefObject<{
4187
+ getDataSourceMasterContextRef: React$1.RefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
4188
+ __apiRef: React$1.RefObject<DataSourceApi<unknown> | null>;
4189
+ lastSelectionUpdatedNodePathRef: React$1.RefObject<{
4170
4190
  nodePath: NodePath$1;
4171
4191
  selected: boolean;
4172
4192
  } | null>;
4173
- lastExpandStateInfoRef: React$1.MutableRefObject<{
4193
+ lastExpandStateInfoRef: React$1.RefObject<{
4174
4194
  state: "collapsed" | "expanded";
4175
4195
  nodePath: NodePath$1 | null;
4176
4196
  }>;
@@ -4307,13 +4327,13 @@ declare const useManagedDataSource: (props: object) => {
4307
4327
  debugTimings: Map<DebugTimingKey, number>;
4308
4328
  debugWarnings: Map<DataSourceDebugWarningKey, DebugWarningPayload>;
4309
4329
  indexer: Indexer<unknown, any>;
4310
- getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue | undefined>;
4311
- __apiRef: React$1.MutableRefObject<DataSourceApi<unknown> | null>;
4312
- lastSelectionUpdatedNodePathRef: React$1.MutableRefObject<{
4330
+ getDataSourceMasterContextRef: React$1.RefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
4331
+ __apiRef: React$1.RefObject<DataSourceApi<unknown> | null>;
4332
+ lastSelectionUpdatedNodePathRef: React$1.RefObject<{
4313
4333
  nodePath: NodePath$1;
4314
4334
  selected: boolean;
4315
4335
  } | null>;
4316
- lastExpandStateInfoRef: React$1.MutableRefObject<{
4336
+ lastExpandStateInfoRef: React$1.RefObject<{
4317
4337
  state: "collapsed" | "expanded";
4318
4338
  nodePath: NodePath$1 | null;
4319
4339
  }>;
@@ -4449,13 +4469,13 @@ declare const useManagedDataSource: (props: object) => {
4449
4469
  debugTimings: Map<DebugTimingKey, number>;
4450
4470
  debugWarnings: Map<DataSourceDebugWarningKey, DebugWarningPayload>;
4451
4471
  indexer: Indexer<unknown, any>;
4452
- getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue | undefined>;
4453
- __apiRef: React$1.MutableRefObject<DataSourceApi<unknown> | null>;
4454
- lastSelectionUpdatedNodePathRef: React$1.MutableRefObject<{
4472
+ getDataSourceMasterContextRef: React$1.RefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
4473
+ __apiRef: React$1.RefObject<DataSourceApi<unknown> | null>;
4474
+ lastSelectionUpdatedNodePathRef: React$1.RefObject<{
4455
4475
  nodePath: NodePath$1;
4456
4476
  selected: boolean;
4457
4477
  } | null>;
4458
- lastExpandStateInfoRef: React$1.MutableRefObject<{
4478
+ lastExpandStateInfoRef: React$1.RefObject<{
4459
4479
  state: "collapsed" | "expanded";
4460
4480
  nodePath: NodePath$1 | null;
4461
4481
  }>;
@@ -4591,13 +4611,13 @@ declare const useManagedDataSource: (props: object) => {
4591
4611
  debugTimings: Map<DebugTimingKey, number>;
4592
4612
  debugWarnings: Map<DataSourceDebugWarningKey, DebugWarningPayload>;
4593
4613
  indexer: Indexer<unknown, any>;
4594
- getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue | undefined>;
4595
- __apiRef: React$1.MutableRefObject<DataSourceApi<unknown> | null>;
4596
- lastSelectionUpdatedNodePathRef: React$1.MutableRefObject<{
4614
+ getDataSourceMasterContextRef: React$1.RefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
4615
+ __apiRef: React$1.RefObject<DataSourceApi<unknown> | null>;
4616
+ lastSelectionUpdatedNodePathRef: React$1.RefObject<{
4597
4617
  nodePath: NodePath$1;
4598
4618
  selected: boolean;
4599
4619
  } | null>;
4600
- lastExpandStateInfoRef: React$1.MutableRefObject<{
4620
+ lastExpandStateInfoRef: React$1.RefObject<{
4601
4621
  state: "collapsed" | "expanded";
4602
4622
  nodePath: NodePath$1 | null;
4603
4623
  }>;
@@ -4734,13 +4754,13 @@ declare const useManagedDataSource: (props: object) => {
4734
4754
  debugTimings: Map<DebugTimingKey, number>;
4735
4755
  debugWarnings: Map<DataSourceDebugWarningKey, DebugWarningPayload>;
4736
4756
  indexer: Indexer<unknown, any>;
4737
- getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue | undefined>;
4738
- __apiRef: React$1.MutableRefObject<DataSourceApi<unknown> | null>;
4739
- lastSelectionUpdatedNodePathRef: React$1.MutableRefObject<{
4757
+ getDataSourceMasterContextRef: React$1.RefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
4758
+ __apiRef: React$1.RefObject<DataSourceApi<unknown> | null>;
4759
+ lastSelectionUpdatedNodePathRef: React$1.RefObject<{
4740
4760
  nodePath: NodePath$1;
4741
4761
  selected: boolean;
4742
4762
  } | null>;
4743
- lastExpandStateInfoRef: React$1.MutableRefObject<{
4763
+ lastExpandStateInfoRef: React$1.RefObject<{
4744
4764
  state: "collapsed" | "expanded";
4745
4765
  nodePath: NodePath$1 | null;
4746
4766
  }>;
@@ -4876,13 +4896,13 @@ declare const useManagedDataSource: (props: object) => {
4876
4896
  debugTimings: Map<DebugTimingKey, number>;
4877
4897
  debugWarnings: Map<DataSourceDebugWarningKey, DebugWarningPayload>;
4878
4898
  indexer: Indexer<unknown, any>;
4879
- getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue | undefined>;
4880
- __apiRef: React$1.MutableRefObject<DataSourceApi<unknown> | null>;
4881
- lastSelectionUpdatedNodePathRef: React$1.MutableRefObject<{
4899
+ getDataSourceMasterContextRef: React$1.RefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
4900
+ __apiRef: React$1.RefObject<DataSourceApi<unknown> | null>;
4901
+ lastSelectionUpdatedNodePathRef: React$1.RefObject<{
4882
4902
  nodePath: NodePath$1;
4883
4903
  selected: boolean;
4884
4904
  } | null>;
4885
- lastExpandStateInfoRef: React$1.MutableRefObject<{
4905
+ lastExpandStateInfoRef: React$1.RefObject<{
4886
4906
  state: "collapsed" | "expanded";
4887
4907
  nodePath: NodePath$1 | null;
4888
4908
  }>;
@@ -5018,13 +5038,13 @@ declare const useManagedDataSource: (props: object) => {
5018
5038
  debugTimings: Map<DebugTimingKey, number>;
5019
5039
  debugWarnings: Map<DataSourceDebugWarningKey, DebugWarningPayload>;
5020
5040
  indexer: Indexer<unknown, any>;
5021
- getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue | undefined>;
5022
- __apiRef: React$1.MutableRefObject<DataSourceApi<unknown> | null>;
5023
- lastSelectionUpdatedNodePathRef: React$1.MutableRefObject<{
5041
+ getDataSourceMasterContextRef: React$1.RefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
5042
+ __apiRef: React$1.RefObject<DataSourceApi<unknown> | null>;
5043
+ lastSelectionUpdatedNodePathRef: React$1.RefObject<{
5024
5044
  nodePath: NodePath$1;
5025
5045
  selected: boolean;
5026
5046
  } | null>;
5027
- lastExpandStateInfoRef: React$1.MutableRefObject<{
5047
+ lastExpandStateInfoRef: React$1.RefObject<{
5028
5048
  state: "collapsed" | "expanded";
5029
5049
  nodePath: NodePath$1 | null;
5030
5050
  }>;
@@ -5161,13 +5181,13 @@ declare const useManagedDataSource: (props: object) => {
5161
5181
  debugTimings: Map<DebugTimingKey, number>;
5162
5182
  debugWarnings: Map<DataSourceDebugWarningKey, DebugWarningPayload>;
5163
5183
  indexer: Indexer<unknown, any>;
5164
- getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue | undefined>;
5165
- __apiRef: React$1.MutableRefObject<DataSourceApi<unknown> | null>;
5166
- lastSelectionUpdatedNodePathRef: React$1.MutableRefObject<{
5184
+ getDataSourceMasterContextRef: React$1.RefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
5185
+ __apiRef: React$1.RefObject<DataSourceApi<unknown> | null>;
5186
+ lastSelectionUpdatedNodePathRef: React$1.RefObject<{
5167
5187
  nodePath: NodePath$1;
5168
5188
  selected: boolean;
5169
5189
  } | null>;
5170
- lastExpandStateInfoRef: React$1.MutableRefObject<{
5190
+ lastExpandStateInfoRef: React$1.RefObject<{
5171
5191
  state: "collapsed" | "expanded";
5172
5192
  nodePath: NodePath$1 | null;
5173
5193
  }>;
@@ -5303,13 +5323,13 @@ declare const useManagedDataSource: (props: object) => {
5303
5323
  debugTimings: Map<DebugTimingKey, number>;
5304
5324
  debugWarnings: Map<DataSourceDebugWarningKey, DebugWarningPayload>;
5305
5325
  indexer: Indexer<unknown, any>;
5306
- getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue | undefined>;
5307
- __apiRef: React$1.MutableRefObject<DataSourceApi<unknown> | null>;
5308
- lastSelectionUpdatedNodePathRef: React$1.MutableRefObject<{
5326
+ getDataSourceMasterContextRef: React$1.RefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
5327
+ __apiRef: React$1.RefObject<DataSourceApi<unknown> | null>;
5328
+ lastSelectionUpdatedNodePathRef: React$1.RefObject<{
5309
5329
  nodePath: NodePath$1;
5310
5330
  selected: boolean;
5311
5331
  } | null>;
5312
- lastExpandStateInfoRef: React$1.MutableRefObject<{
5332
+ lastExpandStateInfoRef: React$1.RefObject<{
5313
5333
  state: "collapsed" | "expanded";
5314
5334
  nodePath: NodePath$1 | null;
5315
5335
  }>;
@@ -5445,13 +5465,13 @@ declare const useManagedDataSource: (props: object) => {
5445
5465
  debugTimings: Map<DebugTimingKey, number>;
5446
5466
  debugWarnings: Map<DataSourceDebugWarningKey, DebugWarningPayload>;
5447
5467
  indexer: Indexer<unknown, any>;
5448
- getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue | undefined>;
5449
- __apiRef: React$1.MutableRefObject<DataSourceApi<unknown> | null>;
5450
- lastSelectionUpdatedNodePathRef: React$1.MutableRefObject<{
5468
+ getDataSourceMasterContextRef: React$1.RefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
5469
+ __apiRef: React$1.RefObject<DataSourceApi<unknown> | null>;
5470
+ lastSelectionUpdatedNodePathRef: React$1.RefObject<{
5451
5471
  nodePath: NodePath$1;
5452
5472
  selected: boolean;
5453
5473
  } | null>;
5454
- lastExpandStateInfoRef: React$1.MutableRefObject<{
5474
+ lastExpandStateInfoRef: React$1.RefObject<{
5455
5475
  state: "collapsed" | "expanded";
5456
5476
  nodePath: NodePath$1 | null;
5457
5477
  }>;
@@ -5589,13 +5609,13 @@ declare const useManagedDataSource: (props: object) => {
5589
5609
  debugTimings: Map<DebugTimingKey, number>;
5590
5610
  debugWarnings: Map<DataSourceDebugWarningKey, DebugWarningPayload>;
5591
5611
  indexer: Indexer<unknown, any>;
5592
- getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue | undefined>;
5593
- __apiRef: React$1.MutableRefObject<DataSourceApi<unknown> | null>;
5594
- lastSelectionUpdatedNodePathRef: React$1.MutableRefObject<{
5612
+ getDataSourceMasterContextRef: React$1.RefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
5613
+ __apiRef: React$1.RefObject<DataSourceApi<unknown> | null>;
5614
+ lastSelectionUpdatedNodePathRef: React$1.RefObject<{
5595
5615
  nodePath: NodePath$1;
5596
5616
  selected: boolean;
5597
5617
  } | null>;
5598
- lastExpandStateInfoRef: React$1.MutableRefObject<{
5618
+ lastExpandStateInfoRef: React$1.RefObject<{
5599
5619
  state: "collapsed" | "expanded";
5600
5620
  nodePath: NodePath$1 | null;
5601
5621
  }>;
@@ -5731,13 +5751,13 @@ declare const useManagedDataSource: (props: object) => {
5731
5751
  debugTimings: Map<DebugTimingKey, number>;
5732
5752
  debugWarnings: Map<DataSourceDebugWarningKey, DebugWarningPayload>;
5733
5753
  indexer: Indexer<unknown, any>;
5734
- getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue | undefined>;
5735
- __apiRef: React$1.MutableRefObject<DataSourceApi<unknown> | null>;
5736
- lastSelectionUpdatedNodePathRef: React$1.MutableRefObject<{
5754
+ getDataSourceMasterContextRef: React$1.RefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
5755
+ __apiRef: React$1.RefObject<DataSourceApi<unknown> | null>;
5756
+ lastSelectionUpdatedNodePathRef: React$1.RefObject<{
5737
5757
  nodePath: NodePath$1;
5738
5758
  selected: boolean;
5739
5759
  } | null>;
5740
- lastExpandStateInfoRef: React$1.MutableRefObject<{
5760
+ lastExpandStateInfoRef: React$1.RefObject<{
5741
5761
  state: "collapsed" | "expanded";
5742
5762
  nodePath: NodePath$1 | null;
5743
5763
  }>;
@@ -5873,13 +5893,13 @@ declare const useManagedDataSource: (props: object) => {
5873
5893
  debugTimings: Map<DebugTimingKey, number>;
5874
5894
  debugWarnings: Map<DataSourceDebugWarningKey, DebugWarningPayload>;
5875
5895
  indexer: Indexer<unknown, any>;
5876
- getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue | undefined>;
5877
- __apiRef: React$1.MutableRefObject<DataSourceApi<unknown> | null>;
5878
- lastSelectionUpdatedNodePathRef: React$1.MutableRefObject<{
5896
+ getDataSourceMasterContextRef: React$1.RefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
5897
+ __apiRef: React$1.RefObject<DataSourceApi<unknown> | null>;
5898
+ lastSelectionUpdatedNodePathRef: React$1.RefObject<{
5879
5899
  nodePath: NodePath$1;
5880
5900
  selected: boolean;
5881
5901
  } | null>;
5882
- lastExpandStateInfoRef: React$1.MutableRefObject<{
5902
+ lastExpandStateInfoRef: React$1.RefObject<{
5883
5903
  state: "collapsed" | "expanded";
5884
5904
  nodePath: NodePath$1 | null;
5885
5905
  }>;
@@ -6015,13 +6035,13 @@ declare const useManagedDataSource: (props: object) => {
6015
6035
  debugTimings: Map<DebugTimingKey, number>;
6016
6036
  debugWarnings: Map<DataSourceDebugWarningKey, DebugWarningPayload>;
6017
6037
  indexer: Indexer<unknown, any>;
6018
- getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue | undefined>;
6019
- __apiRef: React$1.MutableRefObject<DataSourceApi<unknown> | null>;
6020
- lastSelectionUpdatedNodePathRef: React$1.MutableRefObject<{
6038
+ getDataSourceMasterContextRef: React$1.RefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
6039
+ __apiRef: React$1.RefObject<DataSourceApi<unknown> | null>;
6040
+ lastSelectionUpdatedNodePathRef: React$1.RefObject<{
6021
6041
  nodePath: NodePath$1;
6022
6042
  selected: boolean;
6023
6043
  } | null>;
6024
- lastExpandStateInfoRef: React$1.MutableRefObject<{
6044
+ lastExpandStateInfoRef: React$1.RefObject<{
6025
6045
  state: "collapsed" | "expanded";
6026
6046
  nodePath: NodePath$1 | null;
6027
6047
  }>;
@@ -6157,13 +6177,13 @@ declare const useManagedDataSource: (props: object) => {
6157
6177
  debugTimings: Map<DebugTimingKey, number>;
6158
6178
  debugWarnings: Map<DataSourceDebugWarningKey, DebugWarningPayload>;
6159
6179
  indexer: Indexer<unknown, any>;
6160
- getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue | undefined>;
6161
- __apiRef: React$1.MutableRefObject<DataSourceApi<unknown> | null>;
6162
- lastSelectionUpdatedNodePathRef: React$1.MutableRefObject<{
6180
+ getDataSourceMasterContextRef: React$1.RefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
6181
+ __apiRef: React$1.RefObject<DataSourceApi<unknown> | null>;
6182
+ lastSelectionUpdatedNodePathRef: React$1.RefObject<{
6163
6183
  nodePath: NodePath$1;
6164
6184
  selected: boolean;
6165
6185
  } | null>;
6166
- lastExpandStateInfoRef: React$1.MutableRefObject<{
6186
+ lastExpandStateInfoRef: React$1.RefObject<{
6167
6187
  state: "collapsed" | "expanded";
6168
6188
  nodePath: NodePath$1 | null;
6169
6189
  }>;
@@ -6299,13 +6319,13 @@ declare const useManagedDataSource: (props: object) => {
6299
6319
  debugTimings: Map<DebugTimingKey, number>;
6300
6320
  debugWarnings: Map<DataSourceDebugWarningKey, DebugWarningPayload>;
6301
6321
  indexer: Indexer<unknown, any>;
6302
- getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue | undefined>;
6303
- __apiRef: React$1.MutableRefObject<DataSourceApi<unknown> | null>;
6304
- lastSelectionUpdatedNodePathRef: React$1.MutableRefObject<{
6322
+ getDataSourceMasterContextRef: React$1.RefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
6323
+ __apiRef: React$1.RefObject<DataSourceApi<unknown> | null>;
6324
+ lastSelectionUpdatedNodePathRef: React$1.RefObject<{
6305
6325
  nodePath: NodePath$1;
6306
6326
  selected: boolean;
6307
6327
  } | null>;
6308
- lastExpandStateInfoRef: React$1.MutableRefObject<{
6328
+ lastExpandStateInfoRef: React$1.RefObject<{
6309
6329
  state: "collapsed" | "expanded";
6310
6330
  nodePath: NodePath$1 | null;
6311
6331
  }>;
@@ -6437,7 +6457,6 @@ declare const useManagedDataSource: (props: object) => {
6437
6457
  };
6438
6458
  declare function DataSource<T>(props: DataSourceProps<T>): React$1.JSX.Element;
6439
6459
  declare function useRowInfoReducers(): Record<string, any> | undefined;
6440
- declare function useMasterRowInfo<T = any>(): InfiniteTableRowInfo<T> | undefined;
6441
6460
 
6442
6461
  type AggregationReducer<T, AggregationResultType = any> = DataSourceAggregationReducer<T, AggregationResultType> & {
6443
6462
  id: string;
@@ -6514,6 +6533,7 @@ type InfiniteTableRowInfoDataDiscriminator_RowInfoNormal<T> = {
6514
6533
  isGroupRow: false;
6515
6534
  isTreeNode: false;
6516
6535
  isParentNode: false;
6536
+ nodeExpanded: false;
6517
6537
  rowActive: boolean;
6518
6538
  rowDetailState: false | 'expanded' | 'collapsed';
6519
6539
  rowInfo: InfiniteTable_NoGrouping_RowInfoNormal<T> | InfiniteTable_HasGrouping_RowInfoNormal<T>;
@@ -6558,6 +6578,7 @@ type InfiniteTableRowInfoDataDiscriminator_RowInfoGroup<T> = {
6558
6578
  isGroupRow: true;
6559
6579
  isTreeNode: false;
6560
6580
  isParentNode: false;
6581
+ nodeExpanded: false;
6561
6582
  field?: keyof T;
6562
6583
  value: any;
6563
6584
  rawValue: any;
@@ -7775,4 +7796,4 @@ declare const components: {
7775
7796
  NumberFilterEditor: typeof NumberFilterEditor;
7776
7797
  };
7777
7798
 
7778
- export { type AdvancedAlignable, CellSelectionState, type CellSelectionStateObject, type ColumnTypeWithInherit, DataClient, DataSource, type DataSourceAction, DataSourceActionType, type DataSourceAggregationReducer, type DataSourceApi, type DataSourceCRUDParam, type DataSourceCallback_BaseParam, type DataSourceComponentActions, type DataSourceContextValue, type DataSourceData, type DataSourceDataFn, type DataSourceDataParams, type DataSourceDataParamsChanges, type DataSourceDebugWarningKey, type DataSourceDerivedState, type DataSourceFilterFunctionParam, type DataSourceFilterOperator, type DataSourceFilterOperatorFunction, type DataSourceFilterOperatorFunctionParam, type DataSourceFilterType, type DataSourceFilterValueItem, type DataSourceFilterValueItemValueGetter, type DataSourceGroupBy, type DataSourceGroupRowsList, type DataSourceInsertParam, type DataSourceLivePaginationCursorFn, type DataSourceLivePaginationCursorParams, type DataSourceLivePaginationCursorValue, type DataSourceMappedState, type DataSourceMappings, type DataSourceMasterDetailContextValue, type DataSourcePivotBy, type DataSourcePropAggregationReducers, type DataSourcePropCellSelection, type DataSourcePropCellSelection_MultiCell, type DataSourcePropCellSelection_SingleCell, type DataSourcePropFilterFunction, type DataSourcePropFilterTypes, type DataSourcePropFilterValue, type DataSourcePropGroupBy, type DataSourcePropGroupRowsState, type DataSourcePropGroupRowsStateObject, type DataSourcePropIsNodeExpanded, type DataSourcePropIsNodeReadOnly, type DataSourcePropIsNodeSelectable, type DataSourcePropIsNodeSelected, type DataSourcePropIsRowSelected, type DataSourcePropLivePaginationCursor, type DataSourcePropMultiRowSelectionChangeParamType, type DataSourcePropOnCellSelectionChange, type DataSourcePropOnCellSelectionChange_MultiCell, type DataSourcePropOnCellSelectionChange_SingleCell, type DataSourcePropOnRowSelectionChange, type DataSourcePropOnRowSelectionChange_MultiRow, type DataSourcePropOnRowSelectionChange_SingleRow, type DataSourcePropOnTreeSelectionChange, type DataSourcePropOnTreeSelectionChange_MultiNode, type DataSourcePropOnTreeSelectionChange_SingleNode, type DataSourcePropPivotBy, type DataSourcePropRowInfoReducers, type DataSourcePropRowSelection, type DataSourcePropRowSelection_MultiRow, type DataSourcePropRowSelection_SingleRow, type DataSourcePropSelectionMode, type DataSourcePropShouldReloadData, type DataSourcePropShouldReloadDataObject, type DataSourcePropSortFn, type DataSourcePropSortInfo, type DataSourcePropSortTypes, type DataSourcePropTreeFilterFunction, type DataSourcePropTreeSelection, type DataSourcePropTreeSelection_MultiNode, type DataSourcePropTreeSelection_SingleNode, type DataSourceProps, type DataSourcePropsNotAvailableInTreeDataSource, type DataSourcePropsWithChildren, type DataSourceRawReducer, type DataSourceRemoteData, type DataSourceRowInfoReducer, type DataSourceSetupState, type DataSourceSingleSortInfo, type DataSourceSortInfo, type DataSourceState, type DataSourceUpdateParam, type DebugLogger, type DebugTimingKey, type DebugWarningPayload, DeepMap, type DevToolsDataSourceOverrides, type DevToolsGenericMessage, type DevToolsHookFn, type DevToolsHookFnOptions, type DevToolsHostPageLogMessage, type DevToolsHostPageLogMessagePayload, type DevToolsHostPageMessage, type DevToolsHostPageMessagePayload, type DevToolsHostPageMessageType, type DevToolsInfiniteOverrides, type DevToolsMessageAddress, type DevToolsOverrides, type ElementContainerGetter, type ErrorCodeKey, FixedSizeSet, FlashingColumnCell, GroupRowsState, INTERNAL_MatrixDebugger, type InfiniteColumnEditorContextType, InfiniteTable, type InfiniteTableAction, InfiniteTableActionType, type InfiniteTableApi, type InfiniteTableCellSelectionApi, InfiniteTableClassName, type InfiniteTableColumn, type InfiniteTableColumnAggregator, type InfiniteTableColumnApi, type InfiniteTableColumnCellContextType, type InfiniteTableColumnComparer, type InfiniteTableColumnGroup, type InfiniteTableColumnRenderFunctionForGroupRows, type InfiniteTableColumnRenderFunctionForNormalRows, type InfiniteTableColumnRenderValueParam, type InfiniteTableColumnRowspanParam, type InfiniteTableColumnSizingOptions, type InfiniteTableColumnValueFormatterParams, type InfiniteTableColumnValueGetterParams, InfiniteTableComponent, type InfiniteTableComputedColumn, type InfiniteTableComputedValues, type InfiniteTableContextValue, type InfiniteTableDebugWarningKey, type InfiniteTableGroupColumnBase, type InfiniteTableGroupColumnFunction, type InfiniteTableGroupColumnGetterOptions, type InfiniteTableKeyboardNavigationApi, type InfiniteTablePivotColumn, type InfiniteTablePropAutoSizeColumnsKey, type InfiniteTablePropColumnGroupVisibility, type InfiniteTablePropColumnGroups, type InfiniteTablePropColumnOrder, type InfiniteTablePropColumnPinning, type InfiniteTablePropColumnSizing, type InfiniteTablePropColumnTypes, type InfiniteTablePropColumnVisibility, type InfiniteTablePropColumns, type InfiniteTablePropComponents, type InfiniteTablePropGetCellContextMenuItems, type InfiniteTablePropGetColumnMenuItems, type InfiniteTablePropGetContextMenuItems, type InfiniteTablePropGroupColumn, type InfiniteTablePropGroupRenderStrategy, type InfiniteTablePropHeaderOptions, type InfiniteTablePropKeyboardNavigation, type InfiniteTablePropKeyboardShorcut, type InfiniteTablePropMultiSortBehavior, type InfiniteTablePropRowClassName, type InfiniteTablePropRowStyle, type InfiniteTableProps, type InfiniteTablePropsNotAvailableInTreeGrid, type InfiniteTableRowClassNameFn, type InfiniteTableRowDetailApi, type InfiniteTableRowInfo, type InfiniteTableRowSelectionApi, type InfiniteTableRowStyleFn, type InfiniteTableState, type InfiniteTable_HasGrouping_RowInfoGroup, type InfiniteTable_HasGrouping_RowInfoNormal, type InfiniteTable_Tree_RowInfoLeafNode, type InfiniteTable_Tree_RowInfoNode, type InfiniteTable_Tree_RowInfoParentNode, type LazyGroupDataDeepMap, type LazyGroupDataItem, type LazyRowInfoGroup, Menu, type MenuChildrenFnParam, type MenuColumn, type MenuColumnRenderParam, type MenuDecoration, type MenuIconProps, type MenuItemActionContext, type MenuItemDefinition, type MenuItemObject, type MenuProps, type MenuRenderable, type MenuRuntimeItem, type MenuRuntimeItemSelectable, type MenuSeparator, type OverlayShowParams, RowDetailCache, RowDetailState, type RowDetailStateObject, RowDisabledState, type RowDisabledStateObject, RowSelectionState, type ScrollStopInfo, type Scrollbars, type ShowOverlayFn, type TableRenderRange, TreeDataSource, type TreeDataSourceProps, TreeExpandState, type TreeExpandStateValue, TreeGrid, type TreeGridOnlyProps, type TreeGridProps, TreeSelectionState, type TreeSelectionStateObject, type TreeSelectionValue, type UpdateChildrenFn, type UpdateOverlayContentFn, type WaitForNodeOptions, WeakFixedSizeSet, alignNode, components, createFlashingColumnCellComponent, debounce, debug, defaultFilterTypes, eventMatchesKeyboardShortcut, filterDataArray, defaultFilterTypes as filterTypes, flatten, buildManagedComponent as getComponentStateRoot, group, interceptMap, keyboardShortcuts, multisort, multisortNested, queryKeyToCacheKey, toTreeDataArray, useManagedComponentState as useComponentState, useDataSourceInternal, useDataSourceState, useEffectWhen, useEffectWhenSameDeps, useEffectWithChanges, useEffectWithObject, useGridScroll, useInfiniteColumnCell, useInfiniteColumnEditor, useInfiniteColumnFilterEditor, useInfiniteHeaderCell, useInfinitePortalContainer, useLayoutEffectWithChanges, useManagedDataSource, useMasterRowInfo, useOverlay, useOverlayPortal, usePrevious, useRowInfoReducers, useVisibleColumnSizes, withSelectedLeafNodesOnly };
7799
+ export { type AdvancedAlignable, CellSelectionState, type CellSelectionStateObject, type ColumnTypeWithInherit, DataClient, DataSource, type DataSourceAction, DataSourceActionType, type DataSourceAggregationReducer, type DataSourceApi, type DataSourceCRUDParam, type DataSourceCallback_BaseParam, type DataSourceComponentActions, type DataSourceContextValue, type DataSourceData, type DataSourceDataFn, type DataSourceDataParams, type DataSourceDataParamsChanges, type DataSourceDebugWarningKey, type DataSourceDerivedState, type DataSourceFilterFunctionParam, type DataSourceFilterOperator, type DataSourceFilterOperatorFunction, type DataSourceFilterOperatorFunctionParam, type DataSourceFilterType, type DataSourceFilterValueItem, type DataSourceFilterValueItemValueGetter, type DataSourceGroupBy, type DataSourceGroupRowsList, type DataSourceInsertParam, type DataSourceLivePaginationCursorFn, type DataSourceLivePaginationCursorParams, type DataSourceLivePaginationCursorValue, type DataSourceMappedState, type DataSourceMappings, type DataSourceMasterDetailContextValue, type DataSourcePivotBy, type DataSourcePropAggregationReducers, type DataSourcePropCellSelection, type DataSourcePropCellSelection_MultiCell, type DataSourcePropCellSelection_SingleCell, type DataSourcePropFilterFunction, type DataSourcePropFilterTypes, type DataSourcePropFilterValue, type DataSourcePropGroupBy, type DataSourcePropGroupRowsState, type DataSourcePropGroupRowsStateObject, type DataSourcePropIsNodeExpanded, type DataSourcePropIsNodeReadOnly, type DataSourcePropIsNodeSelectable, type DataSourcePropIsNodeSelected, type DataSourcePropIsRowSelected, type DataSourcePropLivePaginationCursor, type DataSourcePropMultiRowSelectionChangeParamType, type DataSourcePropOnCellSelectionChange, type DataSourcePropOnCellSelectionChange_MultiCell, type DataSourcePropOnCellSelectionChange_SingleCell, type DataSourcePropOnRowSelectionChange, type DataSourcePropOnRowSelectionChange_MultiRow, type DataSourcePropOnRowSelectionChange_SingleRow, type DataSourcePropOnTreeSelectionChange, type DataSourcePropOnTreeSelectionChange_MultiNode, type DataSourcePropOnTreeSelectionChange_SingleNode, type DataSourcePropPivotBy, type DataSourcePropRowInfoReducers, type DataSourcePropRowSelection, type DataSourcePropRowSelection_MultiRow, type DataSourcePropRowSelection_SingleRow, type DataSourcePropSelectionMode, type DataSourcePropShouldReloadData, type DataSourcePropShouldReloadDataObject, type DataSourcePropSortFn, type DataSourcePropSortInfo, type DataSourcePropSortTypes, type DataSourcePropTreeFilterFunction, type DataSourcePropTreeSelection, type DataSourcePropTreeSelection_MultiNode, type DataSourcePropTreeSelection_SingleNode, type DataSourceProps, type DataSourcePropsNotAvailableInTreeDataSource, type DataSourcePropsWithChildren, type DataSourceRawReducer, type DataSourceRemoteData, type DataSourceRowInfoReducer, type DataSourceSetupState, type DataSourceSingleSortInfo, type DataSourceSortInfo, type DataSourceStableContextValue, type DataSourceState, type DataSourceUpdateParam, type DebugLogger, type DebugTimingKey, type DebugWarningPayload, DeepMap, type DevToolsDataSourceOverrides, type DevToolsGenericMessage, type DevToolsHookFn, type DevToolsHookFnOptions, type DevToolsHostPageLogMessage, type DevToolsHostPageLogMessagePayload, type DevToolsHostPageMessage, type DevToolsHostPageMessagePayload, type DevToolsHostPageMessageType, type DevToolsInfiniteOverrides, type DevToolsMessageAddress, type DevToolsOverrides, type ElementContainerGetter, type ErrorCodeKey, FixedSizeSet, FlashingColumnCell, GroupRowsState, INTERNAL_MatrixDebugger, type InfiniteColumnEditorContextType, InfiniteTable, type InfiniteTableAction, InfiniteTableActionType, type InfiniteTableApi, type InfiniteTableCellSelectionApi, InfiniteTableClassName, type InfiniteTableColumn, type InfiniteTableColumnAggregator, type InfiniteTableColumnApi, type InfiniteTableColumnCellContextType, type InfiniteTableColumnComparer, type InfiniteTableColumnGroup, type InfiniteTableColumnRenderFunctionForGroupRows, type InfiniteTableColumnRenderFunctionForNormalRows, type InfiniteTableColumnRenderValueParam, type InfiniteTableColumnRowspanParam, type InfiniteTableColumnSizingOptions, type InfiniteTableColumnValueFormatterParams, type InfiniteTableColumnValueGetterParams, InfiniteTableComponent, type InfiniteTableComputedColumn, type InfiniteTableComputedValues, type InfiniteTableContextValue, type InfiniteTableDebugWarningKey, type InfiniteTableGroupColumnBase, type InfiniteTableGroupColumnFunction, type InfiniteTableGroupColumnGetterOptions, type InfiniteTableKeyboardNavigationApi, type InfiniteTablePivotColumn, type InfiniteTablePropAutoSizeColumnsKey, type InfiniteTablePropColumnGroupVisibility, type InfiniteTablePropColumnGroups, type InfiniteTablePropColumnOrder, type InfiniteTablePropColumnPinning, type InfiniteTablePropColumnSizing, type InfiniteTablePropColumnTypes, type InfiniteTablePropColumnVisibility, type InfiniteTablePropColumns, type InfiniteTablePropComponents, type InfiniteTablePropGetCellContextMenuItems, type InfiniteTablePropGetColumnMenuItems, type InfiniteTablePropGetContextMenuItems, type InfiniteTablePropGroupColumn, type InfiniteTablePropGroupRenderStrategy, type InfiniteTablePropHeaderOptions, type InfiniteTablePropKeyboardNavigation, type InfiniteTablePropKeyboardShorcut, type InfiniteTablePropMultiSortBehavior, type InfiniteTablePropRowClassName, type InfiniteTablePropRowStyle, type InfiniteTableProps, type InfiniteTablePropsNotAvailableInTreeGrid, type InfiniteTableRowClassNameFn, type InfiniteTableRowDetailApi, type InfiniteTableRowInfo, type InfiniteTableRowSelectionApi, type InfiniteTableRowStyleFn, type InfiniteTableState, type InfiniteTable_HasGrouping_RowInfoGroup, type InfiniteTable_HasGrouping_RowInfoNormal, type InfiniteTable_Tree_RowInfoLeafNode, type InfiniteTable_Tree_RowInfoNode, type InfiniteTable_Tree_RowInfoParentNode, type LazyGroupDataDeepMap, type LazyGroupDataItem, type LazyRowInfoGroup, Menu, type MenuChildrenFnParam, type MenuColumn, type MenuColumnRenderParam, type MenuDecoration, type MenuIconProps, type MenuItemActionContext, type MenuItemDefinition, type MenuItemObject, type MenuProps, type MenuRenderable, type MenuRuntimeItem, type MenuRuntimeItemSelectable, type MenuSeparator, type OverlayShowParams, RowDetailCache, RowDetailState, type RowDetailStateObject, RowDisabledState, type RowDisabledStateObject, RowSelectionState, type ScrollStopInfo, type Scrollbars, type ShowOverlayFn, type TableRenderRange, TreeDataSource, type TreeDataSourceProps, TreeExpandState, type TreeExpandStateValue, TreeGrid, type TreeGridOnlyProps, type TreeGridProps, TreeSelectionState, type TreeSelectionStateObject, type TreeSelectionValue, type UpdateChildrenFn, type UpdateOverlayContentFn, type WaitForNodeOptions, WeakFixedSizeSet, alignNode, components, createFlashingColumnCellComponent, debounce, debug, defaultFilterTypes, eventMatchesKeyboardShortcut, filterDataArray, defaultFilterTypes as filterTypes, flatten, buildManagedComponent as getComponentStateRoot, group, interceptMap, keyboardShortcuts, multisort, multisortNested, queryKeyToCacheKey, toTreeDataArray, useManagedComponentState as useComponentState, useDataSourceInternal, useDataSourceSelector, useDataSourceState, useEffectWhen, useEffectWhenSameDeps, useEffectWithChanges, useEffectWithObject, useGridScroll, useInfiniteColumnCell, useInfiniteColumnEditor, useInfiniteColumnFilterEditor, useInfiniteHeaderCell, useInfinitePortalContainer, useLayoutEffectWithChanges, useManagedDataSource, useMasterRowInfo, useOverlay, useOverlayPortal, usePrevious, useRowInfoReducers, useVisibleColumnSizes, withSelectedLeafNodesOnly };