@infinite-table/infinite-react 6.0.14 → 6.0.16
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 +141 -3
- package/index.dev.js +323 -85
- package/index.dev.mjs +323 -85
- package/index.js +323 -85
- package/index.mjs +323 -85
- package/package.json +2 -2
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;
|
|
@@ -2485,6 +2497,11 @@ interface DataSourceSetupState<T> {
|
|
|
2485
2497
|
state: 'collapsed' | 'expanded';
|
|
2486
2498
|
nodePath: NodePath$1 | null;
|
|
2487
2499
|
}>;
|
|
2500
|
+
waitForNodePathPromises: DeepMap<any, {
|
|
2501
|
+
timestamp: number;
|
|
2502
|
+
promise: Promise<boolean>;
|
|
2503
|
+
resolve: (value: boolean) => void;
|
|
2504
|
+
}>;
|
|
2488
2505
|
repeatWrappedGroupRows: InfiniteTablePropRepeatWrappedGroupRows<T>;
|
|
2489
2506
|
/**
|
|
2490
2507
|
* This is just used for horizontal layout and when repeatWrappedGroupRows is TRUE!!!
|
|
@@ -2587,8 +2604,11 @@ declare type DataSourceCRUDParam = {
|
|
|
2587
2604
|
flush?: boolean;
|
|
2588
2605
|
metadata?: any;
|
|
2589
2606
|
};
|
|
2590
|
-
declare type
|
|
2591
|
-
|
|
2607
|
+
declare type WaitForNodeOptions = {
|
|
2608
|
+
waitForNode?: boolean | number;
|
|
2609
|
+
};
|
|
2610
|
+
declare type DataSourceUpdateParam = DataSourceCRUDParam & WaitForNodeOptions;
|
|
2611
|
+
declare type DataSourceInsertParam = DataSourceCRUDParam & WaitForNodeOptions & ({
|
|
2592
2612
|
position: 'before' | 'after';
|
|
2593
2613
|
primaryKey: any;
|
|
2594
2614
|
nodePath?: never;
|
|
@@ -2605,6 +2625,7 @@ declare type DataSourceInsertParam = DataSourceCRUDParam & ({
|
|
|
2605
2625
|
});
|
|
2606
2626
|
declare type UpdateChildrenFn<T> = (dataChildren: T[] | undefined | null, data: T) => T[] | undefined | null;
|
|
2607
2627
|
interface DataSourceApi<T> {
|
|
2628
|
+
getPendingOperationPromise(): Promise<boolean> | null;
|
|
2608
2629
|
getOriginalDataArray: () => T[];
|
|
2609
2630
|
getRowInfoArray: () => InfiniteTableRowInfo<T>[];
|
|
2610
2631
|
getDataByPrimaryKey(id: any): T | null;
|
|
@@ -2619,6 +2640,18 @@ interface DataSourceApi<T> {
|
|
|
2619
2640
|
getNodePathById(id: any): NodePath$1 | null;
|
|
2620
2641
|
getNodePathByIndex(index: number): NodePath$1 | null;
|
|
2621
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;
|
|
2622
2655
|
updateData(data: Partial<T>, options?: DataSourceCRUDParam): Promise<any>;
|
|
2623
2656
|
updateDataByNodePath(data: Partial<T>, nodePath: NodePath$1, options?: DataSourceUpdateParam): Promise<any>;
|
|
2624
2657
|
updateChildrenByNodePath(childrenOrFn: T[] | undefined | null | UpdateChildrenFn<T>, nodePath: NodePath$1, options?: DataSourceUpdateParam): Promise<any>;
|
|
@@ -2989,6 +3022,11 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
2989
3022
|
state: "expanded" | "collapsed";
|
|
2990
3023
|
nodePath: NodePath$1<any> | null;
|
|
2991
3024
|
}>;
|
|
3025
|
+
waitForNodePathPromises: DeepMap<any, {
|
|
3026
|
+
timestamp: number;
|
|
3027
|
+
promise: Promise<boolean>;
|
|
3028
|
+
resolve: (value: boolean) => void;
|
|
3029
|
+
}>;
|
|
2992
3030
|
repeatWrappedGroupRows: never;
|
|
2993
3031
|
rowsPerPage: never;
|
|
2994
3032
|
totalLeafNodesCount: number;
|
|
@@ -3116,6 +3154,11 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
3116
3154
|
state: "expanded" | "collapsed";
|
|
3117
3155
|
nodePath: NodePath$1<any> | null;
|
|
3118
3156
|
}>;
|
|
3157
|
+
waitForNodePathPromises: DeepMap<any, {
|
|
3158
|
+
timestamp: number;
|
|
3159
|
+
promise: Promise<boolean>;
|
|
3160
|
+
resolve: (value: boolean) => void;
|
|
3161
|
+
}>;
|
|
3119
3162
|
repeatWrappedGroupRows: never;
|
|
3120
3163
|
rowsPerPage: never;
|
|
3121
3164
|
totalLeafNodesCount: number;
|
|
@@ -3243,6 +3286,11 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
3243
3286
|
state: "expanded" | "collapsed";
|
|
3244
3287
|
nodePath: NodePath$1<any> | null;
|
|
3245
3288
|
}>;
|
|
3289
|
+
waitForNodePathPromises: DeepMap<any, {
|
|
3290
|
+
timestamp: number;
|
|
3291
|
+
promise: Promise<boolean>;
|
|
3292
|
+
resolve: (value: boolean) => void;
|
|
3293
|
+
}>;
|
|
3246
3294
|
repeatWrappedGroupRows: never;
|
|
3247
3295
|
rowsPerPage: never;
|
|
3248
3296
|
totalLeafNodesCount: number;
|
|
@@ -3371,6 +3419,11 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
3371
3419
|
state: "expanded" | "collapsed";
|
|
3372
3420
|
nodePath: NodePath$1<any> | null;
|
|
3373
3421
|
}>;
|
|
3422
|
+
waitForNodePathPromises: DeepMap<any, {
|
|
3423
|
+
timestamp: number;
|
|
3424
|
+
promise: Promise<boolean>;
|
|
3425
|
+
resolve: (value: boolean) => void;
|
|
3426
|
+
}>;
|
|
3374
3427
|
repeatWrappedGroupRows: never;
|
|
3375
3428
|
rowsPerPage: never;
|
|
3376
3429
|
totalLeafNodesCount: number;
|
|
@@ -3498,6 +3551,11 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
3498
3551
|
state: "expanded" | "collapsed";
|
|
3499
3552
|
nodePath: NodePath$1<any> | null;
|
|
3500
3553
|
}>;
|
|
3554
|
+
waitForNodePathPromises: DeepMap<any, {
|
|
3555
|
+
timestamp: number;
|
|
3556
|
+
promise: Promise<boolean>;
|
|
3557
|
+
resolve: (value: boolean) => void;
|
|
3558
|
+
}>;
|
|
3501
3559
|
repeatWrappedGroupRows: never;
|
|
3502
3560
|
rowsPerPage: never;
|
|
3503
3561
|
totalLeafNodesCount: number;
|
|
@@ -3625,6 +3683,11 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
3625
3683
|
state: "expanded" | "collapsed";
|
|
3626
3684
|
nodePath: NodePath$1<any> | null;
|
|
3627
3685
|
}>;
|
|
3686
|
+
waitForNodePathPromises: DeepMap<any, {
|
|
3687
|
+
timestamp: number;
|
|
3688
|
+
promise: Promise<boolean>;
|
|
3689
|
+
resolve: (value: boolean) => void;
|
|
3690
|
+
}>;
|
|
3628
3691
|
repeatWrappedGroupRows: never;
|
|
3629
3692
|
rowsPerPage: never;
|
|
3630
3693
|
totalLeafNodesCount: number;
|
|
@@ -3753,6 +3816,11 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
3753
3816
|
state: "expanded" | "collapsed";
|
|
3754
3817
|
nodePath: NodePath$1<any> | null;
|
|
3755
3818
|
}>;
|
|
3819
|
+
waitForNodePathPromises: DeepMap<any, {
|
|
3820
|
+
timestamp: number;
|
|
3821
|
+
promise: Promise<boolean>;
|
|
3822
|
+
resolve: (value: boolean) => void;
|
|
3823
|
+
}>;
|
|
3756
3824
|
repeatWrappedGroupRows: never;
|
|
3757
3825
|
rowsPerPage: never;
|
|
3758
3826
|
totalLeafNodesCount: number;
|
|
@@ -3880,6 +3948,11 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
3880
3948
|
state: "expanded" | "collapsed";
|
|
3881
3949
|
nodePath: NodePath$1<any> | null;
|
|
3882
3950
|
}>;
|
|
3951
|
+
waitForNodePathPromises: DeepMap<any, {
|
|
3952
|
+
timestamp: number;
|
|
3953
|
+
promise: Promise<boolean>;
|
|
3954
|
+
resolve: (value: boolean) => void;
|
|
3955
|
+
}>;
|
|
3883
3956
|
repeatWrappedGroupRows: never;
|
|
3884
3957
|
rowsPerPage: never;
|
|
3885
3958
|
totalLeafNodesCount: number;
|
|
@@ -4007,6 +4080,11 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
4007
4080
|
state: "expanded" | "collapsed";
|
|
4008
4081
|
nodePath: NodePath$1<any> | null;
|
|
4009
4082
|
}>;
|
|
4083
|
+
waitForNodePathPromises: DeepMap<any, {
|
|
4084
|
+
timestamp: number;
|
|
4085
|
+
promise: Promise<boolean>;
|
|
4086
|
+
resolve: (value: boolean) => void;
|
|
4087
|
+
}>;
|
|
4010
4088
|
repeatWrappedGroupRows: never;
|
|
4011
4089
|
rowsPerPage: never;
|
|
4012
4090
|
totalLeafNodesCount: number;
|
|
@@ -4135,6 +4213,11 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
4135
4213
|
state: "expanded" | "collapsed";
|
|
4136
4214
|
nodePath: NodePath$1<any> | null;
|
|
4137
4215
|
}>;
|
|
4216
|
+
waitForNodePathPromises: DeepMap<any, {
|
|
4217
|
+
timestamp: number;
|
|
4218
|
+
promise: Promise<boolean>;
|
|
4219
|
+
resolve: (value: boolean) => void;
|
|
4220
|
+
}>;
|
|
4138
4221
|
repeatWrappedGroupRows: never;
|
|
4139
4222
|
rowsPerPage: never;
|
|
4140
4223
|
totalLeafNodesCount: number;
|
|
@@ -4262,6 +4345,11 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
4262
4345
|
state: "expanded" | "collapsed";
|
|
4263
4346
|
nodePath: NodePath$1<any> | null;
|
|
4264
4347
|
}>;
|
|
4348
|
+
waitForNodePathPromises: DeepMap<any, {
|
|
4349
|
+
timestamp: number;
|
|
4350
|
+
promise: Promise<boolean>;
|
|
4351
|
+
resolve: (value: boolean) => void;
|
|
4352
|
+
}>;
|
|
4265
4353
|
repeatWrappedGroupRows: never;
|
|
4266
4354
|
rowsPerPage: never;
|
|
4267
4355
|
totalLeafNodesCount: number;
|
|
@@ -4389,6 +4477,11 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
4389
4477
|
state: "expanded" | "collapsed";
|
|
4390
4478
|
nodePath: NodePath$1<any> | null;
|
|
4391
4479
|
}>;
|
|
4480
|
+
waitForNodePathPromises: DeepMap<any, {
|
|
4481
|
+
timestamp: number;
|
|
4482
|
+
promise: Promise<boolean>;
|
|
4483
|
+
resolve: (value: boolean) => void;
|
|
4484
|
+
}>;
|
|
4392
4485
|
repeatWrappedGroupRows: never;
|
|
4393
4486
|
rowsPerPage: never;
|
|
4394
4487
|
totalLeafNodesCount: number;
|
|
@@ -4517,6 +4610,11 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
4517
4610
|
state: "expanded" | "collapsed";
|
|
4518
4611
|
nodePath: NodePath$1<any> | null;
|
|
4519
4612
|
}>;
|
|
4613
|
+
waitForNodePathPromises: DeepMap<any, {
|
|
4614
|
+
timestamp: number;
|
|
4615
|
+
promise: Promise<boolean>;
|
|
4616
|
+
resolve: (value: boolean) => void;
|
|
4617
|
+
}>;
|
|
4520
4618
|
repeatWrappedGroupRows: never;
|
|
4521
4619
|
rowsPerPage: never;
|
|
4522
4620
|
totalLeafNodesCount: number;
|
|
@@ -4644,6 +4742,11 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
4644
4742
|
state: "expanded" | "collapsed";
|
|
4645
4743
|
nodePath: NodePath$1<any> | null;
|
|
4646
4744
|
}>;
|
|
4745
|
+
waitForNodePathPromises: DeepMap<any, {
|
|
4746
|
+
timestamp: number;
|
|
4747
|
+
promise: Promise<boolean>;
|
|
4748
|
+
resolve: (value: boolean) => void;
|
|
4749
|
+
}>;
|
|
4647
4750
|
repeatWrappedGroupRows: never;
|
|
4648
4751
|
rowsPerPage: never;
|
|
4649
4752
|
totalLeafNodesCount: number;
|
|
@@ -4771,6 +4874,11 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
4771
4874
|
state: "expanded" | "collapsed";
|
|
4772
4875
|
nodePath: NodePath$1<any> | null;
|
|
4773
4876
|
}>;
|
|
4877
|
+
waitForNodePathPromises: DeepMap<any, {
|
|
4878
|
+
timestamp: number;
|
|
4879
|
+
promise: Promise<boolean>;
|
|
4880
|
+
resolve: (value: boolean) => void;
|
|
4881
|
+
}>;
|
|
4774
4882
|
repeatWrappedGroupRows: never;
|
|
4775
4883
|
rowsPerPage: never;
|
|
4776
4884
|
totalLeafNodesCount: number;
|
|
@@ -4900,6 +5008,11 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
4900
5008
|
state: "expanded" | "collapsed";
|
|
4901
5009
|
nodePath: NodePath$1<any> | null;
|
|
4902
5010
|
}>;
|
|
5011
|
+
waitForNodePathPromises: DeepMap<any, {
|
|
5012
|
+
timestamp: number;
|
|
5013
|
+
promise: Promise<boolean>;
|
|
5014
|
+
resolve: (value: boolean) => void;
|
|
5015
|
+
}>;
|
|
4903
5016
|
repeatWrappedGroupRows: never;
|
|
4904
5017
|
rowsPerPage: never;
|
|
4905
5018
|
totalLeafNodesCount: number;
|
|
@@ -5027,6 +5140,11 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
5027
5140
|
state: "expanded" | "collapsed";
|
|
5028
5141
|
nodePath: NodePath$1<any> | null;
|
|
5029
5142
|
}>;
|
|
5143
|
+
waitForNodePathPromises: DeepMap<any, {
|
|
5144
|
+
timestamp: number;
|
|
5145
|
+
promise: Promise<boolean>;
|
|
5146
|
+
resolve: (value: boolean) => void;
|
|
5147
|
+
}>;
|
|
5030
5148
|
repeatWrappedGroupRows: never;
|
|
5031
5149
|
rowsPerPage: never;
|
|
5032
5150
|
totalLeafNodesCount: number;
|
|
@@ -5154,6 +5272,11 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
5154
5272
|
state: "expanded" | "collapsed";
|
|
5155
5273
|
nodePath: NodePath$1<any> | null;
|
|
5156
5274
|
}>;
|
|
5275
|
+
waitForNodePathPromises: DeepMap<any, {
|
|
5276
|
+
timestamp: number;
|
|
5277
|
+
promise: Promise<boolean>;
|
|
5278
|
+
resolve: (value: boolean) => void;
|
|
5279
|
+
}>;
|
|
5157
5280
|
repeatWrappedGroupRows: never;
|
|
5158
5281
|
rowsPerPage: never;
|
|
5159
5282
|
totalLeafNodesCount: number;
|
|
@@ -5281,6 +5404,11 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
5281
5404
|
state: "expanded" | "collapsed";
|
|
5282
5405
|
nodePath: NodePath$1<any> | null;
|
|
5283
5406
|
}>;
|
|
5407
|
+
waitForNodePathPromises: DeepMap<any, {
|
|
5408
|
+
timestamp: number;
|
|
5409
|
+
promise: Promise<boolean>;
|
|
5410
|
+
resolve: (value: boolean) => void;
|
|
5411
|
+
}>;
|
|
5284
5412
|
repeatWrappedGroupRows: never;
|
|
5285
5413
|
rowsPerPage: never;
|
|
5286
5414
|
totalLeafNodesCount: number;
|
|
@@ -5408,6 +5536,11 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
5408
5536
|
state: "expanded" | "collapsed";
|
|
5409
5537
|
nodePath: NodePath$1<any> | null;
|
|
5410
5538
|
}>;
|
|
5539
|
+
waitForNodePathPromises: DeepMap<any, {
|
|
5540
|
+
timestamp: number;
|
|
5541
|
+
promise: Promise<boolean>;
|
|
5542
|
+
resolve: (value: boolean) => void;
|
|
5543
|
+
}>;
|
|
5411
5544
|
repeatWrappedGroupRows: never;
|
|
5412
5545
|
rowsPerPage: never;
|
|
5413
5546
|
totalLeafNodesCount: number;
|
|
@@ -5535,6 +5668,11 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
5535
5668
|
state: "expanded" | "collapsed";
|
|
5536
5669
|
nodePath: NodePath$1<any> | null;
|
|
5537
5670
|
}>;
|
|
5671
|
+
waitForNodePathPromises: DeepMap<any, {
|
|
5672
|
+
timestamp: number;
|
|
5673
|
+
promise: Promise<boolean>;
|
|
5674
|
+
resolve: (value: boolean) => void;
|
|
5675
|
+
}>;
|
|
5538
5676
|
repeatWrappedGroupRows: never;
|
|
5539
5677
|
rowsPerPage: never;
|
|
5540
5678
|
totalLeafNodesCount: number;
|
|
@@ -6990,4 +7128,4 @@ declare const components: {
|
|
|
6990
7128
|
NumberFilterEditor: typeof NumberFilterEditor;
|
|
6991
7129
|
};
|
|
6992
7130
|
|
|
6993
|
-
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 };
|