@infinite-table/infinite-react 6.0.13 → 6.0.15

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
@@ -2176,6 +2176,13 @@ declare type DataSourceMutation<T> = {
2176
2176
  data: Partial<T>;
2177
2177
  originalData: T;
2178
2178
  metadata: any;
2179
+ } | {
2180
+ type: 'update-children';
2181
+ primaryKey?: never;
2182
+ nodePath: NodePath$1;
2183
+ children: UpdateChildrenFn<T>;
2184
+ originalData: T;
2185
+ metadata: any;
2179
2186
  } | {
2180
2187
  type: 'insert';
2181
2188
  primaryKey: any;
@@ -2200,8 +2207,12 @@ declare type DataSourceMutation<T> = {
2200
2207
  declare class DataSourceCache<DataType, PrimaryKeyType = string> {
2201
2208
  private affectedFields;
2202
2209
  private allFieldsAffected;
2210
+ private nodesKey;
2203
2211
  private primaryKeyToData;
2204
2212
  private nodePathToData;
2213
+ constructor(options: {
2214
+ nodesKey: string | undefined;
2215
+ });
2205
2216
  static clone<DataType, PrimaryKeyType = string>(cache: DataSourceCache<DataType, PrimaryKeyType>, { light }?: {
2206
2217
  light?: boolean;
2207
2218
  }): DataSourceCache<DataType, PrimaryKeyType>;
@@ -2212,6 +2223,7 @@ declare class DataSourceCache<DataType, PrimaryKeyType = string> {
2212
2223
  insertNodePath: (nodePath: NodePath$1<any>, data: DataType, position: 'before' | 'after', metadata: any) => void;
2213
2224
  update: (primaryKey: PrimaryKeyType, data: Partial<DataType>, originalData: DataType, metadata: any) => void;
2214
2225
  updateNodePath: (nodePath: NodePath$1<any>, data: Partial<DataType>, originalData: DataType, metadata: any) => void;
2226
+ updateChildren: (nodePath: NodePath$1<any>, children: UpdateChildrenFn<DataType>, originalData: DataType, metadata: any) => void;
2215
2227
  resetDataSource: (metadata: any) => void;
2216
2228
  shouldResetDataSource: () => boolean;
2217
2229
  clear: () => void;
@@ -2310,6 +2322,8 @@ declare type IndexerOptions<DataType, PrimaryKeyType> = {
2310
2322
  declare class Indexer<DataType, PrimaryKeyType = string> {
2311
2323
  primaryKeyToData: Map<PrimaryKeyType, DataType>;
2312
2324
  nodePathsToData: DeepMap<PrimaryKeyType, DataType>;
2325
+ private removeNodePath;
2326
+ private remove;
2313
2327
  private add;
2314
2328
  private addNodePath;
2315
2329
  clear: () => void;
@@ -2483,6 +2497,11 @@ interface DataSourceSetupState<T> {
2483
2497
  state: 'collapsed' | 'expanded';
2484
2498
  nodePath: NodePath$1 | null;
2485
2499
  }>;
2500
+ waitForNodePathPromises: DeepMap<any, {
2501
+ timestamp: number;
2502
+ promise: Promise<boolean>;
2503
+ resolve: (value: boolean) => void;
2504
+ }>;
2486
2505
  repeatWrappedGroupRows: InfiniteTablePropRepeatWrappedGroupRows<T>;
2487
2506
  /**
2488
2507
  * This is just used for horizontal layout and when repeatWrappedGroupRows is TRUE!!!
@@ -2585,8 +2604,11 @@ declare type DataSourceCRUDParam = {
2585
2604
  flush?: boolean;
2586
2605
  metadata?: any;
2587
2606
  };
2588
- declare type DataSourceUpdateParam = DataSourceCRUDParam & {};
2589
- declare type DataSourceInsertParam = DataSourceCRUDParam & ({
2607
+ declare type WaitForNodeOptions = {
2608
+ waitForNode?: boolean | number;
2609
+ };
2610
+ declare type DataSourceUpdateParam = DataSourceCRUDParam & WaitForNodeOptions;
2611
+ declare type DataSourceInsertParam = DataSourceCRUDParam & WaitForNodeOptions & ({
2590
2612
  position: 'before' | 'after';
2591
2613
  primaryKey: any;
2592
2614
  nodePath?: never;
@@ -2603,6 +2625,7 @@ declare type DataSourceInsertParam = DataSourceCRUDParam & ({
2603
2625
  });
2604
2626
  declare type UpdateChildrenFn<T> = (dataChildren: T[] | undefined | null, data: T) => T[] | undefined | null;
2605
2627
  interface DataSourceApi<T> {
2628
+ getPendingOperationPromise(): Promise<boolean> | null;
2606
2629
  getOriginalDataArray: () => T[];
2607
2630
  getRowInfoArray: () => InfiniteTableRowInfo<T>[];
2608
2631
  getDataByPrimaryKey(id: any): T | null;
@@ -2617,6 +2640,18 @@ interface DataSourceApi<T> {
2617
2640
  getNodePathById(id: any): NodePath$1 | null;
2618
2641
  getNodePathByIndex(index: number): NodePath$1 | null;
2619
2642
  get treeApi(): TreeApi<T>;
2643
+ /**
2644
+ * @param nodePath The node path to wait for
2645
+ * @param options
2646
+ * @param options.timeout The timeout to wait for the node path to be available. Defaults to 1000ms.
2647
+ *
2648
+ * @returns true if the path is already in the DataSource, otherwise a promise resolving to a boolean value.
2649
+ * If the timeout is reached and the path is not available, the promise is resolved to false. Otherwise, the promise is resolved to true.
2650
+ */
2651
+ waitForNodePath(nodePath: NodePath$1, options?: {
2652
+ timeout?: number;
2653
+ }): Promise<boolean>;
2654
+ isNodePathAvailable(nodePath: NodePath$1): boolean;
2620
2655
  updateData(data: Partial<T>, options?: DataSourceCRUDParam): Promise<any>;
2621
2656
  updateDataByNodePath(data: Partial<T>, nodePath: NodePath$1, options?: DataSourceUpdateParam): Promise<any>;
2622
2657
  updateChildrenByNodePath(childrenOrFn: T[] | undefined | null | UpdateChildrenFn<T>, nodePath: NodePath$1, options?: DataSourceUpdateParam): Promise<any>;
@@ -2987,6 +3022,11 @@ declare const useManagedDataSource: (props: unknown) => {
2987
3022
  state: "expanded" | "collapsed";
2988
3023
  nodePath: NodePath$1<any> | null;
2989
3024
  }>;
3025
+ waitForNodePathPromises: DeepMap<any, {
3026
+ timestamp: number;
3027
+ promise: Promise<boolean>;
3028
+ resolve: (value: boolean) => void;
3029
+ }>;
2990
3030
  repeatWrappedGroupRows: never;
2991
3031
  rowsPerPage: never;
2992
3032
  totalLeafNodesCount: number;
@@ -3114,6 +3154,11 @@ declare const useManagedDataSource: (props: unknown) => {
3114
3154
  state: "expanded" | "collapsed";
3115
3155
  nodePath: NodePath$1<any> | null;
3116
3156
  }>;
3157
+ waitForNodePathPromises: DeepMap<any, {
3158
+ timestamp: number;
3159
+ promise: Promise<boolean>;
3160
+ resolve: (value: boolean) => void;
3161
+ }>;
3117
3162
  repeatWrappedGroupRows: never;
3118
3163
  rowsPerPage: never;
3119
3164
  totalLeafNodesCount: number;
@@ -3241,6 +3286,11 @@ declare const useManagedDataSource: (props: unknown) => {
3241
3286
  state: "expanded" | "collapsed";
3242
3287
  nodePath: NodePath$1<any> | null;
3243
3288
  }>;
3289
+ waitForNodePathPromises: DeepMap<any, {
3290
+ timestamp: number;
3291
+ promise: Promise<boolean>;
3292
+ resolve: (value: boolean) => void;
3293
+ }>;
3244
3294
  repeatWrappedGroupRows: never;
3245
3295
  rowsPerPage: never;
3246
3296
  totalLeafNodesCount: number;
@@ -3369,6 +3419,11 @@ declare const useManagedDataSource: (props: unknown) => {
3369
3419
  state: "expanded" | "collapsed";
3370
3420
  nodePath: NodePath$1<any> | null;
3371
3421
  }>;
3422
+ waitForNodePathPromises: DeepMap<any, {
3423
+ timestamp: number;
3424
+ promise: Promise<boolean>;
3425
+ resolve: (value: boolean) => void;
3426
+ }>;
3372
3427
  repeatWrappedGroupRows: never;
3373
3428
  rowsPerPage: never;
3374
3429
  totalLeafNodesCount: number;
@@ -3496,6 +3551,11 @@ declare const useManagedDataSource: (props: unknown) => {
3496
3551
  state: "expanded" | "collapsed";
3497
3552
  nodePath: NodePath$1<any> | null;
3498
3553
  }>;
3554
+ waitForNodePathPromises: DeepMap<any, {
3555
+ timestamp: number;
3556
+ promise: Promise<boolean>;
3557
+ resolve: (value: boolean) => void;
3558
+ }>;
3499
3559
  repeatWrappedGroupRows: never;
3500
3560
  rowsPerPage: never;
3501
3561
  totalLeafNodesCount: number;
@@ -3623,6 +3683,11 @@ declare const useManagedDataSource: (props: unknown) => {
3623
3683
  state: "expanded" | "collapsed";
3624
3684
  nodePath: NodePath$1<any> | null;
3625
3685
  }>;
3686
+ waitForNodePathPromises: DeepMap<any, {
3687
+ timestamp: number;
3688
+ promise: Promise<boolean>;
3689
+ resolve: (value: boolean) => void;
3690
+ }>;
3626
3691
  repeatWrappedGroupRows: never;
3627
3692
  rowsPerPage: never;
3628
3693
  totalLeafNodesCount: number;
@@ -3751,6 +3816,11 @@ declare const useManagedDataSource: (props: unknown) => {
3751
3816
  state: "expanded" | "collapsed";
3752
3817
  nodePath: NodePath$1<any> | null;
3753
3818
  }>;
3819
+ waitForNodePathPromises: DeepMap<any, {
3820
+ timestamp: number;
3821
+ promise: Promise<boolean>;
3822
+ resolve: (value: boolean) => void;
3823
+ }>;
3754
3824
  repeatWrappedGroupRows: never;
3755
3825
  rowsPerPage: never;
3756
3826
  totalLeafNodesCount: number;
@@ -3878,6 +3948,11 @@ declare const useManagedDataSource: (props: unknown) => {
3878
3948
  state: "expanded" | "collapsed";
3879
3949
  nodePath: NodePath$1<any> | null;
3880
3950
  }>;
3951
+ waitForNodePathPromises: DeepMap<any, {
3952
+ timestamp: number;
3953
+ promise: Promise<boolean>;
3954
+ resolve: (value: boolean) => void;
3955
+ }>;
3881
3956
  repeatWrappedGroupRows: never;
3882
3957
  rowsPerPage: never;
3883
3958
  totalLeafNodesCount: number;
@@ -4005,6 +4080,11 @@ declare const useManagedDataSource: (props: unknown) => {
4005
4080
  state: "expanded" | "collapsed";
4006
4081
  nodePath: NodePath$1<any> | null;
4007
4082
  }>;
4083
+ waitForNodePathPromises: DeepMap<any, {
4084
+ timestamp: number;
4085
+ promise: Promise<boolean>;
4086
+ resolve: (value: boolean) => void;
4087
+ }>;
4008
4088
  repeatWrappedGroupRows: never;
4009
4089
  rowsPerPage: never;
4010
4090
  totalLeafNodesCount: number;
@@ -4133,6 +4213,11 @@ declare const useManagedDataSource: (props: unknown) => {
4133
4213
  state: "expanded" | "collapsed";
4134
4214
  nodePath: NodePath$1<any> | null;
4135
4215
  }>;
4216
+ waitForNodePathPromises: DeepMap<any, {
4217
+ timestamp: number;
4218
+ promise: Promise<boolean>;
4219
+ resolve: (value: boolean) => void;
4220
+ }>;
4136
4221
  repeatWrappedGroupRows: never;
4137
4222
  rowsPerPage: never;
4138
4223
  totalLeafNodesCount: number;
@@ -4260,6 +4345,11 @@ declare const useManagedDataSource: (props: unknown) => {
4260
4345
  state: "expanded" | "collapsed";
4261
4346
  nodePath: NodePath$1<any> | null;
4262
4347
  }>;
4348
+ waitForNodePathPromises: DeepMap<any, {
4349
+ timestamp: number;
4350
+ promise: Promise<boolean>;
4351
+ resolve: (value: boolean) => void;
4352
+ }>;
4263
4353
  repeatWrappedGroupRows: never;
4264
4354
  rowsPerPage: never;
4265
4355
  totalLeafNodesCount: number;
@@ -4387,6 +4477,11 @@ declare const useManagedDataSource: (props: unknown) => {
4387
4477
  state: "expanded" | "collapsed";
4388
4478
  nodePath: NodePath$1<any> | null;
4389
4479
  }>;
4480
+ waitForNodePathPromises: DeepMap<any, {
4481
+ timestamp: number;
4482
+ promise: Promise<boolean>;
4483
+ resolve: (value: boolean) => void;
4484
+ }>;
4390
4485
  repeatWrappedGroupRows: never;
4391
4486
  rowsPerPage: never;
4392
4487
  totalLeafNodesCount: number;
@@ -4515,6 +4610,11 @@ declare const useManagedDataSource: (props: unknown) => {
4515
4610
  state: "expanded" | "collapsed";
4516
4611
  nodePath: NodePath$1<any> | null;
4517
4612
  }>;
4613
+ waitForNodePathPromises: DeepMap<any, {
4614
+ timestamp: number;
4615
+ promise: Promise<boolean>;
4616
+ resolve: (value: boolean) => void;
4617
+ }>;
4518
4618
  repeatWrappedGroupRows: never;
4519
4619
  rowsPerPage: never;
4520
4620
  totalLeafNodesCount: number;
@@ -4642,6 +4742,11 @@ declare const useManagedDataSource: (props: unknown) => {
4642
4742
  state: "expanded" | "collapsed";
4643
4743
  nodePath: NodePath$1<any> | null;
4644
4744
  }>;
4745
+ waitForNodePathPromises: DeepMap<any, {
4746
+ timestamp: number;
4747
+ promise: Promise<boolean>;
4748
+ resolve: (value: boolean) => void;
4749
+ }>;
4645
4750
  repeatWrappedGroupRows: never;
4646
4751
  rowsPerPage: never;
4647
4752
  totalLeafNodesCount: number;
@@ -4769,6 +4874,11 @@ declare const useManagedDataSource: (props: unknown) => {
4769
4874
  state: "expanded" | "collapsed";
4770
4875
  nodePath: NodePath$1<any> | null;
4771
4876
  }>;
4877
+ waitForNodePathPromises: DeepMap<any, {
4878
+ timestamp: number;
4879
+ promise: Promise<boolean>;
4880
+ resolve: (value: boolean) => void;
4881
+ }>;
4772
4882
  repeatWrappedGroupRows: never;
4773
4883
  rowsPerPage: never;
4774
4884
  totalLeafNodesCount: number;
@@ -4898,6 +5008,11 @@ declare const useManagedDataSource: (props: unknown) => {
4898
5008
  state: "expanded" | "collapsed";
4899
5009
  nodePath: NodePath$1<any> | null;
4900
5010
  }>;
5011
+ waitForNodePathPromises: DeepMap<any, {
5012
+ timestamp: number;
5013
+ promise: Promise<boolean>;
5014
+ resolve: (value: boolean) => void;
5015
+ }>;
4901
5016
  repeatWrappedGroupRows: never;
4902
5017
  rowsPerPage: never;
4903
5018
  totalLeafNodesCount: number;
@@ -5025,6 +5140,11 @@ declare const useManagedDataSource: (props: unknown) => {
5025
5140
  state: "expanded" | "collapsed";
5026
5141
  nodePath: NodePath$1<any> | null;
5027
5142
  }>;
5143
+ waitForNodePathPromises: DeepMap<any, {
5144
+ timestamp: number;
5145
+ promise: Promise<boolean>;
5146
+ resolve: (value: boolean) => void;
5147
+ }>;
5028
5148
  repeatWrappedGroupRows: never;
5029
5149
  rowsPerPage: never;
5030
5150
  totalLeafNodesCount: number;
@@ -5152,6 +5272,11 @@ declare const useManagedDataSource: (props: unknown) => {
5152
5272
  state: "expanded" | "collapsed";
5153
5273
  nodePath: NodePath$1<any> | null;
5154
5274
  }>;
5275
+ waitForNodePathPromises: DeepMap<any, {
5276
+ timestamp: number;
5277
+ promise: Promise<boolean>;
5278
+ resolve: (value: boolean) => void;
5279
+ }>;
5155
5280
  repeatWrappedGroupRows: never;
5156
5281
  rowsPerPage: never;
5157
5282
  totalLeafNodesCount: number;
@@ -5279,6 +5404,11 @@ declare const useManagedDataSource: (props: unknown) => {
5279
5404
  state: "expanded" | "collapsed";
5280
5405
  nodePath: NodePath$1<any> | null;
5281
5406
  }>;
5407
+ waitForNodePathPromises: DeepMap<any, {
5408
+ timestamp: number;
5409
+ promise: Promise<boolean>;
5410
+ resolve: (value: boolean) => void;
5411
+ }>;
5282
5412
  repeatWrappedGroupRows: never;
5283
5413
  rowsPerPage: never;
5284
5414
  totalLeafNodesCount: number;
@@ -5406,6 +5536,11 @@ declare const useManagedDataSource: (props: unknown) => {
5406
5536
  state: "expanded" | "collapsed";
5407
5537
  nodePath: NodePath$1<any> | null;
5408
5538
  }>;
5539
+ waitForNodePathPromises: DeepMap<any, {
5540
+ timestamp: number;
5541
+ promise: Promise<boolean>;
5542
+ resolve: (value: boolean) => void;
5543
+ }>;
5409
5544
  repeatWrappedGroupRows: never;
5410
5545
  rowsPerPage: never;
5411
5546
  totalLeafNodesCount: number;
@@ -5533,6 +5668,11 @@ declare const useManagedDataSource: (props: unknown) => {
5533
5668
  state: "expanded" | "collapsed";
5534
5669
  nodePath: NodePath$1<any> | null;
5535
5670
  }>;
5671
+ waitForNodePathPromises: DeepMap<any, {
5672
+ timestamp: number;
5673
+ promise: Promise<boolean>;
5674
+ resolve: (value: boolean) => void;
5675
+ }>;
5536
5676
  repeatWrappedGroupRows: never;
5537
5677
  rowsPerPage: never;
5538
5678
  totalLeafNodesCount: number;
@@ -6988,4 +7128,4 @@ declare const components: {
6988
7128
  NumberFilterEditor: typeof NumberFilterEditor;
6989
7129
  };
6990
7130
 
6991
- export { AdvancedAlignable, CellSelectionState, CellSelectionStateObject, ColumnTypeWithInherit, DataClient, DataSource, DataSourceAction, DataSourceActionType, DataSourceAggregationReducer, DataSourceApi, DataSourceCRUDParam, DataSourceCallback_BaseParam, DataSourceComponentActions, DataSourceContextValue, DataSourceData, DataSourceDataParams, DataSourceDataParamsChanges, DataSourceDerivedState, DataSourceFilterFunctionParam, DataSourceFilterOperator, DataSourceFilterOperatorFunction, DataSourceFilterOperatorFunctionParam, DataSourceFilterType, DataSourceFilterValueItem, DataSourceFilterValueItemValueGetter, DataSourceGroupBy, DataSourceGroupRowsList, DataSourceInsertParam, DataSourceLivePaginationCursorFn, DataSourceLivePaginationCursorParams, DataSourceLivePaginationCursorValue, DataSourceMappedState, DataSourceMappings, DataSourceMasterDetailContextValue, DataSourcePivotBy, DataSourcePropAggregationReducers, DataSourcePropCellSelection, DataSourcePropCellSelection_MultiCell, DataSourcePropCellSelection_SingleCell, DataSourcePropFilterFunction, DataSourcePropFilterTypes, DataSourcePropFilterValue, DataSourcePropGroupBy, DataSourcePropGroupRowsStateObject, DataSourcePropIsNodeExpanded, DataSourcePropIsNodeReadOnly, DataSourcePropIsNodeSelectable, DataSourcePropIsNodeSelected, DataSourcePropIsRowSelected, DataSourcePropLivePaginationCursor, DataSourcePropMultiRowSelectionChangeParamType, DataSourcePropOnCellSelectionChange, DataSourcePropOnCellSelectionChange_MultiCell, DataSourcePropOnCellSelectionChange_SingleCell, DataSourcePropOnRowSelectionChange, DataSourcePropOnRowSelectionChange_MultiRow, DataSourcePropOnRowSelectionChange_SingleRow, DataSourcePropOnTreeSelectionChange, DataSourcePropOnTreeSelectionChange_MultiNode, DataSourcePropOnTreeSelectionChange_SingleNode, DataSourcePropPivotBy, DataSourcePropRowInfoReducers, DataSourcePropRowSelection, DataSourcePropRowSelection_MultiRow, DataSourcePropRowSelection_SingleRow, DataSourcePropSelectionMode, DataSourcePropShouldReloadData, DataSourcePropShouldReloadDataObject, DataSourcePropSortFn, DataSourcePropSortInfo, DataSourcePropSortTypes, DataSourcePropTreeSelection, DataSourcePropTreeSelection_MultiNode, DataSourcePropTreeSelection_SingleNode, DataSourceProps, DataSourcePropsNotAvailableInTreeDataSource, DataSourcePropsWithChildren, DataSourceRawReducer, DataSourceRemoteData, DataSourceRowInfoReducer, DataSourceSetupState, DataSourceSingleSortInfo, DataSourceSortInfo, DataSourceState, DataSourceUpdateParam, DebugLogger, DeepMap, ElementContainerGetter, FixedSizeSet, FlashingColumnCell, GroupRowsState, InfiniteColumnEditorContextType, InfiniteTable, InfiniteTableAction, InfiniteTableActionType, InfiniteTableApi, InfiniteTableClassName, InfiniteTableColumn, InfiniteTableColumnAggregator, InfiniteTableColumnApi, InfiniteTableColumnCellContextType, InfiniteTableColumnComparer, InfiniteTableColumnGroup, InfiniteTableColumnRenderFunctionForGroupRows, InfiniteTableColumnRenderFunctionForNormalRows, InfiniteTableColumnRenderValueParam, InfiniteTableColumnRowspanParam, InfiniteTableColumnSizingOptions, InfiniteTableColumnValueFormatterParams, InfiniteTableColumnValueGetterParams, InfiniteTableComponent, InfiniteTableComputedColumn, InfiniteTableComputedValues, InfiniteTableContextValue, InfiniteTableGroupColumnBase, InfiniteTableGroupColumnFunction, InfiniteTableGroupColumnGetterOptions, InfiniteTablePivotColumn, InfiniteTablePropAutoSizeColumnsKey, InfiniteTablePropColumnGroupVisibility, InfiniteTablePropColumnGroups, InfiniteTablePropColumnOrder, InfiniteTablePropColumnPinning, InfiniteTablePropColumnSizing, InfiniteTablePropColumnTypes, InfiniteTablePropColumnVisibility, InfiniteTablePropColumns, InfiniteTablePropComponents, InfiniteTablePropGetCellContextMenuItems, InfiniteTablePropGetColumnMenuItems, InfiniteTablePropGetContextMenuItems, InfiniteTablePropGroupColumn, InfiniteTablePropGroupRenderStrategy, InfiniteTablePropHeaderOptions, InfiniteTablePropKeyboardNavigation, InfiniteTablePropKeyboardShorcut, InfiniteTablePropMultiSortBehavior, InfiniteTablePropRowClassName, InfiniteTablePropRowStyle, InfiniteTableProps, InfiniteTablePropsNotAvailableInTreeGrid, InfiniteTableRowClassNameFn, InfiniteTableRowInfo, InfiniteTableRowStyleFn, InfiniteTableState, InfiniteTable_HasGrouping_RowInfoGroup, InfiniteTable_HasGrouping_RowInfoNormal, InfiniteTable_Tree_RowInfoLeafNode, InfiniteTable_Tree_RowInfoNode, InfiniteTable_Tree_RowInfoParentNode, LazyGroupDataDeepMap, LazyGroupDataItem, LazyRowInfoGroup, Menu, MenuChildrenFnParam, MenuColumn, MenuColumnRenderParam, MenuDecoration, MenuIconProps, MenuItemActionContext, MenuItemDefinition, MenuItemObject, MenuProps, MenuRenderable, MenuRuntimeItem, MenuRuntimeItemSelectable, MenuSeparator, OverlayShowParams, RowDetailCache, RowDetailState, RowDetailStateObject, RowDisabledState, RowDisabledStateObject, RowSelectionState, ScrollStopInfo, Scrollbars, ShowOverlayFn, TableRenderRange, TreeDataSource, TreeDataSourceProps, TreeExpandState, TreeExpandStateValue, TreeGrid, TreeGridOnlyProps, TreeGridProps, TreeSelectionState, TreeSelectionValue, UpdateChildrenFn, UpdateOverlayContentFn, WeakFixedSizeSet, alignNode, components, createFlashingColumnCellComponent, debounce, debug, defaultFilterTypes, eventMatchesKeyboardShortcut, 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, useManagedDataSource, useMasterRowInfo, useOverlay, useOverlayPortal, usePrevious, useRowInfoReducers, useVisibleColumnSizes };
7131
+ export { AdvancedAlignable, CellSelectionState, CellSelectionStateObject, ColumnTypeWithInherit, DataClient, DataSource, DataSourceAction, DataSourceActionType, DataSourceAggregationReducer, DataSourceApi, DataSourceCRUDParam, DataSourceCallback_BaseParam, DataSourceComponentActions, DataSourceContextValue, DataSourceData, DataSourceDataParams, DataSourceDataParamsChanges, DataSourceDerivedState, DataSourceFilterFunctionParam, DataSourceFilterOperator, DataSourceFilterOperatorFunction, DataSourceFilterOperatorFunctionParam, DataSourceFilterType, DataSourceFilterValueItem, DataSourceFilterValueItemValueGetter, DataSourceGroupBy, DataSourceGroupRowsList, DataSourceInsertParam, DataSourceLivePaginationCursorFn, DataSourceLivePaginationCursorParams, DataSourceLivePaginationCursorValue, DataSourceMappedState, DataSourceMappings, DataSourceMasterDetailContextValue, DataSourcePivotBy, DataSourcePropAggregationReducers, DataSourcePropCellSelection, DataSourcePropCellSelection_MultiCell, DataSourcePropCellSelection_SingleCell, DataSourcePropFilterFunction, DataSourcePropFilterTypes, DataSourcePropFilterValue, DataSourcePropGroupBy, DataSourcePropGroupRowsStateObject, DataSourcePropIsNodeExpanded, DataSourcePropIsNodeReadOnly, DataSourcePropIsNodeSelectable, DataSourcePropIsNodeSelected, DataSourcePropIsRowSelected, DataSourcePropLivePaginationCursor, DataSourcePropMultiRowSelectionChangeParamType, DataSourcePropOnCellSelectionChange, DataSourcePropOnCellSelectionChange_MultiCell, DataSourcePropOnCellSelectionChange_SingleCell, DataSourcePropOnRowSelectionChange, DataSourcePropOnRowSelectionChange_MultiRow, DataSourcePropOnRowSelectionChange_SingleRow, DataSourcePropOnTreeSelectionChange, DataSourcePropOnTreeSelectionChange_MultiNode, DataSourcePropOnTreeSelectionChange_SingleNode, DataSourcePropPivotBy, DataSourcePropRowInfoReducers, DataSourcePropRowSelection, DataSourcePropRowSelection_MultiRow, DataSourcePropRowSelection_SingleRow, DataSourcePropSelectionMode, DataSourcePropShouldReloadData, DataSourcePropShouldReloadDataObject, DataSourcePropSortFn, DataSourcePropSortInfo, DataSourcePropSortTypes, DataSourcePropTreeSelection, DataSourcePropTreeSelection_MultiNode, DataSourcePropTreeSelection_SingleNode, DataSourceProps, DataSourcePropsNotAvailableInTreeDataSource, DataSourcePropsWithChildren, DataSourceRawReducer, DataSourceRemoteData, DataSourceRowInfoReducer, DataSourceSetupState, DataSourceSingleSortInfo, DataSourceSortInfo, DataSourceState, DataSourceUpdateParam, DebugLogger, DeepMap, ElementContainerGetter, FixedSizeSet, FlashingColumnCell, GroupRowsState, InfiniteColumnEditorContextType, InfiniteTable, InfiniteTableAction, InfiniteTableActionType, InfiniteTableApi, InfiniteTableClassName, InfiniteTableColumn, InfiniteTableColumnAggregator, InfiniteTableColumnApi, InfiniteTableColumnCellContextType, InfiniteTableColumnComparer, InfiniteTableColumnGroup, InfiniteTableColumnRenderFunctionForGroupRows, InfiniteTableColumnRenderFunctionForNormalRows, InfiniteTableColumnRenderValueParam, InfiniteTableColumnRowspanParam, InfiniteTableColumnSizingOptions, InfiniteTableColumnValueFormatterParams, InfiniteTableColumnValueGetterParams, InfiniteTableComponent, InfiniteTableComputedColumn, InfiniteTableComputedValues, InfiniteTableContextValue, InfiniteTableGroupColumnBase, InfiniteTableGroupColumnFunction, InfiniteTableGroupColumnGetterOptions, InfiniteTablePivotColumn, InfiniteTablePropAutoSizeColumnsKey, InfiniteTablePropColumnGroupVisibility, InfiniteTablePropColumnGroups, InfiniteTablePropColumnOrder, InfiniteTablePropColumnPinning, InfiniteTablePropColumnSizing, InfiniteTablePropColumnTypes, InfiniteTablePropColumnVisibility, InfiniteTablePropColumns, InfiniteTablePropComponents, InfiniteTablePropGetCellContextMenuItems, InfiniteTablePropGetColumnMenuItems, InfiniteTablePropGetContextMenuItems, InfiniteTablePropGroupColumn, InfiniteTablePropGroupRenderStrategy, InfiniteTablePropHeaderOptions, InfiniteTablePropKeyboardNavigation, InfiniteTablePropKeyboardShorcut, InfiniteTablePropMultiSortBehavior, InfiniteTablePropRowClassName, InfiniteTablePropRowStyle, InfiniteTableProps, InfiniteTablePropsNotAvailableInTreeGrid, InfiniteTableRowClassNameFn, InfiniteTableRowInfo, InfiniteTableRowStyleFn, InfiniteTableState, InfiniteTable_HasGrouping_RowInfoGroup, InfiniteTable_HasGrouping_RowInfoNormal, InfiniteTable_Tree_RowInfoLeafNode, InfiniteTable_Tree_RowInfoNode, InfiniteTable_Tree_RowInfoParentNode, LazyGroupDataDeepMap, LazyGroupDataItem, LazyRowInfoGroup, Menu, MenuChildrenFnParam, MenuColumn, MenuColumnRenderParam, MenuDecoration, MenuIconProps, MenuItemActionContext, MenuItemDefinition, MenuItemObject, MenuProps, MenuRenderable, MenuRuntimeItem, MenuRuntimeItemSelectable, MenuSeparator, OverlayShowParams, RowDetailCache, RowDetailState, RowDetailStateObject, RowDisabledState, RowDisabledStateObject, RowSelectionState, ScrollStopInfo, Scrollbars, ShowOverlayFn, TableRenderRange, TreeDataSource, TreeDataSourceProps, TreeExpandState, TreeExpandStateValue, TreeGrid, TreeGridOnlyProps, TreeGridProps, TreeSelectionState, TreeSelectionValue, UpdateChildrenFn, UpdateOverlayContentFn, WaitForNodeOptions, WeakFixedSizeSet, alignNode, components, createFlashingColumnCellComponent, debounce, debug, defaultFilterTypes, eventMatchesKeyboardShortcut, 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, useManagedDataSource, useMasterRowInfo, useOverlay, useOverlayPortal, usePrevious, useRowInfoReducers, useVisibleColumnSizes };