@infinite-table/infinite-react 7.4.1 → 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 +31 -25
- package/index.dev.js +234 -176
- package/index.dev.mjs +234 -176
- package/index.js +8 -8
- package/index.mjs +8 -8
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -1849,7 +1849,8 @@ type DataSourceRemoteData<T> = {
|
|
|
1849
1849
|
totalCountUnfiltered?: number;
|
|
1850
1850
|
livePaginationCursor?: DataSourceLivePaginationCursorValue;
|
|
1851
1851
|
};
|
|
1852
|
-
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>;
|
|
1853
1854
|
type DataSourceGroupRowsList<KeyType = any> = true | KeyType[][];
|
|
1854
1855
|
type DataSourcePropGroupRowsStateObject<KeyType = any> = {
|
|
1855
1856
|
expandedRows: DataSourceGroupRowsList<KeyType>;
|
|
@@ -2454,7 +2455,9 @@ type HorizontalLayoutColVisibilityOptions = {
|
|
|
2454
2455
|
|
|
2455
2456
|
interface GridCellInterface<T_ADDITIONAL_CELL_INFO = any> {
|
|
2456
2457
|
debugId: string;
|
|
2457
|
-
update(content: Renderable, additionalInfo?: T_ADDITIONAL_CELL_INFO
|
|
2458
|
+
update(content: Renderable, additionalInfo?: T_ADDITIONAL_CELL_INFO, scrollingObjectParam?: {
|
|
2459
|
+
scrolling: boolean;
|
|
2460
|
+
}): void;
|
|
2458
2461
|
getElement(): HTMLElement | null;
|
|
2459
2462
|
getNode(): Renderable;
|
|
2460
2463
|
destroy(): void;
|
|
@@ -2482,7 +2485,9 @@ declare class GridCellManager<T_ADDITIONAL_CELL_INFO> extends Logger {
|
|
|
2482
2485
|
private clearCellFromMatrix;
|
|
2483
2486
|
private addCellToMatrix;
|
|
2484
2487
|
private setCellPositionInMatrix;
|
|
2485
|
-
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>;
|
|
2486
2491
|
getCellPosition(cell: GridCellInterface<T_ADDITIONAL_CELL_INFO>): CellPos | null;
|
|
2487
2492
|
getCellAt(cellPos: CellPos): GridCellInterface<T_ADDITIONAL_CELL_INFO> | undefined;
|
|
2488
2493
|
/**
|
|
@@ -3533,7 +3538,7 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
3533
3538
|
lazyLoad: never;
|
|
3534
3539
|
useGroupKeysForMultiRowSelection: never;
|
|
3535
3540
|
onDataParamsChange: never;
|
|
3536
|
-
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> &
|
|
3541
|
+
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> & DataSourceDataFn<unknown>;
|
|
3537
3542
|
sortFunction: never;
|
|
3538
3543
|
filterFunction: never;
|
|
3539
3544
|
treeFilterFunction: never;
|
|
@@ -3674,7 +3679,7 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
3674
3679
|
lazyLoad: never;
|
|
3675
3680
|
useGroupKeysForMultiRowSelection: never;
|
|
3676
3681
|
onDataParamsChange: never;
|
|
3677
|
-
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> &
|
|
3682
|
+
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> & DataSourceDataFn<unknown>;
|
|
3678
3683
|
sortFunction: never;
|
|
3679
3684
|
filterFunction: never;
|
|
3680
3685
|
treeFilterFunction: never;
|
|
@@ -3815,7 +3820,7 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
3815
3820
|
lazyLoad: never;
|
|
3816
3821
|
useGroupKeysForMultiRowSelection: never;
|
|
3817
3822
|
onDataParamsChange: never;
|
|
3818
|
-
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> &
|
|
3823
|
+
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> & DataSourceDataFn<unknown>;
|
|
3819
3824
|
sortFunction: never;
|
|
3820
3825
|
filterFunction: never;
|
|
3821
3826
|
treeFilterFunction: never;
|
|
@@ -3957,7 +3962,7 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
3957
3962
|
lazyLoad: never;
|
|
3958
3963
|
useGroupKeysForMultiRowSelection: never;
|
|
3959
3964
|
onDataParamsChange: never;
|
|
3960
|
-
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> &
|
|
3965
|
+
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> & DataSourceDataFn<unknown>;
|
|
3961
3966
|
sortFunction: never;
|
|
3962
3967
|
filterFunction: never;
|
|
3963
3968
|
treeFilterFunction: never;
|
|
@@ -4098,7 +4103,7 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
4098
4103
|
lazyLoad: never;
|
|
4099
4104
|
useGroupKeysForMultiRowSelection: never;
|
|
4100
4105
|
onDataParamsChange: never;
|
|
4101
|
-
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> &
|
|
4106
|
+
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> & DataSourceDataFn<unknown>;
|
|
4102
4107
|
sortFunction: never;
|
|
4103
4108
|
filterFunction: never;
|
|
4104
4109
|
treeFilterFunction: never;
|
|
@@ -4239,7 +4244,7 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
4239
4244
|
lazyLoad: never;
|
|
4240
4245
|
useGroupKeysForMultiRowSelection: never;
|
|
4241
4246
|
onDataParamsChange: never;
|
|
4242
|
-
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> &
|
|
4247
|
+
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> & DataSourceDataFn<unknown>;
|
|
4243
4248
|
sortFunction: never;
|
|
4244
4249
|
filterFunction: never;
|
|
4245
4250
|
treeFilterFunction: never;
|
|
@@ -4381,7 +4386,7 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
4381
4386
|
lazyLoad: never;
|
|
4382
4387
|
useGroupKeysForMultiRowSelection: never;
|
|
4383
4388
|
onDataParamsChange: never;
|
|
4384
|
-
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> &
|
|
4389
|
+
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> & DataSourceDataFn<unknown>;
|
|
4385
4390
|
sortFunction: never;
|
|
4386
4391
|
filterFunction: never;
|
|
4387
4392
|
treeFilterFunction: never;
|
|
@@ -4522,7 +4527,7 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
4522
4527
|
lazyLoad: never;
|
|
4523
4528
|
useGroupKeysForMultiRowSelection: never;
|
|
4524
4529
|
onDataParamsChange: never;
|
|
4525
|
-
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> &
|
|
4530
|
+
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> & DataSourceDataFn<unknown>;
|
|
4526
4531
|
sortFunction: never;
|
|
4527
4532
|
filterFunction: never;
|
|
4528
4533
|
treeFilterFunction: never;
|
|
@@ -4663,7 +4668,7 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
4663
4668
|
lazyLoad: never;
|
|
4664
4669
|
useGroupKeysForMultiRowSelection: never;
|
|
4665
4670
|
onDataParamsChange: never;
|
|
4666
|
-
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> &
|
|
4671
|
+
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> & DataSourceDataFn<unknown>;
|
|
4667
4672
|
sortFunction: never;
|
|
4668
4673
|
filterFunction: never;
|
|
4669
4674
|
treeFilterFunction: never;
|
|
@@ -4805,7 +4810,7 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
4805
4810
|
lazyLoad: never;
|
|
4806
4811
|
useGroupKeysForMultiRowSelection: never;
|
|
4807
4812
|
onDataParamsChange: never;
|
|
4808
|
-
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> &
|
|
4813
|
+
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> & DataSourceDataFn<unknown>;
|
|
4809
4814
|
sortFunction: never;
|
|
4810
4815
|
filterFunction: never;
|
|
4811
4816
|
treeFilterFunction: never;
|
|
@@ -4946,7 +4951,7 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
4946
4951
|
lazyLoad: never;
|
|
4947
4952
|
useGroupKeysForMultiRowSelection: never;
|
|
4948
4953
|
onDataParamsChange: never;
|
|
4949
|
-
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> &
|
|
4954
|
+
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> & DataSourceDataFn<unknown>;
|
|
4950
4955
|
sortFunction: never;
|
|
4951
4956
|
filterFunction: never;
|
|
4952
4957
|
treeFilterFunction: never;
|
|
@@ -5087,7 +5092,7 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
5087
5092
|
lazyLoad: never;
|
|
5088
5093
|
useGroupKeysForMultiRowSelection: never;
|
|
5089
5094
|
onDataParamsChange: never;
|
|
5090
|
-
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> &
|
|
5095
|
+
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> & DataSourceDataFn<unknown>;
|
|
5091
5096
|
sortFunction: never;
|
|
5092
5097
|
filterFunction: never;
|
|
5093
5098
|
treeFilterFunction: never;
|
|
@@ -5229,7 +5234,7 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
5229
5234
|
lazyLoad: never;
|
|
5230
5235
|
useGroupKeysForMultiRowSelection: never;
|
|
5231
5236
|
onDataParamsChange: never;
|
|
5232
|
-
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> &
|
|
5237
|
+
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> & DataSourceDataFn<unknown>;
|
|
5233
5238
|
sortFunction: never;
|
|
5234
5239
|
filterFunction: never;
|
|
5235
5240
|
treeFilterFunction: never;
|
|
@@ -5370,7 +5375,7 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
5370
5375
|
lazyLoad: never;
|
|
5371
5376
|
useGroupKeysForMultiRowSelection: never;
|
|
5372
5377
|
onDataParamsChange: never;
|
|
5373
|
-
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> &
|
|
5378
|
+
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> & DataSourceDataFn<unknown>;
|
|
5374
5379
|
sortFunction: never;
|
|
5375
5380
|
filterFunction: never;
|
|
5376
5381
|
treeFilterFunction: never;
|
|
@@ -5511,7 +5516,7 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
5511
5516
|
lazyLoad: never;
|
|
5512
5517
|
useGroupKeysForMultiRowSelection: never;
|
|
5513
5518
|
onDataParamsChange: never;
|
|
5514
|
-
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> &
|
|
5519
|
+
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> & DataSourceDataFn<unknown>;
|
|
5515
5520
|
sortFunction: never;
|
|
5516
5521
|
filterFunction: never;
|
|
5517
5522
|
treeFilterFunction: never;
|
|
@@ -5654,7 +5659,7 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
5654
5659
|
lazyLoad: never;
|
|
5655
5660
|
useGroupKeysForMultiRowSelection: never;
|
|
5656
5661
|
onDataParamsChange: never;
|
|
5657
|
-
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> &
|
|
5662
|
+
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> & DataSourceDataFn<unknown>;
|
|
5658
5663
|
sortFunction: never;
|
|
5659
5664
|
filterFunction: never;
|
|
5660
5665
|
treeFilterFunction: never;
|
|
@@ -5795,7 +5800,7 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
5795
5800
|
lazyLoad: never;
|
|
5796
5801
|
useGroupKeysForMultiRowSelection: never;
|
|
5797
5802
|
onDataParamsChange: never;
|
|
5798
|
-
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> &
|
|
5803
|
+
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> & DataSourceDataFn<unknown>;
|
|
5799
5804
|
sortFunction: never;
|
|
5800
5805
|
filterFunction: never;
|
|
5801
5806
|
treeFilterFunction: never;
|
|
@@ -5936,7 +5941,7 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
5936
5941
|
lazyLoad: never;
|
|
5937
5942
|
useGroupKeysForMultiRowSelection: never;
|
|
5938
5943
|
onDataParamsChange: never;
|
|
5939
|
-
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> &
|
|
5944
|
+
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> & DataSourceDataFn<unknown>;
|
|
5940
5945
|
sortFunction: never;
|
|
5941
5946
|
filterFunction: never;
|
|
5942
5947
|
treeFilterFunction: never;
|
|
@@ -6077,7 +6082,7 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
6077
6082
|
lazyLoad: never;
|
|
6078
6083
|
useGroupKeysForMultiRowSelection: never;
|
|
6079
6084
|
onDataParamsChange: never;
|
|
6080
|
-
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> &
|
|
6085
|
+
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> & DataSourceDataFn<unknown>;
|
|
6081
6086
|
sortFunction: never;
|
|
6082
6087
|
filterFunction: never;
|
|
6083
6088
|
treeFilterFunction: never;
|
|
@@ -6218,7 +6223,7 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
6218
6223
|
lazyLoad: never;
|
|
6219
6224
|
useGroupKeysForMultiRowSelection: never;
|
|
6220
6225
|
onDataParamsChange: never;
|
|
6221
|
-
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> &
|
|
6226
|
+
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> & DataSourceDataFn<unknown>;
|
|
6222
6227
|
sortFunction: never;
|
|
6223
6228
|
filterFunction: never;
|
|
6224
6229
|
treeFilterFunction: never;
|
|
@@ -6359,7 +6364,7 @@ declare const useManagedDataSource: (props: object) => {
|
|
|
6359
6364
|
lazyLoad: never;
|
|
6360
6365
|
useGroupKeysForMultiRowSelection: never;
|
|
6361
6366
|
onDataParamsChange: never;
|
|
6362
|
-
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> &
|
|
6367
|
+
data: (DataSourceData<unknown> & unknown[]) & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> & DataSourceDataFn<unknown>;
|
|
6363
6368
|
sortFunction: never;
|
|
6364
6369
|
filterFunction: never;
|
|
6365
6370
|
treeFilterFunction: never;
|
|
@@ -7131,6 +7136,7 @@ interface InfiniteTableApi<T> {
|
|
|
7131
7136
|
realignColumnContextMenu: () => void;
|
|
7132
7137
|
getColumnOrder: () => string[];
|
|
7133
7138
|
getVisibleColumnOrder: () => string[];
|
|
7139
|
+
getVisibleRenderRange: () => TableRenderRange;
|
|
7134
7140
|
getComputedColumnById: (colId: string) => InfiniteTableComputedColumn<T> | undefined;
|
|
7135
7141
|
isEditorVisibleForCell(params: {
|
|
7136
7142
|
rowIndex: number;
|
|
@@ -7715,4 +7721,4 @@ declare const components: {
|
|
|
7715
7721
|
NumberFilterEditor: typeof NumberFilterEditor;
|
|
7716
7722
|
};
|
|
7717
7723
|
|
|
7718
|
-
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 };
|