@infinite-table/infinite-react 4.2.1-canary.0 → 4.3.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.d.ts +2249 -205
- package/index.dev.js +2145 -1846
- package/index.dev.mjs +2170 -1870
- package/index.js +2145 -1846
- package/index.mjs +2170 -1870
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -1,36 +1,75 @@
|
|
|
1
1
|
import * as React$1 from 'react';
|
|
2
|
-
import React__default, {
|
|
2
|
+
import React__default, { CSSProperties, HTMLProps, RefCallback, MutableRefObject, MouseEvent, KeyboardEvent, HTMLAttributes, ReactNode, EffectCallback } from 'react';
|
|
3
3
|
|
|
4
|
-
declare type
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
/**
|
|
11
|
-
* for now 'string' and 'number' are known types, meaning they have
|
|
12
|
-
* sort functions already implemented
|
|
13
|
-
*/
|
|
14
|
-
type?: string | string[];
|
|
15
|
-
fn?: (a: any, b: any) => number;
|
|
16
|
-
/**
|
|
17
|
-
* a property whose value to use for sorting on the array items
|
|
18
|
-
*/
|
|
19
|
-
field?: keyof T;
|
|
20
|
-
/**
|
|
21
|
-
* or a function to retrieve the item value to use for sorting
|
|
22
|
-
*/
|
|
23
|
-
valueGetter?: (item: T) => any;
|
|
4
|
+
declare type ManagedComponentStateContextValue<T_STATE, T_ACTIONS> = {
|
|
5
|
+
getComponentState: () => T_STATE;
|
|
6
|
+
componentState: T_STATE;
|
|
7
|
+
componentActions: T_ACTIONS;
|
|
8
|
+
assignState: (state: Partial<T_STATE>) => void;
|
|
9
|
+
replaceState: (state: T_STATE) => void;
|
|
24
10
|
};
|
|
25
|
-
declare type
|
|
26
|
-
|
|
11
|
+
declare type ComponentStateGeneratedActions<T_STATE> = {
|
|
12
|
+
[k in keyof T_STATE]: T_STATE[k] | React.SetStateAction<T_STATE[k]>;
|
|
27
13
|
};
|
|
28
|
-
declare
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
14
|
+
declare type ComponentInterceptedActions<T_STATE> = {
|
|
15
|
+
[k in keyof T_STATE]?: (value: T_STATE[k], { actions, state, }: {
|
|
16
|
+
actions: ComponentStateGeneratedActions<T_STATE>;
|
|
17
|
+
state: T_STATE;
|
|
18
|
+
}) => void | boolean;
|
|
19
|
+
};
|
|
20
|
+
declare type ComponentMappedCallbacks<T_STATE> = {
|
|
21
|
+
[k in keyof T_STATE]: (value: T_STATE[k], state: T_STATE) => {
|
|
22
|
+
callbackName: string;
|
|
23
|
+
callbackParams: any[];
|
|
32
24
|
};
|
|
33
25
|
};
|
|
26
|
+
declare type ComponentStateActions<T_STATE> = ComponentStateGeneratedActions<T_STATE>;
|
|
27
|
+
|
|
28
|
+
declare type DebugLogger = {
|
|
29
|
+
(...args: any[]): void;
|
|
30
|
+
extend: (channelName: string) => DebugLogger;
|
|
31
|
+
color: (colorName: string, ...message: string[]) => [string, string];
|
|
32
|
+
enabled: boolean;
|
|
33
|
+
channel: string;
|
|
34
|
+
destroy: () => void;
|
|
35
|
+
logFn: undefined | ((...args: any[]) => void);
|
|
36
|
+
};
|
|
37
|
+
declare const debug: {
|
|
38
|
+
(channelName: string): DebugLogger;
|
|
39
|
+
colors: string[];
|
|
40
|
+
enable: string;
|
|
41
|
+
diffenable: string | boolean;
|
|
42
|
+
logFn: DebugLogger['logFn'];
|
|
43
|
+
destroyAll: () => void;
|
|
44
|
+
};
|
|
45
|
+
|
|
46
|
+
interface LogFn {
|
|
47
|
+
(...args: any[]): void;
|
|
48
|
+
extend: (channelName: string) => LogFn;
|
|
49
|
+
}
|
|
50
|
+
declare class Logger {
|
|
51
|
+
debug: LogFn;
|
|
52
|
+
error: LogFn;
|
|
53
|
+
constructor(channelName: string);
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
interface Size {
|
|
57
|
+
width: number;
|
|
58
|
+
height: number;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
interface ScrollPosition {
|
|
62
|
+
scrollTop: number;
|
|
63
|
+
scrollLeft: number;
|
|
64
|
+
}
|
|
65
|
+
declare type OnScrollFn = (scrollPosition: ScrollPosition) => void;
|
|
66
|
+
|
|
67
|
+
declare type RenderRange = {
|
|
68
|
+
renderStartIndex: number;
|
|
69
|
+
renderEndIndex: number;
|
|
70
|
+
};
|
|
71
|
+
|
|
72
|
+
declare type Renderable = React$1.ReactNode | JSX.Element;
|
|
34
73
|
|
|
35
74
|
declare type VoidFn$1 = () => void;
|
|
36
75
|
declare type Pair<KeyType, ValueType> = {
|
|
@@ -94,122 +133,6 @@ declare type InfiniteTableAction = {
|
|
|
94
133
|
payload?: any;
|
|
95
134
|
};
|
|
96
135
|
|
|
97
|
-
declare type Renderable = React$1.ReactNode | JSX.Element;
|
|
98
|
-
|
|
99
|
-
declare type MenuIconProps = {
|
|
100
|
-
lineWidth?: number;
|
|
101
|
-
lineStyle?: React$1.CSSProperties;
|
|
102
|
-
style?: React$1.CSSProperties;
|
|
103
|
-
className?: string;
|
|
104
|
-
domProps?: React$1.HTMLAttributes<HTMLDivElement>;
|
|
105
|
-
reserveSpaceWhenHidden?: boolean;
|
|
106
|
-
menuVisible?: boolean;
|
|
107
|
-
children?: React$1.ReactNode;
|
|
108
|
-
};
|
|
109
|
-
declare function MenuIcon(props: MenuIconProps): React$1.JSX.Element;
|
|
110
|
-
|
|
111
|
-
declare function useInfiniteHeaderCell<T>(): {
|
|
112
|
-
dragging: boolean;
|
|
113
|
-
column: InfiniteTableComputedColumn<T>;
|
|
114
|
-
columnsMap: Map<string, InfiniteTableComputedColumn<T>>;
|
|
115
|
-
columnSortInfo: DataSourceSingleSortInfo<T> | null;
|
|
116
|
-
columnFilterValue: DataSourceFilterValueItem<T> | null;
|
|
117
|
-
selectionMode: DataSourcePropSelectionMode;
|
|
118
|
-
allRowsSelected: boolean;
|
|
119
|
-
someRowsSelected: boolean;
|
|
120
|
-
filtered: boolean;
|
|
121
|
-
api: InfiniteTableApi<T>;
|
|
122
|
-
columnApi: InfiniteTableColumnApi<T>;
|
|
123
|
-
renderBag: {
|
|
124
|
-
all?: Renderable;
|
|
125
|
-
header: Renderable;
|
|
126
|
-
sortIcon?: Renderable;
|
|
127
|
-
menuIcon?: Renderable;
|
|
128
|
-
menuIconProps?: MenuIconProps | undefined;
|
|
129
|
-
filterIcon?: Renderable;
|
|
130
|
-
selectionCheckBox?: Renderable;
|
|
131
|
-
};
|
|
132
|
-
} & {
|
|
133
|
-
domRef: ((instance: HTMLElement | null) => void) | undefined;
|
|
134
|
-
insideColumnMenu: false;
|
|
135
|
-
} & {
|
|
136
|
-
domRef: ((instance: HTMLElement | null) => void) | undefined;
|
|
137
|
-
insideColumnMenu: false;
|
|
138
|
-
};
|
|
139
|
-
|
|
140
|
-
declare function useInfiniteColumnCell<T>(): InfiniteTableColumnCellContextType<T, InfiniteTableComputedColumn<T>>;
|
|
141
|
-
declare function useInfiniteColumnEditor<T>(): InfiniteColumnEditorContextType<T>;
|
|
142
|
-
|
|
143
|
-
declare function useInfiniteColumnFilterEditor<T>(): {
|
|
144
|
-
api: InfiniteTableApi<T>;
|
|
145
|
-
column: InfiniteTableComputedColumn<T>;
|
|
146
|
-
columnFilterValue: DataSourceFilterValueItem<any> | null;
|
|
147
|
-
columnApi: InfiniteTableColumnApi<T>;
|
|
148
|
-
operatorName: string | undefined;
|
|
149
|
-
operator: DataSourceFilterOperator<any> | undefined;
|
|
150
|
-
value: any;
|
|
151
|
-
disabled: boolean | undefined;
|
|
152
|
-
filterType: DataSourceFilterType<any>;
|
|
153
|
-
filterTypes: DataSourcePropFilterTypes<any>;
|
|
154
|
-
filterTypeKey: string;
|
|
155
|
-
filtered: boolean;
|
|
156
|
-
setValue: (filterValue: any) => void;
|
|
157
|
-
clearValue: () => void;
|
|
158
|
-
removeColumnFilter: () => void;
|
|
159
|
-
ariaLabel: string;
|
|
160
|
-
className: string;
|
|
161
|
-
};
|
|
162
|
-
|
|
163
|
-
declare type HotKeyEventDescriptor = {
|
|
164
|
-
key: KeyboardEvent['key'];
|
|
165
|
-
metaKey: KeyboardEvent['metaKey'];
|
|
166
|
-
altKey: KeyboardEvent['altKey'];
|
|
167
|
-
ctrlKey: KeyboardEvent['ctrlKey'];
|
|
168
|
-
shiftKey: KeyboardEvent['shiftKey'];
|
|
169
|
-
};
|
|
170
|
-
declare function eventMatchesKeyboardShortcut(event: HotKeyEventDescriptor, keyDescriptors: string | string[]): boolean;
|
|
171
|
-
|
|
172
|
-
declare function HScrollSyncContent(props: HTMLAttributes<HTMLDivElement> & {
|
|
173
|
-
width?: 'viewport' | 'column';
|
|
174
|
-
maxWidth?: 'viewport' | 'column';
|
|
175
|
-
minWidth?: 'viewport' | 'column';
|
|
176
|
-
scrollable?: boolean;
|
|
177
|
-
}): React$1.JSX.Element;
|
|
178
|
-
|
|
179
|
-
interface ScrollPosition {
|
|
180
|
-
scrollTop: number;
|
|
181
|
-
scrollLeft: number;
|
|
182
|
-
}
|
|
183
|
-
declare type OnScrollFn = (scrollPosition: ScrollPosition) => void;
|
|
184
|
-
|
|
185
|
-
declare function useGridScroll(onScroll: (scrollPosition: ScrollPosition) => void, deps: any[]): void;
|
|
186
|
-
|
|
187
|
-
declare function useVisibleColumnSizes(): {
|
|
188
|
-
id: string;
|
|
189
|
-
width: number;
|
|
190
|
-
cssVarForWidth: string;
|
|
191
|
-
offset: number;
|
|
192
|
-
cssVarForOffset: string;
|
|
193
|
-
pinned: InfiniteTableColumnPinnedValues;
|
|
194
|
-
}[];
|
|
195
|
-
|
|
196
|
-
declare const InfiniteTableClassName: string;
|
|
197
|
-
declare const InfiniteTableComponent: React$1.MemoExoticComponent<(<T>() => React$1.JSX.Element)>;
|
|
198
|
-
declare type InfiniteTableComponent = {
|
|
199
|
-
<T>(props: InfiniteTableProps<T>): React$1.JSX.Element;
|
|
200
|
-
licenseKey?: string;
|
|
201
|
-
Header: () => React$1.JSX.Element | null;
|
|
202
|
-
Body: () => React$1.JSX.Element | null;
|
|
203
|
-
Footer: () => React$1.JSX.Element | null;
|
|
204
|
-
HScrollSyncContent: typeof HScrollSyncContent;
|
|
205
|
-
};
|
|
206
|
-
declare const InfiniteTable: InfiniteTableComponent;
|
|
207
|
-
|
|
208
|
-
interface Size {
|
|
209
|
-
width: number;
|
|
210
|
-
height: number;
|
|
211
|
-
}
|
|
212
|
-
|
|
213
136
|
declare type InfiniteTableBaseCellProps<T> = {
|
|
214
137
|
column: InfiniteTableComputedColumn<T>;
|
|
215
138
|
align?: InfiniteTableColumnAlignValues;
|
|
@@ -281,6 +204,18 @@ declare type Prettify<T> = {
|
|
|
281
204
|
[K in keyof T]: T[K];
|
|
282
205
|
} & {};
|
|
283
206
|
|
|
207
|
+
declare type MenuIconProps = {
|
|
208
|
+
lineWidth?: number;
|
|
209
|
+
lineStyle?: React$1.CSSProperties;
|
|
210
|
+
style?: React$1.CSSProperties;
|
|
211
|
+
className?: string;
|
|
212
|
+
domProps?: React$1.HTMLAttributes<HTMLDivElement>;
|
|
213
|
+
reserveSpaceWhenHidden?: boolean;
|
|
214
|
+
menuVisible?: boolean;
|
|
215
|
+
children?: React$1.ReactNode;
|
|
216
|
+
};
|
|
217
|
+
declare function MenuIcon(props: MenuIconProps): React$1.JSX.Element;
|
|
218
|
+
|
|
284
219
|
declare type NonUndefined<T> = T extends undefined ? never : T;
|
|
285
220
|
|
|
286
221
|
declare type InfiniteTableToggleGroupRowFn = (groupKeys: any[]) => void;
|
|
@@ -554,16 +489,6 @@ declare type InfiniteTableComputedColumnBase<T> = {
|
|
|
554
489
|
declare type InfiniteTableComputedColumn<T> = InfiniteTableColumn<T> & InfiniteTableComputedColumnBase<T> & Partial<InfiniteTablePivotFinalColumn<T>> & Partial<InfiniteTableGeneratedGroupColumn<T>>;
|
|
555
490
|
declare type InfiniteTableComputedPivotFinalColumn<T> = InfiniteTableComputedColumn<T> & InfiniteTablePivotFinalColumn<T>;
|
|
556
491
|
|
|
557
|
-
interface LogFn {
|
|
558
|
-
(...args: any[]): void;
|
|
559
|
-
extend: (channelName: string) => LogFn;
|
|
560
|
-
}
|
|
561
|
-
declare class Logger {
|
|
562
|
-
debug: LogFn;
|
|
563
|
-
error: LogFn;
|
|
564
|
-
constructor(channelName: string);
|
|
565
|
-
}
|
|
566
|
-
|
|
567
492
|
declare type VoidFn = () => void;
|
|
568
493
|
|
|
569
494
|
declare type FixedPosition = false | 'start' | 'end';
|
|
@@ -1090,30 +1015,6 @@ declare type PointCoords = {
|
|
|
1090
1015
|
left: number;
|
|
1091
1016
|
};
|
|
1092
1017
|
|
|
1093
|
-
declare type ComponentStateContext<T_STATE, T_ACTIONS> = {
|
|
1094
|
-
getComponentState: () => T_STATE;
|
|
1095
|
-
componentState: T_STATE;
|
|
1096
|
-
componentActions: T_ACTIONS;
|
|
1097
|
-
assignState: (state: Partial<T_STATE>) => void;
|
|
1098
|
-
replaceState: (state: T_STATE) => void;
|
|
1099
|
-
};
|
|
1100
|
-
declare type ComponentStateGeneratedActions<T_STATE> = {
|
|
1101
|
-
[k in keyof T_STATE]: T_STATE[k] | React.SetStateAction<T_STATE[k]>;
|
|
1102
|
-
};
|
|
1103
|
-
declare type ComponentInterceptedActions<T_STATE> = {
|
|
1104
|
-
[k in keyof T_STATE]?: (value: T_STATE[k], { actions, state, }: {
|
|
1105
|
-
actions: ComponentStateGeneratedActions<T_STATE>;
|
|
1106
|
-
state: T_STATE;
|
|
1107
|
-
}) => void | boolean;
|
|
1108
|
-
};
|
|
1109
|
-
declare type ComponentMappedCallbacks<T_STATE> = {
|
|
1110
|
-
[k in keyof T_STATE]: (value: T_STATE[k], state: T_STATE) => {
|
|
1111
|
-
callbackName: string;
|
|
1112
|
-
callbackParams: any[];
|
|
1113
|
-
};
|
|
1114
|
-
};
|
|
1115
|
-
declare type ComponentStateActions<T_STATE> = ComponentStateGeneratedActions<T_STATE>;
|
|
1116
|
-
|
|
1117
1018
|
declare type ForwardPropsToStateFnResult<TYPE_PROPS, TYPE_RESULT, COMPONENT_SETUP_STATE> = {
|
|
1118
1019
|
[propName in keyof TYPE_PROPS & keyof TYPE_RESULT]: 1 | ((value: TYPE_PROPS[propName], setupState: COMPONENT_SETUP_STATE) => TYPE_RESULT[propName]);
|
|
1119
1020
|
};
|
|
@@ -1153,10 +1054,22 @@ declare type ComponentStateRootConfig<T_PROPS, COMPONENT_MAPPED_STATE, COMPONENT
|
|
|
1153
1054
|
cleanup?: (state: COMPONENT_MAPPED_STATE & COMPONENT_SETUP_STATE & COMPONENT_DERIVED_STATE) => void;
|
|
1154
1055
|
onControlledPropertyChange?: (name: string, newValue: any, oldValue: any) => void | ((value: any, oldValue: any) => any);
|
|
1155
1056
|
};
|
|
1156
|
-
declare function
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
|
|
1057
|
+
declare function buildManagedComponent<T_PROPS, COMPONENT_MAPPED_STATE extends object, COMPONENT_SETUP_STATE extends object = {}, COMPONENT_DERIVED_STATE extends object = {}, T_ACTIONS = {}, T_PARENT_STATE = {}>(config: ComponentStateRootConfig<T_PROPS, COMPONENT_MAPPED_STATE, COMPONENT_SETUP_STATE, COMPONENT_DERIVED_STATE, T_ACTIONS, T_PARENT_STATE>): {
|
|
1058
|
+
ManagedComponentContextProvider: React$1.NamedExoticComponent<T_PROPS & {
|
|
1059
|
+
children: React$1.ReactNode;
|
|
1060
|
+
}>;
|
|
1061
|
+
useManagedComponent: (props: T_PROPS) => {
|
|
1062
|
+
contextValue: {
|
|
1063
|
+
componentState: COMPONENT_MAPPED_STATE & COMPONENT_DERIVED_STATE & COMPONENT_SETUP_STATE;
|
|
1064
|
+
componentActions: ComponentStateGeneratedActions<COMPONENT_MAPPED_STATE & COMPONENT_DERIVED_STATE & COMPONENT_SETUP_STATE>;
|
|
1065
|
+
getComponentState: () => COMPONENT_MAPPED_STATE & COMPONENT_DERIVED_STATE & COMPONENT_SETUP_STATE;
|
|
1066
|
+
replaceState: (newState: COMPONENT_MAPPED_STATE & COMPONENT_DERIVED_STATE & COMPONENT_SETUP_STATE) => void;
|
|
1067
|
+
assignState: (newState: Partial<COMPONENT_MAPPED_STATE & COMPONENT_DERIVED_STATE & COMPONENT_SETUP_STATE>) => void;
|
|
1068
|
+
};
|
|
1069
|
+
ContextComponent: React$1.Context<ManagedComponentStateContextValue<COMPONENT_MAPPED_STATE & COMPONENT_DERIVED_STATE & COMPONENT_SETUP_STATE, ComponentStateGeneratedActions<COMPONENT_MAPPED_STATE & COMPONENT_DERIVED_STATE & COMPONENT_SETUP_STATE>>>;
|
|
1070
|
+
};
|
|
1071
|
+
};
|
|
1072
|
+
declare function useManagedComponentState<COMPONENT_STATE>(): ManagedComponentStateContextValue<COMPONENT_STATE, ComponentStateGeneratedActions<COMPONENT_STATE>>;
|
|
1160
1073
|
|
|
1161
1074
|
declare type DataSourceStateRestoreForDetail<T> = {
|
|
1162
1075
|
originalDataArray: DataSourceState<T>['originalDataArray'] | undefined;
|
|
@@ -1726,9 +1639,35 @@ declare type GroupBy<DataType, KeyType = any> = {
|
|
|
1726
1639
|
}
|
|
1727
1640
|
]>;
|
|
1728
1641
|
|
|
1729
|
-
declare type
|
|
1730
|
-
|
|
1731
|
-
|
|
1642
|
+
declare type SortDir = 1 | -1;
|
|
1643
|
+
declare type MultisortInfo<T> = {
|
|
1644
|
+
/**
|
|
1645
|
+
* The sorting direction
|
|
1646
|
+
*/
|
|
1647
|
+
dir: SortDir;
|
|
1648
|
+
/**
|
|
1649
|
+
* for now 'string' and 'number' are known types, meaning they have
|
|
1650
|
+
* sort functions already implemented
|
|
1651
|
+
*/
|
|
1652
|
+
type?: string | string[];
|
|
1653
|
+
fn?: (a: any, b: any) => number;
|
|
1654
|
+
/**
|
|
1655
|
+
* a property whose value to use for sorting on the array items
|
|
1656
|
+
*/
|
|
1657
|
+
field?: keyof T;
|
|
1658
|
+
/**
|
|
1659
|
+
* or a function to retrieve the item value to use for sorting
|
|
1660
|
+
*/
|
|
1661
|
+
valueGetter?: (item: T) => any;
|
|
1662
|
+
};
|
|
1663
|
+
declare type MultisortInfoAllowMultipleFields<T> = Omit<MultisortInfo<T>, 'field'> & {
|
|
1664
|
+
field?: keyof T | (keyof T | ((item: T) => any))[];
|
|
1665
|
+
};
|
|
1666
|
+
declare const multisort: {
|
|
1667
|
+
<T>(sortInfo: MultisortInfoAllowMultipleFields<T>[], array: T[], get?: ((item: any) => T) | undefined): T[];
|
|
1668
|
+
knownTypes: {
|
|
1669
|
+
[key: string]: (first: any, second: any) => number;
|
|
1670
|
+
};
|
|
1732
1671
|
};
|
|
1733
1672
|
|
|
1734
1673
|
declare type DataSourceMutation<T> = {
|
|
@@ -2052,7 +1991,7 @@ declare type DataSourcePropShouldReloadDataObject<T> = {
|
|
|
2052
1991
|
declare type DataSourcePropShouldReloadData<T> = DataSourcePropShouldReloadDataObject<T>;
|
|
2053
1992
|
declare type DataSourceProps<T> = {
|
|
2054
1993
|
debugId?: string;
|
|
2055
|
-
children
|
|
1994
|
+
children?: React$1.ReactNode | ((contextData: DataSourceState<T>) => React$1.ReactNode);
|
|
2056
1995
|
primaryKey: keyof T | ((data: T) => string);
|
|
2057
1996
|
/**
|
|
2058
1997
|
* @deprecated for now
|
|
@@ -2146,6 +2085,9 @@ declare type DataSourceProps<T> = {
|
|
|
2146
2085
|
} | {
|
|
2147
2086
|
selectionMode?: false;
|
|
2148
2087
|
});
|
|
2088
|
+
declare type DataSourcePropsWithChildren<T> = DataSourceProps<T> & {
|
|
2089
|
+
children: NonUndefined<DataSourceProps<T>['children']>;
|
|
2090
|
+
};
|
|
2149
2091
|
declare type DataSourcePropSortTypes = Record<string, (first: any, second: any) => number>;
|
|
2150
2092
|
declare type DataSourcePropFilterTypes<T> = Record<string, DataSourceFilterType<T>>;
|
|
2151
2093
|
declare type DataSourceFilterFunctionParam<T> = {
|
|
@@ -2252,11 +2194,2065 @@ interface DataSourceAction<T> {
|
|
|
2252
2194
|
payload: T;
|
|
2253
2195
|
}
|
|
2254
2196
|
|
|
2197
|
+
declare function useInfiniteHeaderCell<T>(): {
|
|
2198
|
+
dragging: boolean;
|
|
2199
|
+
column: InfiniteTableComputedColumn<T>;
|
|
2200
|
+
columnsMap: Map<string, InfiniteTableComputedColumn<T>>;
|
|
2201
|
+
columnSortInfo: DataSourceSingleSortInfo<T> | null;
|
|
2202
|
+
columnFilterValue: DataSourceFilterValueItem<T> | null;
|
|
2203
|
+
selectionMode: DataSourcePropSelectionMode;
|
|
2204
|
+
allRowsSelected: boolean;
|
|
2205
|
+
someRowsSelected: boolean;
|
|
2206
|
+
filtered: boolean;
|
|
2207
|
+
api: InfiniteTableApi<T>;
|
|
2208
|
+
columnApi: InfiniteTableColumnApi<T>;
|
|
2209
|
+
renderBag: {
|
|
2210
|
+
all?: Renderable;
|
|
2211
|
+
header: Renderable;
|
|
2212
|
+
sortIcon?: Renderable;
|
|
2213
|
+
menuIcon?: Renderable;
|
|
2214
|
+
menuIconProps?: MenuIconProps | undefined;
|
|
2215
|
+
filterIcon?: Renderable;
|
|
2216
|
+
selectionCheckBox?: Renderable;
|
|
2217
|
+
};
|
|
2218
|
+
} & {
|
|
2219
|
+
domRef: ((instance: HTMLElement | null) => void) | undefined;
|
|
2220
|
+
insideColumnMenu: false;
|
|
2221
|
+
} & {
|
|
2222
|
+
domRef: ((instance: HTMLElement | null) => void) | undefined;
|
|
2223
|
+
insideColumnMenu: false;
|
|
2224
|
+
};
|
|
2225
|
+
|
|
2226
|
+
declare function useInfiniteColumnCell<T>(): InfiniteTableColumnCellContextType<T, InfiniteTableComputedColumn<T>>;
|
|
2227
|
+
declare function useInfiniteColumnEditor<T>(): InfiniteColumnEditorContextType<T>;
|
|
2228
|
+
|
|
2229
|
+
declare function useInfiniteColumnFilterEditor<T>(): {
|
|
2230
|
+
api: InfiniteTableApi<T>;
|
|
2231
|
+
column: InfiniteTableComputedColumn<T>;
|
|
2232
|
+
columnFilterValue: DataSourceFilterValueItem<any> | null;
|
|
2233
|
+
columnApi: InfiniteTableColumnApi<T>;
|
|
2234
|
+
operatorName: string | undefined;
|
|
2235
|
+
operator: DataSourceFilterOperator<any> | undefined;
|
|
2236
|
+
value: any;
|
|
2237
|
+
disabled: boolean | undefined;
|
|
2238
|
+
filterType: DataSourceFilterType<any>;
|
|
2239
|
+
filterTypes: DataSourcePropFilterTypes<any>;
|
|
2240
|
+
filterTypeKey: string;
|
|
2241
|
+
filtered: boolean;
|
|
2242
|
+
setValue: (filterValue: any) => void;
|
|
2243
|
+
clearValue: () => void;
|
|
2244
|
+
removeColumnFilter: () => void;
|
|
2245
|
+
ariaLabel: string;
|
|
2246
|
+
className: string;
|
|
2247
|
+
};
|
|
2248
|
+
|
|
2249
|
+
declare type HotKeyEventDescriptor = {
|
|
2250
|
+
key: KeyboardEvent['key'];
|
|
2251
|
+
metaKey: KeyboardEvent['metaKey'];
|
|
2252
|
+
altKey: KeyboardEvent['altKey'];
|
|
2253
|
+
ctrlKey: KeyboardEvent['ctrlKey'];
|
|
2254
|
+
shiftKey: KeyboardEvent['shiftKey'];
|
|
2255
|
+
};
|
|
2256
|
+
declare function eventMatchesKeyboardShortcut(event: HotKeyEventDescriptor, keyDescriptors: string | string[]): boolean;
|
|
2257
|
+
|
|
2258
|
+
declare function HScrollSyncContent(props: HTMLAttributes<HTMLDivElement> & {
|
|
2259
|
+
width?: 'viewport' | 'column';
|
|
2260
|
+
maxWidth?: 'viewport' | 'column';
|
|
2261
|
+
minWidth?: 'viewport' | 'column';
|
|
2262
|
+
scrollable?: boolean;
|
|
2263
|
+
}): React$1.JSX.Element;
|
|
2264
|
+
|
|
2265
|
+
declare function useGridScroll(onScroll: (scrollPosition: ScrollPosition) => void, deps: any[]): void;
|
|
2266
|
+
|
|
2267
|
+
declare function useVisibleColumnSizes(): {
|
|
2268
|
+
id: string;
|
|
2269
|
+
width: number;
|
|
2270
|
+
cssVarForWidth: string;
|
|
2271
|
+
offset: number;
|
|
2272
|
+
cssVarForOffset: string;
|
|
2273
|
+
pinned: InfiniteTableColumnPinnedValues;
|
|
2274
|
+
}[];
|
|
2275
|
+
|
|
2276
|
+
declare const InfiniteTableClassName: string;
|
|
2277
|
+
declare const InfiniteTableComponent: React$1.MemoExoticComponent<(<T>() => React$1.JSX.Element)>;
|
|
2278
|
+
declare type InfiniteTableComponent = {
|
|
2279
|
+
<T>(props: InfiniteTableProps<T>): React$1.JSX.Element;
|
|
2280
|
+
licenseKey?: string;
|
|
2281
|
+
Header: () => React$1.JSX.Element | null;
|
|
2282
|
+
Body: () => React$1.JSX.Element | null;
|
|
2283
|
+
Footer: () => React$1.JSX.Element | null;
|
|
2284
|
+
HScrollSyncContent: typeof HScrollSyncContent;
|
|
2285
|
+
};
|
|
2286
|
+
declare const InfiniteTable: InfiniteTableComponent;
|
|
2287
|
+
|
|
2255
2288
|
declare const defaultFilterTypes: Record<string, DataSourceFilterType<any>>;
|
|
2256
2289
|
|
|
2257
|
-
declare function
|
|
2290
|
+
declare function useDataSourceState<T>(): DataSourceState<T>;
|
|
2258
2291
|
|
|
2259
|
-
declare
|
|
2292
|
+
declare const useManagedDataSource: (props: unknown) => {
|
|
2293
|
+
contextValue: {
|
|
2294
|
+
componentState: {
|
|
2295
|
+
indexer: Indexer<unknown, any>;
|
|
2296
|
+
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
|
|
2297
|
+
destroyedRef: React$1.MutableRefObject<boolean>;
|
|
2298
|
+
idToIndexMap: Map<any, number>;
|
|
2299
|
+
detailDataSourcesStateToRestore: Map<any, Partial<DataSourceStateRestoreForDetail<any>>>;
|
|
2300
|
+
stateReadyAsDetails: never;
|
|
2301
|
+
cache?: never;
|
|
2302
|
+
unfilteredCount: number;
|
|
2303
|
+
filteredCount: number;
|
|
2304
|
+
rowInfoReducerResults?: never;
|
|
2305
|
+
originalDataArrayChanged: never;
|
|
2306
|
+
originalDataArrayChangedInfo: {
|
|
2307
|
+
timestamp: number;
|
|
2308
|
+
mutations?: Map<string, DataSourceMutation<unknown>[]> | undefined;
|
|
2309
|
+
};
|
|
2310
|
+
lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
|
|
2311
|
+
pivotMappings?: never;
|
|
2312
|
+
propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "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>>;
|
|
2313
|
+
showSeparatePivotColumnForSingleAggregation: never;
|
|
2314
|
+
dataParams?: never;
|
|
2315
|
+
originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
|
|
2316
|
+
originalLazyGroupDataChangeDetect: never;
|
|
2317
|
+
scrollStopDelayUpdatedByTable: number;
|
|
2318
|
+
onCleanup: SubscriptionCallback<DataSourceState<unknown>>;
|
|
2319
|
+
notifyScrollbarsChange: SubscriptionCallback<Scrollbars>;
|
|
2320
|
+
notifyScrollStop: SubscriptionCallback<ScrollStopInfo>;
|
|
2321
|
+
notifyRenderRangeChange: SubscriptionCallback<RenderRange>;
|
|
2322
|
+
originalDataArray: unknown[];
|
|
2323
|
+
lastFilterDataArray?: never;
|
|
2324
|
+
lastSortDataArray?: never;
|
|
2325
|
+
lastGroupDataArray?: never;
|
|
2326
|
+
dataArray: InfiniteTableRowInfo<unknown>[];
|
|
2327
|
+
groupDeepMap?: never;
|
|
2328
|
+
groupRowsIndexesInDataArray?: never;
|
|
2329
|
+
reducerResults?: never;
|
|
2330
|
+
allRowsSelected: never;
|
|
2331
|
+
someRowsSelected: never;
|
|
2332
|
+
pivotTotalColumnPosition: never;
|
|
2333
|
+
pivotGrandTotalColumnPosition: never;
|
|
2334
|
+
cursorId: never;
|
|
2335
|
+
updatedAt: number;
|
|
2336
|
+
reducedAt: number;
|
|
2337
|
+
groupedAt: number;
|
|
2338
|
+
sortedAt: number;
|
|
2339
|
+
filteredAt: number;
|
|
2340
|
+
generateGroupRows: never;
|
|
2341
|
+
postFilterDataArray?: never;
|
|
2342
|
+
postSortDataArray?: never;
|
|
2343
|
+
postGroupDataArray?: never;
|
|
2344
|
+
pivotColumns?: never;
|
|
2345
|
+
pivotColumnGroups?: never;
|
|
2346
|
+
toPrimaryKey: (data: unknown) => any;
|
|
2347
|
+
operatorsByFilterType: Record<string, Record<string, DataSourceFilterOperator<unknown>>>;
|
|
2348
|
+
sortMode: never;
|
|
2349
|
+
filterMode: never;
|
|
2350
|
+
groupMode: never;
|
|
2351
|
+
pivotMode: never;
|
|
2352
|
+
shouldReloadData: Required<DataSourcePropShouldReloadData<unknown>>;
|
|
2353
|
+
groupRowsState: GroupRowsState<unknown>;
|
|
2354
|
+
multiSort: never;
|
|
2355
|
+
controlledSort: never;
|
|
2356
|
+
controlledFilter: never;
|
|
2357
|
+
livePaginationCursor?: never;
|
|
2358
|
+
lazyLoadBatchSize?: never;
|
|
2359
|
+
rowSelection: never;
|
|
2360
|
+
cellSelection: never;
|
|
2361
|
+
selectionMode: never;
|
|
2362
|
+
aggregationReducers?: never;
|
|
2363
|
+
livePagination: never;
|
|
2364
|
+
refetchKey: never;
|
|
2365
|
+
isRowSelected: never;
|
|
2366
|
+
debugId: never;
|
|
2367
|
+
onDataArrayChange: never;
|
|
2368
|
+
onDataMutations: never;
|
|
2369
|
+
onReady: never;
|
|
2370
|
+
rowInfoReducers: never;
|
|
2371
|
+
lazyLoad: never;
|
|
2372
|
+
useGroupKeysForMultiRowSelection: never;
|
|
2373
|
+
onDataParamsChange: never;
|
|
2374
|
+
data: DataSourceData<unknown> & unknown[] & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> & ((dataInfo: DataSourceDataParams<unknown>) => unknown[] | Promise<unknown[] | DataSourceRemoteData<unknown>>);
|
|
2375
|
+
sortFunction: never;
|
|
2376
|
+
filterFunction: never;
|
|
2377
|
+
filterValue: never;
|
|
2378
|
+
filterTypes: DataSourcePropFilterTypes<unknown>;
|
|
2379
|
+
primaryKey: (data: unknown) => string;
|
|
2380
|
+
filterDelay: number;
|
|
2381
|
+
groupBy: DataSourcePropGroupBy<unknown>;
|
|
2382
|
+
pivotBy: never;
|
|
2383
|
+
loading: never;
|
|
2384
|
+
sortTypes: DataSourcePropSortTypes;
|
|
2385
|
+
collapseGroupRowsOnDataFunctionChange: never;
|
|
2386
|
+
sortInfo: never;
|
|
2387
|
+
} & {
|
|
2388
|
+
indexer: Indexer<unknown, any>;
|
|
2389
|
+
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
|
|
2390
|
+
destroyedRef: React$1.MutableRefObject<boolean>;
|
|
2391
|
+
idToIndexMap: Map<any, number>;
|
|
2392
|
+
detailDataSourcesStateToRestore: Map<any, Partial<DataSourceStateRestoreForDetail<any>>>;
|
|
2393
|
+
stateReadyAsDetails: never;
|
|
2394
|
+
cache?: never;
|
|
2395
|
+
unfilteredCount: number;
|
|
2396
|
+
filteredCount: number;
|
|
2397
|
+
rowInfoReducerResults?: never;
|
|
2398
|
+
originalDataArrayChanged: never;
|
|
2399
|
+
originalDataArrayChangedInfo: {
|
|
2400
|
+
timestamp: number;
|
|
2401
|
+
mutations?: Map<string, DataSourceMutation<unknown>[]> | undefined;
|
|
2402
|
+
};
|
|
2403
|
+
lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
|
|
2404
|
+
pivotMappings?: never;
|
|
2405
|
+
propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "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>>;
|
|
2406
|
+
showSeparatePivotColumnForSingleAggregation: never;
|
|
2407
|
+
dataParams?: never;
|
|
2408
|
+
originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
|
|
2409
|
+
originalLazyGroupDataChangeDetect: never;
|
|
2410
|
+
scrollStopDelayUpdatedByTable: number;
|
|
2411
|
+
onCleanup: SubscriptionCallback<DataSourceState<unknown>>;
|
|
2412
|
+
notifyScrollbarsChange: SubscriptionCallback<Scrollbars>;
|
|
2413
|
+
notifyScrollStop: SubscriptionCallback<ScrollStopInfo>;
|
|
2414
|
+
notifyRenderRangeChange: SubscriptionCallback<RenderRange>;
|
|
2415
|
+
originalDataArray: unknown[];
|
|
2416
|
+
lastFilterDataArray?: never;
|
|
2417
|
+
lastSortDataArray?: never;
|
|
2418
|
+
lastGroupDataArray?: never;
|
|
2419
|
+
dataArray: InfiniteTableRowInfo<unknown>[];
|
|
2420
|
+
groupDeepMap?: never;
|
|
2421
|
+
groupRowsIndexesInDataArray?: never;
|
|
2422
|
+
reducerResults?: never;
|
|
2423
|
+
allRowsSelected: never;
|
|
2424
|
+
someRowsSelected: never;
|
|
2425
|
+
pivotTotalColumnPosition: never;
|
|
2426
|
+
pivotGrandTotalColumnPosition: never;
|
|
2427
|
+
cursorId: never;
|
|
2428
|
+
updatedAt: number;
|
|
2429
|
+
reducedAt: number;
|
|
2430
|
+
groupedAt: number;
|
|
2431
|
+
sortedAt: number;
|
|
2432
|
+
filteredAt: number;
|
|
2433
|
+
generateGroupRows: never;
|
|
2434
|
+
postFilterDataArray?: never;
|
|
2435
|
+
postSortDataArray?: never;
|
|
2436
|
+
postGroupDataArray?: never;
|
|
2437
|
+
pivotColumns?: never;
|
|
2438
|
+
pivotColumnGroups?: never;
|
|
2439
|
+
toPrimaryKey: (data: unknown) => any;
|
|
2440
|
+
operatorsByFilterType: Record<string, Record<string, DataSourceFilterOperator<unknown>>>;
|
|
2441
|
+
sortMode: never;
|
|
2442
|
+
filterMode: never;
|
|
2443
|
+
groupMode: never;
|
|
2444
|
+
pivotMode: never;
|
|
2445
|
+
shouldReloadData: Required<DataSourcePropShouldReloadData<unknown>>;
|
|
2446
|
+
groupRowsState: GroupRowsState<unknown>;
|
|
2447
|
+
multiSort: never;
|
|
2448
|
+
controlledSort: never;
|
|
2449
|
+
controlledFilter: never;
|
|
2450
|
+
livePaginationCursor?: never;
|
|
2451
|
+
lazyLoadBatchSize?: never;
|
|
2452
|
+
rowSelection: never;
|
|
2453
|
+
cellSelection: never;
|
|
2454
|
+
selectionMode: never;
|
|
2455
|
+
aggregationReducers?: never;
|
|
2456
|
+
livePagination: never;
|
|
2457
|
+
refetchKey: never;
|
|
2458
|
+
isRowSelected: never;
|
|
2459
|
+
debugId: never;
|
|
2460
|
+
onDataArrayChange: never;
|
|
2461
|
+
onDataMutations: never;
|
|
2462
|
+
onReady: never;
|
|
2463
|
+
rowInfoReducers: never;
|
|
2464
|
+
lazyLoad: never;
|
|
2465
|
+
useGroupKeysForMultiRowSelection: never;
|
|
2466
|
+
onDataParamsChange: never;
|
|
2467
|
+
data: DataSourceData<unknown> & unknown[] & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> & ((dataInfo: DataSourceDataParams<unknown>) => unknown[] | Promise<unknown[] | DataSourceRemoteData<unknown>>);
|
|
2468
|
+
sortFunction: never;
|
|
2469
|
+
filterFunction: never;
|
|
2470
|
+
filterValue: never;
|
|
2471
|
+
filterTypes: DataSourcePropFilterTypes<unknown>;
|
|
2472
|
+
primaryKey: (data: unknown) => string;
|
|
2473
|
+
filterDelay: number;
|
|
2474
|
+
groupBy: DataSourcePropGroupBy<unknown>;
|
|
2475
|
+
pivotBy: never;
|
|
2476
|
+
loading: never;
|
|
2477
|
+
sortTypes: DataSourcePropSortTypes;
|
|
2478
|
+
collapseGroupRowsOnDataFunctionChange: never;
|
|
2479
|
+
sortInfo: never;
|
|
2480
|
+
} & {
|
|
2481
|
+
indexer: Indexer<unknown, any>;
|
|
2482
|
+
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
|
|
2483
|
+
destroyedRef: React$1.MutableRefObject<boolean>;
|
|
2484
|
+
idToIndexMap: Map<any, number>;
|
|
2485
|
+
detailDataSourcesStateToRestore: Map<any, Partial<DataSourceStateRestoreForDetail<any>>>;
|
|
2486
|
+
stateReadyAsDetails: never;
|
|
2487
|
+
cache?: never;
|
|
2488
|
+
unfilteredCount: number;
|
|
2489
|
+
filteredCount: number;
|
|
2490
|
+
rowInfoReducerResults?: never;
|
|
2491
|
+
originalDataArrayChanged: never;
|
|
2492
|
+
originalDataArrayChangedInfo: {
|
|
2493
|
+
timestamp: number;
|
|
2494
|
+
mutations?: Map<string, DataSourceMutation<unknown>[]> | undefined;
|
|
2495
|
+
};
|
|
2496
|
+
lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
|
|
2497
|
+
pivotMappings?: never;
|
|
2498
|
+
propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "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>>;
|
|
2499
|
+
showSeparatePivotColumnForSingleAggregation: never;
|
|
2500
|
+
dataParams?: never;
|
|
2501
|
+
originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
|
|
2502
|
+
originalLazyGroupDataChangeDetect: never;
|
|
2503
|
+
scrollStopDelayUpdatedByTable: number;
|
|
2504
|
+
onCleanup: SubscriptionCallback<DataSourceState<unknown>>;
|
|
2505
|
+
notifyScrollbarsChange: SubscriptionCallback<Scrollbars>;
|
|
2506
|
+
notifyScrollStop: SubscriptionCallback<ScrollStopInfo>;
|
|
2507
|
+
notifyRenderRangeChange: SubscriptionCallback<RenderRange>;
|
|
2508
|
+
originalDataArray: unknown[];
|
|
2509
|
+
lastFilterDataArray?: never;
|
|
2510
|
+
lastSortDataArray?: never;
|
|
2511
|
+
lastGroupDataArray?: never;
|
|
2512
|
+
dataArray: InfiniteTableRowInfo<unknown>[];
|
|
2513
|
+
groupDeepMap?: never;
|
|
2514
|
+
groupRowsIndexesInDataArray?: never;
|
|
2515
|
+
reducerResults?: never;
|
|
2516
|
+
allRowsSelected: never;
|
|
2517
|
+
someRowsSelected: never;
|
|
2518
|
+
pivotTotalColumnPosition: never;
|
|
2519
|
+
pivotGrandTotalColumnPosition: never;
|
|
2520
|
+
cursorId: never;
|
|
2521
|
+
updatedAt: number;
|
|
2522
|
+
reducedAt: number;
|
|
2523
|
+
groupedAt: number;
|
|
2524
|
+
sortedAt: number;
|
|
2525
|
+
filteredAt: number;
|
|
2526
|
+
generateGroupRows: never;
|
|
2527
|
+
postFilterDataArray?: never;
|
|
2528
|
+
postSortDataArray?: never;
|
|
2529
|
+
postGroupDataArray?: never;
|
|
2530
|
+
pivotColumns?: never;
|
|
2531
|
+
pivotColumnGroups?: never;
|
|
2532
|
+
toPrimaryKey: (data: unknown) => any;
|
|
2533
|
+
operatorsByFilterType: Record<string, Record<string, DataSourceFilterOperator<unknown>>>;
|
|
2534
|
+
sortMode: never;
|
|
2535
|
+
filterMode: never;
|
|
2536
|
+
groupMode: never;
|
|
2537
|
+
pivotMode: never;
|
|
2538
|
+
shouldReloadData: Required<DataSourcePropShouldReloadData<unknown>>;
|
|
2539
|
+
groupRowsState: GroupRowsState<unknown>;
|
|
2540
|
+
multiSort: never;
|
|
2541
|
+
controlledSort: never;
|
|
2542
|
+
controlledFilter: never;
|
|
2543
|
+
livePaginationCursor?: never;
|
|
2544
|
+
lazyLoadBatchSize?: never;
|
|
2545
|
+
rowSelection: never;
|
|
2546
|
+
cellSelection: never;
|
|
2547
|
+
selectionMode: never;
|
|
2548
|
+
aggregationReducers?: never;
|
|
2549
|
+
livePagination: never;
|
|
2550
|
+
refetchKey: never;
|
|
2551
|
+
isRowSelected: never;
|
|
2552
|
+
debugId: never;
|
|
2553
|
+
onDataArrayChange: never;
|
|
2554
|
+
onDataMutations: never;
|
|
2555
|
+
onReady: never;
|
|
2556
|
+
rowInfoReducers: never;
|
|
2557
|
+
lazyLoad: never;
|
|
2558
|
+
useGroupKeysForMultiRowSelection: never;
|
|
2559
|
+
onDataParamsChange: never;
|
|
2560
|
+
data: DataSourceData<unknown> & unknown[] & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> & ((dataInfo: DataSourceDataParams<unknown>) => unknown[] | Promise<unknown[] | DataSourceRemoteData<unknown>>);
|
|
2561
|
+
sortFunction: never;
|
|
2562
|
+
filterFunction: never;
|
|
2563
|
+
filterValue: never;
|
|
2564
|
+
filterTypes: DataSourcePropFilterTypes<unknown>;
|
|
2565
|
+
primaryKey: (data: unknown) => string;
|
|
2566
|
+
filterDelay: number;
|
|
2567
|
+
groupBy: DataSourcePropGroupBy<unknown>;
|
|
2568
|
+
pivotBy: never;
|
|
2569
|
+
loading: never;
|
|
2570
|
+
sortTypes: DataSourcePropSortTypes;
|
|
2571
|
+
collapseGroupRowsOnDataFunctionChange: never;
|
|
2572
|
+
sortInfo: never;
|
|
2573
|
+
};
|
|
2574
|
+
componentActions: ComponentStateGeneratedActions<{
|
|
2575
|
+
indexer: Indexer<unknown, any>;
|
|
2576
|
+
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
|
|
2577
|
+
destroyedRef: React$1.MutableRefObject<boolean>;
|
|
2578
|
+
idToIndexMap: Map<any, number>;
|
|
2579
|
+
detailDataSourcesStateToRestore: Map<any, Partial<DataSourceStateRestoreForDetail<any>>>;
|
|
2580
|
+
stateReadyAsDetails: never;
|
|
2581
|
+
cache?: never;
|
|
2582
|
+
unfilteredCount: number;
|
|
2583
|
+
filteredCount: number;
|
|
2584
|
+
rowInfoReducerResults?: never;
|
|
2585
|
+
originalDataArrayChanged: never;
|
|
2586
|
+
originalDataArrayChangedInfo: {
|
|
2587
|
+
timestamp: number;
|
|
2588
|
+
mutations?: Map<string, DataSourceMutation<unknown>[]> | undefined;
|
|
2589
|
+
};
|
|
2590
|
+
lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
|
|
2591
|
+
pivotMappings?: never;
|
|
2592
|
+
propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "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>>;
|
|
2593
|
+
showSeparatePivotColumnForSingleAggregation: never;
|
|
2594
|
+
dataParams?: never;
|
|
2595
|
+
originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
|
|
2596
|
+
originalLazyGroupDataChangeDetect: never;
|
|
2597
|
+
scrollStopDelayUpdatedByTable: number;
|
|
2598
|
+
onCleanup: SubscriptionCallback<DataSourceState<unknown>>;
|
|
2599
|
+
notifyScrollbarsChange: SubscriptionCallback<Scrollbars>;
|
|
2600
|
+
notifyScrollStop: SubscriptionCallback<ScrollStopInfo>;
|
|
2601
|
+
notifyRenderRangeChange: SubscriptionCallback<RenderRange>;
|
|
2602
|
+
originalDataArray: unknown[];
|
|
2603
|
+
lastFilterDataArray?: never;
|
|
2604
|
+
lastSortDataArray?: never;
|
|
2605
|
+
lastGroupDataArray?: never;
|
|
2606
|
+
dataArray: InfiniteTableRowInfo<unknown>[];
|
|
2607
|
+
groupDeepMap?: never;
|
|
2608
|
+
groupRowsIndexesInDataArray?: never;
|
|
2609
|
+
reducerResults?: never;
|
|
2610
|
+
allRowsSelected: never;
|
|
2611
|
+
someRowsSelected: never;
|
|
2612
|
+
pivotTotalColumnPosition: never;
|
|
2613
|
+
pivotGrandTotalColumnPosition: never;
|
|
2614
|
+
cursorId: never;
|
|
2615
|
+
updatedAt: number;
|
|
2616
|
+
reducedAt: number;
|
|
2617
|
+
groupedAt: number;
|
|
2618
|
+
sortedAt: number;
|
|
2619
|
+
filteredAt: number;
|
|
2620
|
+
generateGroupRows: never;
|
|
2621
|
+
postFilterDataArray?: never;
|
|
2622
|
+
postSortDataArray?: never;
|
|
2623
|
+
postGroupDataArray?: never;
|
|
2624
|
+
pivotColumns?: never;
|
|
2625
|
+
pivotColumnGroups?: never;
|
|
2626
|
+
toPrimaryKey: (data: unknown) => any;
|
|
2627
|
+
operatorsByFilterType: Record<string, Record<string, DataSourceFilterOperator<unknown>>>;
|
|
2628
|
+
sortMode: never;
|
|
2629
|
+
filterMode: never;
|
|
2630
|
+
groupMode: never;
|
|
2631
|
+
pivotMode: never;
|
|
2632
|
+
shouldReloadData: Required<DataSourcePropShouldReloadData<unknown>>;
|
|
2633
|
+
groupRowsState: GroupRowsState<unknown>;
|
|
2634
|
+
multiSort: never;
|
|
2635
|
+
controlledSort: never;
|
|
2636
|
+
controlledFilter: never;
|
|
2637
|
+
livePaginationCursor?: never;
|
|
2638
|
+
lazyLoadBatchSize?: never;
|
|
2639
|
+
rowSelection: never;
|
|
2640
|
+
cellSelection: never;
|
|
2641
|
+
selectionMode: never;
|
|
2642
|
+
aggregationReducers?: never;
|
|
2643
|
+
livePagination: never;
|
|
2644
|
+
refetchKey: never;
|
|
2645
|
+
isRowSelected: never;
|
|
2646
|
+
debugId: never;
|
|
2647
|
+
onDataArrayChange: never;
|
|
2648
|
+
onDataMutations: never;
|
|
2649
|
+
onReady: never;
|
|
2650
|
+
rowInfoReducers: never;
|
|
2651
|
+
lazyLoad: never;
|
|
2652
|
+
useGroupKeysForMultiRowSelection: never;
|
|
2653
|
+
onDataParamsChange: never;
|
|
2654
|
+
data: DataSourceData<unknown> & unknown[] & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> & ((dataInfo: DataSourceDataParams<unknown>) => unknown[] | Promise<unknown[] | DataSourceRemoteData<unknown>>);
|
|
2655
|
+
sortFunction: never;
|
|
2656
|
+
filterFunction: never;
|
|
2657
|
+
filterValue: never;
|
|
2658
|
+
filterTypes: DataSourcePropFilterTypes<unknown>;
|
|
2659
|
+
primaryKey: (data: unknown) => string;
|
|
2660
|
+
filterDelay: number;
|
|
2661
|
+
groupBy: DataSourcePropGroupBy<unknown>;
|
|
2662
|
+
pivotBy: never;
|
|
2663
|
+
loading: never;
|
|
2664
|
+
sortTypes: DataSourcePropSortTypes;
|
|
2665
|
+
collapseGroupRowsOnDataFunctionChange: never;
|
|
2666
|
+
sortInfo: never;
|
|
2667
|
+
} & {
|
|
2668
|
+
indexer: Indexer<unknown, any>;
|
|
2669
|
+
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
|
|
2670
|
+
destroyedRef: React$1.MutableRefObject<boolean>;
|
|
2671
|
+
idToIndexMap: Map<any, number>;
|
|
2672
|
+
detailDataSourcesStateToRestore: Map<any, Partial<DataSourceStateRestoreForDetail<any>>>;
|
|
2673
|
+
stateReadyAsDetails: never;
|
|
2674
|
+
cache?: never;
|
|
2675
|
+
unfilteredCount: number;
|
|
2676
|
+
filteredCount: number;
|
|
2677
|
+
rowInfoReducerResults?: never;
|
|
2678
|
+
originalDataArrayChanged: never;
|
|
2679
|
+
originalDataArrayChangedInfo: {
|
|
2680
|
+
timestamp: number;
|
|
2681
|
+
mutations?: Map<string, DataSourceMutation<unknown>[]> | undefined;
|
|
2682
|
+
};
|
|
2683
|
+
lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
|
|
2684
|
+
pivotMappings?: never;
|
|
2685
|
+
propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "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>>;
|
|
2686
|
+
showSeparatePivotColumnForSingleAggregation: never;
|
|
2687
|
+
dataParams?: never;
|
|
2688
|
+
originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
|
|
2689
|
+
originalLazyGroupDataChangeDetect: never;
|
|
2690
|
+
scrollStopDelayUpdatedByTable: number;
|
|
2691
|
+
onCleanup: SubscriptionCallback<DataSourceState<unknown>>;
|
|
2692
|
+
notifyScrollbarsChange: SubscriptionCallback<Scrollbars>;
|
|
2693
|
+
notifyScrollStop: SubscriptionCallback<ScrollStopInfo>;
|
|
2694
|
+
notifyRenderRangeChange: SubscriptionCallback<RenderRange>;
|
|
2695
|
+
originalDataArray: unknown[];
|
|
2696
|
+
lastFilterDataArray?: never;
|
|
2697
|
+
lastSortDataArray?: never;
|
|
2698
|
+
lastGroupDataArray?: never;
|
|
2699
|
+
dataArray: InfiniteTableRowInfo<unknown>[];
|
|
2700
|
+
groupDeepMap?: never;
|
|
2701
|
+
groupRowsIndexesInDataArray?: never;
|
|
2702
|
+
reducerResults?: never;
|
|
2703
|
+
allRowsSelected: never;
|
|
2704
|
+
someRowsSelected: never;
|
|
2705
|
+
pivotTotalColumnPosition: never;
|
|
2706
|
+
pivotGrandTotalColumnPosition: never;
|
|
2707
|
+
cursorId: never;
|
|
2708
|
+
updatedAt: number;
|
|
2709
|
+
reducedAt: number;
|
|
2710
|
+
groupedAt: number;
|
|
2711
|
+
sortedAt: number;
|
|
2712
|
+
filteredAt: number;
|
|
2713
|
+
generateGroupRows: never;
|
|
2714
|
+
postFilterDataArray?: never;
|
|
2715
|
+
postSortDataArray?: never;
|
|
2716
|
+
postGroupDataArray?: never;
|
|
2717
|
+
pivotColumns?: never;
|
|
2718
|
+
pivotColumnGroups?: never;
|
|
2719
|
+
toPrimaryKey: (data: unknown) => any;
|
|
2720
|
+
operatorsByFilterType: Record<string, Record<string, DataSourceFilterOperator<unknown>>>;
|
|
2721
|
+
sortMode: never;
|
|
2722
|
+
filterMode: never;
|
|
2723
|
+
groupMode: never;
|
|
2724
|
+
pivotMode: never;
|
|
2725
|
+
shouldReloadData: Required<DataSourcePropShouldReloadData<unknown>>;
|
|
2726
|
+
groupRowsState: GroupRowsState<unknown>;
|
|
2727
|
+
multiSort: never;
|
|
2728
|
+
controlledSort: never;
|
|
2729
|
+
controlledFilter: never;
|
|
2730
|
+
livePaginationCursor?: never;
|
|
2731
|
+
lazyLoadBatchSize?: never;
|
|
2732
|
+
rowSelection: never;
|
|
2733
|
+
cellSelection: never;
|
|
2734
|
+
selectionMode: never;
|
|
2735
|
+
aggregationReducers?: never;
|
|
2736
|
+
livePagination: never;
|
|
2737
|
+
refetchKey: never;
|
|
2738
|
+
isRowSelected: never;
|
|
2739
|
+
debugId: never;
|
|
2740
|
+
onDataArrayChange: never;
|
|
2741
|
+
onDataMutations: never;
|
|
2742
|
+
onReady: never;
|
|
2743
|
+
rowInfoReducers: never;
|
|
2744
|
+
lazyLoad: never;
|
|
2745
|
+
useGroupKeysForMultiRowSelection: never;
|
|
2746
|
+
onDataParamsChange: never;
|
|
2747
|
+
data: DataSourceData<unknown> & unknown[] & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> & ((dataInfo: DataSourceDataParams<unknown>) => unknown[] | Promise<unknown[] | DataSourceRemoteData<unknown>>);
|
|
2748
|
+
sortFunction: never;
|
|
2749
|
+
filterFunction: never;
|
|
2750
|
+
filterValue: never;
|
|
2751
|
+
filterTypes: DataSourcePropFilterTypes<unknown>;
|
|
2752
|
+
primaryKey: (data: unknown) => string;
|
|
2753
|
+
filterDelay: number;
|
|
2754
|
+
groupBy: DataSourcePropGroupBy<unknown>;
|
|
2755
|
+
pivotBy: never;
|
|
2756
|
+
loading: never;
|
|
2757
|
+
sortTypes: DataSourcePropSortTypes;
|
|
2758
|
+
collapseGroupRowsOnDataFunctionChange: never;
|
|
2759
|
+
sortInfo: never;
|
|
2760
|
+
} & {
|
|
2761
|
+
indexer: Indexer<unknown, any>;
|
|
2762
|
+
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
|
|
2763
|
+
destroyedRef: React$1.MutableRefObject<boolean>;
|
|
2764
|
+
idToIndexMap: Map<any, number>;
|
|
2765
|
+
detailDataSourcesStateToRestore: Map<any, Partial<DataSourceStateRestoreForDetail<any>>>;
|
|
2766
|
+
stateReadyAsDetails: never;
|
|
2767
|
+
cache?: never;
|
|
2768
|
+
unfilteredCount: number;
|
|
2769
|
+
filteredCount: number;
|
|
2770
|
+
rowInfoReducerResults?: never;
|
|
2771
|
+
originalDataArrayChanged: never;
|
|
2772
|
+
originalDataArrayChangedInfo: {
|
|
2773
|
+
timestamp: number;
|
|
2774
|
+
mutations?: Map<string, DataSourceMutation<unknown>[]> | undefined;
|
|
2775
|
+
};
|
|
2776
|
+
lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
|
|
2777
|
+
pivotMappings?: never;
|
|
2778
|
+
propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "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>>;
|
|
2779
|
+
showSeparatePivotColumnForSingleAggregation: never;
|
|
2780
|
+
dataParams?: never;
|
|
2781
|
+
originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
|
|
2782
|
+
originalLazyGroupDataChangeDetect: never;
|
|
2783
|
+
scrollStopDelayUpdatedByTable: number;
|
|
2784
|
+
onCleanup: SubscriptionCallback<DataSourceState<unknown>>;
|
|
2785
|
+
notifyScrollbarsChange: SubscriptionCallback<Scrollbars>;
|
|
2786
|
+
notifyScrollStop: SubscriptionCallback<ScrollStopInfo>;
|
|
2787
|
+
notifyRenderRangeChange: SubscriptionCallback<RenderRange>;
|
|
2788
|
+
originalDataArray: unknown[];
|
|
2789
|
+
lastFilterDataArray?: never;
|
|
2790
|
+
lastSortDataArray?: never;
|
|
2791
|
+
lastGroupDataArray?: never;
|
|
2792
|
+
dataArray: InfiniteTableRowInfo<unknown>[];
|
|
2793
|
+
groupDeepMap?: never;
|
|
2794
|
+
groupRowsIndexesInDataArray?: never;
|
|
2795
|
+
reducerResults?: never;
|
|
2796
|
+
allRowsSelected: never;
|
|
2797
|
+
someRowsSelected: never;
|
|
2798
|
+
pivotTotalColumnPosition: never;
|
|
2799
|
+
pivotGrandTotalColumnPosition: never;
|
|
2800
|
+
cursorId: never;
|
|
2801
|
+
updatedAt: number;
|
|
2802
|
+
reducedAt: number;
|
|
2803
|
+
groupedAt: number;
|
|
2804
|
+
sortedAt: number;
|
|
2805
|
+
filteredAt: number;
|
|
2806
|
+
generateGroupRows: never;
|
|
2807
|
+
postFilterDataArray?: never;
|
|
2808
|
+
postSortDataArray?: never;
|
|
2809
|
+
postGroupDataArray?: never;
|
|
2810
|
+
pivotColumns?: never;
|
|
2811
|
+
pivotColumnGroups?: never;
|
|
2812
|
+
toPrimaryKey: (data: unknown) => any;
|
|
2813
|
+
operatorsByFilterType: Record<string, Record<string, DataSourceFilterOperator<unknown>>>;
|
|
2814
|
+
sortMode: never;
|
|
2815
|
+
filterMode: never;
|
|
2816
|
+
groupMode: never;
|
|
2817
|
+
pivotMode: never;
|
|
2818
|
+
shouldReloadData: Required<DataSourcePropShouldReloadData<unknown>>;
|
|
2819
|
+
groupRowsState: GroupRowsState<unknown>;
|
|
2820
|
+
multiSort: never;
|
|
2821
|
+
controlledSort: never;
|
|
2822
|
+
controlledFilter: never;
|
|
2823
|
+
livePaginationCursor?: never;
|
|
2824
|
+
lazyLoadBatchSize?: never;
|
|
2825
|
+
rowSelection: never;
|
|
2826
|
+
cellSelection: never;
|
|
2827
|
+
selectionMode: never;
|
|
2828
|
+
aggregationReducers?: never;
|
|
2829
|
+
livePagination: never;
|
|
2830
|
+
refetchKey: never;
|
|
2831
|
+
isRowSelected: never;
|
|
2832
|
+
debugId: never;
|
|
2833
|
+
onDataArrayChange: never;
|
|
2834
|
+
onDataMutations: never;
|
|
2835
|
+
onReady: never;
|
|
2836
|
+
rowInfoReducers: never;
|
|
2837
|
+
lazyLoad: never;
|
|
2838
|
+
useGroupKeysForMultiRowSelection: never;
|
|
2839
|
+
onDataParamsChange: never;
|
|
2840
|
+
data: DataSourceData<unknown> & unknown[] & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> & ((dataInfo: DataSourceDataParams<unknown>) => unknown[] | Promise<unknown[] | DataSourceRemoteData<unknown>>);
|
|
2841
|
+
sortFunction: never;
|
|
2842
|
+
filterFunction: never;
|
|
2843
|
+
filterValue: never;
|
|
2844
|
+
filterTypes: DataSourcePropFilterTypes<unknown>;
|
|
2845
|
+
primaryKey: (data: unknown) => string;
|
|
2846
|
+
filterDelay: number;
|
|
2847
|
+
groupBy: DataSourcePropGroupBy<unknown>;
|
|
2848
|
+
pivotBy: never;
|
|
2849
|
+
loading: never;
|
|
2850
|
+
sortTypes: DataSourcePropSortTypes;
|
|
2851
|
+
collapseGroupRowsOnDataFunctionChange: never;
|
|
2852
|
+
sortInfo: never;
|
|
2853
|
+
}>;
|
|
2854
|
+
getComponentState: () => {
|
|
2855
|
+
indexer: Indexer<unknown, any>;
|
|
2856
|
+
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
|
|
2857
|
+
destroyedRef: React$1.MutableRefObject<boolean>;
|
|
2858
|
+
idToIndexMap: Map<any, number>;
|
|
2859
|
+
detailDataSourcesStateToRestore: Map<any, Partial<DataSourceStateRestoreForDetail<any>>>;
|
|
2860
|
+
stateReadyAsDetails: never;
|
|
2861
|
+
cache?: never;
|
|
2862
|
+
unfilteredCount: number;
|
|
2863
|
+
filteredCount: number;
|
|
2864
|
+
rowInfoReducerResults?: never;
|
|
2865
|
+
originalDataArrayChanged: never;
|
|
2866
|
+
originalDataArrayChangedInfo: {
|
|
2867
|
+
timestamp: number;
|
|
2868
|
+
mutations?: Map<string, DataSourceMutation<unknown>[]> | undefined;
|
|
2869
|
+
};
|
|
2870
|
+
lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
|
|
2871
|
+
pivotMappings?: never;
|
|
2872
|
+
propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "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>>;
|
|
2873
|
+
showSeparatePivotColumnForSingleAggregation: never;
|
|
2874
|
+
dataParams?: never;
|
|
2875
|
+
originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
|
|
2876
|
+
originalLazyGroupDataChangeDetect: never;
|
|
2877
|
+
scrollStopDelayUpdatedByTable: number;
|
|
2878
|
+
onCleanup: SubscriptionCallback<DataSourceState<unknown>>;
|
|
2879
|
+
notifyScrollbarsChange: SubscriptionCallback<Scrollbars>;
|
|
2880
|
+
notifyScrollStop: SubscriptionCallback<ScrollStopInfo>;
|
|
2881
|
+
notifyRenderRangeChange: SubscriptionCallback<RenderRange>;
|
|
2882
|
+
originalDataArray: unknown[];
|
|
2883
|
+
lastFilterDataArray?: never;
|
|
2884
|
+
lastSortDataArray?: never;
|
|
2885
|
+
lastGroupDataArray?: never;
|
|
2886
|
+
dataArray: InfiniteTableRowInfo<unknown>[];
|
|
2887
|
+
groupDeepMap?: never;
|
|
2888
|
+
groupRowsIndexesInDataArray?: never;
|
|
2889
|
+
reducerResults?: never;
|
|
2890
|
+
allRowsSelected: never;
|
|
2891
|
+
someRowsSelected: never;
|
|
2892
|
+
pivotTotalColumnPosition: never;
|
|
2893
|
+
pivotGrandTotalColumnPosition: never;
|
|
2894
|
+
cursorId: never;
|
|
2895
|
+
updatedAt: number;
|
|
2896
|
+
reducedAt: number;
|
|
2897
|
+
groupedAt: number;
|
|
2898
|
+
sortedAt: number;
|
|
2899
|
+
filteredAt: number;
|
|
2900
|
+
generateGroupRows: never;
|
|
2901
|
+
postFilterDataArray?: never;
|
|
2902
|
+
postSortDataArray?: never;
|
|
2903
|
+
postGroupDataArray?: never;
|
|
2904
|
+
pivotColumns?: never;
|
|
2905
|
+
pivotColumnGroups?: never;
|
|
2906
|
+
toPrimaryKey: (data: unknown) => any;
|
|
2907
|
+
operatorsByFilterType: Record<string, Record<string, DataSourceFilterOperator<unknown>>>;
|
|
2908
|
+
sortMode: never;
|
|
2909
|
+
filterMode: never;
|
|
2910
|
+
groupMode: never;
|
|
2911
|
+
pivotMode: never;
|
|
2912
|
+
shouldReloadData: Required<DataSourcePropShouldReloadData<unknown>>;
|
|
2913
|
+
groupRowsState: GroupRowsState<unknown>;
|
|
2914
|
+
multiSort: never;
|
|
2915
|
+
controlledSort: never;
|
|
2916
|
+
controlledFilter: never;
|
|
2917
|
+
livePaginationCursor?: never;
|
|
2918
|
+
lazyLoadBatchSize?: never;
|
|
2919
|
+
rowSelection: never;
|
|
2920
|
+
cellSelection: never;
|
|
2921
|
+
selectionMode: never;
|
|
2922
|
+
aggregationReducers?: never;
|
|
2923
|
+
livePagination: never;
|
|
2924
|
+
refetchKey: never;
|
|
2925
|
+
isRowSelected: never;
|
|
2926
|
+
debugId: never;
|
|
2927
|
+
onDataArrayChange: never;
|
|
2928
|
+
onDataMutations: never;
|
|
2929
|
+
onReady: never;
|
|
2930
|
+
rowInfoReducers: never;
|
|
2931
|
+
lazyLoad: never;
|
|
2932
|
+
useGroupKeysForMultiRowSelection: never;
|
|
2933
|
+
onDataParamsChange: never;
|
|
2934
|
+
data: DataSourceData<unknown> & unknown[] & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> & ((dataInfo: DataSourceDataParams<unknown>) => unknown[] | Promise<unknown[] | DataSourceRemoteData<unknown>>);
|
|
2935
|
+
sortFunction: never;
|
|
2936
|
+
filterFunction: never;
|
|
2937
|
+
filterValue: never;
|
|
2938
|
+
filterTypes: DataSourcePropFilterTypes<unknown>;
|
|
2939
|
+
primaryKey: (data: unknown) => string;
|
|
2940
|
+
filterDelay: number;
|
|
2941
|
+
groupBy: DataSourcePropGroupBy<unknown>;
|
|
2942
|
+
pivotBy: never;
|
|
2943
|
+
loading: never;
|
|
2944
|
+
sortTypes: DataSourcePropSortTypes;
|
|
2945
|
+
collapseGroupRowsOnDataFunctionChange: never;
|
|
2946
|
+
sortInfo: never;
|
|
2947
|
+
} & {
|
|
2948
|
+
indexer: Indexer<unknown, any>;
|
|
2949
|
+
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
|
|
2950
|
+
destroyedRef: React$1.MutableRefObject<boolean>;
|
|
2951
|
+
idToIndexMap: Map<any, number>;
|
|
2952
|
+
detailDataSourcesStateToRestore: Map<any, Partial<DataSourceStateRestoreForDetail<any>>>;
|
|
2953
|
+
stateReadyAsDetails: never;
|
|
2954
|
+
cache?: never;
|
|
2955
|
+
unfilteredCount: number;
|
|
2956
|
+
filteredCount: number;
|
|
2957
|
+
rowInfoReducerResults?: never;
|
|
2958
|
+
originalDataArrayChanged: never;
|
|
2959
|
+
originalDataArrayChangedInfo: {
|
|
2960
|
+
timestamp: number;
|
|
2961
|
+
mutations?: Map<string, DataSourceMutation<unknown>[]> | undefined;
|
|
2962
|
+
};
|
|
2963
|
+
lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
|
|
2964
|
+
pivotMappings?: never;
|
|
2965
|
+
propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "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>>;
|
|
2966
|
+
showSeparatePivotColumnForSingleAggregation: never;
|
|
2967
|
+
dataParams?: never;
|
|
2968
|
+
originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
|
|
2969
|
+
originalLazyGroupDataChangeDetect: never;
|
|
2970
|
+
scrollStopDelayUpdatedByTable: number;
|
|
2971
|
+
onCleanup: SubscriptionCallback<DataSourceState<unknown>>;
|
|
2972
|
+
notifyScrollbarsChange: SubscriptionCallback<Scrollbars>;
|
|
2973
|
+
notifyScrollStop: SubscriptionCallback<ScrollStopInfo>;
|
|
2974
|
+
notifyRenderRangeChange: SubscriptionCallback<RenderRange>;
|
|
2975
|
+
originalDataArray: unknown[];
|
|
2976
|
+
lastFilterDataArray?: never;
|
|
2977
|
+
lastSortDataArray?: never;
|
|
2978
|
+
lastGroupDataArray?: never;
|
|
2979
|
+
dataArray: InfiniteTableRowInfo<unknown>[];
|
|
2980
|
+
groupDeepMap?: never;
|
|
2981
|
+
groupRowsIndexesInDataArray?: never;
|
|
2982
|
+
reducerResults?: never;
|
|
2983
|
+
allRowsSelected: never;
|
|
2984
|
+
someRowsSelected: never;
|
|
2985
|
+
pivotTotalColumnPosition: never;
|
|
2986
|
+
pivotGrandTotalColumnPosition: never;
|
|
2987
|
+
cursorId: never;
|
|
2988
|
+
updatedAt: number;
|
|
2989
|
+
reducedAt: number;
|
|
2990
|
+
groupedAt: number;
|
|
2991
|
+
sortedAt: number;
|
|
2992
|
+
filteredAt: number;
|
|
2993
|
+
generateGroupRows: never;
|
|
2994
|
+
postFilterDataArray?: never;
|
|
2995
|
+
postSortDataArray?: never;
|
|
2996
|
+
postGroupDataArray?: never;
|
|
2997
|
+
pivotColumns?: never;
|
|
2998
|
+
pivotColumnGroups?: never;
|
|
2999
|
+
toPrimaryKey: (data: unknown) => any;
|
|
3000
|
+
operatorsByFilterType: Record<string, Record<string, DataSourceFilterOperator<unknown>>>;
|
|
3001
|
+
sortMode: never;
|
|
3002
|
+
filterMode: never;
|
|
3003
|
+
groupMode: never;
|
|
3004
|
+
pivotMode: never;
|
|
3005
|
+
shouldReloadData: Required<DataSourcePropShouldReloadData<unknown>>;
|
|
3006
|
+
groupRowsState: GroupRowsState<unknown>;
|
|
3007
|
+
multiSort: never;
|
|
3008
|
+
controlledSort: never;
|
|
3009
|
+
controlledFilter: never;
|
|
3010
|
+
livePaginationCursor?: never;
|
|
3011
|
+
lazyLoadBatchSize?: never;
|
|
3012
|
+
rowSelection: never;
|
|
3013
|
+
cellSelection: never;
|
|
3014
|
+
selectionMode: never;
|
|
3015
|
+
aggregationReducers?: never;
|
|
3016
|
+
livePagination: never;
|
|
3017
|
+
refetchKey: never;
|
|
3018
|
+
isRowSelected: never;
|
|
3019
|
+
debugId: never;
|
|
3020
|
+
onDataArrayChange: never;
|
|
3021
|
+
onDataMutations: never;
|
|
3022
|
+
onReady: never;
|
|
3023
|
+
rowInfoReducers: never;
|
|
3024
|
+
lazyLoad: never;
|
|
3025
|
+
useGroupKeysForMultiRowSelection: never;
|
|
3026
|
+
onDataParamsChange: never;
|
|
3027
|
+
data: DataSourceData<unknown> & unknown[] & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> & ((dataInfo: DataSourceDataParams<unknown>) => unknown[] | Promise<unknown[] | DataSourceRemoteData<unknown>>);
|
|
3028
|
+
sortFunction: never;
|
|
3029
|
+
filterFunction: never;
|
|
3030
|
+
filterValue: never;
|
|
3031
|
+
filterTypes: DataSourcePropFilterTypes<unknown>;
|
|
3032
|
+
primaryKey: (data: unknown) => string;
|
|
3033
|
+
filterDelay: number;
|
|
3034
|
+
groupBy: DataSourcePropGroupBy<unknown>;
|
|
3035
|
+
pivotBy: never;
|
|
3036
|
+
loading: never;
|
|
3037
|
+
sortTypes: DataSourcePropSortTypes;
|
|
3038
|
+
collapseGroupRowsOnDataFunctionChange: never;
|
|
3039
|
+
sortInfo: never;
|
|
3040
|
+
} & {
|
|
3041
|
+
indexer: Indexer<unknown, any>;
|
|
3042
|
+
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
|
|
3043
|
+
destroyedRef: React$1.MutableRefObject<boolean>;
|
|
3044
|
+
idToIndexMap: Map<any, number>;
|
|
3045
|
+
detailDataSourcesStateToRestore: Map<any, Partial<DataSourceStateRestoreForDetail<any>>>;
|
|
3046
|
+
stateReadyAsDetails: never;
|
|
3047
|
+
cache?: never;
|
|
3048
|
+
unfilteredCount: number;
|
|
3049
|
+
filteredCount: number;
|
|
3050
|
+
rowInfoReducerResults?: never;
|
|
3051
|
+
originalDataArrayChanged: never;
|
|
3052
|
+
originalDataArrayChangedInfo: {
|
|
3053
|
+
timestamp: number;
|
|
3054
|
+
mutations?: Map<string, DataSourceMutation<unknown>[]> | undefined;
|
|
3055
|
+
};
|
|
3056
|
+
lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
|
|
3057
|
+
pivotMappings?: never;
|
|
3058
|
+
propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "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>>;
|
|
3059
|
+
showSeparatePivotColumnForSingleAggregation: never;
|
|
3060
|
+
dataParams?: never;
|
|
3061
|
+
originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
|
|
3062
|
+
originalLazyGroupDataChangeDetect: never;
|
|
3063
|
+
scrollStopDelayUpdatedByTable: number;
|
|
3064
|
+
onCleanup: SubscriptionCallback<DataSourceState<unknown>>;
|
|
3065
|
+
notifyScrollbarsChange: SubscriptionCallback<Scrollbars>;
|
|
3066
|
+
notifyScrollStop: SubscriptionCallback<ScrollStopInfo>;
|
|
3067
|
+
notifyRenderRangeChange: SubscriptionCallback<RenderRange>;
|
|
3068
|
+
originalDataArray: unknown[];
|
|
3069
|
+
lastFilterDataArray?: never;
|
|
3070
|
+
lastSortDataArray?: never;
|
|
3071
|
+
lastGroupDataArray?: never;
|
|
3072
|
+
dataArray: InfiniteTableRowInfo<unknown>[];
|
|
3073
|
+
groupDeepMap?: never;
|
|
3074
|
+
groupRowsIndexesInDataArray?: never;
|
|
3075
|
+
reducerResults?: never;
|
|
3076
|
+
allRowsSelected: never;
|
|
3077
|
+
someRowsSelected: never;
|
|
3078
|
+
pivotTotalColumnPosition: never;
|
|
3079
|
+
pivotGrandTotalColumnPosition: never;
|
|
3080
|
+
cursorId: never;
|
|
3081
|
+
updatedAt: number;
|
|
3082
|
+
reducedAt: number;
|
|
3083
|
+
groupedAt: number;
|
|
3084
|
+
sortedAt: number;
|
|
3085
|
+
filteredAt: number;
|
|
3086
|
+
generateGroupRows: never;
|
|
3087
|
+
postFilterDataArray?: never;
|
|
3088
|
+
postSortDataArray?: never;
|
|
3089
|
+
postGroupDataArray?: never;
|
|
3090
|
+
pivotColumns?: never;
|
|
3091
|
+
pivotColumnGroups?: never;
|
|
3092
|
+
toPrimaryKey: (data: unknown) => any;
|
|
3093
|
+
operatorsByFilterType: Record<string, Record<string, DataSourceFilterOperator<unknown>>>;
|
|
3094
|
+
sortMode: never;
|
|
3095
|
+
filterMode: never;
|
|
3096
|
+
groupMode: never;
|
|
3097
|
+
pivotMode: never;
|
|
3098
|
+
shouldReloadData: Required<DataSourcePropShouldReloadData<unknown>>;
|
|
3099
|
+
groupRowsState: GroupRowsState<unknown>;
|
|
3100
|
+
multiSort: never;
|
|
3101
|
+
controlledSort: never;
|
|
3102
|
+
controlledFilter: never;
|
|
3103
|
+
livePaginationCursor?: never;
|
|
3104
|
+
lazyLoadBatchSize?: never;
|
|
3105
|
+
rowSelection: never;
|
|
3106
|
+
cellSelection: never;
|
|
3107
|
+
selectionMode: never;
|
|
3108
|
+
aggregationReducers?: never;
|
|
3109
|
+
livePagination: never;
|
|
3110
|
+
refetchKey: never;
|
|
3111
|
+
isRowSelected: never;
|
|
3112
|
+
debugId: never;
|
|
3113
|
+
onDataArrayChange: never;
|
|
3114
|
+
onDataMutations: never;
|
|
3115
|
+
onReady: never;
|
|
3116
|
+
rowInfoReducers: never;
|
|
3117
|
+
lazyLoad: never;
|
|
3118
|
+
useGroupKeysForMultiRowSelection: never;
|
|
3119
|
+
onDataParamsChange: never;
|
|
3120
|
+
data: DataSourceData<unknown> & unknown[] & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> & ((dataInfo: DataSourceDataParams<unknown>) => unknown[] | Promise<unknown[] | DataSourceRemoteData<unknown>>);
|
|
3121
|
+
sortFunction: never;
|
|
3122
|
+
filterFunction: never;
|
|
3123
|
+
filterValue: never;
|
|
3124
|
+
filterTypes: DataSourcePropFilterTypes<unknown>;
|
|
3125
|
+
primaryKey: (data: unknown) => string;
|
|
3126
|
+
filterDelay: number;
|
|
3127
|
+
groupBy: DataSourcePropGroupBy<unknown>;
|
|
3128
|
+
pivotBy: never;
|
|
3129
|
+
loading: never;
|
|
3130
|
+
sortTypes: DataSourcePropSortTypes;
|
|
3131
|
+
collapseGroupRowsOnDataFunctionChange: never;
|
|
3132
|
+
sortInfo: never;
|
|
3133
|
+
};
|
|
3134
|
+
replaceState: (newState: {
|
|
3135
|
+
indexer: Indexer<unknown, any>;
|
|
3136
|
+
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
|
|
3137
|
+
destroyedRef: React$1.MutableRefObject<boolean>;
|
|
3138
|
+
idToIndexMap: Map<any, number>;
|
|
3139
|
+
detailDataSourcesStateToRestore: Map<any, Partial<DataSourceStateRestoreForDetail<any>>>;
|
|
3140
|
+
stateReadyAsDetails: never;
|
|
3141
|
+
cache?: never;
|
|
3142
|
+
unfilteredCount: number;
|
|
3143
|
+
filteredCount: number;
|
|
3144
|
+
rowInfoReducerResults?: never;
|
|
3145
|
+
originalDataArrayChanged: never;
|
|
3146
|
+
originalDataArrayChangedInfo: {
|
|
3147
|
+
timestamp: number;
|
|
3148
|
+
mutations?: Map<string, DataSourceMutation<unknown>[]> | undefined;
|
|
3149
|
+
};
|
|
3150
|
+
lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
|
|
3151
|
+
pivotMappings?: never;
|
|
3152
|
+
propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "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>>;
|
|
3153
|
+
showSeparatePivotColumnForSingleAggregation: never;
|
|
3154
|
+
dataParams?: never;
|
|
3155
|
+
originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
|
|
3156
|
+
originalLazyGroupDataChangeDetect: never;
|
|
3157
|
+
scrollStopDelayUpdatedByTable: number;
|
|
3158
|
+
onCleanup: SubscriptionCallback<DataSourceState<unknown>>;
|
|
3159
|
+
notifyScrollbarsChange: SubscriptionCallback<Scrollbars>;
|
|
3160
|
+
notifyScrollStop: SubscriptionCallback<ScrollStopInfo>;
|
|
3161
|
+
notifyRenderRangeChange: SubscriptionCallback<RenderRange>;
|
|
3162
|
+
originalDataArray: unknown[];
|
|
3163
|
+
lastFilterDataArray?: never;
|
|
3164
|
+
lastSortDataArray?: never;
|
|
3165
|
+
lastGroupDataArray?: never;
|
|
3166
|
+
dataArray: InfiniteTableRowInfo<unknown>[];
|
|
3167
|
+
groupDeepMap?: never;
|
|
3168
|
+
groupRowsIndexesInDataArray?: never;
|
|
3169
|
+
reducerResults?: never;
|
|
3170
|
+
allRowsSelected: never;
|
|
3171
|
+
someRowsSelected: never;
|
|
3172
|
+
pivotTotalColumnPosition: never;
|
|
3173
|
+
pivotGrandTotalColumnPosition: never;
|
|
3174
|
+
cursorId: never;
|
|
3175
|
+
updatedAt: number;
|
|
3176
|
+
reducedAt: number;
|
|
3177
|
+
groupedAt: number;
|
|
3178
|
+
sortedAt: number;
|
|
3179
|
+
filteredAt: number;
|
|
3180
|
+
generateGroupRows: never;
|
|
3181
|
+
postFilterDataArray?: never;
|
|
3182
|
+
postSortDataArray?: never;
|
|
3183
|
+
postGroupDataArray?: never;
|
|
3184
|
+
pivotColumns?: never;
|
|
3185
|
+
pivotColumnGroups?: never;
|
|
3186
|
+
toPrimaryKey: (data: unknown) => any;
|
|
3187
|
+
operatorsByFilterType: Record<string, Record<string, DataSourceFilterOperator<unknown>>>;
|
|
3188
|
+
sortMode: never;
|
|
3189
|
+
filterMode: never;
|
|
3190
|
+
groupMode: never;
|
|
3191
|
+
pivotMode: never;
|
|
3192
|
+
shouldReloadData: Required<DataSourcePropShouldReloadData<unknown>>;
|
|
3193
|
+
groupRowsState: GroupRowsState<unknown>;
|
|
3194
|
+
multiSort: never;
|
|
3195
|
+
controlledSort: never;
|
|
3196
|
+
controlledFilter: never;
|
|
3197
|
+
livePaginationCursor?: never;
|
|
3198
|
+
lazyLoadBatchSize?: never;
|
|
3199
|
+
rowSelection: never;
|
|
3200
|
+
cellSelection: never;
|
|
3201
|
+
selectionMode: never;
|
|
3202
|
+
aggregationReducers?: never;
|
|
3203
|
+
livePagination: never;
|
|
3204
|
+
refetchKey: never;
|
|
3205
|
+
isRowSelected: never;
|
|
3206
|
+
debugId: never;
|
|
3207
|
+
onDataArrayChange: never;
|
|
3208
|
+
onDataMutations: never;
|
|
3209
|
+
onReady: never;
|
|
3210
|
+
rowInfoReducers: never;
|
|
3211
|
+
lazyLoad: never;
|
|
3212
|
+
useGroupKeysForMultiRowSelection: never;
|
|
3213
|
+
onDataParamsChange: never;
|
|
3214
|
+
data: DataSourceData<unknown> & unknown[] & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> & ((dataInfo: DataSourceDataParams<unknown>) => unknown[] | Promise<unknown[] | DataSourceRemoteData<unknown>>);
|
|
3215
|
+
sortFunction: never;
|
|
3216
|
+
filterFunction: never;
|
|
3217
|
+
filterValue: never;
|
|
3218
|
+
filterTypes: DataSourcePropFilterTypes<unknown>;
|
|
3219
|
+
primaryKey: (data: unknown) => string;
|
|
3220
|
+
filterDelay: number;
|
|
3221
|
+
groupBy: DataSourcePropGroupBy<unknown>;
|
|
3222
|
+
pivotBy: never;
|
|
3223
|
+
loading: never;
|
|
3224
|
+
sortTypes: DataSourcePropSortTypes;
|
|
3225
|
+
collapseGroupRowsOnDataFunctionChange: never;
|
|
3226
|
+
sortInfo: never;
|
|
3227
|
+
} & {
|
|
3228
|
+
indexer: Indexer<unknown, any>;
|
|
3229
|
+
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
|
|
3230
|
+
destroyedRef: React$1.MutableRefObject<boolean>;
|
|
3231
|
+
idToIndexMap: Map<any, number>;
|
|
3232
|
+
detailDataSourcesStateToRestore: Map<any, Partial<DataSourceStateRestoreForDetail<any>>>;
|
|
3233
|
+
stateReadyAsDetails: never;
|
|
3234
|
+
cache?: never;
|
|
3235
|
+
unfilteredCount: number;
|
|
3236
|
+
filteredCount: number;
|
|
3237
|
+
rowInfoReducerResults?: never;
|
|
3238
|
+
originalDataArrayChanged: never;
|
|
3239
|
+
originalDataArrayChangedInfo: {
|
|
3240
|
+
timestamp: number;
|
|
3241
|
+
mutations?: Map<string, DataSourceMutation<unknown>[]> | undefined;
|
|
3242
|
+
};
|
|
3243
|
+
lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
|
|
3244
|
+
pivotMappings?: never;
|
|
3245
|
+
propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "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>>;
|
|
3246
|
+
showSeparatePivotColumnForSingleAggregation: never;
|
|
3247
|
+
dataParams?: never;
|
|
3248
|
+
originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
|
|
3249
|
+
originalLazyGroupDataChangeDetect: never;
|
|
3250
|
+
scrollStopDelayUpdatedByTable: number;
|
|
3251
|
+
onCleanup: SubscriptionCallback<DataSourceState<unknown>>;
|
|
3252
|
+
notifyScrollbarsChange: SubscriptionCallback<Scrollbars>;
|
|
3253
|
+
notifyScrollStop: SubscriptionCallback<ScrollStopInfo>;
|
|
3254
|
+
notifyRenderRangeChange: SubscriptionCallback<RenderRange>;
|
|
3255
|
+
originalDataArray: unknown[];
|
|
3256
|
+
lastFilterDataArray?: never;
|
|
3257
|
+
lastSortDataArray?: never;
|
|
3258
|
+
lastGroupDataArray?: never;
|
|
3259
|
+
dataArray: InfiniteTableRowInfo<unknown>[];
|
|
3260
|
+
groupDeepMap?: never;
|
|
3261
|
+
groupRowsIndexesInDataArray?: never;
|
|
3262
|
+
reducerResults?: never;
|
|
3263
|
+
allRowsSelected: never;
|
|
3264
|
+
someRowsSelected: never;
|
|
3265
|
+
pivotTotalColumnPosition: never;
|
|
3266
|
+
pivotGrandTotalColumnPosition: never;
|
|
3267
|
+
cursorId: never;
|
|
3268
|
+
updatedAt: number;
|
|
3269
|
+
reducedAt: number;
|
|
3270
|
+
groupedAt: number;
|
|
3271
|
+
sortedAt: number;
|
|
3272
|
+
filteredAt: number;
|
|
3273
|
+
generateGroupRows: never;
|
|
3274
|
+
postFilterDataArray?: never;
|
|
3275
|
+
postSortDataArray?: never;
|
|
3276
|
+
postGroupDataArray?: never;
|
|
3277
|
+
pivotColumns?: never;
|
|
3278
|
+
pivotColumnGroups?: never;
|
|
3279
|
+
toPrimaryKey: (data: unknown) => any;
|
|
3280
|
+
operatorsByFilterType: Record<string, Record<string, DataSourceFilterOperator<unknown>>>;
|
|
3281
|
+
sortMode: never;
|
|
3282
|
+
filterMode: never;
|
|
3283
|
+
groupMode: never;
|
|
3284
|
+
pivotMode: never;
|
|
3285
|
+
shouldReloadData: Required<DataSourcePropShouldReloadData<unknown>>;
|
|
3286
|
+
groupRowsState: GroupRowsState<unknown>;
|
|
3287
|
+
multiSort: never;
|
|
3288
|
+
controlledSort: never;
|
|
3289
|
+
controlledFilter: never;
|
|
3290
|
+
livePaginationCursor?: never;
|
|
3291
|
+
lazyLoadBatchSize?: never;
|
|
3292
|
+
rowSelection: never;
|
|
3293
|
+
cellSelection: never;
|
|
3294
|
+
selectionMode: never;
|
|
3295
|
+
aggregationReducers?: never;
|
|
3296
|
+
livePagination: never;
|
|
3297
|
+
refetchKey: never;
|
|
3298
|
+
isRowSelected: never;
|
|
3299
|
+
debugId: never;
|
|
3300
|
+
onDataArrayChange: never;
|
|
3301
|
+
onDataMutations: never;
|
|
3302
|
+
onReady: never;
|
|
3303
|
+
rowInfoReducers: never;
|
|
3304
|
+
lazyLoad: never;
|
|
3305
|
+
useGroupKeysForMultiRowSelection: never;
|
|
3306
|
+
onDataParamsChange: never;
|
|
3307
|
+
data: DataSourceData<unknown> & unknown[] & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> & ((dataInfo: DataSourceDataParams<unknown>) => unknown[] | Promise<unknown[] | DataSourceRemoteData<unknown>>);
|
|
3308
|
+
sortFunction: never;
|
|
3309
|
+
filterFunction: never;
|
|
3310
|
+
filterValue: never;
|
|
3311
|
+
filterTypes: DataSourcePropFilterTypes<unknown>;
|
|
3312
|
+
primaryKey: (data: unknown) => string;
|
|
3313
|
+
filterDelay: number;
|
|
3314
|
+
groupBy: DataSourcePropGroupBy<unknown>;
|
|
3315
|
+
pivotBy: never;
|
|
3316
|
+
loading: never;
|
|
3317
|
+
sortTypes: DataSourcePropSortTypes;
|
|
3318
|
+
collapseGroupRowsOnDataFunctionChange: never;
|
|
3319
|
+
sortInfo: never;
|
|
3320
|
+
} & {
|
|
3321
|
+
indexer: Indexer<unknown, any>;
|
|
3322
|
+
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
|
|
3323
|
+
destroyedRef: React$1.MutableRefObject<boolean>;
|
|
3324
|
+
idToIndexMap: Map<any, number>;
|
|
3325
|
+
detailDataSourcesStateToRestore: Map<any, Partial<DataSourceStateRestoreForDetail<any>>>;
|
|
3326
|
+
stateReadyAsDetails: never;
|
|
3327
|
+
cache?: never;
|
|
3328
|
+
unfilteredCount: number;
|
|
3329
|
+
filteredCount: number;
|
|
3330
|
+
rowInfoReducerResults?: never;
|
|
3331
|
+
originalDataArrayChanged: never;
|
|
3332
|
+
originalDataArrayChangedInfo: {
|
|
3333
|
+
timestamp: number;
|
|
3334
|
+
mutations?: Map<string, DataSourceMutation<unknown>[]> | undefined;
|
|
3335
|
+
};
|
|
3336
|
+
lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
|
|
3337
|
+
pivotMappings?: never;
|
|
3338
|
+
propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "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>>;
|
|
3339
|
+
showSeparatePivotColumnForSingleAggregation: never;
|
|
3340
|
+
dataParams?: never;
|
|
3341
|
+
originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
|
|
3342
|
+
originalLazyGroupDataChangeDetect: never;
|
|
3343
|
+
scrollStopDelayUpdatedByTable: number;
|
|
3344
|
+
onCleanup: SubscriptionCallback<DataSourceState<unknown>>;
|
|
3345
|
+
notifyScrollbarsChange: SubscriptionCallback<Scrollbars>;
|
|
3346
|
+
notifyScrollStop: SubscriptionCallback<ScrollStopInfo>;
|
|
3347
|
+
notifyRenderRangeChange: SubscriptionCallback<RenderRange>;
|
|
3348
|
+
originalDataArray: unknown[];
|
|
3349
|
+
lastFilterDataArray?: never;
|
|
3350
|
+
lastSortDataArray?: never;
|
|
3351
|
+
lastGroupDataArray?: never;
|
|
3352
|
+
dataArray: InfiniteTableRowInfo<unknown>[];
|
|
3353
|
+
groupDeepMap?: never;
|
|
3354
|
+
groupRowsIndexesInDataArray?: never;
|
|
3355
|
+
reducerResults?: never;
|
|
3356
|
+
allRowsSelected: never;
|
|
3357
|
+
someRowsSelected: never;
|
|
3358
|
+
pivotTotalColumnPosition: never;
|
|
3359
|
+
pivotGrandTotalColumnPosition: never;
|
|
3360
|
+
cursorId: never;
|
|
3361
|
+
updatedAt: number;
|
|
3362
|
+
reducedAt: number;
|
|
3363
|
+
groupedAt: number;
|
|
3364
|
+
sortedAt: number;
|
|
3365
|
+
filteredAt: number;
|
|
3366
|
+
generateGroupRows: never;
|
|
3367
|
+
postFilterDataArray?: never;
|
|
3368
|
+
postSortDataArray?: never;
|
|
3369
|
+
postGroupDataArray?: never;
|
|
3370
|
+
pivotColumns?: never;
|
|
3371
|
+
pivotColumnGroups?: never;
|
|
3372
|
+
toPrimaryKey: (data: unknown) => any;
|
|
3373
|
+
operatorsByFilterType: Record<string, Record<string, DataSourceFilterOperator<unknown>>>;
|
|
3374
|
+
sortMode: never;
|
|
3375
|
+
filterMode: never;
|
|
3376
|
+
groupMode: never;
|
|
3377
|
+
pivotMode: never;
|
|
3378
|
+
shouldReloadData: Required<DataSourcePropShouldReloadData<unknown>>;
|
|
3379
|
+
groupRowsState: GroupRowsState<unknown>;
|
|
3380
|
+
multiSort: never;
|
|
3381
|
+
controlledSort: never;
|
|
3382
|
+
controlledFilter: never;
|
|
3383
|
+
livePaginationCursor?: never;
|
|
3384
|
+
lazyLoadBatchSize?: never;
|
|
3385
|
+
rowSelection: never;
|
|
3386
|
+
cellSelection: never;
|
|
3387
|
+
selectionMode: never;
|
|
3388
|
+
aggregationReducers?: never;
|
|
3389
|
+
livePagination: never;
|
|
3390
|
+
refetchKey: never;
|
|
3391
|
+
isRowSelected: never;
|
|
3392
|
+
debugId: never;
|
|
3393
|
+
onDataArrayChange: never;
|
|
3394
|
+
onDataMutations: never;
|
|
3395
|
+
onReady: never;
|
|
3396
|
+
rowInfoReducers: never;
|
|
3397
|
+
lazyLoad: never;
|
|
3398
|
+
useGroupKeysForMultiRowSelection: never;
|
|
3399
|
+
onDataParamsChange: never;
|
|
3400
|
+
data: DataSourceData<unknown> & unknown[] & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> & ((dataInfo: DataSourceDataParams<unknown>) => unknown[] | Promise<unknown[] | DataSourceRemoteData<unknown>>);
|
|
3401
|
+
sortFunction: never;
|
|
3402
|
+
filterFunction: never;
|
|
3403
|
+
filterValue: never;
|
|
3404
|
+
filterTypes: DataSourcePropFilterTypes<unknown>;
|
|
3405
|
+
primaryKey: (data: unknown) => string;
|
|
3406
|
+
filterDelay: number;
|
|
3407
|
+
groupBy: DataSourcePropGroupBy<unknown>;
|
|
3408
|
+
pivotBy: never;
|
|
3409
|
+
loading: never;
|
|
3410
|
+
sortTypes: DataSourcePropSortTypes;
|
|
3411
|
+
collapseGroupRowsOnDataFunctionChange: never;
|
|
3412
|
+
sortInfo: never;
|
|
3413
|
+
}) => void;
|
|
3414
|
+
assignState: (newState: Partial<{
|
|
3415
|
+
indexer: Indexer<unknown, any>;
|
|
3416
|
+
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
|
|
3417
|
+
destroyedRef: React$1.MutableRefObject<boolean>;
|
|
3418
|
+
idToIndexMap: Map<any, number>;
|
|
3419
|
+
detailDataSourcesStateToRestore: Map<any, Partial<DataSourceStateRestoreForDetail<any>>>;
|
|
3420
|
+
stateReadyAsDetails: never;
|
|
3421
|
+
cache?: never;
|
|
3422
|
+
unfilteredCount: number;
|
|
3423
|
+
filteredCount: number;
|
|
3424
|
+
rowInfoReducerResults?: never;
|
|
3425
|
+
originalDataArrayChanged: never;
|
|
3426
|
+
originalDataArrayChangedInfo: {
|
|
3427
|
+
timestamp: number;
|
|
3428
|
+
mutations?: Map<string, DataSourceMutation<unknown>[]> | undefined;
|
|
3429
|
+
};
|
|
3430
|
+
lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
|
|
3431
|
+
pivotMappings?: never;
|
|
3432
|
+
propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "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>>;
|
|
3433
|
+
showSeparatePivotColumnForSingleAggregation: never;
|
|
3434
|
+
dataParams?: never;
|
|
3435
|
+
originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
|
|
3436
|
+
originalLazyGroupDataChangeDetect: never;
|
|
3437
|
+
scrollStopDelayUpdatedByTable: number;
|
|
3438
|
+
onCleanup: SubscriptionCallback<DataSourceState<unknown>>;
|
|
3439
|
+
notifyScrollbarsChange: SubscriptionCallback<Scrollbars>;
|
|
3440
|
+
notifyScrollStop: SubscriptionCallback<ScrollStopInfo>;
|
|
3441
|
+
notifyRenderRangeChange: SubscriptionCallback<RenderRange>;
|
|
3442
|
+
originalDataArray: unknown[];
|
|
3443
|
+
lastFilterDataArray?: never;
|
|
3444
|
+
lastSortDataArray?: never;
|
|
3445
|
+
lastGroupDataArray?: never;
|
|
3446
|
+
dataArray: InfiniteTableRowInfo<unknown>[];
|
|
3447
|
+
groupDeepMap?: never;
|
|
3448
|
+
groupRowsIndexesInDataArray?: never;
|
|
3449
|
+
reducerResults?: never;
|
|
3450
|
+
allRowsSelected: never;
|
|
3451
|
+
someRowsSelected: never;
|
|
3452
|
+
pivotTotalColumnPosition: never;
|
|
3453
|
+
pivotGrandTotalColumnPosition: never;
|
|
3454
|
+
cursorId: never;
|
|
3455
|
+
updatedAt: number;
|
|
3456
|
+
reducedAt: number;
|
|
3457
|
+
groupedAt: number;
|
|
3458
|
+
sortedAt: number;
|
|
3459
|
+
filteredAt: number;
|
|
3460
|
+
generateGroupRows: never;
|
|
3461
|
+
postFilterDataArray?: never;
|
|
3462
|
+
postSortDataArray?: never;
|
|
3463
|
+
postGroupDataArray?: never;
|
|
3464
|
+
pivotColumns?: never;
|
|
3465
|
+
pivotColumnGroups?: never;
|
|
3466
|
+
toPrimaryKey: (data: unknown) => any;
|
|
3467
|
+
operatorsByFilterType: Record<string, Record<string, DataSourceFilterOperator<unknown>>>;
|
|
3468
|
+
sortMode: never;
|
|
3469
|
+
filterMode: never;
|
|
3470
|
+
groupMode: never;
|
|
3471
|
+
pivotMode: never;
|
|
3472
|
+
shouldReloadData: Required<DataSourcePropShouldReloadData<unknown>>;
|
|
3473
|
+
groupRowsState: GroupRowsState<unknown>;
|
|
3474
|
+
multiSort: never;
|
|
3475
|
+
controlledSort: never;
|
|
3476
|
+
controlledFilter: never;
|
|
3477
|
+
livePaginationCursor?: never;
|
|
3478
|
+
lazyLoadBatchSize?: never;
|
|
3479
|
+
rowSelection: never;
|
|
3480
|
+
cellSelection: never;
|
|
3481
|
+
selectionMode: never;
|
|
3482
|
+
aggregationReducers?: never;
|
|
3483
|
+
livePagination: never;
|
|
3484
|
+
refetchKey: never;
|
|
3485
|
+
isRowSelected: never;
|
|
3486
|
+
debugId: never;
|
|
3487
|
+
onDataArrayChange: never;
|
|
3488
|
+
onDataMutations: never;
|
|
3489
|
+
onReady: never;
|
|
3490
|
+
rowInfoReducers: never;
|
|
3491
|
+
lazyLoad: never;
|
|
3492
|
+
useGroupKeysForMultiRowSelection: never;
|
|
3493
|
+
onDataParamsChange: never;
|
|
3494
|
+
data: DataSourceData<unknown> & unknown[] & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> & ((dataInfo: DataSourceDataParams<unknown>) => unknown[] | Promise<unknown[] | DataSourceRemoteData<unknown>>);
|
|
3495
|
+
sortFunction: never;
|
|
3496
|
+
filterFunction: never;
|
|
3497
|
+
filterValue: never;
|
|
3498
|
+
filterTypes: DataSourcePropFilterTypes<unknown>;
|
|
3499
|
+
primaryKey: (data: unknown) => string;
|
|
3500
|
+
filterDelay: number;
|
|
3501
|
+
groupBy: DataSourcePropGroupBy<unknown>;
|
|
3502
|
+
pivotBy: never;
|
|
3503
|
+
loading: never;
|
|
3504
|
+
sortTypes: DataSourcePropSortTypes;
|
|
3505
|
+
collapseGroupRowsOnDataFunctionChange: never;
|
|
3506
|
+
sortInfo: never;
|
|
3507
|
+
} & {
|
|
3508
|
+
indexer: Indexer<unknown, any>;
|
|
3509
|
+
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
|
|
3510
|
+
destroyedRef: React$1.MutableRefObject<boolean>;
|
|
3511
|
+
idToIndexMap: Map<any, number>;
|
|
3512
|
+
detailDataSourcesStateToRestore: Map<any, Partial<DataSourceStateRestoreForDetail<any>>>;
|
|
3513
|
+
stateReadyAsDetails: never;
|
|
3514
|
+
cache?: never;
|
|
3515
|
+
unfilteredCount: number;
|
|
3516
|
+
filteredCount: number;
|
|
3517
|
+
rowInfoReducerResults?: never;
|
|
3518
|
+
originalDataArrayChanged: never;
|
|
3519
|
+
originalDataArrayChangedInfo: {
|
|
3520
|
+
timestamp: number;
|
|
3521
|
+
mutations?: Map<string, DataSourceMutation<unknown>[]> | undefined;
|
|
3522
|
+
};
|
|
3523
|
+
lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
|
|
3524
|
+
pivotMappings?: never;
|
|
3525
|
+
propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "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>>;
|
|
3526
|
+
showSeparatePivotColumnForSingleAggregation: never;
|
|
3527
|
+
dataParams?: never;
|
|
3528
|
+
originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
|
|
3529
|
+
originalLazyGroupDataChangeDetect: never;
|
|
3530
|
+
scrollStopDelayUpdatedByTable: number;
|
|
3531
|
+
onCleanup: SubscriptionCallback<DataSourceState<unknown>>;
|
|
3532
|
+
notifyScrollbarsChange: SubscriptionCallback<Scrollbars>;
|
|
3533
|
+
notifyScrollStop: SubscriptionCallback<ScrollStopInfo>;
|
|
3534
|
+
notifyRenderRangeChange: SubscriptionCallback<RenderRange>;
|
|
3535
|
+
originalDataArray: unknown[];
|
|
3536
|
+
lastFilterDataArray?: never;
|
|
3537
|
+
lastSortDataArray?: never;
|
|
3538
|
+
lastGroupDataArray?: never;
|
|
3539
|
+
dataArray: InfiniteTableRowInfo<unknown>[];
|
|
3540
|
+
groupDeepMap?: never;
|
|
3541
|
+
groupRowsIndexesInDataArray?: never;
|
|
3542
|
+
reducerResults?: never;
|
|
3543
|
+
allRowsSelected: never;
|
|
3544
|
+
someRowsSelected: never;
|
|
3545
|
+
pivotTotalColumnPosition: never;
|
|
3546
|
+
pivotGrandTotalColumnPosition: never;
|
|
3547
|
+
cursorId: never;
|
|
3548
|
+
updatedAt: number;
|
|
3549
|
+
reducedAt: number;
|
|
3550
|
+
groupedAt: number;
|
|
3551
|
+
sortedAt: number;
|
|
3552
|
+
filteredAt: number;
|
|
3553
|
+
generateGroupRows: never;
|
|
3554
|
+
postFilterDataArray?: never;
|
|
3555
|
+
postSortDataArray?: never;
|
|
3556
|
+
postGroupDataArray?: never;
|
|
3557
|
+
pivotColumns?: never;
|
|
3558
|
+
pivotColumnGroups?: never;
|
|
3559
|
+
toPrimaryKey: (data: unknown) => any;
|
|
3560
|
+
operatorsByFilterType: Record<string, Record<string, DataSourceFilterOperator<unknown>>>;
|
|
3561
|
+
sortMode: never;
|
|
3562
|
+
filterMode: never;
|
|
3563
|
+
groupMode: never;
|
|
3564
|
+
pivotMode: never;
|
|
3565
|
+
shouldReloadData: Required<DataSourcePropShouldReloadData<unknown>>;
|
|
3566
|
+
groupRowsState: GroupRowsState<unknown>;
|
|
3567
|
+
multiSort: never;
|
|
3568
|
+
controlledSort: never;
|
|
3569
|
+
controlledFilter: never;
|
|
3570
|
+
livePaginationCursor?: never;
|
|
3571
|
+
lazyLoadBatchSize?: never;
|
|
3572
|
+
rowSelection: never;
|
|
3573
|
+
cellSelection: never;
|
|
3574
|
+
selectionMode: never;
|
|
3575
|
+
aggregationReducers?: never;
|
|
3576
|
+
livePagination: never;
|
|
3577
|
+
refetchKey: never;
|
|
3578
|
+
isRowSelected: never;
|
|
3579
|
+
debugId: never;
|
|
3580
|
+
onDataArrayChange: never;
|
|
3581
|
+
onDataMutations: never;
|
|
3582
|
+
onReady: never;
|
|
3583
|
+
rowInfoReducers: never;
|
|
3584
|
+
lazyLoad: never;
|
|
3585
|
+
useGroupKeysForMultiRowSelection: never;
|
|
3586
|
+
onDataParamsChange: never;
|
|
3587
|
+
data: DataSourceData<unknown> & unknown[] & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> & ((dataInfo: DataSourceDataParams<unknown>) => unknown[] | Promise<unknown[] | DataSourceRemoteData<unknown>>);
|
|
3588
|
+
sortFunction: never;
|
|
3589
|
+
filterFunction: never;
|
|
3590
|
+
filterValue: never;
|
|
3591
|
+
filterTypes: DataSourcePropFilterTypes<unknown>;
|
|
3592
|
+
primaryKey: (data: unknown) => string;
|
|
3593
|
+
filterDelay: number;
|
|
3594
|
+
groupBy: DataSourcePropGroupBy<unknown>;
|
|
3595
|
+
pivotBy: never;
|
|
3596
|
+
loading: never;
|
|
3597
|
+
sortTypes: DataSourcePropSortTypes;
|
|
3598
|
+
collapseGroupRowsOnDataFunctionChange: never;
|
|
3599
|
+
sortInfo: never;
|
|
3600
|
+
} & {
|
|
3601
|
+
indexer: Indexer<unknown, any>;
|
|
3602
|
+
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
|
|
3603
|
+
destroyedRef: React$1.MutableRefObject<boolean>;
|
|
3604
|
+
idToIndexMap: Map<any, number>;
|
|
3605
|
+
detailDataSourcesStateToRestore: Map<any, Partial<DataSourceStateRestoreForDetail<any>>>;
|
|
3606
|
+
stateReadyAsDetails: never;
|
|
3607
|
+
cache?: never;
|
|
3608
|
+
unfilteredCount: number;
|
|
3609
|
+
filteredCount: number;
|
|
3610
|
+
rowInfoReducerResults?: never;
|
|
3611
|
+
originalDataArrayChanged: never;
|
|
3612
|
+
originalDataArrayChangedInfo: {
|
|
3613
|
+
timestamp: number;
|
|
3614
|
+
mutations?: Map<string, DataSourceMutation<unknown>[]> | undefined;
|
|
3615
|
+
};
|
|
3616
|
+
lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
|
|
3617
|
+
pivotMappings?: never;
|
|
3618
|
+
propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "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>>;
|
|
3619
|
+
showSeparatePivotColumnForSingleAggregation: never;
|
|
3620
|
+
dataParams?: never;
|
|
3621
|
+
originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
|
|
3622
|
+
originalLazyGroupDataChangeDetect: never;
|
|
3623
|
+
scrollStopDelayUpdatedByTable: number;
|
|
3624
|
+
onCleanup: SubscriptionCallback<DataSourceState<unknown>>;
|
|
3625
|
+
notifyScrollbarsChange: SubscriptionCallback<Scrollbars>;
|
|
3626
|
+
notifyScrollStop: SubscriptionCallback<ScrollStopInfo>;
|
|
3627
|
+
notifyRenderRangeChange: SubscriptionCallback<RenderRange>;
|
|
3628
|
+
originalDataArray: unknown[];
|
|
3629
|
+
lastFilterDataArray?: never;
|
|
3630
|
+
lastSortDataArray?: never;
|
|
3631
|
+
lastGroupDataArray?: never;
|
|
3632
|
+
dataArray: InfiniteTableRowInfo<unknown>[];
|
|
3633
|
+
groupDeepMap?: never;
|
|
3634
|
+
groupRowsIndexesInDataArray?: never;
|
|
3635
|
+
reducerResults?: never;
|
|
3636
|
+
allRowsSelected: never;
|
|
3637
|
+
someRowsSelected: never;
|
|
3638
|
+
pivotTotalColumnPosition: never;
|
|
3639
|
+
pivotGrandTotalColumnPosition: never;
|
|
3640
|
+
cursorId: never;
|
|
3641
|
+
updatedAt: number;
|
|
3642
|
+
reducedAt: number;
|
|
3643
|
+
groupedAt: number;
|
|
3644
|
+
sortedAt: number;
|
|
3645
|
+
filteredAt: number;
|
|
3646
|
+
generateGroupRows: never;
|
|
3647
|
+
postFilterDataArray?: never;
|
|
3648
|
+
postSortDataArray?: never;
|
|
3649
|
+
postGroupDataArray?: never;
|
|
3650
|
+
pivotColumns?: never;
|
|
3651
|
+
pivotColumnGroups?: never;
|
|
3652
|
+
toPrimaryKey: (data: unknown) => any;
|
|
3653
|
+
operatorsByFilterType: Record<string, Record<string, DataSourceFilterOperator<unknown>>>;
|
|
3654
|
+
sortMode: never;
|
|
3655
|
+
filterMode: never;
|
|
3656
|
+
groupMode: never;
|
|
3657
|
+
pivotMode: never;
|
|
3658
|
+
shouldReloadData: Required<DataSourcePropShouldReloadData<unknown>>;
|
|
3659
|
+
groupRowsState: GroupRowsState<unknown>;
|
|
3660
|
+
multiSort: never;
|
|
3661
|
+
controlledSort: never;
|
|
3662
|
+
controlledFilter: never;
|
|
3663
|
+
livePaginationCursor?: never;
|
|
3664
|
+
lazyLoadBatchSize?: never;
|
|
3665
|
+
rowSelection: never;
|
|
3666
|
+
cellSelection: never;
|
|
3667
|
+
selectionMode: never;
|
|
3668
|
+
aggregationReducers?: never;
|
|
3669
|
+
livePagination: never;
|
|
3670
|
+
refetchKey: never;
|
|
3671
|
+
isRowSelected: never;
|
|
3672
|
+
debugId: never;
|
|
3673
|
+
onDataArrayChange: never;
|
|
3674
|
+
onDataMutations: never;
|
|
3675
|
+
onReady: never;
|
|
3676
|
+
rowInfoReducers: never;
|
|
3677
|
+
lazyLoad: never;
|
|
3678
|
+
useGroupKeysForMultiRowSelection: never;
|
|
3679
|
+
onDataParamsChange: never;
|
|
3680
|
+
data: DataSourceData<unknown> & unknown[] & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> & ((dataInfo: DataSourceDataParams<unknown>) => unknown[] | Promise<unknown[] | DataSourceRemoteData<unknown>>);
|
|
3681
|
+
sortFunction: never;
|
|
3682
|
+
filterFunction: never;
|
|
3683
|
+
filterValue: never;
|
|
3684
|
+
filterTypes: DataSourcePropFilterTypes<unknown>;
|
|
3685
|
+
primaryKey: (data: unknown) => string;
|
|
3686
|
+
filterDelay: number;
|
|
3687
|
+
groupBy: DataSourcePropGroupBy<unknown>;
|
|
3688
|
+
pivotBy: never;
|
|
3689
|
+
loading: never;
|
|
3690
|
+
sortTypes: DataSourcePropSortTypes;
|
|
3691
|
+
collapseGroupRowsOnDataFunctionChange: never;
|
|
3692
|
+
sortInfo: never;
|
|
3693
|
+
}>) => void;
|
|
3694
|
+
};
|
|
3695
|
+
ContextComponent: React$1.Context<ManagedComponentStateContextValue<{
|
|
3696
|
+
indexer: Indexer<unknown, any>;
|
|
3697
|
+
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
|
|
3698
|
+
destroyedRef: React$1.MutableRefObject<boolean>;
|
|
3699
|
+
idToIndexMap: Map<any, number>;
|
|
3700
|
+
detailDataSourcesStateToRestore: Map<any, Partial<DataSourceStateRestoreForDetail<any>>>;
|
|
3701
|
+
stateReadyAsDetails: never;
|
|
3702
|
+
cache?: never;
|
|
3703
|
+
unfilteredCount: number;
|
|
3704
|
+
filteredCount: number;
|
|
3705
|
+
rowInfoReducerResults?: never;
|
|
3706
|
+
originalDataArrayChanged: never;
|
|
3707
|
+
originalDataArrayChangedInfo: {
|
|
3708
|
+
timestamp: number;
|
|
3709
|
+
mutations?: Map<string, DataSourceMutation<unknown>[]> | undefined;
|
|
3710
|
+
};
|
|
3711
|
+
lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
|
|
3712
|
+
pivotMappings?: never;
|
|
3713
|
+
propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "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
|
+
showSeparatePivotColumnForSingleAggregation: never;
|
|
3715
|
+
dataParams?: never;
|
|
3716
|
+
originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
|
|
3717
|
+
originalLazyGroupDataChangeDetect: never;
|
|
3718
|
+
scrollStopDelayUpdatedByTable: number;
|
|
3719
|
+
onCleanup: SubscriptionCallback<DataSourceState<unknown>>;
|
|
3720
|
+
notifyScrollbarsChange: SubscriptionCallback<Scrollbars>;
|
|
3721
|
+
notifyScrollStop: SubscriptionCallback<ScrollStopInfo>;
|
|
3722
|
+
notifyRenderRangeChange: SubscriptionCallback<RenderRange>;
|
|
3723
|
+
originalDataArray: unknown[];
|
|
3724
|
+
lastFilterDataArray?: never;
|
|
3725
|
+
lastSortDataArray?: never;
|
|
3726
|
+
lastGroupDataArray?: never;
|
|
3727
|
+
dataArray: InfiniteTableRowInfo<unknown>[];
|
|
3728
|
+
groupDeepMap?: never;
|
|
3729
|
+
groupRowsIndexesInDataArray?: never;
|
|
3730
|
+
reducerResults?: never;
|
|
3731
|
+
allRowsSelected: never;
|
|
3732
|
+
someRowsSelected: never;
|
|
3733
|
+
pivotTotalColumnPosition: never;
|
|
3734
|
+
pivotGrandTotalColumnPosition: never;
|
|
3735
|
+
cursorId: never;
|
|
3736
|
+
updatedAt: number;
|
|
3737
|
+
reducedAt: number;
|
|
3738
|
+
groupedAt: number;
|
|
3739
|
+
sortedAt: number;
|
|
3740
|
+
filteredAt: number;
|
|
3741
|
+
generateGroupRows: never;
|
|
3742
|
+
postFilterDataArray?: never;
|
|
3743
|
+
postSortDataArray?: never;
|
|
3744
|
+
postGroupDataArray?: never;
|
|
3745
|
+
pivotColumns?: never;
|
|
3746
|
+
pivotColumnGroups?: never;
|
|
3747
|
+
toPrimaryKey: (data: unknown) => any;
|
|
3748
|
+
operatorsByFilterType: Record<string, Record<string, DataSourceFilterOperator<unknown>>>;
|
|
3749
|
+
sortMode: never;
|
|
3750
|
+
filterMode: never;
|
|
3751
|
+
groupMode: never;
|
|
3752
|
+
pivotMode: never;
|
|
3753
|
+
shouldReloadData: Required<DataSourcePropShouldReloadData<unknown>>;
|
|
3754
|
+
groupRowsState: GroupRowsState<unknown>;
|
|
3755
|
+
multiSort: never;
|
|
3756
|
+
controlledSort: never;
|
|
3757
|
+
controlledFilter: never;
|
|
3758
|
+
livePaginationCursor?: never;
|
|
3759
|
+
lazyLoadBatchSize?: never;
|
|
3760
|
+
rowSelection: never;
|
|
3761
|
+
cellSelection: never;
|
|
3762
|
+
selectionMode: never;
|
|
3763
|
+
aggregationReducers?: never;
|
|
3764
|
+
livePagination: never;
|
|
3765
|
+
refetchKey: never;
|
|
3766
|
+
isRowSelected: never;
|
|
3767
|
+
debugId: never;
|
|
3768
|
+
onDataArrayChange: never;
|
|
3769
|
+
onDataMutations: never;
|
|
3770
|
+
onReady: never;
|
|
3771
|
+
rowInfoReducers: never;
|
|
3772
|
+
lazyLoad: never;
|
|
3773
|
+
useGroupKeysForMultiRowSelection: never;
|
|
3774
|
+
onDataParamsChange: never;
|
|
3775
|
+
data: DataSourceData<unknown> & unknown[] & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> & ((dataInfo: DataSourceDataParams<unknown>) => unknown[] | Promise<unknown[] | DataSourceRemoteData<unknown>>);
|
|
3776
|
+
sortFunction: never;
|
|
3777
|
+
filterFunction: never;
|
|
3778
|
+
filterValue: never;
|
|
3779
|
+
filterTypes: DataSourcePropFilterTypes<unknown>;
|
|
3780
|
+
primaryKey: (data: unknown) => string;
|
|
3781
|
+
filterDelay: number;
|
|
3782
|
+
groupBy: DataSourcePropGroupBy<unknown>;
|
|
3783
|
+
pivotBy: never;
|
|
3784
|
+
loading: never;
|
|
3785
|
+
sortTypes: DataSourcePropSortTypes;
|
|
3786
|
+
collapseGroupRowsOnDataFunctionChange: never;
|
|
3787
|
+
sortInfo: never;
|
|
3788
|
+
} & {
|
|
3789
|
+
indexer: Indexer<unknown, any>;
|
|
3790
|
+
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
|
|
3791
|
+
destroyedRef: React$1.MutableRefObject<boolean>;
|
|
3792
|
+
idToIndexMap: Map<any, number>;
|
|
3793
|
+
detailDataSourcesStateToRestore: Map<any, Partial<DataSourceStateRestoreForDetail<any>>>;
|
|
3794
|
+
stateReadyAsDetails: never;
|
|
3795
|
+
cache?: never;
|
|
3796
|
+
unfilteredCount: number;
|
|
3797
|
+
filteredCount: number;
|
|
3798
|
+
rowInfoReducerResults?: never;
|
|
3799
|
+
originalDataArrayChanged: never;
|
|
3800
|
+
originalDataArrayChangedInfo: {
|
|
3801
|
+
timestamp: number;
|
|
3802
|
+
mutations?: Map<string, DataSourceMutation<unknown>[]> | undefined;
|
|
3803
|
+
};
|
|
3804
|
+
lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
|
|
3805
|
+
pivotMappings?: never;
|
|
3806
|
+
propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "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>>;
|
|
3807
|
+
showSeparatePivotColumnForSingleAggregation: never;
|
|
3808
|
+
dataParams?: never;
|
|
3809
|
+
originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
|
|
3810
|
+
originalLazyGroupDataChangeDetect: never;
|
|
3811
|
+
scrollStopDelayUpdatedByTable: number;
|
|
3812
|
+
onCleanup: SubscriptionCallback<DataSourceState<unknown>>;
|
|
3813
|
+
notifyScrollbarsChange: SubscriptionCallback<Scrollbars>;
|
|
3814
|
+
notifyScrollStop: SubscriptionCallback<ScrollStopInfo>;
|
|
3815
|
+
notifyRenderRangeChange: SubscriptionCallback<RenderRange>;
|
|
3816
|
+
originalDataArray: unknown[];
|
|
3817
|
+
lastFilterDataArray?: never;
|
|
3818
|
+
lastSortDataArray?: never;
|
|
3819
|
+
lastGroupDataArray?: never;
|
|
3820
|
+
dataArray: InfiniteTableRowInfo<unknown>[];
|
|
3821
|
+
groupDeepMap?: never;
|
|
3822
|
+
groupRowsIndexesInDataArray?: never;
|
|
3823
|
+
reducerResults?: never;
|
|
3824
|
+
allRowsSelected: never;
|
|
3825
|
+
someRowsSelected: never;
|
|
3826
|
+
pivotTotalColumnPosition: never;
|
|
3827
|
+
pivotGrandTotalColumnPosition: never;
|
|
3828
|
+
cursorId: never;
|
|
3829
|
+
updatedAt: number;
|
|
3830
|
+
reducedAt: number;
|
|
3831
|
+
groupedAt: number;
|
|
3832
|
+
sortedAt: number;
|
|
3833
|
+
filteredAt: number;
|
|
3834
|
+
generateGroupRows: never;
|
|
3835
|
+
postFilterDataArray?: never;
|
|
3836
|
+
postSortDataArray?: never;
|
|
3837
|
+
postGroupDataArray?: never;
|
|
3838
|
+
pivotColumns?: never;
|
|
3839
|
+
pivotColumnGroups?: never;
|
|
3840
|
+
toPrimaryKey: (data: unknown) => any;
|
|
3841
|
+
operatorsByFilterType: Record<string, Record<string, DataSourceFilterOperator<unknown>>>;
|
|
3842
|
+
sortMode: never;
|
|
3843
|
+
filterMode: never;
|
|
3844
|
+
groupMode: never;
|
|
3845
|
+
pivotMode: never;
|
|
3846
|
+
shouldReloadData: Required<DataSourcePropShouldReloadData<unknown>>;
|
|
3847
|
+
groupRowsState: GroupRowsState<unknown>;
|
|
3848
|
+
multiSort: never;
|
|
3849
|
+
controlledSort: never;
|
|
3850
|
+
controlledFilter: never;
|
|
3851
|
+
livePaginationCursor?: never;
|
|
3852
|
+
lazyLoadBatchSize?: never;
|
|
3853
|
+
rowSelection: never;
|
|
3854
|
+
cellSelection: never;
|
|
3855
|
+
selectionMode: never;
|
|
3856
|
+
aggregationReducers?: never;
|
|
3857
|
+
livePagination: never;
|
|
3858
|
+
refetchKey: never;
|
|
3859
|
+
isRowSelected: never;
|
|
3860
|
+
debugId: never;
|
|
3861
|
+
onDataArrayChange: never;
|
|
3862
|
+
onDataMutations: never;
|
|
3863
|
+
onReady: never;
|
|
3864
|
+
rowInfoReducers: never;
|
|
3865
|
+
lazyLoad: never;
|
|
3866
|
+
useGroupKeysForMultiRowSelection: never;
|
|
3867
|
+
onDataParamsChange: never;
|
|
3868
|
+
data: DataSourceData<unknown> & unknown[] & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> & ((dataInfo: DataSourceDataParams<unknown>) => unknown[] | Promise<unknown[] | DataSourceRemoteData<unknown>>);
|
|
3869
|
+
sortFunction: never;
|
|
3870
|
+
filterFunction: never;
|
|
3871
|
+
filterValue: never;
|
|
3872
|
+
filterTypes: DataSourcePropFilterTypes<unknown>;
|
|
3873
|
+
primaryKey: (data: unknown) => string;
|
|
3874
|
+
filterDelay: number;
|
|
3875
|
+
groupBy: DataSourcePropGroupBy<unknown>;
|
|
3876
|
+
pivotBy: never;
|
|
3877
|
+
loading: never;
|
|
3878
|
+
sortTypes: DataSourcePropSortTypes;
|
|
3879
|
+
collapseGroupRowsOnDataFunctionChange: never;
|
|
3880
|
+
sortInfo: never;
|
|
3881
|
+
} & {
|
|
3882
|
+
indexer: Indexer<unknown, any>;
|
|
3883
|
+
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
|
|
3884
|
+
destroyedRef: React$1.MutableRefObject<boolean>;
|
|
3885
|
+
idToIndexMap: Map<any, number>;
|
|
3886
|
+
detailDataSourcesStateToRestore: Map<any, Partial<DataSourceStateRestoreForDetail<any>>>;
|
|
3887
|
+
stateReadyAsDetails: never;
|
|
3888
|
+
cache?: never;
|
|
3889
|
+
unfilteredCount: number;
|
|
3890
|
+
filteredCount: number;
|
|
3891
|
+
rowInfoReducerResults?: never;
|
|
3892
|
+
originalDataArrayChanged: never;
|
|
3893
|
+
originalDataArrayChangedInfo: {
|
|
3894
|
+
timestamp: number;
|
|
3895
|
+
mutations?: Map<string, DataSourceMutation<unknown>[]> | undefined;
|
|
3896
|
+
};
|
|
3897
|
+
lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
|
|
3898
|
+
pivotMappings?: never;
|
|
3899
|
+
propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "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>>;
|
|
3900
|
+
showSeparatePivotColumnForSingleAggregation: never;
|
|
3901
|
+
dataParams?: never;
|
|
3902
|
+
originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
|
|
3903
|
+
originalLazyGroupDataChangeDetect: never;
|
|
3904
|
+
scrollStopDelayUpdatedByTable: number;
|
|
3905
|
+
onCleanup: SubscriptionCallback<DataSourceState<unknown>>;
|
|
3906
|
+
notifyScrollbarsChange: SubscriptionCallback<Scrollbars>;
|
|
3907
|
+
notifyScrollStop: SubscriptionCallback<ScrollStopInfo>;
|
|
3908
|
+
notifyRenderRangeChange: SubscriptionCallback<RenderRange>;
|
|
3909
|
+
originalDataArray: unknown[];
|
|
3910
|
+
lastFilterDataArray?: never;
|
|
3911
|
+
lastSortDataArray?: never;
|
|
3912
|
+
lastGroupDataArray?: never;
|
|
3913
|
+
dataArray: InfiniteTableRowInfo<unknown>[];
|
|
3914
|
+
groupDeepMap?: never;
|
|
3915
|
+
groupRowsIndexesInDataArray?: never;
|
|
3916
|
+
reducerResults?: never;
|
|
3917
|
+
allRowsSelected: never;
|
|
3918
|
+
someRowsSelected: never;
|
|
3919
|
+
pivotTotalColumnPosition: never;
|
|
3920
|
+
pivotGrandTotalColumnPosition: never;
|
|
3921
|
+
cursorId: never;
|
|
3922
|
+
updatedAt: number;
|
|
3923
|
+
reducedAt: number;
|
|
3924
|
+
groupedAt: number;
|
|
3925
|
+
sortedAt: number;
|
|
3926
|
+
filteredAt: number;
|
|
3927
|
+
generateGroupRows: never;
|
|
3928
|
+
postFilterDataArray?: never;
|
|
3929
|
+
postSortDataArray?: never;
|
|
3930
|
+
postGroupDataArray?: never;
|
|
3931
|
+
pivotColumns?: never;
|
|
3932
|
+
pivotColumnGroups?: never;
|
|
3933
|
+
toPrimaryKey: (data: unknown) => any;
|
|
3934
|
+
operatorsByFilterType: Record<string, Record<string, DataSourceFilterOperator<unknown>>>;
|
|
3935
|
+
sortMode: never;
|
|
3936
|
+
filterMode: never;
|
|
3937
|
+
groupMode: never;
|
|
3938
|
+
pivotMode: never;
|
|
3939
|
+
shouldReloadData: Required<DataSourcePropShouldReloadData<unknown>>;
|
|
3940
|
+
groupRowsState: GroupRowsState<unknown>;
|
|
3941
|
+
multiSort: never;
|
|
3942
|
+
controlledSort: never;
|
|
3943
|
+
controlledFilter: never;
|
|
3944
|
+
livePaginationCursor?: never;
|
|
3945
|
+
lazyLoadBatchSize?: never;
|
|
3946
|
+
rowSelection: never;
|
|
3947
|
+
cellSelection: never;
|
|
3948
|
+
selectionMode: never;
|
|
3949
|
+
aggregationReducers?: never;
|
|
3950
|
+
livePagination: never;
|
|
3951
|
+
refetchKey: never;
|
|
3952
|
+
isRowSelected: never;
|
|
3953
|
+
debugId: never;
|
|
3954
|
+
onDataArrayChange: never;
|
|
3955
|
+
onDataMutations: never;
|
|
3956
|
+
onReady: never;
|
|
3957
|
+
rowInfoReducers: never;
|
|
3958
|
+
lazyLoad: never;
|
|
3959
|
+
useGroupKeysForMultiRowSelection: never;
|
|
3960
|
+
onDataParamsChange: never;
|
|
3961
|
+
data: DataSourceData<unknown> & unknown[] & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> & ((dataInfo: DataSourceDataParams<unknown>) => unknown[] | Promise<unknown[] | DataSourceRemoteData<unknown>>);
|
|
3962
|
+
sortFunction: never;
|
|
3963
|
+
filterFunction: never;
|
|
3964
|
+
filterValue: never;
|
|
3965
|
+
filterTypes: DataSourcePropFilterTypes<unknown>;
|
|
3966
|
+
primaryKey: (data: unknown) => string;
|
|
3967
|
+
filterDelay: number;
|
|
3968
|
+
groupBy: DataSourcePropGroupBy<unknown>;
|
|
3969
|
+
pivotBy: never;
|
|
3970
|
+
loading: never;
|
|
3971
|
+
sortTypes: DataSourcePropSortTypes;
|
|
3972
|
+
collapseGroupRowsOnDataFunctionChange: never;
|
|
3973
|
+
sortInfo: never;
|
|
3974
|
+
}, ComponentStateGeneratedActions<{
|
|
3975
|
+
indexer: Indexer<unknown, any>;
|
|
3976
|
+
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
|
|
3977
|
+
destroyedRef: React$1.MutableRefObject<boolean>;
|
|
3978
|
+
idToIndexMap: Map<any, number>;
|
|
3979
|
+
detailDataSourcesStateToRestore: Map<any, Partial<DataSourceStateRestoreForDetail<any>>>;
|
|
3980
|
+
stateReadyAsDetails: never;
|
|
3981
|
+
cache?: never;
|
|
3982
|
+
unfilteredCount: number;
|
|
3983
|
+
filteredCount: number;
|
|
3984
|
+
rowInfoReducerResults?: never;
|
|
3985
|
+
originalDataArrayChanged: never;
|
|
3986
|
+
originalDataArrayChangedInfo: {
|
|
3987
|
+
timestamp: number;
|
|
3988
|
+
mutations?: Map<string, DataSourceMutation<unknown>[]> | undefined;
|
|
3989
|
+
};
|
|
3990
|
+
lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
|
|
3991
|
+
pivotMappings?: never;
|
|
3992
|
+
propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "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>>;
|
|
3993
|
+
showSeparatePivotColumnForSingleAggregation: never;
|
|
3994
|
+
dataParams?: never;
|
|
3995
|
+
originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
|
|
3996
|
+
originalLazyGroupDataChangeDetect: never;
|
|
3997
|
+
scrollStopDelayUpdatedByTable: number;
|
|
3998
|
+
onCleanup: SubscriptionCallback<DataSourceState<unknown>>;
|
|
3999
|
+
notifyScrollbarsChange: SubscriptionCallback<Scrollbars>;
|
|
4000
|
+
notifyScrollStop: SubscriptionCallback<ScrollStopInfo>;
|
|
4001
|
+
notifyRenderRangeChange: SubscriptionCallback<RenderRange>;
|
|
4002
|
+
originalDataArray: unknown[];
|
|
4003
|
+
lastFilterDataArray?: never;
|
|
4004
|
+
lastSortDataArray?: never;
|
|
4005
|
+
lastGroupDataArray?: never;
|
|
4006
|
+
dataArray: InfiniteTableRowInfo<unknown>[];
|
|
4007
|
+
groupDeepMap?: never;
|
|
4008
|
+
groupRowsIndexesInDataArray?: never;
|
|
4009
|
+
reducerResults?: never;
|
|
4010
|
+
allRowsSelected: never;
|
|
4011
|
+
someRowsSelected: never;
|
|
4012
|
+
pivotTotalColumnPosition: never;
|
|
4013
|
+
pivotGrandTotalColumnPosition: never;
|
|
4014
|
+
cursorId: never;
|
|
4015
|
+
updatedAt: number;
|
|
4016
|
+
reducedAt: number;
|
|
4017
|
+
groupedAt: number;
|
|
4018
|
+
sortedAt: number;
|
|
4019
|
+
filteredAt: number;
|
|
4020
|
+
generateGroupRows: never;
|
|
4021
|
+
postFilterDataArray?: never;
|
|
4022
|
+
postSortDataArray?: never;
|
|
4023
|
+
postGroupDataArray?: never;
|
|
4024
|
+
pivotColumns?: never;
|
|
4025
|
+
pivotColumnGroups?: never;
|
|
4026
|
+
toPrimaryKey: (data: unknown) => any;
|
|
4027
|
+
operatorsByFilterType: Record<string, Record<string, DataSourceFilterOperator<unknown>>>;
|
|
4028
|
+
sortMode: never;
|
|
4029
|
+
filterMode: never;
|
|
4030
|
+
groupMode: never;
|
|
4031
|
+
pivotMode: never;
|
|
4032
|
+
shouldReloadData: Required<DataSourcePropShouldReloadData<unknown>>;
|
|
4033
|
+
groupRowsState: GroupRowsState<unknown>;
|
|
4034
|
+
multiSort: never;
|
|
4035
|
+
controlledSort: never;
|
|
4036
|
+
controlledFilter: never;
|
|
4037
|
+
livePaginationCursor?: never;
|
|
4038
|
+
lazyLoadBatchSize?: never;
|
|
4039
|
+
rowSelection: never;
|
|
4040
|
+
cellSelection: never;
|
|
4041
|
+
selectionMode: never;
|
|
4042
|
+
aggregationReducers?: never;
|
|
4043
|
+
livePagination: never;
|
|
4044
|
+
refetchKey: never;
|
|
4045
|
+
isRowSelected: never;
|
|
4046
|
+
debugId: never;
|
|
4047
|
+
onDataArrayChange: never;
|
|
4048
|
+
onDataMutations: never;
|
|
4049
|
+
onReady: never;
|
|
4050
|
+
rowInfoReducers: never;
|
|
4051
|
+
lazyLoad: never;
|
|
4052
|
+
useGroupKeysForMultiRowSelection: never;
|
|
4053
|
+
onDataParamsChange: never;
|
|
4054
|
+
data: DataSourceData<unknown> & unknown[] & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> & ((dataInfo: DataSourceDataParams<unknown>) => unknown[] | Promise<unknown[] | DataSourceRemoteData<unknown>>);
|
|
4055
|
+
sortFunction: never;
|
|
4056
|
+
filterFunction: never;
|
|
4057
|
+
filterValue: never;
|
|
4058
|
+
filterTypes: DataSourcePropFilterTypes<unknown>;
|
|
4059
|
+
primaryKey: (data: unknown) => string;
|
|
4060
|
+
filterDelay: number;
|
|
4061
|
+
groupBy: DataSourcePropGroupBy<unknown>;
|
|
4062
|
+
pivotBy: never;
|
|
4063
|
+
loading: never;
|
|
4064
|
+
sortTypes: DataSourcePropSortTypes;
|
|
4065
|
+
collapseGroupRowsOnDataFunctionChange: never;
|
|
4066
|
+
sortInfo: never;
|
|
4067
|
+
} & {
|
|
4068
|
+
indexer: Indexer<unknown, any>;
|
|
4069
|
+
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
|
|
4070
|
+
destroyedRef: React$1.MutableRefObject<boolean>;
|
|
4071
|
+
idToIndexMap: Map<any, number>;
|
|
4072
|
+
detailDataSourcesStateToRestore: Map<any, Partial<DataSourceStateRestoreForDetail<any>>>;
|
|
4073
|
+
stateReadyAsDetails: never;
|
|
4074
|
+
cache?: never;
|
|
4075
|
+
unfilteredCount: number;
|
|
4076
|
+
filteredCount: number;
|
|
4077
|
+
rowInfoReducerResults?: never;
|
|
4078
|
+
originalDataArrayChanged: never;
|
|
4079
|
+
originalDataArrayChangedInfo: {
|
|
4080
|
+
timestamp: number;
|
|
4081
|
+
mutations?: Map<string, DataSourceMutation<unknown>[]> | undefined;
|
|
4082
|
+
};
|
|
4083
|
+
lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
|
|
4084
|
+
pivotMappings?: never;
|
|
4085
|
+
propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "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>>;
|
|
4086
|
+
showSeparatePivotColumnForSingleAggregation: never;
|
|
4087
|
+
dataParams?: never;
|
|
4088
|
+
originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
|
|
4089
|
+
originalLazyGroupDataChangeDetect: never;
|
|
4090
|
+
scrollStopDelayUpdatedByTable: number;
|
|
4091
|
+
onCleanup: SubscriptionCallback<DataSourceState<unknown>>;
|
|
4092
|
+
notifyScrollbarsChange: SubscriptionCallback<Scrollbars>;
|
|
4093
|
+
notifyScrollStop: SubscriptionCallback<ScrollStopInfo>;
|
|
4094
|
+
notifyRenderRangeChange: SubscriptionCallback<RenderRange>;
|
|
4095
|
+
originalDataArray: unknown[];
|
|
4096
|
+
lastFilterDataArray?: never;
|
|
4097
|
+
lastSortDataArray?: never;
|
|
4098
|
+
lastGroupDataArray?: never;
|
|
4099
|
+
dataArray: InfiniteTableRowInfo<unknown>[];
|
|
4100
|
+
groupDeepMap?: never;
|
|
4101
|
+
groupRowsIndexesInDataArray?: never;
|
|
4102
|
+
reducerResults?: never;
|
|
4103
|
+
allRowsSelected: never;
|
|
4104
|
+
someRowsSelected: never;
|
|
4105
|
+
pivotTotalColumnPosition: never;
|
|
4106
|
+
pivotGrandTotalColumnPosition: never;
|
|
4107
|
+
cursorId: never;
|
|
4108
|
+
updatedAt: number;
|
|
4109
|
+
reducedAt: number;
|
|
4110
|
+
groupedAt: number;
|
|
4111
|
+
sortedAt: number;
|
|
4112
|
+
filteredAt: number;
|
|
4113
|
+
generateGroupRows: never;
|
|
4114
|
+
postFilterDataArray?: never;
|
|
4115
|
+
postSortDataArray?: never;
|
|
4116
|
+
postGroupDataArray?: never;
|
|
4117
|
+
pivotColumns?: never;
|
|
4118
|
+
pivotColumnGroups?: never;
|
|
4119
|
+
toPrimaryKey: (data: unknown) => any;
|
|
4120
|
+
operatorsByFilterType: Record<string, Record<string, DataSourceFilterOperator<unknown>>>;
|
|
4121
|
+
sortMode: never;
|
|
4122
|
+
filterMode: never;
|
|
4123
|
+
groupMode: never;
|
|
4124
|
+
pivotMode: never;
|
|
4125
|
+
shouldReloadData: Required<DataSourcePropShouldReloadData<unknown>>;
|
|
4126
|
+
groupRowsState: GroupRowsState<unknown>;
|
|
4127
|
+
multiSort: never;
|
|
4128
|
+
controlledSort: never;
|
|
4129
|
+
controlledFilter: never;
|
|
4130
|
+
livePaginationCursor?: never;
|
|
4131
|
+
lazyLoadBatchSize?: never;
|
|
4132
|
+
rowSelection: never;
|
|
4133
|
+
cellSelection: never;
|
|
4134
|
+
selectionMode: never;
|
|
4135
|
+
aggregationReducers?: never;
|
|
4136
|
+
livePagination: never;
|
|
4137
|
+
refetchKey: never;
|
|
4138
|
+
isRowSelected: never;
|
|
4139
|
+
debugId: never;
|
|
4140
|
+
onDataArrayChange: never;
|
|
4141
|
+
onDataMutations: never;
|
|
4142
|
+
onReady: never;
|
|
4143
|
+
rowInfoReducers: never;
|
|
4144
|
+
lazyLoad: never;
|
|
4145
|
+
useGroupKeysForMultiRowSelection: never;
|
|
4146
|
+
onDataParamsChange: never;
|
|
4147
|
+
data: DataSourceData<unknown> & unknown[] & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> & ((dataInfo: DataSourceDataParams<unknown>) => unknown[] | Promise<unknown[] | DataSourceRemoteData<unknown>>);
|
|
4148
|
+
sortFunction: never;
|
|
4149
|
+
filterFunction: never;
|
|
4150
|
+
filterValue: never;
|
|
4151
|
+
filterTypes: DataSourcePropFilterTypes<unknown>;
|
|
4152
|
+
primaryKey: (data: unknown) => string;
|
|
4153
|
+
filterDelay: number;
|
|
4154
|
+
groupBy: DataSourcePropGroupBy<unknown>;
|
|
4155
|
+
pivotBy: never;
|
|
4156
|
+
loading: never;
|
|
4157
|
+
sortTypes: DataSourcePropSortTypes;
|
|
4158
|
+
collapseGroupRowsOnDataFunctionChange: never;
|
|
4159
|
+
sortInfo: never;
|
|
4160
|
+
} & {
|
|
4161
|
+
indexer: Indexer<unknown, any>;
|
|
4162
|
+
getDataSourceMasterContextRef: React$1.MutableRefObject<() => DataSourceMasterDetailContextValue<any> | undefined>;
|
|
4163
|
+
destroyedRef: React$1.MutableRefObject<boolean>;
|
|
4164
|
+
idToIndexMap: Map<any, number>;
|
|
4165
|
+
detailDataSourcesStateToRestore: Map<any, Partial<DataSourceStateRestoreForDetail<any>>>;
|
|
4166
|
+
stateReadyAsDetails: never;
|
|
4167
|
+
cache?: never;
|
|
4168
|
+
unfilteredCount: number;
|
|
4169
|
+
filteredCount: number;
|
|
4170
|
+
rowInfoReducerResults?: never;
|
|
4171
|
+
originalDataArrayChanged: never;
|
|
4172
|
+
originalDataArrayChangedInfo: {
|
|
4173
|
+
timestamp: number;
|
|
4174
|
+
mutations?: Map<string, DataSourceMutation<unknown>[]> | undefined;
|
|
4175
|
+
};
|
|
4176
|
+
lazyLoadCacheOfLoadedBatches: DeepMap<string, true>;
|
|
4177
|
+
pivotMappings?: never;
|
|
4178
|
+
propsCache: Map<"children" | "data" | "groupBy" | "pivotBy" | "rowSelection" | "sortMode" | "filterMode" | "groupMode" | "shouldReloadData" | "groupRowsState" | "livePaginationCursor" | "cellSelection" | "selectionMode" | "aggregationReducers" | "livePagination" | "refetchKey" | "isRowSelected" | "debugId" | "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>>;
|
|
4179
|
+
showSeparatePivotColumnForSingleAggregation: never;
|
|
4180
|
+
dataParams?: never;
|
|
4181
|
+
originalLazyGroupData: LazyGroupDataDeepMap<unknown, string>;
|
|
4182
|
+
originalLazyGroupDataChangeDetect: never;
|
|
4183
|
+
scrollStopDelayUpdatedByTable: number;
|
|
4184
|
+
onCleanup: SubscriptionCallback<DataSourceState<unknown>>;
|
|
4185
|
+
notifyScrollbarsChange: SubscriptionCallback<Scrollbars>;
|
|
4186
|
+
notifyScrollStop: SubscriptionCallback<ScrollStopInfo>;
|
|
4187
|
+
notifyRenderRangeChange: SubscriptionCallback<RenderRange>;
|
|
4188
|
+
originalDataArray: unknown[];
|
|
4189
|
+
lastFilterDataArray?: never;
|
|
4190
|
+
lastSortDataArray?: never;
|
|
4191
|
+
lastGroupDataArray?: never;
|
|
4192
|
+
dataArray: InfiniteTableRowInfo<unknown>[];
|
|
4193
|
+
groupDeepMap?: never;
|
|
4194
|
+
groupRowsIndexesInDataArray?: never;
|
|
4195
|
+
reducerResults?: never;
|
|
4196
|
+
allRowsSelected: never;
|
|
4197
|
+
someRowsSelected: never;
|
|
4198
|
+
pivotTotalColumnPosition: never;
|
|
4199
|
+
pivotGrandTotalColumnPosition: never;
|
|
4200
|
+
cursorId: never;
|
|
4201
|
+
updatedAt: number;
|
|
4202
|
+
reducedAt: number;
|
|
4203
|
+
groupedAt: number;
|
|
4204
|
+
sortedAt: number;
|
|
4205
|
+
filteredAt: number;
|
|
4206
|
+
generateGroupRows: never;
|
|
4207
|
+
postFilterDataArray?: never;
|
|
4208
|
+
postSortDataArray?: never;
|
|
4209
|
+
postGroupDataArray?: never;
|
|
4210
|
+
pivotColumns?: never;
|
|
4211
|
+
pivotColumnGroups?: never;
|
|
4212
|
+
toPrimaryKey: (data: unknown) => any;
|
|
4213
|
+
operatorsByFilterType: Record<string, Record<string, DataSourceFilterOperator<unknown>>>;
|
|
4214
|
+
sortMode: never;
|
|
4215
|
+
filterMode: never;
|
|
4216
|
+
groupMode: never;
|
|
4217
|
+
pivotMode: never;
|
|
4218
|
+
shouldReloadData: Required<DataSourcePropShouldReloadData<unknown>>;
|
|
4219
|
+
groupRowsState: GroupRowsState<unknown>;
|
|
4220
|
+
multiSort: never;
|
|
4221
|
+
controlledSort: never;
|
|
4222
|
+
controlledFilter: never;
|
|
4223
|
+
livePaginationCursor?: never;
|
|
4224
|
+
lazyLoadBatchSize?: never;
|
|
4225
|
+
rowSelection: never;
|
|
4226
|
+
cellSelection: never;
|
|
4227
|
+
selectionMode: never;
|
|
4228
|
+
aggregationReducers?: never;
|
|
4229
|
+
livePagination: never;
|
|
4230
|
+
refetchKey: never;
|
|
4231
|
+
isRowSelected: never;
|
|
4232
|
+
debugId: never;
|
|
4233
|
+
onDataArrayChange: never;
|
|
4234
|
+
onDataMutations: never;
|
|
4235
|
+
onReady: never;
|
|
4236
|
+
rowInfoReducers: never;
|
|
4237
|
+
lazyLoad: never;
|
|
4238
|
+
useGroupKeysForMultiRowSelection: never;
|
|
4239
|
+
onDataParamsChange: never;
|
|
4240
|
+
data: DataSourceData<unknown> & unknown[] & DataSourceRemoteData<unknown> & Promise<unknown[] | DataSourceRemoteData<unknown>> & ((dataInfo: DataSourceDataParams<unknown>) => unknown[] | Promise<unknown[] | DataSourceRemoteData<unknown>>);
|
|
4241
|
+
sortFunction: never;
|
|
4242
|
+
filterFunction: never;
|
|
4243
|
+
filterValue: never;
|
|
4244
|
+
filterTypes: DataSourcePropFilterTypes<unknown>;
|
|
4245
|
+
primaryKey: (data: unknown) => string;
|
|
4246
|
+
filterDelay: number;
|
|
4247
|
+
groupBy: DataSourcePropGroupBy<unknown>;
|
|
4248
|
+
pivotBy: never;
|
|
4249
|
+
loading: never;
|
|
4250
|
+
sortTypes: DataSourcePropSortTypes;
|
|
4251
|
+
collapseGroupRowsOnDataFunctionChange: never;
|
|
4252
|
+
sortInfo: never;
|
|
4253
|
+
}>>>;
|
|
4254
|
+
};
|
|
4255
|
+
declare function DataSource<T>(props: DataSourcePropsWithChildren<T>): React$1.JSX.Element;
|
|
2260
4256
|
declare function useRowInfoReducers(): Record<string, any> | undefined;
|
|
2261
4257
|
declare function useMasterRowInfo<T = any>(): InfiniteTableRowInfo<T> | undefined;
|
|
2262
4258
|
|
|
@@ -3273,6 +5269,71 @@ declare function debounce(fn: Function, { wait }: {
|
|
|
3273
5269
|
wait: number;
|
|
3274
5270
|
}): (...args: any[]) => void;
|
|
3275
5271
|
|
|
5272
|
+
declare type DataSourceChildren<T> = React$1.ReactNode | ((values: DataSourceState<T>) => React$1.ReactNode);
|
|
5273
|
+
|
|
5274
|
+
declare function useDataSourceInternal<T>(props: Omit<DataSourceProps<T>, 'children'>): {
|
|
5275
|
+
DataSource: ({ children }: {
|
|
5276
|
+
children: DataSourceChildren<T>;
|
|
5277
|
+
}) => React__default.JSX.Element;
|
|
5278
|
+
state: DataSourceState<T>;
|
|
5279
|
+
};
|
|
5280
|
+
|
|
5281
|
+
declare type DataQuerySnapshot = {
|
|
5282
|
+
state: 'idle' | 'loading' | 'success' | 'error';
|
|
5283
|
+
result: any;
|
|
5284
|
+
error: any;
|
|
5285
|
+
done: boolean;
|
|
5286
|
+
doneAt: number;
|
|
5287
|
+
promise?: Promise<DataQuery>;
|
|
5288
|
+
};
|
|
5289
|
+
declare class DataQuery {
|
|
5290
|
+
private state;
|
|
5291
|
+
private result;
|
|
5292
|
+
private error;
|
|
5293
|
+
private doneAt;
|
|
5294
|
+
private pendingPromise;
|
|
5295
|
+
debugName: string;
|
|
5296
|
+
constructor(debugName?: string);
|
|
5297
|
+
fetch: (loadFn: DataQueryFn, ...key: DataQueryKey[]) => Promise<DataQuerySnapshot>;
|
|
5298
|
+
getCurrentSnapshot: () => DataQuerySnapshot;
|
|
5299
|
+
getDoneSnapshot: () => Promise<DataQuerySnapshot>;
|
|
5300
|
+
getResult: () => any;
|
|
5301
|
+
isDone: () => boolean;
|
|
5302
|
+
isSuccess: () => boolean;
|
|
5303
|
+
}
|
|
5304
|
+
declare type DataQueryKey = string | number | boolean | null | symbol | {
|
|
5305
|
+
[key: string]: DataQueryKey | undefined;
|
|
5306
|
+
} | Array<DataQueryKey>;
|
|
5307
|
+
declare type DataQueryFn = (...key: DataQueryKey[]) => Promise<any>;
|
|
5308
|
+
|
|
5309
|
+
declare type QueryOptions = {
|
|
5310
|
+
fn: DataQueryFn;
|
|
5311
|
+
key: DataQueryKey[];
|
|
5312
|
+
name?: string;
|
|
5313
|
+
};
|
|
5314
|
+
declare function queryKeyToCacheKey(key: DataQueryKey): any;
|
|
5315
|
+
declare class DataClient {
|
|
5316
|
+
private options;
|
|
5317
|
+
private queryCache;
|
|
5318
|
+
static clients: Map<string, DataClient>;
|
|
5319
|
+
private name;
|
|
5320
|
+
static destroy(clientName: string): void;
|
|
5321
|
+
static destroyAll(): void;
|
|
5322
|
+
constructor(options: DataClientOptions);
|
|
5323
|
+
private removeQueryIfErrored;
|
|
5324
|
+
private fireQuery;
|
|
5325
|
+
query: (options: QueryOptions) => DataQuerySnapshot;
|
|
5326
|
+
awaitQuery: (options: QueryOptions) => Promise<DataQuerySnapshot>;
|
|
5327
|
+
isQueryInProgress: (key: DataQueryKey[]) => boolean;
|
|
5328
|
+
hasQueryForKey: (key: DataQueryKey[]) => boolean;
|
|
5329
|
+
discardQueryForKey: (key: DataQueryKey[]) => void;
|
|
5330
|
+
destroy(): void;
|
|
5331
|
+
}
|
|
5332
|
+
declare type DataClientOptions = {
|
|
5333
|
+
name: string;
|
|
5334
|
+
cache?: boolean;
|
|
5335
|
+
};
|
|
5336
|
+
|
|
3276
5337
|
declare function Menu(props: MenuProps & HTMLProps<HTMLDivElement>): React$1.JSX.Element;
|
|
3277
5338
|
|
|
3278
5339
|
declare function useEffectWithChanges<T>(fn: (changes: Record<keyof T, any>, prevValues: Record<string, any>) => void | (() => void), deps: Record<keyof T, any>): void;
|
|
@@ -3325,23 +5386,6 @@ declare class WeakFixedSizeSet<T extends object> {
|
|
|
3325
5386
|
add(el: T): this;
|
|
3326
5387
|
}
|
|
3327
5388
|
|
|
3328
|
-
declare type DebugLogger = {
|
|
3329
|
-
(...args: any[]): void;
|
|
3330
|
-
extend: (channelName: string) => DebugLogger;
|
|
3331
|
-
color: (colorName: string, ...message: string[]) => [string, string];
|
|
3332
|
-
enabled: boolean;
|
|
3333
|
-
channel: string;
|
|
3334
|
-
destroy: () => void;
|
|
3335
|
-
logFn: undefined | ((...args: any[]) => void);
|
|
3336
|
-
};
|
|
3337
|
-
declare const debug: {
|
|
3338
|
-
(channelName: string): DebugLogger;
|
|
3339
|
-
colors: string[];
|
|
3340
|
-
enable: string;
|
|
3341
|
-
diffenable: string | boolean;
|
|
3342
|
-
logFn: DebugLogger['logFn'];
|
|
3343
|
-
};
|
|
3344
|
-
|
|
3345
5389
|
declare const components: {
|
|
3346
5390
|
CheckBox: typeof InfiniteCheckBox;
|
|
3347
5391
|
LoadMask: (props: LoadMaskProps) => React$1.JSX.Element;
|
|
@@ -3350,4 +5394,4 @@ declare const components: {
|
|
|
3350
5394
|
NumberFilterEditor: typeof NumberFilterEditor;
|
|
3351
5395
|
};
|
|
3352
5396
|
|
|
3353
|
-
export { AdvancedAlignable, CellSelectionState, CellSelectionStateObject, ColumnTypeWithInherit, 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, 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, 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, Scrollbars, ShowOverlayFn, WeakFixedSizeSet, components, debounce, debug, defaultFilterTypes, eventMatchesKeyboardShortcut, defaultFilterTypes as filterTypes, flatten, getComponentStateRoot, group, interceptMap, keyboardShortcuts, multisort, useComponentState,
|
|
5397
|
+
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, 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, Scrollbars, ShowOverlayFn, 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 };
|