@infinite-table/infinite-react 7.2.5-canary.2 → 7.2.5
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 +143 -36
- package/index.dev.js +170 -41
- package/index.dev.mjs +168 -40
- package/index.js +8 -8
- package/index.mjs +8 -8
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -247,11 +247,13 @@ type TreeSelectionStateObject = {
|
|
|
247
247
|
selectedPaths: NodePath;
|
|
248
248
|
deselectedPaths?: NodePath;
|
|
249
249
|
};
|
|
250
|
-
type
|
|
251
|
-
treeDeepMap: DeepMap<any, DeepMapTreeValueType<any, any>>;
|
|
250
|
+
type TreeSelectionStateConfigObject = {
|
|
252
251
|
treePaths: DeepMap<any, true>;
|
|
253
252
|
};
|
|
254
|
-
type
|
|
253
|
+
type TreeSelectionStateConfigParam<_T = any> = {
|
|
254
|
+
treePaths: TreeSelectionStateConfigObject['treePaths'] | [any[]];
|
|
255
|
+
};
|
|
256
|
+
type GetTreeSelectionStateConfig<T> = TreeSelectionStateConfigParam<T> | (() => TreeSelectionStateConfigParam<T>);
|
|
255
257
|
type NodeSelectionState = {
|
|
256
258
|
selected: boolean | null;
|
|
257
259
|
selectedCount: number;
|
|
@@ -265,20 +267,30 @@ declare class TreeSelectionState<T = any> {
|
|
|
265
267
|
selectionMap: DeepMap<NodePath, boolean>;
|
|
266
268
|
cache: DeepMap<NodePath, NodeSelectionState>;
|
|
267
269
|
getConfig: GetTreeSelectionStateConfig<T>;
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
270
|
+
config: TreeSelectionStateConfigObject;
|
|
271
|
+
getTreePaths(treePaths?: TreeSelectionStateConfigParam['treePaths']): DeepMap<any, true>;
|
|
272
|
+
withTreePaths<T>(fn: (treePaths: TreeSelectionStateConfigObject['treePaths']) => T, treePaths?: TreeSelectionStateConfigParam['treePaths']): T;
|
|
273
|
+
getLeafNodePaths(rootNodePath?: NodePath, treePaths?: TreeSelectionStateConfigParam['treePaths']): any[][];
|
|
274
|
+
forEachLeafNodePath(fn: (nodePath: NodePath, { selected }: {
|
|
275
|
+
selected: boolean;
|
|
276
|
+
}) => void, rootNodePath?: NodePath, treePaths?: TreeSelectionStateConfigParam['treePaths']): void;
|
|
277
|
+
getSelectedLeafNodePaths(rootNodePath?: NodePath, treePaths?: TreeSelectionStateConfigParam['treePaths']): NodePath[];
|
|
278
|
+
getDeselectedLeafNodePaths(rootNodePath?: NodePath, treePaths?: TreeSelectionStateConfigParam['treePaths']): NodePath[];
|
|
279
|
+
isLeafNode(nodePath: NodePath): boolean | null;
|
|
272
280
|
getLeafNodesCount(nodePath: NodePath): number;
|
|
273
281
|
static from<T>(treeSelectionState: TreeSelectionStateObject, getConfig: GetTreeSelectionStateConfig<T>): TreeSelectionState<T>;
|
|
274
|
-
constructor(state: TreeSelectionStateObject | TreeSelectionState, getConfig
|
|
275
|
-
|
|
276
|
-
xcache
|
|
277
|
-
update
|
|
278
|
-
setSelectionForPath
|
|
282
|
+
constructor(state: TreeSelectionStateObject | TreeSelectionState, getConfig?: GetTreeSelectionStateConfig<T>);
|
|
283
|
+
setConfig(getConfig: GetTreeSelectionStateConfig<T>): void;
|
|
284
|
+
private xcache;
|
|
285
|
+
private update;
|
|
286
|
+
private setSelectionForPath;
|
|
279
287
|
getState(): TreeSelectionStateObject;
|
|
280
288
|
deselectAll(): void;
|
|
281
289
|
selectAll(): void;
|
|
290
|
+
private correctnessChecks;
|
|
291
|
+
enableCorrectnessChecks(): void;
|
|
292
|
+
disableCorrectnessChecks(): void;
|
|
293
|
+
isPathAvailable(nodePath: NodePath): boolean;
|
|
282
294
|
isNodeSelected(nodePath: NodePath): boolean | null;
|
|
283
295
|
private isSelfSelected;
|
|
284
296
|
private cacheIt;
|
|
@@ -303,6 +315,7 @@ type InfiniteTablePropsNotAvailableInTreeGrid = keyof Pick<InfiniteTableProps<an
|
|
|
303
315
|
type TreeGridProps<T> = Omit<InfiniteTableProps<T>, InfiniteTablePropsNotAvailableInTreeGrid> & TreeGridOnlyProps<T>;
|
|
304
316
|
|
|
305
317
|
declare function TreeGrid<T>(props: TreeGridProps<T>): React$1.JSX.Element;
|
|
318
|
+
declare const withSelectedLeafNodesOnly: (callback: (treeSelectionObject: TreeSelectionStateObject) => void) => DataSourcePropOnTreeSelectionChange_MultiNode;
|
|
306
319
|
|
|
307
320
|
type DebugLogger = {
|
|
308
321
|
(...args: any[]): void;
|
|
@@ -1917,7 +1930,10 @@ interface DataSourceSetupState<T> {
|
|
|
1917
1930
|
indexer: Indexer<T, any>;
|
|
1918
1931
|
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue | undefined>;
|
|
1919
1932
|
__apiRef: React$1.MutableRefObject<DataSourceApi<T> | null>;
|
|
1920
|
-
lastSelectionUpdatedNodePathRef: React$1.MutableRefObject<
|
|
1933
|
+
lastSelectionUpdatedNodePathRef: React$1.MutableRefObject<{
|
|
1934
|
+
nodePath: NodePath$1;
|
|
1935
|
+
selected: boolean;
|
|
1936
|
+
} | null>;
|
|
1921
1937
|
lastExpandStateInfoRef: React$1.MutableRefObject<{
|
|
1922
1938
|
state: 'collapsed' | 'expanded';
|
|
1923
1939
|
nodePath: NodePath$1 | null;
|
|
@@ -1971,6 +1987,7 @@ interface DataSourceSetupState<T> {
|
|
|
1971
1987
|
groupDeepMap?: DeepMap<GroupKeyType, DeepMapGroupValueType<T, any>>;
|
|
1972
1988
|
treeDeepMap?: DeepMap<TreeKeyType, DeepMapTreeValueType<T, any>>;
|
|
1973
1989
|
treePaths?: DeepMap<TreeKeyType, true>;
|
|
1990
|
+
unfilteredTreePaths?: DeepMap<TreeKeyType, true>;
|
|
1974
1991
|
groupRowsIndexesInDataArray?: number[];
|
|
1975
1992
|
reducerResults?: Record<string, AggregationReducerResult>;
|
|
1976
1993
|
allRowsSelected: boolean;
|
|
@@ -1996,6 +2013,7 @@ type DataSourcePropMultiRowSelectionChangeParamType = RowSelectionStateObject;
|
|
|
1996
2013
|
type DataSourcePropRowSelection = DataSourcePropRowSelection_MultiRow | DataSourcePropRowSelection_SingleRow;
|
|
1997
2014
|
type DataSourcePropRowSelection_MultiRow = RowSelectionStateObject;
|
|
1998
2015
|
type TreeSelectionValue = TreeSelectionStateObject | TreeSelectionState;
|
|
2016
|
+
|
|
1999
2017
|
type DataSourcePropTreeSelection_MultiNode = TreeSelectionValue;
|
|
2000
2018
|
type DataSourcePropRowSelection_SingleRow = null | string | number;
|
|
2001
2019
|
type DataSourcePropTreeSelection_SingleNode = null | string | number;
|
|
@@ -2007,8 +2025,13 @@ type DataSourcePropSelectionMode = false | 'single-cell' | 'single-row' | 'multi
|
|
|
2007
2025
|
type DataSourcePropOnRowSelectionChange_MultiRow = (rowSelection: DataSourcePropRowSelection_MultiRow, selectionMode: 'multi-row') => void;
|
|
2008
2026
|
type DataSourcePropOnTreeSelectionChange_MultiNode<T = any> = (treeSelectionStateObject: TreeSelectionStateObject, params: {
|
|
2009
2027
|
treeSelectionState: TreeSelectionState<T>;
|
|
2028
|
+
prevTreeSelectionState: TreeSelectionState<T>;
|
|
2029
|
+
unfilteredTreePaths: DeepMap<TreeKeyType, true>;
|
|
2010
2030
|
selectionMode: 'multi-row';
|
|
2011
|
-
|
|
2031
|
+
lastUpdatedNodeInfo: {
|
|
2032
|
+
nodePath: NodePath$1;
|
|
2033
|
+
selected: boolean;
|
|
2034
|
+
} | null;
|
|
2012
2035
|
dataSourceApi: DataSourceApi<T>;
|
|
2013
2036
|
treeApi: TreeApi<T>;
|
|
2014
2037
|
}) => void;
|
|
@@ -3349,7 +3372,10 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
3349
3372
|
indexer: Indexer<unknown, any>;
|
|
3350
3373
|
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue | undefined>;
|
|
3351
3374
|
__apiRef: React$1.MutableRefObject<DataSourceApi<unknown> | null>;
|
|
3352
|
-
lastSelectionUpdatedNodePathRef: React$1.MutableRefObject<
|
|
3375
|
+
lastSelectionUpdatedNodePathRef: React$1.MutableRefObject<{
|
|
3376
|
+
nodePath: NodePath$1;
|
|
3377
|
+
selected: boolean;
|
|
3378
|
+
} | null>;
|
|
3353
3379
|
lastExpandStateInfoRef: React$1.MutableRefObject<{
|
|
3354
3380
|
state: "collapsed" | "expanded";
|
|
3355
3381
|
nodePath: NodePath$1 | null;
|
|
@@ -3400,6 +3426,7 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
3400
3426
|
groupDeepMap?: never;
|
|
3401
3427
|
treeDeepMap?: never;
|
|
3402
3428
|
treePaths?: never;
|
|
3429
|
+
unfilteredTreePaths?: never;
|
|
3403
3430
|
groupRowsIndexesInDataArray?: never;
|
|
3404
3431
|
reducerResults?: never;
|
|
3405
3432
|
allRowsSelected: never;
|
|
@@ -3486,7 +3513,10 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
3486
3513
|
indexer: Indexer<unknown, any>;
|
|
3487
3514
|
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue | undefined>;
|
|
3488
3515
|
__apiRef: React$1.MutableRefObject<DataSourceApi<unknown> | null>;
|
|
3489
|
-
lastSelectionUpdatedNodePathRef: React$1.MutableRefObject<
|
|
3516
|
+
lastSelectionUpdatedNodePathRef: React$1.MutableRefObject<{
|
|
3517
|
+
nodePath: NodePath$1;
|
|
3518
|
+
selected: boolean;
|
|
3519
|
+
} | null>;
|
|
3490
3520
|
lastExpandStateInfoRef: React$1.MutableRefObject<{
|
|
3491
3521
|
state: "collapsed" | "expanded";
|
|
3492
3522
|
nodePath: NodePath$1 | null;
|
|
@@ -3537,6 +3567,7 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
3537
3567
|
groupDeepMap?: never;
|
|
3538
3568
|
treeDeepMap?: never;
|
|
3539
3569
|
treePaths?: never;
|
|
3570
|
+
unfilteredTreePaths?: never;
|
|
3540
3571
|
groupRowsIndexesInDataArray?: never;
|
|
3541
3572
|
reducerResults?: never;
|
|
3542
3573
|
allRowsSelected: never;
|
|
@@ -3623,7 +3654,10 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
3623
3654
|
indexer: Indexer<unknown, any>;
|
|
3624
3655
|
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue | undefined>;
|
|
3625
3656
|
__apiRef: React$1.MutableRefObject<DataSourceApi<unknown> | null>;
|
|
3626
|
-
lastSelectionUpdatedNodePathRef: React$1.MutableRefObject<
|
|
3657
|
+
lastSelectionUpdatedNodePathRef: React$1.MutableRefObject<{
|
|
3658
|
+
nodePath: NodePath$1;
|
|
3659
|
+
selected: boolean;
|
|
3660
|
+
} | null>;
|
|
3627
3661
|
lastExpandStateInfoRef: React$1.MutableRefObject<{
|
|
3628
3662
|
state: "collapsed" | "expanded";
|
|
3629
3663
|
nodePath: NodePath$1 | null;
|
|
@@ -3674,6 +3708,7 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
3674
3708
|
groupDeepMap?: never;
|
|
3675
3709
|
treeDeepMap?: never;
|
|
3676
3710
|
treePaths?: never;
|
|
3711
|
+
unfilteredTreePaths?: never;
|
|
3677
3712
|
groupRowsIndexesInDataArray?: never;
|
|
3678
3713
|
reducerResults?: never;
|
|
3679
3714
|
allRowsSelected: never;
|
|
@@ -3761,7 +3796,10 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
3761
3796
|
indexer: Indexer<unknown, any>;
|
|
3762
3797
|
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue | undefined>;
|
|
3763
3798
|
__apiRef: React$1.MutableRefObject<DataSourceApi<unknown> | null>;
|
|
3764
|
-
lastSelectionUpdatedNodePathRef: React$1.MutableRefObject<
|
|
3799
|
+
lastSelectionUpdatedNodePathRef: React$1.MutableRefObject<{
|
|
3800
|
+
nodePath: NodePath$1;
|
|
3801
|
+
selected: boolean;
|
|
3802
|
+
} | null>;
|
|
3765
3803
|
lastExpandStateInfoRef: React$1.MutableRefObject<{
|
|
3766
3804
|
state: "collapsed" | "expanded";
|
|
3767
3805
|
nodePath: NodePath$1 | null;
|
|
@@ -3812,6 +3850,7 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
3812
3850
|
groupDeepMap?: never;
|
|
3813
3851
|
treeDeepMap?: never;
|
|
3814
3852
|
treePaths?: never;
|
|
3853
|
+
unfilteredTreePaths?: never;
|
|
3815
3854
|
groupRowsIndexesInDataArray?: never;
|
|
3816
3855
|
reducerResults?: never;
|
|
3817
3856
|
allRowsSelected: never;
|
|
@@ -3898,7 +3937,10 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
3898
3937
|
indexer: Indexer<unknown, any>;
|
|
3899
3938
|
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue | undefined>;
|
|
3900
3939
|
__apiRef: React$1.MutableRefObject<DataSourceApi<unknown> | null>;
|
|
3901
|
-
lastSelectionUpdatedNodePathRef: React$1.MutableRefObject<
|
|
3940
|
+
lastSelectionUpdatedNodePathRef: React$1.MutableRefObject<{
|
|
3941
|
+
nodePath: NodePath$1;
|
|
3942
|
+
selected: boolean;
|
|
3943
|
+
} | null>;
|
|
3902
3944
|
lastExpandStateInfoRef: React$1.MutableRefObject<{
|
|
3903
3945
|
state: "collapsed" | "expanded";
|
|
3904
3946
|
nodePath: NodePath$1 | null;
|
|
@@ -3949,6 +3991,7 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
3949
3991
|
groupDeepMap?: never;
|
|
3950
3992
|
treeDeepMap?: never;
|
|
3951
3993
|
treePaths?: never;
|
|
3994
|
+
unfilteredTreePaths?: never;
|
|
3952
3995
|
groupRowsIndexesInDataArray?: never;
|
|
3953
3996
|
reducerResults?: never;
|
|
3954
3997
|
allRowsSelected: never;
|
|
@@ -4035,7 +4078,10 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
4035
4078
|
indexer: Indexer<unknown, any>;
|
|
4036
4079
|
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue | undefined>;
|
|
4037
4080
|
__apiRef: React$1.MutableRefObject<DataSourceApi<unknown> | null>;
|
|
4038
|
-
lastSelectionUpdatedNodePathRef: React$1.MutableRefObject<
|
|
4081
|
+
lastSelectionUpdatedNodePathRef: React$1.MutableRefObject<{
|
|
4082
|
+
nodePath: NodePath$1;
|
|
4083
|
+
selected: boolean;
|
|
4084
|
+
} | null>;
|
|
4039
4085
|
lastExpandStateInfoRef: React$1.MutableRefObject<{
|
|
4040
4086
|
state: "collapsed" | "expanded";
|
|
4041
4087
|
nodePath: NodePath$1 | null;
|
|
@@ -4086,6 +4132,7 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
4086
4132
|
groupDeepMap?: never;
|
|
4087
4133
|
treeDeepMap?: never;
|
|
4088
4134
|
treePaths?: never;
|
|
4135
|
+
unfilteredTreePaths?: never;
|
|
4089
4136
|
groupRowsIndexesInDataArray?: never;
|
|
4090
4137
|
reducerResults?: never;
|
|
4091
4138
|
allRowsSelected: never;
|
|
@@ -4173,7 +4220,10 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
4173
4220
|
indexer: Indexer<unknown, any>;
|
|
4174
4221
|
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue | undefined>;
|
|
4175
4222
|
__apiRef: React$1.MutableRefObject<DataSourceApi<unknown> | null>;
|
|
4176
|
-
lastSelectionUpdatedNodePathRef: React$1.MutableRefObject<
|
|
4223
|
+
lastSelectionUpdatedNodePathRef: React$1.MutableRefObject<{
|
|
4224
|
+
nodePath: NodePath$1;
|
|
4225
|
+
selected: boolean;
|
|
4226
|
+
} | null>;
|
|
4177
4227
|
lastExpandStateInfoRef: React$1.MutableRefObject<{
|
|
4178
4228
|
state: "collapsed" | "expanded";
|
|
4179
4229
|
nodePath: NodePath$1 | null;
|
|
@@ -4224,6 +4274,7 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
4224
4274
|
groupDeepMap?: never;
|
|
4225
4275
|
treeDeepMap?: never;
|
|
4226
4276
|
treePaths?: never;
|
|
4277
|
+
unfilteredTreePaths?: never;
|
|
4227
4278
|
groupRowsIndexesInDataArray?: never;
|
|
4228
4279
|
reducerResults?: never;
|
|
4229
4280
|
allRowsSelected: never;
|
|
@@ -4310,7 +4361,10 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
4310
4361
|
indexer: Indexer<unknown, any>;
|
|
4311
4362
|
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue | undefined>;
|
|
4312
4363
|
__apiRef: React$1.MutableRefObject<DataSourceApi<unknown> | null>;
|
|
4313
|
-
lastSelectionUpdatedNodePathRef: React$1.MutableRefObject<
|
|
4364
|
+
lastSelectionUpdatedNodePathRef: React$1.MutableRefObject<{
|
|
4365
|
+
nodePath: NodePath$1;
|
|
4366
|
+
selected: boolean;
|
|
4367
|
+
} | null>;
|
|
4314
4368
|
lastExpandStateInfoRef: React$1.MutableRefObject<{
|
|
4315
4369
|
state: "collapsed" | "expanded";
|
|
4316
4370
|
nodePath: NodePath$1 | null;
|
|
@@ -4361,6 +4415,7 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
4361
4415
|
groupDeepMap?: never;
|
|
4362
4416
|
treeDeepMap?: never;
|
|
4363
4417
|
treePaths?: never;
|
|
4418
|
+
unfilteredTreePaths?: never;
|
|
4364
4419
|
groupRowsIndexesInDataArray?: never;
|
|
4365
4420
|
reducerResults?: never;
|
|
4366
4421
|
allRowsSelected: never;
|
|
@@ -4447,7 +4502,10 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
4447
4502
|
indexer: Indexer<unknown, any>;
|
|
4448
4503
|
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue | undefined>;
|
|
4449
4504
|
__apiRef: React$1.MutableRefObject<DataSourceApi<unknown> | null>;
|
|
4450
|
-
lastSelectionUpdatedNodePathRef: React$1.MutableRefObject<
|
|
4505
|
+
lastSelectionUpdatedNodePathRef: React$1.MutableRefObject<{
|
|
4506
|
+
nodePath: NodePath$1;
|
|
4507
|
+
selected: boolean;
|
|
4508
|
+
} | null>;
|
|
4451
4509
|
lastExpandStateInfoRef: React$1.MutableRefObject<{
|
|
4452
4510
|
state: "collapsed" | "expanded";
|
|
4453
4511
|
nodePath: NodePath$1 | null;
|
|
@@ -4498,6 +4556,7 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
4498
4556
|
groupDeepMap?: never;
|
|
4499
4557
|
treeDeepMap?: never;
|
|
4500
4558
|
treePaths?: never;
|
|
4559
|
+
unfilteredTreePaths?: never;
|
|
4501
4560
|
groupRowsIndexesInDataArray?: never;
|
|
4502
4561
|
reducerResults?: never;
|
|
4503
4562
|
allRowsSelected: never;
|
|
@@ -4585,7 +4644,10 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
4585
4644
|
indexer: Indexer<unknown, any>;
|
|
4586
4645
|
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue | undefined>;
|
|
4587
4646
|
__apiRef: React$1.MutableRefObject<DataSourceApi<unknown> | null>;
|
|
4588
|
-
lastSelectionUpdatedNodePathRef: React$1.MutableRefObject<
|
|
4647
|
+
lastSelectionUpdatedNodePathRef: React$1.MutableRefObject<{
|
|
4648
|
+
nodePath: NodePath$1;
|
|
4649
|
+
selected: boolean;
|
|
4650
|
+
} | null>;
|
|
4589
4651
|
lastExpandStateInfoRef: React$1.MutableRefObject<{
|
|
4590
4652
|
state: "collapsed" | "expanded";
|
|
4591
4653
|
nodePath: NodePath$1 | null;
|
|
@@ -4636,6 +4698,7 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
4636
4698
|
groupDeepMap?: never;
|
|
4637
4699
|
treeDeepMap?: never;
|
|
4638
4700
|
treePaths?: never;
|
|
4701
|
+
unfilteredTreePaths?: never;
|
|
4639
4702
|
groupRowsIndexesInDataArray?: never;
|
|
4640
4703
|
reducerResults?: never;
|
|
4641
4704
|
allRowsSelected: never;
|
|
@@ -4722,7 +4785,10 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
4722
4785
|
indexer: Indexer<unknown, any>;
|
|
4723
4786
|
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue | undefined>;
|
|
4724
4787
|
__apiRef: React$1.MutableRefObject<DataSourceApi<unknown> | null>;
|
|
4725
|
-
lastSelectionUpdatedNodePathRef: React$1.MutableRefObject<
|
|
4788
|
+
lastSelectionUpdatedNodePathRef: React$1.MutableRefObject<{
|
|
4789
|
+
nodePath: NodePath$1;
|
|
4790
|
+
selected: boolean;
|
|
4791
|
+
} | null>;
|
|
4726
4792
|
lastExpandStateInfoRef: React$1.MutableRefObject<{
|
|
4727
4793
|
state: "collapsed" | "expanded";
|
|
4728
4794
|
nodePath: NodePath$1 | null;
|
|
@@ -4773,6 +4839,7 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
4773
4839
|
groupDeepMap?: never;
|
|
4774
4840
|
treeDeepMap?: never;
|
|
4775
4841
|
treePaths?: never;
|
|
4842
|
+
unfilteredTreePaths?: never;
|
|
4776
4843
|
groupRowsIndexesInDataArray?: never;
|
|
4777
4844
|
reducerResults?: never;
|
|
4778
4845
|
allRowsSelected: never;
|
|
@@ -4859,7 +4926,10 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
4859
4926
|
indexer: Indexer<unknown, any>;
|
|
4860
4927
|
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue | undefined>;
|
|
4861
4928
|
__apiRef: React$1.MutableRefObject<DataSourceApi<unknown> | null>;
|
|
4862
|
-
lastSelectionUpdatedNodePathRef: React$1.MutableRefObject<
|
|
4929
|
+
lastSelectionUpdatedNodePathRef: React$1.MutableRefObject<{
|
|
4930
|
+
nodePath: NodePath$1;
|
|
4931
|
+
selected: boolean;
|
|
4932
|
+
} | null>;
|
|
4863
4933
|
lastExpandStateInfoRef: React$1.MutableRefObject<{
|
|
4864
4934
|
state: "collapsed" | "expanded";
|
|
4865
4935
|
nodePath: NodePath$1 | null;
|
|
@@ -4910,6 +4980,7 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
4910
4980
|
groupDeepMap?: never;
|
|
4911
4981
|
treeDeepMap?: never;
|
|
4912
4982
|
treePaths?: never;
|
|
4983
|
+
unfilteredTreePaths?: never;
|
|
4913
4984
|
groupRowsIndexesInDataArray?: never;
|
|
4914
4985
|
reducerResults?: never;
|
|
4915
4986
|
allRowsSelected: never;
|
|
@@ -4997,7 +5068,10 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
4997
5068
|
indexer: Indexer<unknown, any>;
|
|
4998
5069
|
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue | undefined>;
|
|
4999
5070
|
__apiRef: React$1.MutableRefObject<DataSourceApi<unknown> | null>;
|
|
5000
|
-
lastSelectionUpdatedNodePathRef: React$1.MutableRefObject<
|
|
5071
|
+
lastSelectionUpdatedNodePathRef: React$1.MutableRefObject<{
|
|
5072
|
+
nodePath: NodePath$1;
|
|
5073
|
+
selected: boolean;
|
|
5074
|
+
} | null>;
|
|
5001
5075
|
lastExpandStateInfoRef: React$1.MutableRefObject<{
|
|
5002
5076
|
state: "collapsed" | "expanded";
|
|
5003
5077
|
nodePath: NodePath$1 | null;
|
|
@@ -5048,6 +5122,7 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
5048
5122
|
groupDeepMap?: never;
|
|
5049
5123
|
treeDeepMap?: never;
|
|
5050
5124
|
treePaths?: never;
|
|
5125
|
+
unfilteredTreePaths?: never;
|
|
5051
5126
|
groupRowsIndexesInDataArray?: never;
|
|
5052
5127
|
reducerResults?: never;
|
|
5053
5128
|
allRowsSelected: never;
|
|
@@ -5134,7 +5209,10 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
5134
5209
|
indexer: Indexer<unknown, any>;
|
|
5135
5210
|
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue | undefined>;
|
|
5136
5211
|
__apiRef: React$1.MutableRefObject<DataSourceApi<unknown> | null>;
|
|
5137
|
-
lastSelectionUpdatedNodePathRef: React$1.MutableRefObject<
|
|
5212
|
+
lastSelectionUpdatedNodePathRef: React$1.MutableRefObject<{
|
|
5213
|
+
nodePath: NodePath$1;
|
|
5214
|
+
selected: boolean;
|
|
5215
|
+
} | null>;
|
|
5138
5216
|
lastExpandStateInfoRef: React$1.MutableRefObject<{
|
|
5139
5217
|
state: "collapsed" | "expanded";
|
|
5140
5218
|
nodePath: NodePath$1 | null;
|
|
@@ -5185,6 +5263,7 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
5185
5263
|
groupDeepMap?: never;
|
|
5186
5264
|
treeDeepMap?: never;
|
|
5187
5265
|
treePaths?: never;
|
|
5266
|
+
unfilteredTreePaths?: never;
|
|
5188
5267
|
groupRowsIndexesInDataArray?: never;
|
|
5189
5268
|
reducerResults?: never;
|
|
5190
5269
|
allRowsSelected: never;
|
|
@@ -5271,7 +5350,10 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
5271
5350
|
indexer: Indexer<unknown, any>;
|
|
5272
5351
|
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue | undefined>;
|
|
5273
5352
|
__apiRef: React$1.MutableRefObject<DataSourceApi<unknown> | null>;
|
|
5274
|
-
lastSelectionUpdatedNodePathRef: React$1.MutableRefObject<
|
|
5353
|
+
lastSelectionUpdatedNodePathRef: React$1.MutableRefObject<{
|
|
5354
|
+
nodePath: NodePath$1;
|
|
5355
|
+
selected: boolean;
|
|
5356
|
+
} | null>;
|
|
5275
5357
|
lastExpandStateInfoRef: React$1.MutableRefObject<{
|
|
5276
5358
|
state: "collapsed" | "expanded";
|
|
5277
5359
|
nodePath: NodePath$1 | null;
|
|
@@ -5322,6 +5404,7 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
5322
5404
|
groupDeepMap?: never;
|
|
5323
5405
|
treeDeepMap?: never;
|
|
5324
5406
|
treePaths?: never;
|
|
5407
|
+
unfilteredTreePaths?: never;
|
|
5325
5408
|
groupRowsIndexesInDataArray?: never;
|
|
5326
5409
|
reducerResults?: never;
|
|
5327
5410
|
allRowsSelected: never;
|
|
@@ -5410,7 +5493,10 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
5410
5493
|
indexer: Indexer<unknown, any>;
|
|
5411
5494
|
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue | undefined>;
|
|
5412
5495
|
__apiRef: React$1.MutableRefObject<DataSourceApi<unknown> | null>;
|
|
5413
|
-
lastSelectionUpdatedNodePathRef: React$1.MutableRefObject<
|
|
5496
|
+
lastSelectionUpdatedNodePathRef: React$1.MutableRefObject<{
|
|
5497
|
+
nodePath: NodePath$1;
|
|
5498
|
+
selected: boolean;
|
|
5499
|
+
} | null>;
|
|
5414
5500
|
lastExpandStateInfoRef: React$1.MutableRefObject<{
|
|
5415
5501
|
state: "collapsed" | "expanded";
|
|
5416
5502
|
nodePath: NodePath$1 | null;
|
|
@@ -5461,6 +5547,7 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
5461
5547
|
groupDeepMap?: never;
|
|
5462
5548
|
treeDeepMap?: never;
|
|
5463
5549
|
treePaths?: never;
|
|
5550
|
+
unfilteredTreePaths?: never;
|
|
5464
5551
|
groupRowsIndexesInDataArray?: never;
|
|
5465
5552
|
reducerResults?: never;
|
|
5466
5553
|
allRowsSelected: never;
|
|
@@ -5547,7 +5634,10 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
5547
5634
|
indexer: Indexer<unknown, any>;
|
|
5548
5635
|
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue | undefined>;
|
|
5549
5636
|
__apiRef: React$1.MutableRefObject<DataSourceApi<unknown> | null>;
|
|
5550
|
-
lastSelectionUpdatedNodePathRef: React$1.MutableRefObject<
|
|
5637
|
+
lastSelectionUpdatedNodePathRef: React$1.MutableRefObject<{
|
|
5638
|
+
nodePath: NodePath$1;
|
|
5639
|
+
selected: boolean;
|
|
5640
|
+
} | null>;
|
|
5551
5641
|
lastExpandStateInfoRef: React$1.MutableRefObject<{
|
|
5552
5642
|
state: "collapsed" | "expanded";
|
|
5553
5643
|
nodePath: NodePath$1 | null;
|
|
@@ -5598,6 +5688,7 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
5598
5688
|
groupDeepMap?: never;
|
|
5599
5689
|
treeDeepMap?: never;
|
|
5600
5690
|
treePaths?: never;
|
|
5691
|
+
unfilteredTreePaths?: never;
|
|
5601
5692
|
groupRowsIndexesInDataArray?: never;
|
|
5602
5693
|
reducerResults?: never;
|
|
5603
5694
|
allRowsSelected: never;
|
|
@@ -5684,7 +5775,10 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
5684
5775
|
indexer: Indexer<unknown, any>;
|
|
5685
5776
|
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue | undefined>;
|
|
5686
5777
|
__apiRef: React$1.MutableRefObject<DataSourceApi<unknown> | null>;
|
|
5687
|
-
lastSelectionUpdatedNodePathRef: React$1.MutableRefObject<
|
|
5778
|
+
lastSelectionUpdatedNodePathRef: React$1.MutableRefObject<{
|
|
5779
|
+
nodePath: NodePath$1;
|
|
5780
|
+
selected: boolean;
|
|
5781
|
+
} | null>;
|
|
5688
5782
|
lastExpandStateInfoRef: React$1.MutableRefObject<{
|
|
5689
5783
|
state: "collapsed" | "expanded";
|
|
5690
5784
|
nodePath: NodePath$1 | null;
|
|
@@ -5735,6 +5829,7 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
5735
5829
|
groupDeepMap?: never;
|
|
5736
5830
|
treeDeepMap?: never;
|
|
5737
5831
|
treePaths?: never;
|
|
5832
|
+
unfilteredTreePaths?: never;
|
|
5738
5833
|
groupRowsIndexesInDataArray?: never;
|
|
5739
5834
|
reducerResults?: never;
|
|
5740
5835
|
allRowsSelected: never;
|
|
@@ -5821,7 +5916,10 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
5821
5916
|
indexer: Indexer<unknown, any>;
|
|
5822
5917
|
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue | undefined>;
|
|
5823
5918
|
__apiRef: React$1.MutableRefObject<DataSourceApi<unknown> | null>;
|
|
5824
|
-
lastSelectionUpdatedNodePathRef: React$1.MutableRefObject<
|
|
5919
|
+
lastSelectionUpdatedNodePathRef: React$1.MutableRefObject<{
|
|
5920
|
+
nodePath: NodePath$1;
|
|
5921
|
+
selected: boolean;
|
|
5922
|
+
} | null>;
|
|
5825
5923
|
lastExpandStateInfoRef: React$1.MutableRefObject<{
|
|
5826
5924
|
state: "collapsed" | "expanded";
|
|
5827
5925
|
nodePath: NodePath$1 | null;
|
|
@@ -5872,6 +5970,7 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
5872
5970
|
groupDeepMap?: never;
|
|
5873
5971
|
treeDeepMap?: never;
|
|
5874
5972
|
treePaths?: never;
|
|
5973
|
+
unfilteredTreePaths?: never;
|
|
5875
5974
|
groupRowsIndexesInDataArray?: never;
|
|
5876
5975
|
reducerResults?: never;
|
|
5877
5976
|
allRowsSelected: never;
|
|
@@ -5958,7 +6057,10 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
5958
6057
|
indexer: Indexer<unknown, any>;
|
|
5959
6058
|
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue | undefined>;
|
|
5960
6059
|
__apiRef: React$1.MutableRefObject<DataSourceApi<unknown> | null>;
|
|
5961
|
-
lastSelectionUpdatedNodePathRef: React$1.MutableRefObject<
|
|
6060
|
+
lastSelectionUpdatedNodePathRef: React$1.MutableRefObject<{
|
|
6061
|
+
nodePath: NodePath$1;
|
|
6062
|
+
selected: boolean;
|
|
6063
|
+
} | null>;
|
|
5962
6064
|
lastExpandStateInfoRef: React$1.MutableRefObject<{
|
|
5963
6065
|
state: "collapsed" | "expanded";
|
|
5964
6066
|
nodePath: NodePath$1 | null;
|
|
@@ -6009,6 +6111,7 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
6009
6111
|
groupDeepMap?: never;
|
|
6010
6112
|
treeDeepMap?: never;
|
|
6011
6113
|
treePaths?: never;
|
|
6114
|
+
unfilteredTreePaths?: never;
|
|
6012
6115
|
groupRowsIndexesInDataArray?: never;
|
|
6013
6116
|
reducerResults?: never;
|
|
6014
6117
|
allRowsSelected: never;
|
|
@@ -6095,7 +6198,10 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
6095
6198
|
indexer: Indexer<unknown, any>;
|
|
6096
6199
|
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue | undefined>;
|
|
6097
6200
|
__apiRef: React$1.MutableRefObject<DataSourceApi<unknown> | null>;
|
|
6098
|
-
lastSelectionUpdatedNodePathRef: React$1.MutableRefObject<
|
|
6201
|
+
lastSelectionUpdatedNodePathRef: React$1.MutableRefObject<{
|
|
6202
|
+
nodePath: NodePath$1;
|
|
6203
|
+
selected: boolean;
|
|
6204
|
+
} | null>;
|
|
6099
6205
|
lastExpandStateInfoRef: React$1.MutableRefObject<{
|
|
6100
6206
|
state: "collapsed" | "expanded";
|
|
6101
6207
|
nodePath: NodePath$1 | null;
|
|
@@ -6146,6 +6252,7 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
6146
6252
|
groupDeepMap?: never;
|
|
6147
6253
|
treeDeepMap?: never;
|
|
6148
6254
|
treePaths?: never;
|
|
6255
|
+
unfilteredTreePaths?: never;
|
|
6149
6256
|
groupRowsIndexesInDataArray?: never;
|
|
6150
6257
|
reducerResults?: never;
|
|
6151
6258
|
allRowsSelected: never;
|
|
@@ -7560,4 +7667,4 @@ declare const components: {
|
|
|
7560
7667
|
NumberFilterEditor: typeof NumberFilterEditor;
|
|
7561
7668
|
};
|
|
7562
7669
|
|
|
7563
|
-
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 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 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 };
|
|
7670
|
+
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 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 };
|