@infinite-table/infinite-react 4.3.9 → 4.4.0
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.css +82 -67
- package/index.d.ts +97 -22
- package/index.dev.js +341 -170
- package/index.dev.mjs +341 -170
- package/index.js +341 -170
- package/index.mjs +341 -170
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -959,9 +959,11 @@ declare class RowSelectionState<T = any> {
|
|
|
959
959
|
|
|
960
960
|
declare type MultiRowSelectorOptions = {
|
|
961
961
|
getIdForIndex: (index: number) => string | number;
|
|
962
|
+
isRowDisabledAt: (index: number) => boolean;
|
|
962
963
|
};
|
|
963
964
|
declare class MultiRowSelector {
|
|
964
965
|
getIdForIndex: MultiRowSelectorOptions['getIdForIndex'];
|
|
966
|
+
isRowDisabledAt: MultiRowSelectorOptions['isRowDisabledAt'];
|
|
965
967
|
multiSelectStartIndex: number;
|
|
966
968
|
multiSelectEndIndex?: number;
|
|
967
969
|
_rowSelectionState: RowSelectionState;
|
|
@@ -1775,6 +1777,23 @@ declare class Indexer<DataType, PrimaryKeyType = string> {
|
|
|
1775
1777
|
}) => DataType[];
|
|
1776
1778
|
}
|
|
1777
1779
|
|
|
1780
|
+
declare class RowDisabledState<KeyType = any> extends BooleanCollectionState<RowDisabledStateObject<KeyType>, KeyType> {
|
|
1781
|
+
constructor(state: RowDisabledStateObject<KeyType> | RowDisabledState<KeyType>);
|
|
1782
|
+
getState(): RowDisabledStateObject<KeyType>;
|
|
1783
|
+
getPositiveFromState(state: RowDisabledStateObject<KeyType>): true | KeyType[];
|
|
1784
|
+
getNegativeFromState(state: RowDisabledStateObject<KeyType>): true | KeyType[];
|
|
1785
|
+
areAllDisabled(): boolean;
|
|
1786
|
+
areAllEnabled(): boolean;
|
|
1787
|
+
disableAll(): void;
|
|
1788
|
+
enableAll(): void;
|
|
1789
|
+
isRowEnabled: (key: KeyType) => boolean;
|
|
1790
|
+
isRowDisabled(key: KeyType): boolean;
|
|
1791
|
+
setRowEnabled(key: KeyType, shouldExpand: boolean): void;
|
|
1792
|
+
disableRow(key: KeyType): void;
|
|
1793
|
+
enableRow(key: KeyType): void;
|
|
1794
|
+
toggleRow(key: KeyType): void;
|
|
1795
|
+
}
|
|
1796
|
+
|
|
1778
1797
|
interface DataSourceDataParams<T> {
|
|
1779
1798
|
originalDataArray: T[];
|
|
1780
1799
|
masterRowInfo?: InfiniteTableRowInfo<any>;
|
|
@@ -1820,6 +1839,13 @@ declare type RowDetailStateObject<KeyType = any> = {
|
|
|
1820
1839
|
expandedRows: true | KeyType[];
|
|
1821
1840
|
collapsedRows: true | KeyType[];
|
|
1822
1841
|
};
|
|
1842
|
+
declare type RowDisabledStateObject<KeyType = any> = {
|
|
1843
|
+
enabledRows: true;
|
|
1844
|
+
disabledRows: KeyType[];
|
|
1845
|
+
} | {
|
|
1846
|
+
disabledRows: true;
|
|
1847
|
+
enabledRows: KeyType[];
|
|
1848
|
+
};
|
|
1823
1849
|
declare type DataSourcePropGroupBy<T> = DataSourceGroupBy<T>[];
|
|
1824
1850
|
declare type DataSourcePropPivotBy<T> = DataSourcePivotBy<T>[];
|
|
1825
1851
|
interface DataSourceMappedState<T> {
|
|
@@ -1827,6 +1853,7 @@ interface DataSourceMappedState<T> {
|
|
|
1827
1853
|
livePagination: DataSourceProps<T>['livePagination'];
|
|
1828
1854
|
refetchKey: NonUndefined<DataSourceProps<T>['refetchKey']>;
|
|
1829
1855
|
isRowSelected: DataSourceProps<T>['isRowSelected'];
|
|
1856
|
+
isRowDisabled: DataSourceProps<T>['isRowDisabled'];
|
|
1830
1857
|
debugId: DataSourceProps<T>['debugId'];
|
|
1831
1858
|
batchOperationDelay: DataSourceProps<T>['batchOperationDelay'];
|
|
1832
1859
|
onDataArrayChange: DataSourceProps<T>['onDataArrayChange'];
|
|
@@ -1849,6 +1876,7 @@ interface DataSourceMappedState<T> {
|
|
|
1849
1876
|
sortTypes: NonUndefined<DataSourceProps<T>['sortTypes']>;
|
|
1850
1877
|
collapseGroupRowsOnDataFunctionChange: NonUndefined<DataSourceProps<T>['collapseGroupRowsOnDataFunctionChange']>;
|
|
1851
1878
|
sortInfo: DataSourceSingleSortInfo<T>[] | null;
|
|
1879
|
+
rowDisabledState: RowDisabledState<T> | null;
|
|
1852
1880
|
}
|
|
1853
1881
|
declare type DataSourceRawReducer<T, RESULT_TYPE> = {
|
|
1854
1882
|
initialValue?: RESULT_TYPE | (() => RESULT_TYPE);
|
|
@@ -2019,6 +2047,9 @@ declare type DataSourceProps<T> = {
|
|
|
2019
2047
|
cellSelection?: DataSourcePropCellSelection_MultiCell | DataSourcePropCellSelection_SingleCell;
|
|
2020
2048
|
defaultCellSelection?: DataSourcePropCellSelection_MultiCell | DataSourcePropCellSelection_SingleCell;
|
|
2021
2049
|
onCellSelectionChange?: DataSourcePropOnCellSelectionChange;
|
|
2050
|
+
rowDisabledState?: RowDisabledState | RowDisabledStateObject<any>;
|
|
2051
|
+
defaultRowDisabledState?: RowDisabledState | RowDisabledStateObject<any>;
|
|
2052
|
+
isRowDisabled?: (rowInfo: InfiniteTableRowInfo<T>) => boolean;
|
|
2022
2053
|
isRowSelected?: DataSourcePropIsRowSelected<T>;
|
|
2023
2054
|
lazyLoad?: boolean | {
|
|
2024
2055
|
batchSize?: number;
|
|
@@ -2180,6 +2211,7 @@ declare type DataSourceDerivedState<T> = {
|
|
|
2180
2211
|
livePaginationCursor?: DataSourceLivePaginationCursorValue;
|
|
2181
2212
|
lazyLoadBatchSize?: number;
|
|
2182
2213
|
rowSelection: RowSelectionState | null | number | string;
|
|
2214
|
+
isRowDisabled: DataSourceProps<T>['isRowDisabled'];
|
|
2183
2215
|
cellSelection: CellSelectionState | null;
|
|
2184
2216
|
selectionMode: NonUndefined<DataSourceProps<T>['selectionMode']>;
|
|
2185
2217
|
};
|
|
@@ -2322,7 +2354,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
2322
2354
|
};
|
|
2323
2355
|
lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
|
|
2324
2356
|
pivotMappings?: never;
|
|
2325
|
-
propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
|
|
2357
|
+
propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "isRowDisabled" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "rowDisabledState" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultRowDisabledState" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
|
|
2326
2358
|
showSeparatePivotColumnForSingleAggregation: never;
|
|
2327
2359
|
dataParams?: never;
|
|
2328
2360
|
originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
|
|
@@ -2370,6 +2402,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
2370
2402
|
livePaginationCursor?: never;
|
|
2371
2403
|
lazyLoadBatchSize?: never;
|
|
2372
2404
|
rowSelection: never;
|
|
2405
|
+
isRowDisabled: never;
|
|
2373
2406
|
cellSelection: never;
|
|
2374
2407
|
selectionMode: never;
|
|
2375
2408
|
aggregationReducers?: never;
|
|
@@ -2398,6 +2431,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
2398
2431
|
sortTypes: DataSourcePropSortTypes;
|
|
2399
2432
|
collapseGroupRowsOnDataFunctionChange: never;
|
|
2400
2433
|
sortInfo: never;
|
|
2434
|
+
rowDisabledState: never;
|
|
2401
2435
|
} & {
|
|
2402
2436
|
indexer: Indexer<unknown, any>;
|
|
2403
2437
|
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
|
|
@@ -2416,7 +2450,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
2416
2450
|
};
|
|
2417
2451
|
lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
|
|
2418
2452
|
pivotMappings?: never;
|
|
2419
|
-
propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
|
|
2453
|
+
propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "isRowDisabled" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "rowDisabledState" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultRowDisabledState" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
|
|
2420
2454
|
showSeparatePivotColumnForSingleAggregation: never;
|
|
2421
2455
|
dataParams?: never;
|
|
2422
2456
|
originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
|
|
@@ -2464,6 +2498,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
2464
2498
|
livePaginationCursor?: never;
|
|
2465
2499
|
lazyLoadBatchSize?: never;
|
|
2466
2500
|
rowSelection: never;
|
|
2501
|
+
isRowDisabled: never;
|
|
2467
2502
|
cellSelection: never;
|
|
2468
2503
|
selectionMode: never;
|
|
2469
2504
|
aggregationReducers?: never;
|
|
@@ -2492,6 +2527,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
2492
2527
|
sortTypes: DataSourcePropSortTypes;
|
|
2493
2528
|
collapseGroupRowsOnDataFunctionChange: never;
|
|
2494
2529
|
sortInfo: never;
|
|
2530
|
+
rowDisabledState: never;
|
|
2495
2531
|
} & {
|
|
2496
2532
|
indexer: Indexer<unknown, any>;
|
|
2497
2533
|
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
|
|
@@ -2510,7 +2546,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
2510
2546
|
};
|
|
2511
2547
|
lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
|
|
2512
2548
|
pivotMappings?: never;
|
|
2513
|
-
propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
|
|
2549
|
+
propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "isRowDisabled" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "rowDisabledState" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultRowDisabledState" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
|
|
2514
2550
|
showSeparatePivotColumnForSingleAggregation: never;
|
|
2515
2551
|
dataParams?: never;
|
|
2516
2552
|
originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
|
|
@@ -2558,6 +2594,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
2558
2594
|
livePaginationCursor?: never;
|
|
2559
2595
|
lazyLoadBatchSize?: never;
|
|
2560
2596
|
rowSelection: never;
|
|
2597
|
+
isRowDisabled: never;
|
|
2561
2598
|
cellSelection: never;
|
|
2562
2599
|
selectionMode: never;
|
|
2563
2600
|
aggregationReducers?: never;
|
|
@@ -2586,6 +2623,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
2586
2623
|
sortTypes: DataSourcePropSortTypes;
|
|
2587
2624
|
collapseGroupRowsOnDataFunctionChange: never;
|
|
2588
2625
|
sortInfo: never;
|
|
2626
|
+
rowDisabledState: never;
|
|
2589
2627
|
};
|
|
2590
2628
|
componentActions: ComponentStateGeneratedActions<{
|
|
2591
2629
|
indexer: Indexer<unknown, any>;
|
|
@@ -2605,7 +2643,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
2605
2643
|
};
|
|
2606
2644
|
lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
|
|
2607
2645
|
pivotMappings?: never;
|
|
2608
|
-
propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
|
|
2646
|
+
propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "isRowDisabled" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "rowDisabledState" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultRowDisabledState" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
|
|
2609
2647
|
showSeparatePivotColumnForSingleAggregation: never;
|
|
2610
2648
|
dataParams?: never;
|
|
2611
2649
|
originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
|
|
@@ -2653,6 +2691,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
2653
2691
|
livePaginationCursor?: never;
|
|
2654
2692
|
lazyLoadBatchSize?: never;
|
|
2655
2693
|
rowSelection: never;
|
|
2694
|
+
isRowDisabled: never;
|
|
2656
2695
|
cellSelection: never;
|
|
2657
2696
|
selectionMode: never;
|
|
2658
2697
|
aggregationReducers?: never;
|
|
@@ -2681,6 +2720,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
2681
2720
|
sortTypes: DataSourcePropSortTypes;
|
|
2682
2721
|
collapseGroupRowsOnDataFunctionChange: never;
|
|
2683
2722
|
sortInfo: never;
|
|
2723
|
+
rowDisabledState: never;
|
|
2684
2724
|
} & {
|
|
2685
2725
|
indexer: Indexer<unknown, any>;
|
|
2686
2726
|
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
|
|
@@ -2699,7 +2739,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
2699
2739
|
};
|
|
2700
2740
|
lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
|
|
2701
2741
|
pivotMappings?: never;
|
|
2702
|
-
propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
|
|
2742
|
+
propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "isRowDisabled" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "rowDisabledState" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultRowDisabledState" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
|
|
2703
2743
|
showSeparatePivotColumnForSingleAggregation: never;
|
|
2704
2744
|
dataParams?: never;
|
|
2705
2745
|
originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
|
|
@@ -2747,6 +2787,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
2747
2787
|
livePaginationCursor?: never;
|
|
2748
2788
|
lazyLoadBatchSize?: never;
|
|
2749
2789
|
rowSelection: never;
|
|
2790
|
+
isRowDisabled: never;
|
|
2750
2791
|
cellSelection: never;
|
|
2751
2792
|
selectionMode: never;
|
|
2752
2793
|
aggregationReducers?: never;
|
|
@@ -2775,6 +2816,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
2775
2816
|
sortTypes: DataSourcePropSortTypes;
|
|
2776
2817
|
collapseGroupRowsOnDataFunctionChange: never;
|
|
2777
2818
|
sortInfo: never;
|
|
2819
|
+
rowDisabledState: never;
|
|
2778
2820
|
} & {
|
|
2779
2821
|
indexer: Indexer<unknown, any>;
|
|
2780
2822
|
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
|
|
@@ -2793,7 +2835,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
2793
2835
|
};
|
|
2794
2836
|
lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
|
|
2795
2837
|
pivotMappings?: never;
|
|
2796
|
-
propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
|
|
2838
|
+
propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "isRowDisabled" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "rowDisabledState" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultRowDisabledState" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
|
|
2797
2839
|
showSeparatePivotColumnForSingleAggregation: never;
|
|
2798
2840
|
dataParams?: never;
|
|
2799
2841
|
originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
|
|
@@ -2841,6 +2883,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
2841
2883
|
livePaginationCursor?: never;
|
|
2842
2884
|
lazyLoadBatchSize?: never;
|
|
2843
2885
|
rowSelection: never;
|
|
2886
|
+
isRowDisabled: never;
|
|
2844
2887
|
cellSelection: never;
|
|
2845
2888
|
selectionMode: never;
|
|
2846
2889
|
aggregationReducers?: never;
|
|
@@ -2869,6 +2912,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
2869
2912
|
sortTypes: DataSourcePropSortTypes;
|
|
2870
2913
|
collapseGroupRowsOnDataFunctionChange: never;
|
|
2871
2914
|
sortInfo: never;
|
|
2915
|
+
rowDisabledState: never;
|
|
2872
2916
|
}>;
|
|
2873
2917
|
getComponentState: () => {
|
|
2874
2918
|
indexer: Indexer<unknown, any>;
|
|
@@ -2888,7 +2932,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
2888
2932
|
};
|
|
2889
2933
|
lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
|
|
2890
2934
|
pivotMappings?: never;
|
|
2891
|
-
propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
|
|
2935
|
+
propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "isRowDisabled" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "rowDisabledState" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultRowDisabledState" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
|
|
2892
2936
|
showSeparatePivotColumnForSingleAggregation: never;
|
|
2893
2937
|
dataParams?: never;
|
|
2894
2938
|
originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
|
|
@@ -2936,6 +2980,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
2936
2980
|
livePaginationCursor?: never;
|
|
2937
2981
|
lazyLoadBatchSize?: never;
|
|
2938
2982
|
rowSelection: never;
|
|
2983
|
+
isRowDisabled: never;
|
|
2939
2984
|
cellSelection: never;
|
|
2940
2985
|
selectionMode: never;
|
|
2941
2986
|
aggregationReducers?: never;
|
|
@@ -2964,6 +3009,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
2964
3009
|
sortTypes: DataSourcePropSortTypes;
|
|
2965
3010
|
collapseGroupRowsOnDataFunctionChange: never;
|
|
2966
3011
|
sortInfo: never;
|
|
3012
|
+
rowDisabledState: never;
|
|
2967
3013
|
} & {
|
|
2968
3014
|
indexer: Indexer<unknown, any>;
|
|
2969
3015
|
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
|
|
@@ -2982,7 +3028,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
2982
3028
|
};
|
|
2983
3029
|
lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
|
|
2984
3030
|
pivotMappings?: never;
|
|
2985
|
-
propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
|
|
3031
|
+
propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "isRowDisabled" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "rowDisabledState" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultRowDisabledState" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
|
|
2986
3032
|
showSeparatePivotColumnForSingleAggregation: never;
|
|
2987
3033
|
dataParams?: never;
|
|
2988
3034
|
originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
|
|
@@ -3030,6 +3076,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
3030
3076
|
livePaginationCursor?: never;
|
|
3031
3077
|
lazyLoadBatchSize?: never;
|
|
3032
3078
|
rowSelection: never;
|
|
3079
|
+
isRowDisabled: never;
|
|
3033
3080
|
cellSelection: never;
|
|
3034
3081
|
selectionMode: never;
|
|
3035
3082
|
aggregationReducers?: never;
|
|
@@ -3058,6 +3105,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
3058
3105
|
sortTypes: DataSourcePropSortTypes;
|
|
3059
3106
|
collapseGroupRowsOnDataFunctionChange: never;
|
|
3060
3107
|
sortInfo: never;
|
|
3108
|
+
rowDisabledState: never;
|
|
3061
3109
|
} & {
|
|
3062
3110
|
indexer: Indexer<unknown, any>;
|
|
3063
3111
|
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
|
|
@@ -3076,7 +3124,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
3076
3124
|
};
|
|
3077
3125
|
lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
|
|
3078
3126
|
pivotMappings?: never;
|
|
3079
|
-
propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
|
|
3127
|
+
propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "isRowDisabled" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "rowDisabledState" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultRowDisabledState" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
|
|
3080
3128
|
showSeparatePivotColumnForSingleAggregation: never;
|
|
3081
3129
|
dataParams?: never;
|
|
3082
3130
|
originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
|
|
@@ -3124,6 +3172,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
3124
3172
|
livePaginationCursor?: never;
|
|
3125
3173
|
lazyLoadBatchSize?: never;
|
|
3126
3174
|
rowSelection: never;
|
|
3175
|
+
isRowDisabled: never;
|
|
3127
3176
|
cellSelection: never;
|
|
3128
3177
|
selectionMode: never;
|
|
3129
3178
|
aggregationReducers?: never;
|
|
@@ -3152,6 +3201,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
3152
3201
|
sortTypes: DataSourcePropSortTypes;
|
|
3153
3202
|
collapseGroupRowsOnDataFunctionChange: never;
|
|
3154
3203
|
sortInfo: never;
|
|
3204
|
+
rowDisabledState: never;
|
|
3155
3205
|
};
|
|
3156
3206
|
replaceState: (newState: {
|
|
3157
3207
|
indexer: Indexer<unknown, any>;
|
|
@@ -3171,7 +3221,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
3171
3221
|
};
|
|
3172
3222
|
lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
|
|
3173
3223
|
pivotMappings?: never;
|
|
3174
|
-
propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
|
|
3224
|
+
propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "isRowDisabled" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "rowDisabledState" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultRowDisabledState" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
|
|
3175
3225
|
showSeparatePivotColumnForSingleAggregation: never;
|
|
3176
3226
|
dataParams?: never;
|
|
3177
3227
|
originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
|
|
@@ -3219,6 +3269,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
3219
3269
|
livePaginationCursor?: never;
|
|
3220
3270
|
lazyLoadBatchSize?: never;
|
|
3221
3271
|
rowSelection: never;
|
|
3272
|
+
isRowDisabled: never;
|
|
3222
3273
|
cellSelection: never;
|
|
3223
3274
|
selectionMode: never;
|
|
3224
3275
|
aggregationReducers?: never;
|
|
@@ -3247,6 +3298,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
3247
3298
|
sortTypes: DataSourcePropSortTypes;
|
|
3248
3299
|
collapseGroupRowsOnDataFunctionChange: never;
|
|
3249
3300
|
sortInfo: never;
|
|
3301
|
+
rowDisabledState: never;
|
|
3250
3302
|
} & {
|
|
3251
3303
|
indexer: Indexer<unknown, any>;
|
|
3252
3304
|
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
|
|
@@ -3265,7 +3317,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
3265
3317
|
};
|
|
3266
3318
|
lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
|
|
3267
3319
|
pivotMappings?: never;
|
|
3268
|
-
propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
|
|
3320
|
+
propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "isRowDisabled" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "rowDisabledState" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultRowDisabledState" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
|
|
3269
3321
|
showSeparatePivotColumnForSingleAggregation: never;
|
|
3270
3322
|
dataParams?: never;
|
|
3271
3323
|
originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
|
|
@@ -3313,6 +3365,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
3313
3365
|
livePaginationCursor?: never;
|
|
3314
3366
|
lazyLoadBatchSize?: never;
|
|
3315
3367
|
rowSelection: never;
|
|
3368
|
+
isRowDisabled: never;
|
|
3316
3369
|
cellSelection: never;
|
|
3317
3370
|
selectionMode: never;
|
|
3318
3371
|
aggregationReducers?: never;
|
|
@@ -3341,6 +3394,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
3341
3394
|
sortTypes: DataSourcePropSortTypes;
|
|
3342
3395
|
collapseGroupRowsOnDataFunctionChange: never;
|
|
3343
3396
|
sortInfo: never;
|
|
3397
|
+
rowDisabledState: never;
|
|
3344
3398
|
} & {
|
|
3345
3399
|
indexer: Indexer<unknown, any>;
|
|
3346
3400
|
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
|
|
@@ -3359,7 +3413,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
3359
3413
|
};
|
|
3360
3414
|
lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
|
|
3361
3415
|
pivotMappings?: never;
|
|
3362
|
-
propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
|
|
3416
|
+
propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "isRowDisabled" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "rowDisabledState" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultRowDisabledState" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
|
|
3363
3417
|
showSeparatePivotColumnForSingleAggregation: never;
|
|
3364
3418
|
dataParams?: never;
|
|
3365
3419
|
originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
|
|
@@ -3407,6 +3461,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
3407
3461
|
livePaginationCursor?: never;
|
|
3408
3462
|
lazyLoadBatchSize?: never;
|
|
3409
3463
|
rowSelection: never;
|
|
3464
|
+
isRowDisabled: never;
|
|
3410
3465
|
cellSelection: never;
|
|
3411
3466
|
selectionMode: never;
|
|
3412
3467
|
aggregationReducers?: never;
|
|
@@ -3435,6 +3490,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
3435
3490
|
sortTypes: DataSourcePropSortTypes;
|
|
3436
3491
|
collapseGroupRowsOnDataFunctionChange: never;
|
|
3437
3492
|
sortInfo: never;
|
|
3493
|
+
rowDisabledState: never;
|
|
3438
3494
|
}) => void;
|
|
3439
3495
|
assignState: (newState: Partial<{
|
|
3440
3496
|
indexer: Indexer<unknown, any>;
|
|
@@ -3454,7 +3510,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
3454
3510
|
};
|
|
3455
3511
|
lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
|
|
3456
3512
|
pivotMappings?: never;
|
|
3457
|
-
propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
|
|
3513
|
+
propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "isRowDisabled" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "rowDisabledState" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultRowDisabledState" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
|
|
3458
3514
|
showSeparatePivotColumnForSingleAggregation: never;
|
|
3459
3515
|
dataParams?: never;
|
|
3460
3516
|
originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
|
|
@@ -3502,6 +3558,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
3502
3558
|
livePaginationCursor?: never;
|
|
3503
3559
|
lazyLoadBatchSize?: never;
|
|
3504
3560
|
rowSelection: never;
|
|
3561
|
+
isRowDisabled: never;
|
|
3505
3562
|
cellSelection: never;
|
|
3506
3563
|
selectionMode: never;
|
|
3507
3564
|
aggregationReducers?: never;
|
|
@@ -3530,6 +3587,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
3530
3587
|
sortTypes: DataSourcePropSortTypes;
|
|
3531
3588
|
collapseGroupRowsOnDataFunctionChange: never;
|
|
3532
3589
|
sortInfo: never;
|
|
3590
|
+
rowDisabledState: never;
|
|
3533
3591
|
} & {
|
|
3534
3592
|
indexer: Indexer<unknown, any>;
|
|
3535
3593
|
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
|
|
@@ -3548,7 +3606,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
3548
3606
|
};
|
|
3549
3607
|
lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
|
|
3550
3608
|
pivotMappings?: never;
|
|
3551
|
-
propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
|
|
3609
|
+
propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "isRowDisabled" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "rowDisabledState" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultRowDisabledState" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
|
|
3552
3610
|
showSeparatePivotColumnForSingleAggregation: never;
|
|
3553
3611
|
dataParams?: never;
|
|
3554
3612
|
originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
|
|
@@ -3596,6 +3654,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
3596
3654
|
livePaginationCursor?: never;
|
|
3597
3655
|
lazyLoadBatchSize?: never;
|
|
3598
3656
|
rowSelection: never;
|
|
3657
|
+
isRowDisabled: never;
|
|
3599
3658
|
cellSelection: never;
|
|
3600
3659
|
selectionMode: never;
|
|
3601
3660
|
aggregationReducers?: never;
|
|
@@ -3624,6 +3683,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
3624
3683
|
sortTypes: DataSourcePropSortTypes;
|
|
3625
3684
|
collapseGroupRowsOnDataFunctionChange: never;
|
|
3626
3685
|
sortInfo: never;
|
|
3686
|
+
rowDisabledState: never;
|
|
3627
3687
|
} & {
|
|
3628
3688
|
indexer: Indexer<unknown, any>;
|
|
3629
3689
|
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
|
|
@@ -3642,7 +3702,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
3642
3702
|
};
|
|
3643
3703
|
lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
|
|
3644
3704
|
pivotMappings?: never;
|
|
3645
|
-
propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
|
|
3705
|
+
propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "isRowDisabled" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "rowDisabledState" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultRowDisabledState" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
|
|
3646
3706
|
showSeparatePivotColumnForSingleAggregation: never;
|
|
3647
3707
|
dataParams?: never;
|
|
3648
3708
|
originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
|
|
@@ -3690,6 +3750,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
3690
3750
|
livePaginationCursor?: never;
|
|
3691
3751
|
lazyLoadBatchSize?: never;
|
|
3692
3752
|
rowSelection: never;
|
|
3753
|
+
isRowDisabled: never;
|
|
3693
3754
|
cellSelection: never;
|
|
3694
3755
|
selectionMode: never;
|
|
3695
3756
|
aggregationReducers?: never;
|
|
@@ -3718,6 +3779,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
3718
3779
|
sortTypes: DataSourcePropSortTypes;
|
|
3719
3780
|
collapseGroupRowsOnDataFunctionChange: never;
|
|
3720
3781
|
sortInfo: never;
|
|
3782
|
+
rowDisabledState: never;
|
|
3721
3783
|
}>) => void;
|
|
3722
3784
|
};
|
|
3723
3785
|
ContextComponent: React$1.Context<ManagedComponentStateContextValue<{
|
|
@@ -3738,7 +3800,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
3738
3800
|
};
|
|
3739
3801
|
lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
|
|
3740
3802
|
pivotMappings?: never;
|
|
3741
|
-
propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
|
|
3803
|
+
propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "isRowDisabled" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "rowDisabledState" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultRowDisabledState" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
|
|
3742
3804
|
showSeparatePivotColumnForSingleAggregation: never;
|
|
3743
3805
|
dataParams?: never;
|
|
3744
3806
|
originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
|
|
@@ -3786,6 +3848,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
3786
3848
|
livePaginationCursor?: never;
|
|
3787
3849
|
lazyLoadBatchSize?: never;
|
|
3788
3850
|
rowSelection: never;
|
|
3851
|
+
isRowDisabled: never;
|
|
3789
3852
|
cellSelection: never;
|
|
3790
3853
|
selectionMode: never;
|
|
3791
3854
|
aggregationReducers?: never;
|
|
@@ -3814,6 +3877,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
3814
3877
|
sortTypes: DataSourcePropSortTypes;
|
|
3815
3878
|
collapseGroupRowsOnDataFunctionChange: never;
|
|
3816
3879
|
sortInfo: never;
|
|
3880
|
+
rowDisabledState: never;
|
|
3817
3881
|
} & {
|
|
3818
3882
|
indexer: Indexer<unknown, any>;
|
|
3819
3883
|
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
|
|
@@ -3832,7 +3896,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
3832
3896
|
};
|
|
3833
3897
|
lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
|
|
3834
3898
|
pivotMappings?: never;
|
|
3835
|
-
propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
|
|
3899
|
+
propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "isRowDisabled" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "rowDisabledState" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultRowDisabledState" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
|
|
3836
3900
|
showSeparatePivotColumnForSingleAggregation: never;
|
|
3837
3901
|
dataParams?: never;
|
|
3838
3902
|
originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
|
|
@@ -3880,6 +3944,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
3880
3944
|
livePaginationCursor?: never;
|
|
3881
3945
|
lazyLoadBatchSize?: never;
|
|
3882
3946
|
rowSelection: never;
|
|
3947
|
+
isRowDisabled: never;
|
|
3883
3948
|
cellSelection: never;
|
|
3884
3949
|
selectionMode: never;
|
|
3885
3950
|
aggregationReducers?: never;
|
|
@@ -3908,6 +3973,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
3908
3973
|
sortTypes: DataSourcePropSortTypes;
|
|
3909
3974
|
collapseGroupRowsOnDataFunctionChange: never;
|
|
3910
3975
|
sortInfo: never;
|
|
3976
|
+
rowDisabledState: never;
|
|
3911
3977
|
} & {
|
|
3912
3978
|
indexer: Indexer<unknown, any>;
|
|
3913
3979
|
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
|
|
@@ -3926,7 +3992,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
3926
3992
|
};
|
|
3927
3993
|
lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
|
|
3928
3994
|
pivotMappings?: never;
|
|
3929
|
-
propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
|
|
3995
|
+
propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "isRowDisabled" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "rowDisabledState" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultRowDisabledState" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
|
|
3930
3996
|
showSeparatePivotColumnForSingleAggregation: never;
|
|
3931
3997
|
dataParams?: never;
|
|
3932
3998
|
originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
|
|
@@ -3974,6 +4040,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
3974
4040
|
livePaginationCursor?: never;
|
|
3975
4041
|
lazyLoadBatchSize?: never;
|
|
3976
4042
|
rowSelection: never;
|
|
4043
|
+
isRowDisabled: never;
|
|
3977
4044
|
cellSelection: never;
|
|
3978
4045
|
selectionMode: never;
|
|
3979
4046
|
aggregationReducers?: never;
|
|
@@ -4002,6 +4069,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
4002
4069
|
sortTypes: DataSourcePropSortTypes;
|
|
4003
4070
|
collapseGroupRowsOnDataFunctionChange: never;
|
|
4004
4071
|
sortInfo: never;
|
|
4072
|
+
rowDisabledState: never;
|
|
4005
4073
|
}, ComponentStateGeneratedActions<{
|
|
4006
4074
|
indexer: Indexer<unknown, any>;
|
|
4007
4075
|
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
|
|
@@ -4020,7 +4088,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
4020
4088
|
};
|
|
4021
4089
|
lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
|
|
4022
4090
|
pivotMappings?: never;
|
|
4023
|
-
propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
|
|
4091
|
+
propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "isRowDisabled" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "rowDisabledState" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultRowDisabledState" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
|
|
4024
4092
|
showSeparatePivotColumnForSingleAggregation: never;
|
|
4025
4093
|
dataParams?: never;
|
|
4026
4094
|
originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
|
|
@@ -4068,6 +4136,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
4068
4136
|
livePaginationCursor?: never;
|
|
4069
4137
|
lazyLoadBatchSize?: never;
|
|
4070
4138
|
rowSelection: never;
|
|
4139
|
+
isRowDisabled: never;
|
|
4071
4140
|
cellSelection: never;
|
|
4072
4141
|
selectionMode: never;
|
|
4073
4142
|
aggregationReducers?: never;
|
|
@@ -4096,6 +4165,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
4096
4165
|
sortTypes: DataSourcePropSortTypes;
|
|
4097
4166
|
collapseGroupRowsOnDataFunctionChange: never;
|
|
4098
4167
|
sortInfo: never;
|
|
4168
|
+
rowDisabledState: never;
|
|
4099
4169
|
} & {
|
|
4100
4170
|
indexer: Indexer<unknown, any>;
|
|
4101
4171
|
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
|
|
@@ -4114,7 +4184,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
4114
4184
|
};
|
|
4115
4185
|
lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
|
|
4116
4186
|
pivotMappings?: never;
|
|
4117
|
-
propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
|
|
4187
|
+
propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "isRowDisabled" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "rowDisabledState" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultRowDisabledState" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
|
|
4118
4188
|
showSeparatePivotColumnForSingleAggregation: never;
|
|
4119
4189
|
dataParams?: never;
|
|
4120
4190
|
originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
|
|
@@ -4162,6 +4232,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
4162
4232
|
livePaginationCursor?: never;
|
|
4163
4233
|
lazyLoadBatchSize?: never;
|
|
4164
4234
|
rowSelection: never;
|
|
4235
|
+
isRowDisabled: never;
|
|
4165
4236
|
cellSelection: never;
|
|
4166
4237
|
selectionMode: never;
|
|
4167
4238
|
aggregationReducers?: never;
|
|
@@ -4190,6 +4261,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
4190
4261
|
sortTypes: DataSourcePropSortTypes;
|
|
4191
4262
|
collapseGroupRowsOnDataFunctionChange: never;
|
|
4192
4263
|
sortInfo: never;
|
|
4264
|
+
rowDisabledState: never;
|
|
4193
4265
|
} & {
|
|
4194
4266
|
indexer: Indexer<unknown, any>;
|
|
4195
4267
|
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
|
|
@@ -4208,7 +4280,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
4208
4280
|
};
|
|
4209
4281
|
lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
|
|
4210
4282
|
pivotMappings?: never;
|
|
4211
|
-
propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
|
|
4283
|
+
propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "isRowDisabled" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "batchOperationDelay" | "onDataArrayChange" | "onDataMutations" | "onReady" | "rowInfoReducers" | "lazyLoad" | "useGroupKeysForMultiRowSelection" | "onDataParamsChange" | "sortFunction" | "filterFunction" | "filterValue" | "filterTypes" | "primaryKey" | "filterDelay" | "loading" | "sortTypes" | "collapseGroupRowsOnDataFunctionChange" | "sortInfo" | "rowDisabledState" | "fields" | "defaultRowSelection" | "defaultCellSelection" | "onCellSelectionChange" | "defaultRowDisabledState" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
|
|
4212
4284
|
showSeparatePivotColumnForSingleAggregation: never;
|
|
4213
4285
|
dataParams?: never;
|
|
4214
4286
|
originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
|
|
@@ -4256,6 +4328,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
4256
4328
|
livePaginationCursor?: never;
|
|
4257
4329
|
lazyLoadBatchSize?: never;
|
|
4258
4330
|
rowSelection: never;
|
|
4331
|
+
isRowDisabled: never;
|
|
4259
4332
|
cellSelection: never;
|
|
4260
4333
|
selectionMode: never;
|
|
4261
4334
|
aggregationReducers?: never;
|
|
@@ -4284,6 +4357,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
4284
4357
|
sortTypes: DataSourcePropSortTypes;
|
|
4285
4358
|
collapseGroupRowsOnDataFunctionChange: never;
|
|
4286
4359
|
sortInfo: never;
|
|
4360
|
+
rowDisabledState: never;
|
|
4287
4361
|
}>>>;
|
|
4288
4362
|
};
|
|
4289
4363
|
declare function DataSource<T>(props: DataSourceProps<T>): React$1.JSX.Element;
|
|
@@ -4336,6 +4410,7 @@ declare type InfiniteTable_RowInfoBase<_T> = {
|
|
|
4336
4410
|
value?: any;
|
|
4337
4411
|
indexInAll: number;
|
|
4338
4412
|
rowSelected: boolean | null;
|
|
4413
|
+
rowDisabled: boolean;
|
|
4339
4414
|
isCellSelected: (columnId: string) => boolean;
|
|
4340
4415
|
hasSelectedCells: (columnIds: string[]) => boolean;
|
|
4341
4416
|
};
|
|
@@ -5451,4 +5526,4 @@ declare const components: {
|
|
|
5451
5526
|
NumberFilterEditor: typeof NumberFilterEditor;
|
|
5452
5527
|
};
|
|
5453
5528
|
|
|
5454
|
-
export { AdvancedAlignable, CellSelectionState, CellSelectionStateObject, ColumnTypeWithInherit, DataClient, DataSource, DataSourceAction, DataSourceActionType, DataSourceAggregationReducer, DataSourceApi, DataSourceCRUDParam, 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, DataSourcePropIsRowSelected, DataSourcePropLivePaginationCursor, DataSourcePropMultiRowSelectionChangeParamType, DataSourcePropOnCellSelectionChange, DataSourcePropOnCellSelectionChange_MultiCell, DataSourcePropOnCellSelectionChange_SingleCell, DataSourcePropOnRowSelectionChange, DataSourcePropOnRowSelectionChange_MultiRow, DataSourcePropOnRowSelectionChange_SingleRow, DataSourcePropPivotBy, DataSourcePropRowInfoReducers, DataSourcePropRowSelection, DataSourcePropRowSelection_MultiRow, DataSourcePropRowSelection_SingleRow, DataSourcePropSelectionMode, DataSourcePropShouldReloadData, DataSourcePropShouldReloadDataObject, DataSourcePropSortFn, DataSourcePropSortInfo, DataSourcePropSortTypes, DataSourceProps, DataSourcePropsWithChildren, DataSourceRawReducer, DataSourceRemoteData, DataSourceRowInfoReducer, DataSourceSetupState, DataSourceSingleSortInfo, DataSourceSortInfo, DataSourceState, DebugLogger, DeepMap, ElementContainerGetter, FixedSizeSet, 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, InfiniteTablePropGroupColumn, InfiniteTablePropGroupRenderStrategy, InfiniteTablePropHeaderOptions, InfiniteTablePropKeyboardNavigation, InfiniteTablePropKeyboardShorcut, InfiniteTablePropMultiSortBehavior, InfiniteTablePropRowClassName, InfiniteTablePropRowStyle, InfiniteTableProps, InfiniteTableRowClassNameFn, InfiniteTableRowInfo, InfiniteTableRowStyleFn, InfiniteTableState, InfiniteTable_HasGrouping_RowInfoGroup, InfiniteTable_HasGrouping_RowInfoNormal, LazyGroupDataDeepMap, LazyGroupDataItem, LazyRowInfoGroup, Menu, MenuChildrenFnParam, MenuColumn, MenuColumnRenderParam, MenuDecoration, MenuIconProps, MenuItemActionContext, MenuItemDefinition, MenuItemObject, MenuProps, MenuRenderable, MenuRuntimeItem, MenuRuntimeItemSelectable, MenuSeparator, OverlayShowParams, RowDetailCache, RowDetailState, RowDetailStateObject, RowSelectionState, ScrollStopInfo, Scrollbars, ShowOverlayFn, TableRenderRange, WeakFixedSizeSet, components, debounce, debug, defaultFilterTypes, eventMatchesKeyboardShortcut, defaultFilterTypes as filterTypes, flatten, buildManagedComponent as getComponentStateRoot, group, interceptMap, keyboardShortcuts, multisort, queryKeyToCacheKey, useManagedComponentState as useComponentState, useDataSourceInternal, useDataSourceState, useEffectWithChanges, useEffectWithObject, useGridScroll, useInfiniteColumnCell, useInfiniteColumnEditor, useInfiniteColumnFilterEditor, useInfiniteHeaderCell, useManagedDataSource, useMasterRowInfo, useOverlay, useOverlayPortal, useRowInfoReducers, useVisibleColumnSizes };
|
|
5529
|
+
export { AdvancedAlignable, CellSelectionState, CellSelectionStateObject, ColumnTypeWithInherit, DataClient, DataSource, DataSourceAction, DataSourceActionType, DataSourceAggregationReducer, DataSourceApi, DataSourceCRUDParam, 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, DataSourcePropIsRowSelected, DataSourcePropLivePaginationCursor, DataSourcePropMultiRowSelectionChangeParamType, DataSourcePropOnCellSelectionChange, DataSourcePropOnCellSelectionChange_MultiCell, DataSourcePropOnCellSelectionChange_SingleCell, DataSourcePropOnRowSelectionChange, DataSourcePropOnRowSelectionChange_MultiRow, DataSourcePropOnRowSelectionChange_SingleRow, DataSourcePropPivotBy, DataSourcePropRowInfoReducers, DataSourcePropRowSelection, DataSourcePropRowSelection_MultiRow, DataSourcePropRowSelection_SingleRow, DataSourcePropSelectionMode, DataSourcePropShouldReloadData, DataSourcePropShouldReloadDataObject, DataSourcePropSortFn, DataSourcePropSortInfo, DataSourcePropSortTypes, DataSourceProps, DataSourcePropsWithChildren, DataSourceRawReducer, DataSourceRemoteData, DataSourceRowInfoReducer, DataSourceSetupState, DataSourceSingleSortInfo, DataSourceSortInfo, DataSourceState, DebugLogger, DeepMap, ElementContainerGetter, FixedSizeSet, 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, InfiniteTablePropGroupColumn, InfiniteTablePropGroupRenderStrategy, InfiniteTablePropHeaderOptions, InfiniteTablePropKeyboardNavigation, InfiniteTablePropKeyboardShorcut, InfiniteTablePropMultiSortBehavior, InfiniteTablePropRowClassName, InfiniteTablePropRowStyle, InfiniteTableProps, InfiniteTableRowClassNameFn, InfiniteTableRowInfo, InfiniteTableRowStyleFn, InfiniteTableState, InfiniteTable_HasGrouping_RowInfoGroup, InfiniteTable_HasGrouping_RowInfoNormal, LazyGroupDataDeepMap, LazyGroupDataItem, LazyRowInfoGroup, Menu, MenuChildrenFnParam, MenuColumn, MenuColumnRenderParam, MenuDecoration, MenuIconProps, MenuItemActionContext, MenuItemDefinition, MenuItemObject, MenuProps, MenuRenderable, MenuRuntimeItem, MenuRuntimeItemSelectable, MenuSeparator, OverlayShowParams, RowDetailCache, RowDetailState, RowDetailStateObject, RowDisabledStateObject, RowSelectionState, ScrollStopInfo, Scrollbars, ShowOverlayFn, TableRenderRange, WeakFixedSizeSet, components, debounce, debug, defaultFilterTypes, eventMatchesKeyboardShortcut, defaultFilterTypes as filterTypes, flatten, buildManagedComponent as getComponentStateRoot, group, interceptMap, keyboardShortcuts, multisort, queryKeyToCacheKey, useManagedComponentState as useComponentState, useDataSourceInternal, useDataSourceState, useEffectWithChanges, useEffectWithObject, useGridScroll, useInfiniteColumnCell, useInfiniteColumnEditor, useInfiniteColumnFilterEditor, useInfiniteHeaderCell, useManagedDataSource, useMasterRowInfo, useOverlay, useOverlayPortal, useRowInfoReducers, useVisibleColumnSizes };
|