@infinite-table/infinite-react 7.4.0 → 7.4.2
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 +40 -25
- package/index.dev.js +235 -174
- package/index.dev.mjs +235 -174
- package/index.js +8 -8
- package/index.mjs +8 -8
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -335,6 +335,14 @@ type DebugLogger = {
|
|
|
335
335
|
destroy: () => void;
|
|
336
336
|
logFn: undefined | ((...args: any[]) => void);
|
|
337
337
|
};
|
|
338
|
+
/**
|
|
339
|
+
* Returns whether logging is enabled for a specific channel
|
|
340
|
+
*
|
|
341
|
+
* @param channel the name of a specific channel like "a:b:c" - cannot contain wildcards
|
|
342
|
+
* @param permissions we accept values like "a:b:c,d:e:f,d:x:*" - multiple values separated by a comma. can also contain wildcards
|
|
343
|
+
* @returns boolean
|
|
344
|
+
*/
|
|
345
|
+
declare function isChannelEnabled(channel: string, permissions: string): boolean;
|
|
338
346
|
declare const debug: {
|
|
339
347
|
(channelName: string): DebugLogger;
|
|
340
348
|
colors: string[];
|
|
@@ -342,6 +350,7 @@ declare const debug: {
|
|
|
342
350
|
diffenable: string | boolean;
|
|
343
351
|
logFn: DebugLogger["logFn"];
|
|
344
352
|
destroyAll: () => void;
|
|
353
|
+
isChannelEnabled: typeof isChannelEnabled;
|
|
345
354
|
onLogIntent: (channel: string, fn: (options: {
|
|
346
355
|
timestamp: number;
|
|
347
356
|
channel: string;
|
|
@@ -1840,7 +1849,8 @@ type DataSourceRemoteData<T> = {
|
|
|
1840
1849
|
totalCountUnfiltered?: number;
|
|
1841
1850
|
livePaginationCursor?: DataSourceLivePaginationCursorValue;
|
|
1842
1851
|
};
|
|
1843
|
-
type
|
|
1852
|
+
type DataSourceDataFn<T> = (dataInfo: DataSourceDataParams<T>) => T[] | Promise<T[] | DataSourceRemoteData<T>>;
|
|
1853
|
+
type DataSourceData<T> = T[] | DataSourceRemoteData<T> | Promise<T[] | DataSourceRemoteData<T>> | DataSourceDataFn<T>;
|
|
1844
1854
|
type DataSourceGroupRowsList<KeyType = any> = true | KeyType[][];
|
|
1845
1855
|
type DataSourcePropGroupRowsStateObject<KeyType = any> = {
|
|
1846
1856
|
expandedRows: DataSourceGroupRowsList<KeyType>;
|
|
@@ -2445,7 +2455,9 @@ type HorizontalLayoutColVisibilityOptions = {
|
|
|
2445
2455
|
|
|
2446
2456
|
interface GridCellInterface<T_ADDITIONAL_CELL_INFO = any> {
|
|
2447
2457
|
debugId: string;
|
|
2448
|
-
update(content: Renderable, additionalInfo?: T_ADDITIONAL_CELL_INFO
|
|
2458
|
+
update(content: Renderable, additionalInfo?: T_ADDITIONAL_CELL_INFO, scrollingObjectParam?: {
|
|
2459
|
+
scrolling: boolean;
|
|
2460
|
+
}): void;
|
|
2449
2461
|
getElement(): HTMLElement | null;
|
|
2450
2462
|
getNode(): Renderable;
|
|
2451
2463
|
destroy(): void;
|
|
@@ -2473,7 +2485,9 @@ declare class GridCellManager<T_ADDITIONAL_CELL_INFO> extends Logger {
|
|
|
2473
2485
|
private clearCellFromMatrix;
|
|
2474
2486
|
private addCellToMatrix;
|
|
2475
2487
|
private setCellPositionInMatrix;
|
|
2476
|
-
renderNodeAtCell(node: Renderable, cell: GridCellInterface<T_ADDITIONAL_CELL_INFO>, cellPos: CellPos, additionalInfo?: T_ADDITIONAL_CELL_INFO
|
|
2488
|
+
renderNodeAtCell(node: Renderable, cell: GridCellInterface<T_ADDITIONAL_CELL_INFO>, cellPos: CellPos, additionalInfo?: T_ADDITIONAL_CELL_INFO, scrollingObjectParam?: {
|
|
2489
|
+
scrolling: boolean;
|
|
2490
|
+
}): GridCellInterface<T_ADDITIONAL_CELL_INFO>;
|
|
2477
2491
|
getCellPosition(cell: GridCellInterface<T_ADDITIONAL_CELL_INFO>): CellPos | null;
|
|
2478
2492
|
getCellAt(cellPos: CellPos): GridCellInterface<T_ADDITIONAL_CELL_INFO> | undefined;
|
|
2479
2493
|
/**
|
|
@@ -3524,7 +3538,7 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
3524
3538
|
lazyLoad: never;
|
|
3525
3539
|
useGroupKeysForMultiRowSelection: never;
|
|
3526
3540
|
onDataParamsChange: never;
|
|
3527
|
-
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> &
|
|
3541
|
+
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> & DataSourceDataFn<unknown>;
|
|
3528
3542
|
sortFunction: never;
|
|
3529
3543
|
filterFunction: never;
|
|
3530
3544
|
treeFilterFunction: never;
|
|
@@ -3665,7 +3679,7 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
3665
3679
|
lazyLoad: never;
|
|
3666
3680
|
useGroupKeysForMultiRowSelection: never;
|
|
3667
3681
|
onDataParamsChange: never;
|
|
3668
|
-
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> &
|
|
3682
|
+
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> & DataSourceDataFn<unknown>;
|
|
3669
3683
|
sortFunction: never;
|
|
3670
3684
|
filterFunction: never;
|
|
3671
3685
|
treeFilterFunction: never;
|
|
@@ -3806,7 +3820,7 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
3806
3820
|
lazyLoad: never;
|
|
3807
3821
|
useGroupKeysForMultiRowSelection: never;
|
|
3808
3822
|
onDataParamsChange: never;
|
|
3809
|
-
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> &
|
|
3823
|
+
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> & DataSourceDataFn<unknown>;
|
|
3810
3824
|
sortFunction: never;
|
|
3811
3825
|
filterFunction: never;
|
|
3812
3826
|
treeFilterFunction: never;
|
|
@@ -3948,7 +3962,7 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
3948
3962
|
lazyLoad: never;
|
|
3949
3963
|
useGroupKeysForMultiRowSelection: never;
|
|
3950
3964
|
onDataParamsChange: never;
|
|
3951
|
-
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> &
|
|
3965
|
+
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> & DataSourceDataFn<unknown>;
|
|
3952
3966
|
sortFunction: never;
|
|
3953
3967
|
filterFunction: never;
|
|
3954
3968
|
treeFilterFunction: never;
|
|
@@ -4089,7 +4103,7 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
4089
4103
|
lazyLoad: never;
|
|
4090
4104
|
useGroupKeysForMultiRowSelection: never;
|
|
4091
4105
|
onDataParamsChange: never;
|
|
4092
|
-
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> &
|
|
4106
|
+
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> & DataSourceDataFn<unknown>;
|
|
4093
4107
|
sortFunction: never;
|
|
4094
4108
|
filterFunction: never;
|
|
4095
4109
|
treeFilterFunction: never;
|
|
@@ -4230,7 +4244,7 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
4230
4244
|
lazyLoad: never;
|
|
4231
4245
|
useGroupKeysForMultiRowSelection: never;
|
|
4232
4246
|
onDataParamsChange: never;
|
|
4233
|
-
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> &
|
|
4247
|
+
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> & DataSourceDataFn<unknown>;
|
|
4234
4248
|
sortFunction: never;
|
|
4235
4249
|
filterFunction: never;
|
|
4236
4250
|
treeFilterFunction: never;
|
|
@@ -4372,7 +4386,7 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
4372
4386
|
lazyLoad: never;
|
|
4373
4387
|
useGroupKeysForMultiRowSelection: never;
|
|
4374
4388
|
onDataParamsChange: never;
|
|
4375
|
-
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> &
|
|
4389
|
+
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> & DataSourceDataFn<unknown>;
|
|
4376
4390
|
sortFunction: never;
|
|
4377
4391
|
filterFunction: never;
|
|
4378
4392
|
treeFilterFunction: never;
|
|
@@ -4513,7 +4527,7 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
4513
4527
|
lazyLoad: never;
|
|
4514
4528
|
useGroupKeysForMultiRowSelection: never;
|
|
4515
4529
|
onDataParamsChange: never;
|
|
4516
|
-
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> &
|
|
4530
|
+
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> & DataSourceDataFn<unknown>;
|
|
4517
4531
|
sortFunction: never;
|
|
4518
4532
|
filterFunction: never;
|
|
4519
4533
|
treeFilterFunction: never;
|
|
@@ -4654,7 +4668,7 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
4654
4668
|
lazyLoad: never;
|
|
4655
4669
|
useGroupKeysForMultiRowSelection: never;
|
|
4656
4670
|
onDataParamsChange: never;
|
|
4657
|
-
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> &
|
|
4671
|
+
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> & DataSourceDataFn<unknown>;
|
|
4658
4672
|
sortFunction: never;
|
|
4659
4673
|
filterFunction: never;
|
|
4660
4674
|
treeFilterFunction: never;
|
|
@@ -4796,7 +4810,7 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
4796
4810
|
lazyLoad: never;
|
|
4797
4811
|
useGroupKeysForMultiRowSelection: never;
|
|
4798
4812
|
onDataParamsChange: never;
|
|
4799
|
-
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> &
|
|
4813
|
+
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> & DataSourceDataFn<unknown>;
|
|
4800
4814
|
sortFunction: never;
|
|
4801
4815
|
filterFunction: never;
|
|
4802
4816
|
treeFilterFunction: never;
|
|
@@ -4937,7 +4951,7 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
4937
4951
|
lazyLoad: never;
|
|
4938
4952
|
useGroupKeysForMultiRowSelection: never;
|
|
4939
4953
|
onDataParamsChange: never;
|
|
4940
|
-
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> &
|
|
4954
|
+
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> & DataSourceDataFn<unknown>;
|
|
4941
4955
|
sortFunction: never;
|
|
4942
4956
|
filterFunction: never;
|
|
4943
4957
|
treeFilterFunction: never;
|
|
@@ -5078,7 +5092,7 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
5078
5092
|
lazyLoad: never;
|
|
5079
5093
|
useGroupKeysForMultiRowSelection: never;
|
|
5080
5094
|
onDataParamsChange: never;
|
|
5081
|
-
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> &
|
|
5095
|
+
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> & DataSourceDataFn<unknown>;
|
|
5082
5096
|
sortFunction: never;
|
|
5083
5097
|
filterFunction: never;
|
|
5084
5098
|
treeFilterFunction: never;
|
|
@@ -5220,7 +5234,7 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
5220
5234
|
lazyLoad: never;
|
|
5221
5235
|
useGroupKeysForMultiRowSelection: never;
|
|
5222
5236
|
onDataParamsChange: never;
|
|
5223
|
-
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> &
|
|
5237
|
+
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> & DataSourceDataFn<unknown>;
|
|
5224
5238
|
sortFunction: never;
|
|
5225
5239
|
filterFunction: never;
|
|
5226
5240
|
treeFilterFunction: never;
|
|
@@ -5361,7 +5375,7 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
5361
5375
|
lazyLoad: never;
|
|
5362
5376
|
useGroupKeysForMultiRowSelection: never;
|
|
5363
5377
|
onDataParamsChange: never;
|
|
5364
|
-
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> &
|
|
5378
|
+
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> & DataSourceDataFn<unknown>;
|
|
5365
5379
|
sortFunction: never;
|
|
5366
5380
|
filterFunction: never;
|
|
5367
5381
|
treeFilterFunction: never;
|
|
@@ -5502,7 +5516,7 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
5502
5516
|
lazyLoad: never;
|
|
5503
5517
|
useGroupKeysForMultiRowSelection: never;
|
|
5504
5518
|
onDataParamsChange: never;
|
|
5505
|
-
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> &
|
|
5519
|
+
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> & DataSourceDataFn<unknown>;
|
|
5506
5520
|
sortFunction: never;
|
|
5507
5521
|
filterFunction: never;
|
|
5508
5522
|
treeFilterFunction: never;
|
|
@@ -5645,7 +5659,7 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
5645
5659
|
lazyLoad: never;
|
|
5646
5660
|
useGroupKeysForMultiRowSelection: never;
|
|
5647
5661
|
onDataParamsChange: never;
|
|
5648
|
-
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> &
|
|
5662
|
+
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> & DataSourceDataFn<unknown>;
|
|
5649
5663
|
sortFunction: never;
|
|
5650
5664
|
filterFunction: never;
|
|
5651
5665
|
treeFilterFunction: never;
|
|
@@ -5786,7 +5800,7 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
5786
5800
|
lazyLoad: never;
|
|
5787
5801
|
useGroupKeysForMultiRowSelection: never;
|
|
5788
5802
|
onDataParamsChange: never;
|
|
5789
|
-
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> &
|
|
5803
|
+
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> & DataSourceDataFn<unknown>;
|
|
5790
5804
|
sortFunction: never;
|
|
5791
5805
|
filterFunction: never;
|
|
5792
5806
|
treeFilterFunction: never;
|
|
@@ -5927,7 +5941,7 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
5927
5941
|
lazyLoad: never;
|
|
5928
5942
|
useGroupKeysForMultiRowSelection: never;
|
|
5929
5943
|
onDataParamsChange: never;
|
|
5930
|
-
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> &
|
|
5944
|
+
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> & DataSourceDataFn<unknown>;
|
|
5931
5945
|
sortFunction: never;
|
|
5932
5946
|
filterFunction: never;
|
|
5933
5947
|
treeFilterFunction: never;
|
|
@@ -6068,7 +6082,7 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
6068
6082
|
lazyLoad: never;
|
|
6069
6083
|
useGroupKeysForMultiRowSelection: never;
|
|
6070
6084
|
onDataParamsChange: never;
|
|
6071
|
-
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> &
|
|
6085
|
+
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> & DataSourceDataFn<unknown>;
|
|
6072
6086
|
sortFunction: never;
|
|
6073
6087
|
filterFunction: never;
|
|
6074
6088
|
treeFilterFunction: never;
|
|
@@ -6209,7 +6223,7 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
6209
6223
|
lazyLoad: never;
|
|
6210
6224
|
useGroupKeysForMultiRowSelection: never;
|
|
6211
6225
|
onDataParamsChange: never;
|
|
6212
|
-
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> &
|
|
6226
|
+
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> & DataSourceDataFn<unknown>;
|
|
6213
6227
|
sortFunction: never;
|
|
6214
6228
|
filterFunction: never;
|
|
6215
6229
|
treeFilterFunction: never;
|
|
@@ -6350,7 +6364,7 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
6350
6364
|
lazyLoad: never;
|
|
6351
6365
|
useGroupKeysForMultiRowSelection: never;
|
|
6352
6366
|
onDataParamsChange: never;
|
|
6353
|
-
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> &
|
|
6367
|
+
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> & DataSourceDataFn<unknown>;
|
|
6354
6368
|
sortFunction: never;
|
|
6355
6369
|
filterFunction: never;
|
|
6356
6370
|
treeFilterFunction: never;
|
|
@@ -7122,6 +7136,7 @@ interface InfiniteTableApi<T> {
|
|
|
7122
7136
|
realignColumnContextMenu: () => void;
|
|
7123
7137
|
getColumnOrder: () => string[];
|
|
7124
7138
|
getVisibleColumnOrder: () => string[];
|
|
7139
|
+
getVisibleRenderRange: () => TableRenderRange;
|
|
7125
7140
|
getComputedColumnById: (colId: string) => InfiniteTableComputedColumn<T> | undefined;
|
|
7126
7141
|
isEditorVisibleForCell(params: {
|
|
7127
7142
|
rowIndex: number;
|
|
@@ -7706,4 +7721,4 @@ declare const components: {
|
|
|
7706
7721
|
NumberFilterEditor: typeof NumberFilterEditor;
|
|
7707
7722
|
};
|
|
7708
7723
|
|
|
7709
|
-
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 };
|
|
7724
|
+
export { type AdvancedAlignable, CellSelectionState, type CellSelectionStateObject, type ColumnTypeWithInherit, DataClient, DataSource, type DataSourceAction, DataSourceActionType, type DataSourceAggregationReducer, type DataSourceApi, type DataSourceCRUDParam, type DataSourceCallback_BaseParam, type DataSourceComponentActions, type DataSourceContextValue, type DataSourceData, type DataSourceDataFn, type DataSourceDataParams, type DataSourceDataParamsChanges, type DataSourceDebugWarningKey, type DataSourceDerivedState, type DataSourceFilterFunctionParam, type DataSourceFilterOperator, type DataSourceFilterOperatorFunction, type DataSourceFilterOperatorFunctionParam, type DataSourceFilterType, type DataSourceFilterValueItem, type DataSourceFilterValueItemValueGetter, type DataSourceGroupBy, type DataSourceGroupRowsList, type DataSourceInsertParam, type DataSourceLivePaginationCursorFn, type DataSourceLivePaginationCursorParams, type DataSourceLivePaginationCursorValue, type DataSourceMappedState, type DataSourceMappings, type DataSourceMasterDetailContextValue, type DataSourcePivotBy, type DataSourcePropAggregationReducers, type DataSourcePropCellSelection, type DataSourcePropCellSelection_MultiCell, type DataSourcePropCellSelection_SingleCell, type DataSourcePropFilterFunction, type DataSourcePropFilterTypes, type DataSourcePropFilterValue, type DataSourcePropGroupBy, type DataSourcePropGroupRowsState, type DataSourcePropGroupRowsStateObject, type DataSourcePropIsNodeExpanded, type DataSourcePropIsNodeReadOnly, type DataSourcePropIsNodeSelectable, type DataSourcePropIsNodeSelected, type DataSourcePropIsRowSelected, type DataSourcePropLivePaginationCursor, type DataSourcePropMultiRowSelectionChangeParamType, type DataSourcePropOnCellSelectionChange, type DataSourcePropOnCellSelectionChange_MultiCell, type DataSourcePropOnCellSelectionChange_SingleCell, type DataSourcePropOnRowSelectionChange, type DataSourcePropOnRowSelectionChange_MultiRow, type DataSourcePropOnRowSelectionChange_SingleRow, type DataSourcePropOnTreeSelectionChange, type DataSourcePropOnTreeSelectionChange_MultiNode, type DataSourcePropOnTreeSelectionChange_SingleNode, type DataSourcePropPivotBy, type DataSourcePropRowInfoReducers, type DataSourcePropRowSelection, type DataSourcePropRowSelection_MultiRow, type DataSourcePropRowSelection_SingleRow, type DataSourcePropSelectionMode, type DataSourcePropShouldReloadData, type DataSourcePropShouldReloadDataObject, type DataSourcePropSortFn, type DataSourcePropSortInfo, type DataSourcePropSortTypes, type DataSourcePropTreeFilterFunction, type DataSourcePropTreeSelection, type DataSourcePropTreeSelection_MultiNode, type DataSourcePropTreeSelection_SingleNode, type DataSourceProps, type DataSourcePropsNotAvailableInTreeDataSource, type DataSourcePropsWithChildren, type DataSourceRawReducer, type DataSourceRemoteData, type DataSourceRowInfoReducer, type DataSourceSetupState, type DataSourceSingleSortInfo, type DataSourceSortInfo, type DataSourceState, type DataSourceUpdateParam, type DebugLogger, type DebugTimingKey, type DebugWarningPayload, DeepMap, type DevToolsDataSourceOverrides, type DevToolsGenericMessage, type DevToolsHookFn, type DevToolsHookFnOptions, type DevToolsHostPageLogMessage, type DevToolsHostPageLogMessagePayload, type DevToolsHostPageMessage, type DevToolsHostPageMessagePayload, type DevToolsHostPageMessageType, type DevToolsInfiniteOverrides, type DevToolsMessageAddress, type DevToolsOverrides, type ElementContainerGetter, type ErrorCodeKey, FixedSizeSet, FlashingColumnCell, GroupRowsState, INTERNAL_MatrixDebugger, type InfiniteColumnEditorContextType, InfiniteTable, type InfiniteTableAction, InfiniteTableActionType, type InfiniteTableApi, type InfiniteTableCellSelectionApi, InfiniteTableClassName, type InfiniteTableColumn, type InfiniteTableColumnAggregator, type InfiniteTableColumnApi, type InfiniteTableColumnCellContextType, type InfiniteTableColumnComparer, type InfiniteTableColumnGroup, type InfiniteTableColumnRenderFunctionForGroupRows, type InfiniteTableColumnRenderFunctionForNormalRows, type InfiniteTableColumnRenderValueParam, type InfiniteTableColumnRowspanParam, type InfiniteTableColumnSizingOptions, type InfiniteTableColumnValueFormatterParams, type InfiniteTableColumnValueGetterParams, InfiniteTableComponent, type InfiniteTableComputedColumn, type InfiniteTableComputedValues, type InfiniteTableContextValue, type InfiniteTableDebugWarningKey, type InfiniteTableGroupColumnBase, type InfiniteTableGroupColumnFunction, type InfiniteTableGroupColumnGetterOptions, type InfiniteTableKeyboardNavigationApi, type InfiniteTablePivotColumn, type InfiniteTablePropAutoSizeColumnsKey, type InfiniteTablePropColumnGroupVisibility, type InfiniteTablePropColumnGroups, type InfiniteTablePropColumnOrder, type InfiniteTablePropColumnPinning, type InfiniteTablePropColumnSizing, type InfiniteTablePropColumnTypes, type InfiniteTablePropColumnVisibility, type InfiniteTablePropColumns, type InfiniteTablePropComponents, type InfiniteTablePropGetCellContextMenuItems, type InfiniteTablePropGetColumnMenuItems, type InfiniteTablePropGetContextMenuItems, type InfiniteTablePropGroupColumn, type InfiniteTablePropGroupRenderStrategy, type InfiniteTablePropHeaderOptions, type InfiniteTablePropKeyboardNavigation, type InfiniteTablePropKeyboardShorcut, type InfiniteTablePropMultiSortBehavior, type InfiniteTablePropRowClassName, type InfiniteTablePropRowStyle, type InfiniteTableProps, type InfiniteTablePropsNotAvailableInTreeGrid, type InfiniteTableRowClassNameFn, type InfiniteTableRowDetailApi, type InfiniteTableRowInfo, type InfiniteTableRowSelectionApi, type InfiniteTableRowStyleFn, type InfiniteTableState, type InfiniteTable_HasGrouping_RowInfoGroup, type InfiniteTable_HasGrouping_RowInfoNormal, type InfiniteTable_Tree_RowInfoLeafNode, type InfiniteTable_Tree_RowInfoNode, type InfiniteTable_Tree_RowInfoParentNode, type LazyGroupDataDeepMap, type LazyGroupDataItem, type LazyRowInfoGroup, Menu, type MenuChildrenFnParam, type MenuColumn, type MenuColumnRenderParam, type MenuDecoration, type MenuIconProps, type MenuItemActionContext, type MenuItemDefinition, type MenuItemObject, type MenuProps, type MenuRenderable, type MenuRuntimeItem, type MenuRuntimeItemSelectable, type MenuSeparator, type OverlayShowParams, RowDetailCache, RowDetailState, type RowDetailStateObject, RowDisabledState, type RowDisabledStateObject, RowSelectionState, type ScrollStopInfo, type Scrollbars, type ShowOverlayFn, type TableRenderRange, TreeDataSource, type TreeDataSourceProps, TreeExpandState, type TreeExpandStateValue, TreeGrid, type TreeGridOnlyProps, type TreeGridProps, TreeSelectionState, type TreeSelectionStateObject, type TreeSelectionValue, type UpdateChildrenFn, type UpdateOverlayContentFn, type WaitForNodeOptions, WeakFixedSizeSet, alignNode, components, createFlashingColumnCellComponent, debounce, debug, defaultFilterTypes, eventMatchesKeyboardShortcut, filterDataArray, defaultFilterTypes as filterTypes, flatten, buildManagedComponent as getComponentStateRoot, group, interceptMap, keyboardShortcuts, multisort, multisortNested, queryKeyToCacheKey, toTreeDataArray, useManagedComponentState as useComponentState, useDataSourceInternal, useDataSourceState, useEffectWhen, useEffectWhenSameDeps, useEffectWithChanges, useEffectWithObject, useGridScroll, useInfiniteColumnCell, useInfiniteColumnEditor, useInfiniteColumnFilterEditor, useInfiniteHeaderCell, useInfinitePortalContainer, useLayoutEffectWithChanges, useManagedDataSource, useMasterRowInfo, useOverlay, useOverlayPortal, usePrevious, useRowInfoReducers, useVisibleColumnSizes, withSelectedLeafNodesOnly };
|