@infinite-table/infinite-react 4.3.9 → 4.4.1
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 +106 -22
- package/index.dev.js +413 -172
- package/index.dev.mjs +412 -172
- package/index.js +413 -172
- package/index.mjs +412 -172
- 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, enabled: 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);
|
|
@@ -1993,6 +2021,14 @@ interface DataSourceApi<T> {
|
|
|
1993
2021
|
insertData(data: T, options: DataSourceInsertParam): Promise<any>;
|
|
1994
2022
|
insertDataArray(data: T[], options: DataSourceInsertParam): Promise<any>;
|
|
1995
2023
|
setSortInfo(sortInfo: null | DataSourceSingleSortInfo<T>[]): void;
|
|
2024
|
+
isRowDisabledAt: (rowIndex: number) => boolean;
|
|
2025
|
+
isRowDisabled: (primaryKey: any) => boolean;
|
|
2026
|
+
setRowEnabledAt: (rowIndex: number, enabled: boolean) => void;
|
|
2027
|
+
setRowEnabled: (primaryKey: any, enabled: boolean) => void;
|
|
2028
|
+
enableAllRows: () => void;
|
|
2029
|
+
disableAllRows: () => void;
|
|
2030
|
+
areAllRowsEnabled: () => boolean;
|
|
2031
|
+
areAllRowsDisabled: () => boolean;
|
|
1996
2032
|
}
|
|
1997
2033
|
declare type DataSourcePropRowInfoReducers<T> = Record<string, DataSourceRowInfoReducer<T>>;
|
|
1998
2034
|
declare type DataSourceRowInfoReducer<T> = DataSourceRawReducer<InfiniteTableRowInfo<T>, any>;
|
|
@@ -2019,6 +2055,10 @@ declare type DataSourceProps<T> = {
|
|
|
2019
2055
|
cellSelection?: DataSourcePropCellSelection_MultiCell | DataSourcePropCellSelection_SingleCell;
|
|
2020
2056
|
defaultCellSelection?: DataSourcePropCellSelection_MultiCell | DataSourcePropCellSelection_SingleCell;
|
|
2021
2057
|
onCellSelectionChange?: DataSourcePropOnCellSelectionChange;
|
|
2058
|
+
rowDisabledState?: RowDisabledState | RowDisabledStateObject<any>;
|
|
2059
|
+
defaultRowDisabledState?: RowDisabledState | RowDisabledStateObject<any>;
|
|
2060
|
+
onRowDisabledStateChange?: (rowDisabledState: RowDisabledState) => void;
|
|
2061
|
+
isRowDisabled?: (rowInfo: InfiniteTableRowInfo<T>) => boolean;
|
|
2022
2062
|
isRowSelected?: DataSourcePropIsRowSelected<T>;
|
|
2023
2063
|
lazyLoad?: boolean | {
|
|
2024
2064
|
batchSize?: number;
|
|
@@ -2180,6 +2220,7 @@ declare type DataSourceDerivedState<T> = {
|
|
|
2180
2220
|
livePaginationCursor?: DataSourceLivePaginationCursorValue;
|
|
2181
2221
|
lazyLoadBatchSize?: number;
|
|
2182
2222
|
rowSelection: RowSelectionState | null | number | string;
|
|
2223
|
+
isRowDisabled: DataSourceProps<T>['isRowDisabled'];
|
|
2183
2224
|
cellSelection: CellSelectionState | null;
|
|
2184
2225
|
selectionMode: NonUndefined<DataSourceProps<T>['selectionMode']>;
|
|
2185
2226
|
};
|
|
@@ -2322,7 +2363,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
2322
2363
|
};
|
|
2323
2364
|
lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
|
|
2324
2365
|
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>>;
|
|
2366
|
+
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" | "onRowDisabledStateChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
|
|
2326
2367
|
showSeparatePivotColumnForSingleAggregation: never;
|
|
2327
2368
|
dataParams?: never;
|
|
2328
2369
|
originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
|
|
@@ -2370,6 +2411,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
2370
2411
|
livePaginationCursor?: never;
|
|
2371
2412
|
lazyLoadBatchSize?: never;
|
|
2372
2413
|
rowSelection: never;
|
|
2414
|
+
isRowDisabled: never;
|
|
2373
2415
|
cellSelection: never;
|
|
2374
2416
|
selectionMode: never;
|
|
2375
2417
|
aggregationReducers?: never;
|
|
@@ -2398,6 +2440,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
2398
2440
|
sortTypes: DataSourcePropSortTypes;
|
|
2399
2441
|
collapseGroupRowsOnDataFunctionChange: never;
|
|
2400
2442
|
sortInfo: never;
|
|
2443
|
+
rowDisabledState: never;
|
|
2401
2444
|
} & {
|
|
2402
2445
|
indexer: Indexer<unknown, any>;
|
|
2403
2446
|
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
|
|
@@ -2416,7 +2459,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
2416
2459
|
};
|
|
2417
2460
|
lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
|
|
2418
2461
|
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>>;
|
|
2462
|
+
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" | "onRowDisabledStateChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
|
|
2420
2463
|
showSeparatePivotColumnForSingleAggregation: never;
|
|
2421
2464
|
dataParams?: never;
|
|
2422
2465
|
originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
|
|
@@ -2464,6 +2507,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
2464
2507
|
livePaginationCursor?: never;
|
|
2465
2508
|
lazyLoadBatchSize?: never;
|
|
2466
2509
|
rowSelection: never;
|
|
2510
|
+
isRowDisabled: never;
|
|
2467
2511
|
cellSelection: never;
|
|
2468
2512
|
selectionMode: never;
|
|
2469
2513
|
aggregationReducers?: never;
|
|
@@ -2492,6 +2536,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
2492
2536
|
sortTypes: DataSourcePropSortTypes;
|
|
2493
2537
|
collapseGroupRowsOnDataFunctionChange: never;
|
|
2494
2538
|
sortInfo: never;
|
|
2539
|
+
rowDisabledState: never;
|
|
2495
2540
|
} & {
|
|
2496
2541
|
indexer: Indexer<unknown, any>;
|
|
2497
2542
|
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
|
|
@@ -2510,7 +2555,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
2510
2555
|
};
|
|
2511
2556
|
lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
|
|
2512
2557
|
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>>;
|
|
2558
|
+
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" | "onRowDisabledStateChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
|
|
2514
2559
|
showSeparatePivotColumnForSingleAggregation: never;
|
|
2515
2560
|
dataParams?: never;
|
|
2516
2561
|
originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
|
|
@@ -2558,6 +2603,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
2558
2603
|
livePaginationCursor?: never;
|
|
2559
2604
|
lazyLoadBatchSize?: never;
|
|
2560
2605
|
rowSelection: never;
|
|
2606
|
+
isRowDisabled: never;
|
|
2561
2607
|
cellSelection: never;
|
|
2562
2608
|
selectionMode: never;
|
|
2563
2609
|
aggregationReducers?: never;
|
|
@@ -2586,6 +2632,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
2586
2632
|
sortTypes: DataSourcePropSortTypes;
|
|
2587
2633
|
collapseGroupRowsOnDataFunctionChange: never;
|
|
2588
2634
|
sortInfo: never;
|
|
2635
|
+
rowDisabledState: never;
|
|
2589
2636
|
};
|
|
2590
2637
|
componentActions: ComponentStateGeneratedActions<{
|
|
2591
2638
|
indexer: Indexer<unknown, any>;
|
|
@@ -2605,7 +2652,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
2605
2652
|
};
|
|
2606
2653
|
lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
|
|
2607
2654
|
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>>;
|
|
2655
|
+
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" | "onRowDisabledStateChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
|
|
2609
2656
|
showSeparatePivotColumnForSingleAggregation: never;
|
|
2610
2657
|
dataParams?: never;
|
|
2611
2658
|
originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
|
|
@@ -2653,6 +2700,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
2653
2700
|
livePaginationCursor?: never;
|
|
2654
2701
|
lazyLoadBatchSize?: never;
|
|
2655
2702
|
rowSelection: never;
|
|
2703
|
+
isRowDisabled: never;
|
|
2656
2704
|
cellSelection: never;
|
|
2657
2705
|
selectionMode: never;
|
|
2658
2706
|
aggregationReducers?: never;
|
|
@@ -2681,6 +2729,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
2681
2729
|
sortTypes: DataSourcePropSortTypes;
|
|
2682
2730
|
collapseGroupRowsOnDataFunctionChange: never;
|
|
2683
2731
|
sortInfo: never;
|
|
2732
|
+
rowDisabledState: never;
|
|
2684
2733
|
} & {
|
|
2685
2734
|
indexer: Indexer<unknown, any>;
|
|
2686
2735
|
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
|
|
@@ -2699,7 +2748,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
2699
2748
|
};
|
|
2700
2749
|
lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
|
|
2701
2750
|
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>>;
|
|
2751
|
+
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" | "onRowDisabledStateChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
|
|
2703
2752
|
showSeparatePivotColumnForSingleAggregation: never;
|
|
2704
2753
|
dataParams?: never;
|
|
2705
2754
|
originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
|
|
@@ -2747,6 +2796,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
2747
2796
|
livePaginationCursor?: never;
|
|
2748
2797
|
lazyLoadBatchSize?: never;
|
|
2749
2798
|
rowSelection: never;
|
|
2799
|
+
isRowDisabled: never;
|
|
2750
2800
|
cellSelection: never;
|
|
2751
2801
|
selectionMode: never;
|
|
2752
2802
|
aggregationReducers?: never;
|
|
@@ -2775,6 +2825,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
2775
2825
|
sortTypes: DataSourcePropSortTypes;
|
|
2776
2826
|
collapseGroupRowsOnDataFunctionChange: never;
|
|
2777
2827
|
sortInfo: never;
|
|
2828
|
+
rowDisabledState: never;
|
|
2778
2829
|
} & {
|
|
2779
2830
|
indexer: Indexer<unknown, any>;
|
|
2780
2831
|
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
|
|
@@ -2793,7 +2844,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
2793
2844
|
};
|
|
2794
2845
|
lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
|
|
2795
2846
|
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>>;
|
|
2847
|
+
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" | "onRowDisabledStateChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
|
|
2797
2848
|
showSeparatePivotColumnForSingleAggregation: never;
|
|
2798
2849
|
dataParams?: never;
|
|
2799
2850
|
originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
|
|
@@ -2841,6 +2892,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
2841
2892
|
livePaginationCursor?: never;
|
|
2842
2893
|
lazyLoadBatchSize?: never;
|
|
2843
2894
|
rowSelection: never;
|
|
2895
|
+
isRowDisabled: never;
|
|
2844
2896
|
cellSelection: never;
|
|
2845
2897
|
selectionMode: never;
|
|
2846
2898
|
aggregationReducers?: never;
|
|
@@ -2869,6 +2921,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
2869
2921
|
sortTypes: DataSourcePropSortTypes;
|
|
2870
2922
|
collapseGroupRowsOnDataFunctionChange: never;
|
|
2871
2923
|
sortInfo: never;
|
|
2924
|
+
rowDisabledState: never;
|
|
2872
2925
|
}>;
|
|
2873
2926
|
getComponentState: () => {
|
|
2874
2927
|
indexer: Indexer<unknown, any>;
|
|
@@ -2888,7 +2941,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
2888
2941
|
};
|
|
2889
2942
|
lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
|
|
2890
2943
|
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>>;
|
|
2944
|
+
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" | "onRowDisabledStateChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
|
|
2892
2945
|
showSeparatePivotColumnForSingleAggregation: never;
|
|
2893
2946
|
dataParams?: never;
|
|
2894
2947
|
originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
|
|
@@ -2936,6 +2989,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
2936
2989
|
livePaginationCursor?: never;
|
|
2937
2990
|
lazyLoadBatchSize?: never;
|
|
2938
2991
|
rowSelection: never;
|
|
2992
|
+
isRowDisabled: never;
|
|
2939
2993
|
cellSelection: never;
|
|
2940
2994
|
selectionMode: never;
|
|
2941
2995
|
aggregationReducers?: never;
|
|
@@ -2964,6 +3018,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
2964
3018
|
sortTypes: DataSourcePropSortTypes;
|
|
2965
3019
|
collapseGroupRowsOnDataFunctionChange: never;
|
|
2966
3020
|
sortInfo: never;
|
|
3021
|
+
rowDisabledState: never;
|
|
2967
3022
|
} & {
|
|
2968
3023
|
indexer: Indexer<unknown, any>;
|
|
2969
3024
|
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
|
|
@@ -2982,7 +3037,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
2982
3037
|
};
|
|
2983
3038
|
lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
|
|
2984
3039
|
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>>;
|
|
3040
|
+
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" | "onRowDisabledStateChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
|
|
2986
3041
|
showSeparatePivotColumnForSingleAggregation: never;
|
|
2987
3042
|
dataParams?: never;
|
|
2988
3043
|
originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
|
|
@@ -3030,6 +3085,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
3030
3085
|
livePaginationCursor?: never;
|
|
3031
3086
|
lazyLoadBatchSize?: never;
|
|
3032
3087
|
rowSelection: never;
|
|
3088
|
+
isRowDisabled: never;
|
|
3033
3089
|
cellSelection: never;
|
|
3034
3090
|
selectionMode: never;
|
|
3035
3091
|
aggregationReducers?: never;
|
|
@@ -3058,6 +3114,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
3058
3114
|
sortTypes: DataSourcePropSortTypes;
|
|
3059
3115
|
collapseGroupRowsOnDataFunctionChange: never;
|
|
3060
3116
|
sortInfo: never;
|
|
3117
|
+
rowDisabledState: never;
|
|
3061
3118
|
} & {
|
|
3062
3119
|
indexer: Indexer<unknown, any>;
|
|
3063
3120
|
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
|
|
@@ -3076,7 +3133,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
3076
3133
|
};
|
|
3077
3134
|
lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
|
|
3078
3135
|
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>>;
|
|
3136
|
+
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" | "onRowDisabledStateChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
|
|
3080
3137
|
showSeparatePivotColumnForSingleAggregation: never;
|
|
3081
3138
|
dataParams?: never;
|
|
3082
3139
|
originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
|
|
@@ -3124,6 +3181,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
3124
3181
|
livePaginationCursor?: never;
|
|
3125
3182
|
lazyLoadBatchSize?: never;
|
|
3126
3183
|
rowSelection: never;
|
|
3184
|
+
isRowDisabled: never;
|
|
3127
3185
|
cellSelection: never;
|
|
3128
3186
|
selectionMode: never;
|
|
3129
3187
|
aggregationReducers?: never;
|
|
@@ -3152,6 +3210,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
3152
3210
|
sortTypes: DataSourcePropSortTypes;
|
|
3153
3211
|
collapseGroupRowsOnDataFunctionChange: never;
|
|
3154
3212
|
sortInfo: never;
|
|
3213
|
+
rowDisabledState: never;
|
|
3155
3214
|
};
|
|
3156
3215
|
replaceState: (newState: {
|
|
3157
3216
|
indexer: Indexer<unknown, any>;
|
|
@@ -3171,7 +3230,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
3171
3230
|
};
|
|
3172
3231
|
lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
|
|
3173
3232
|
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>>;
|
|
3233
|
+
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" | "onRowDisabledStateChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
|
|
3175
3234
|
showSeparatePivotColumnForSingleAggregation: never;
|
|
3176
3235
|
dataParams?: never;
|
|
3177
3236
|
originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
|
|
@@ -3219,6 +3278,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
3219
3278
|
livePaginationCursor?: never;
|
|
3220
3279
|
lazyLoadBatchSize?: never;
|
|
3221
3280
|
rowSelection: never;
|
|
3281
|
+
isRowDisabled: never;
|
|
3222
3282
|
cellSelection: never;
|
|
3223
3283
|
selectionMode: never;
|
|
3224
3284
|
aggregationReducers?: never;
|
|
@@ -3247,6 +3307,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
3247
3307
|
sortTypes: DataSourcePropSortTypes;
|
|
3248
3308
|
collapseGroupRowsOnDataFunctionChange: never;
|
|
3249
3309
|
sortInfo: never;
|
|
3310
|
+
rowDisabledState: never;
|
|
3250
3311
|
} & {
|
|
3251
3312
|
indexer: Indexer<unknown, any>;
|
|
3252
3313
|
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
|
|
@@ -3265,7 +3326,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
3265
3326
|
};
|
|
3266
3327
|
lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
|
|
3267
3328
|
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>>;
|
|
3329
|
+
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" | "onRowDisabledStateChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
|
|
3269
3330
|
showSeparatePivotColumnForSingleAggregation: never;
|
|
3270
3331
|
dataParams?: never;
|
|
3271
3332
|
originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
|
|
@@ -3313,6 +3374,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
3313
3374
|
livePaginationCursor?: never;
|
|
3314
3375
|
lazyLoadBatchSize?: never;
|
|
3315
3376
|
rowSelection: never;
|
|
3377
|
+
isRowDisabled: never;
|
|
3316
3378
|
cellSelection: never;
|
|
3317
3379
|
selectionMode: never;
|
|
3318
3380
|
aggregationReducers?: never;
|
|
@@ -3341,6 +3403,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
3341
3403
|
sortTypes: DataSourcePropSortTypes;
|
|
3342
3404
|
collapseGroupRowsOnDataFunctionChange: never;
|
|
3343
3405
|
sortInfo: never;
|
|
3406
|
+
rowDisabledState: never;
|
|
3344
3407
|
} & {
|
|
3345
3408
|
indexer: Indexer<unknown, any>;
|
|
3346
3409
|
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
|
|
@@ -3359,7 +3422,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
3359
3422
|
};
|
|
3360
3423
|
lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
|
|
3361
3424
|
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>>;
|
|
3425
|
+
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" | "onRowDisabledStateChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
|
|
3363
3426
|
showSeparatePivotColumnForSingleAggregation: never;
|
|
3364
3427
|
dataParams?: never;
|
|
3365
3428
|
originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
|
|
@@ -3407,6 +3470,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
3407
3470
|
livePaginationCursor?: never;
|
|
3408
3471
|
lazyLoadBatchSize?: never;
|
|
3409
3472
|
rowSelection: never;
|
|
3473
|
+
isRowDisabled: never;
|
|
3410
3474
|
cellSelection: never;
|
|
3411
3475
|
selectionMode: never;
|
|
3412
3476
|
aggregationReducers?: never;
|
|
@@ -3435,6 +3499,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
3435
3499
|
sortTypes: DataSourcePropSortTypes;
|
|
3436
3500
|
collapseGroupRowsOnDataFunctionChange: never;
|
|
3437
3501
|
sortInfo: never;
|
|
3502
|
+
rowDisabledState: never;
|
|
3438
3503
|
}) => void;
|
|
3439
3504
|
assignState: (newState: Partial<{
|
|
3440
3505
|
indexer: Indexer<unknown, any>;
|
|
@@ -3454,7 +3519,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
3454
3519
|
};
|
|
3455
3520
|
lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
|
|
3456
3521
|
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>>;
|
|
3522
|
+
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" | "onRowDisabledStateChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
|
|
3458
3523
|
showSeparatePivotColumnForSingleAggregation: never;
|
|
3459
3524
|
dataParams?: never;
|
|
3460
3525
|
originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
|
|
@@ -3502,6 +3567,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
3502
3567
|
livePaginationCursor?: never;
|
|
3503
3568
|
lazyLoadBatchSize?: never;
|
|
3504
3569
|
rowSelection: never;
|
|
3570
|
+
isRowDisabled: never;
|
|
3505
3571
|
cellSelection: never;
|
|
3506
3572
|
selectionMode: never;
|
|
3507
3573
|
aggregationReducers?: never;
|
|
@@ -3530,6 +3596,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
3530
3596
|
sortTypes: DataSourcePropSortTypes;
|
|
3531
3597
|
collapseGroupRowsOnDataFunctionChange: never;
|
|
3532
3598
|
sortInfo: never;
|
|
3599
|
+
rowDisabledState: never;
|
|
3533
3600
|
} & {
|
|
3534
3601
|
indexer: Indexer<unknown, any>;
|
|
3535
3602
|
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
|
|
@@ -3548,7 +3615,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
3548
3615
|
};
|
|
3549
3616
|
lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
|
|
3550
3617
|
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>>;
|
|
3618
|
+
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" | "onRowDisabledStateChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
|
|
3552
3619
|
showSeparatePivotColumnForSingleAggregation: never;
|
|
3553
3620
|
dataParams?: never;
|
|
3554
3621
|
originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
|
|
@@ -3596,6 +3663,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
3596
3663
|
livePaginationCursor?: never;
|
|
3597
3664
|
lazyLoadBatchSize?: never;
|
|
3598
3665
|
rowSelection: never;
|
|
3666
|
+
isRowDisabled: never;
|
|
3599
3667
|
cellSelection: never;
|
|
3600
3668
|
selectionMode: never;
|
|
3601
3669
|
aggregationReducers?: never;
|
|
@@ -3624,6 +3692,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
3624
3692
|
sortTypes: DataSourcePropSortTypes;
|
|
3625
3693
|
collapseGroupRowsOnDataFunctionChange: never;
|
|
3626
3694
|
sortInfo: never;
|
|
3695
|
+
rowDisabledState: never;
|
|
3627
3696
|
} & {
|
|
3628
3697
|
indexer: Indexer<unknown, any>;
|
|
3629
3698
|
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
|
|
@@ -3642,7 +3711,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
3642
3711
|
};
|
|
3643
3712
|
lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
|
|
3644
3713
|
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>>;
|
|
3714
|
+
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" | "onRowDisabledStateChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
|
|
3646
3715
|
showSeparatePivotColumnForSingleAggregation: never;
|
|
3647
3716
|
dataParams?: never;
|
|
3648
3717
|
originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
|
|
@@ -3690,6 +3759,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
3690
3759
|
livePaginationCursor?: never;
|
|
3691
3760
|
lazyLoadBatchSize?: never;
|
|
3692
3761
|
rowSelection: never;
|
|
3762
|
+
isRowDisabled: never;
|
|
3693
3763
|
cellSelection: never;
|
|
3694
3764
|
selectionMode: never;
|
|
3695
3765
|
aggregationReducers?: never;
|
|
@@ -3718,6 +3788,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
3718
3788
|
sortTypes: DataSourcePropSortTypes;
|
|
3719
3789
|
collapseGroupRowsOnDataFunctionChange: never;
|
|
3720
3790
|
sortInfo: never;
|
|
3791
|
+
rowDisabledState: never;
|
|
3721
3792
|
}>) => void;
|
|
3722
3793
|
};
|
|
3723
3794
|
ContextComponent: React$1.Context<ManagedComponentStateContextValue<{
|
|
@@ -3738,7 +3809,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
3738
3809
|
};
|
|
3739
3810
|
lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
|
|
3740
3811
|
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>>;
|
|
3812
|
+
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" | "onRowDisabledStateChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
|
|
3742
3813
|
showSeparatePivotColumnForSingleAggregation: never;
|
|
3743
3814
|
dataParams?: never;
|
|
3744
3815
|
originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
|
|
@@ -3786,6 +3857,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
3786
3857
|
livePaginationCursor?: never;
|
|
3787
3858
|
lazyLoadBatchSize?: never;
|
|
3788
3859
|
rowSelection: never;
|
|
3860
|
+
isRowDisabled: never;
|
|
3789
3861
|
cellSelection: never;
|
|
3790
3862
|
selectionMode: never;
|
|
3791
3863
|
aggregationReducers?: never;
|
|
@@ -3814,6 +3886,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
3814
3886
|
sortTypes: DataSourcePropSortTypes;
|
|
3815
3887
|
collapseGroupRowsOnDataFunctionChange: never;
|
|
3816
3888
|
sortInfo: never;
|
|
3889
|
+
rowDisabledState: never;
|
|
3817
3890
|
} & {
|
|
3818
3891
|
indexer: Indexer<unknown, any>;
|
|
3819
3892
|
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
|
|
@@ -3832,7 +3905,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
3832
3905
|
};
|
|
3833
3906
|
lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
|
|
3834
3907
|
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>>;
|
|
3908
|
+
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" | "onRowDisabledStateChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
|
|
3836
3909
|
showSeparatePivotColumnForSingleAggregation: never;
|
|
3837
3910
|
dataParams?: never;
|
|
3838
3911
|
originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
|
|
@@ -3880,6 +3953,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
3880
3953
|
livePaginationCursor?: never;
|
|
3881
3954
|
lazyLoadBatchSize?: never;
|
|
3882
3955
|
rowSelection: never;
|
|
3956
|
+
isRowDisabled: never;
|
|
3883
3957
|
cellSelection: never;
|
|
3884
3958
|
selectionMode: never;
|
|
3885
3959
|
aggregationReducers?: never;
|
|
@@ -3908,6 +3982,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
3908
3982
|
sortTypes: DataSourcePropSortTypes;
|
|
3909
3983
|
collapseGroupRowsOnDataFunctionChange: never;
|
|
3910
3984
|
sortInfo: never;
|
|
3985
|
+
rowDisabledState: never;
|
|
3911
3986
|
} & {
|
|
3912
3987
|
indexer: Indexer<unknown, any>;
|
|
3913
3988
|
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
|
|
@@ -3926,7 +4001,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
3926
4001
|
};
|
|
3927
4002
|
lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
|
|
3928
4003
|
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>>;
|
|
4004
|
+
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" | "onRowDisabledStateChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
|
|
3930
4005
|
showSeparatePivotColumnForSingleAggregation: never;
|
|
3931
4006
|
dataParams?: never;
|
|
3932
4007
|
originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
|
|
@@ -3974,6 +4049,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
3974
4049
|
livePaginationCursor?: never;
|
|
3975
4050
|
lazyLoadBatchSize?: never;
|
|
3976
4051
|
rowSelection: never;
|
|
4052
|
+
isRowDisabled: never;
|
|
3977
4053
|
cellSelection: never;
|
|
3978
4054
|
selectionMode: never;
|
|
3979
4055
|
aggregationReducers?: never;
|
|
@@ -4002,6 +4078,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
4002
4078
|
sortTypes: DataSourcePropSortTypes;
|
|
4003
4079
|
collapseGroupRowsOnDataFunctionChange: never;
|
|
4004
4080
|
sortInfo: never;
|
|
4081
|
+
rowDisabledState: never;
|
|
4005
4082
|
}, ComponentStateGeneratedActions<{
|
|
4006
4083
|
indexer: Indexer<unknown, any>;
|
|
4007
4084
|
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
|
|
@@ -4020,7 +4097,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
4020
4097
|
};
|
|
4021
4098
|
lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
|
|
4022
4099
|
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>>;
|
|
4100
|
+
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" | "onRowDisabledStateChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
|
|
4024
4101
|
showSeparatePivotColumnForSingleAggregation: never;
|
|
4025
4102
|
dataParams?: never;
|
|
4026
4103
|
originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
|
|
@@ -4068,6 +4145,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
4068
4145
|
livePaginationCursor?: never;
|
|
4069
4146
|
lazyLoadBatchSize?: never;
|
|
4070
4147
|
rowSelection: never;
|
|
4148
|
+
isRowDisabled: never;
|
|
4071
4149
|
cellSelection: never;
|
|
4072
4150
|
selectionMode: never;
|
|
4073
4151
|
aggregationReducers?: never;
|
|
@@ -4096,6 +4174,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
4096
4174
|
sortTypes: DataSourcePropSortTypes;
|
|
4097
4175
|
collapseGroupRowsOnDataFunctionChange: never;
|
|
4098
4176
|
sortInfo: never;
|
|
4177
|
+
rowDisabledState: never;
|
|
4099
4178
|
} & {
|
|
4100
4179
|
indexer: Indexer<unknown, any>;
|
|
4101
4180
|
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
|
|
@@ -4114,7 +4193,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
4114
4193
|
};
|
|
4115
4194
|
lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
|
|
4116
4195
|
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>>;
|
|
4196
|
+
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" | "onRowDisabledStateChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
|
|
4118
4197
|
showSeparatePivotColumnForSingleAggregation: never;
|
|
4119
4198
|
dataParams?: never;
|
|
4120
4199
|
originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
|
|
@@ -4162,6 +4241,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
4162
4241
|
livePaginationCursor?: never;
|
|
4163
4242
|
lazyLoadBatchSize?: never;
|
|
4164
4243
|
rowSelection: never;
|
|
4244
|
+
isRowDisabled: never;
|
|
4165
4245
|
cellSelection: never;
|
|
4166
4246
|
selectionMode: never;
|
|
4167
4247
|
aggregationReducers?: never;
|
|
@@ -4190,6 +4270,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
4190
4270
|
sortTypes: DataSourcePropSortTypes;
|
|
4191
4271
|
collapseGroupRowsOnDataFunctionChange: never;
|
|
4192
4272
|
sortInfo: never;
|
|
4273
|
+
rowDisabledState: never;
|
|
4193
4274
|
} & {
|
|
4194
4275
|
indexer: Indexer<unknown, any>;
|
|
4195
4276
|
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
|
|
@@ -4208,7 +4289,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
4208
4289
|
};
|
|
4209
4290
|
lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
|
|
4210
4291
|
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>>;
|
|
4292
|
+
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" | "onRowDisabledStateChange" | "defaultLoading" | "onLoadingChange" | "defaultPivotBy" | "onPivotByChange" | "defaultAggregationReducers" | "defaultGroupBy" | "onGroupByChange" | "defaultGroupRowsState" | "onGroupRowsStateChange" | "defaultSortInfo" | "onSortInfoChange" | "onLivePaginationCursorChange" | "defaultFilterValue" | "onFilterValueChange", WeakMap<any, any>>;
|
|
4212
4293
|
showSeparatePivotColumnForSingleAggregation: never;
|
|
4213
4294
|
dataParams?: never;
|
|
4214
4295
|
originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
|
|
@@ -4256,6 +4337,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
4256
4337
|
livePaginationCursor?: never;
|
|
4257
4338
|
lazyLoadBatchSize?: never;
|
|
4258
4339
|
rowSelection: never;
|
|
4340
|
+
isRowDisabled: never;
|
|
4259
4341
|
cellSelection: never;
|
|
4260
4342
|
selectionMode: never;
|
|
4261
4343
|
aggregationReducers?: never;
|
|
@@ -4284,6 +4366,7 @@ declare const useManagedDataSource: (props: unknown) => {
|
|
|
4284
4366
|
sortTypes: DataSourcePropSortTypes;
|
|
4285
4367
|
collapseGroupRowsOnDataFunctionChange: never;
|
|
4286
4368
|
sortInfo: never;
|
|
4369
|
+
rowDisabledState: never;
|
|
4287
4370
|
}>>>;
|
|
4288
4371
|
};
|
|
4289
4372
|
declare function DataSource<T>(props: DataSourceProps<T>): React$1.JSX.Element;
|
|
@@ -4336,6 +4419,7 @@ declare type InfiniteTable_RowInfoBase<_T> = {
|
|
|
4336
4419
|
value?: any;
|
|
4337
4420
|
indexInAll: number;
|
|
4338
4421
|
rowSelected: boolean | null;
|
|
4422
|
+
rowDisabled: boolean;
|
|
4339
4423
|
isCellSelected: (columnId: string) => boolean;
|
|
4340
4424
|
hasSelectedCells: (columnIds: string[]) => boolean;
|
|
4341
4425
|
};
|
|
@@ -5451,4 +5535,4 @@ declare const components: {
|
|
|
5451
5535
|
NumberFilterEditor: typeof NumberFilterEditor;
|
|
5452
5536
|
};
|
|
5453
5537
|
|
|
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 };
|
|
5538
|
+
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, RowDisabledState, 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 };
|