@layers-app/shared 0.0.37 → 0.0.39
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/dist/KanbanLayout-k814Ysrn.js +297 -0
- package/dist/components/AppContainer/types.d.ts +2 -0
- package/dist/components/CircleColorPicker/CircleColorPicker.d.ts +7 -0
- package/dist/components/ColorPicker/ColorPicker.d.ts +4 -0
- package/dist/components/CommentsPanel/components/CommentActionMenu.d.ts +6 -0
- package/dist/components/CommentsPanel/components/CommentsUploadFilesPreview.d.ts +2 -1
- package/dist/components/Copyright/index.d.ts +10 -0
- package/dist/components/EmojiPicker/EmojiPanel.d.ts +1 -1
- package/dist/components/EmojiPicker/EmojiPicker.d.ts +9 -1
- package/dist/components/EmojiPicker/IconsPanel.d.ts +1 -1
- package/dist/components/EmojiPicker/custom-icons/StatusCancel.d.ts +2 -0
- package/dist/components/EmojiPicker/custom-icons/StatusDone.d.ts +2 -0
- package/dist/components/EmojiPicker/custom-icons/StatusProgress00.d.ts +2 -0
- package/dist/components/EmojiPicker/custom-icons/StatusProgress10.d.ts +2 -0
- package/dist/components/EmojiPicker/custom-icons/StatusProgress100.d.ts +2 -0
- package/dist/components/EmojiPicker/custom-icons/StatusProgress20.d.ts +2 -0
- package/dist/components/EmojiPicker/custom-icons/StatusProgress30.d.ts +2 -0
- package/dist/components/EmojiPicker/custom-icons/StatusProgress40.d.ts +2 -0
- package/dist/components/EmojiPicker/custom-icons/StatusProgress50.d.ts +2 -0
- package/dist/components/EmojiPicker/custom-icons/StatusProgress60.d.ts +2 -0
- package/dist/components/EmojiPicker/custom-icons/StatusProgress70.d.ts +2 -0
- package/dist/components/EmojiPicker/custom-icons/StatusProgress80.d.ts +2 -0
- package/dist/components/EmojiPicker/custom-icons/StatusProgress90.d.ts +2 -0
- package/dist/components/EmojiPicker/custom-icons/customIcons.d.ts +12 -0
- package/dist/components/EntityTitle/EntityTitle.d.ts +17 -0
- package/dist/components/FilePicker/FilePicker.d.ts +4 -3
- package/dist/components/Logotype.d.ts +4 -2
- package/dist/components/NoData/NoData.d.ts +129 -22
- package/dist/components/NotPublicPanel/NotPublicPanel.d.ts +1 -2
- package/dist/components/ProjectIcon/ProjectIcon.d.ts +10 -1
- package/dist/components/SearchFilters/SearchFilters.d.ts +4 -2
- package/dist/components/SearchFilters/components/Type.d.ts +3 -2
- package/dist/components/SearchFilters/types.d.ts +1 -1
- package/dist/components/UserAvatar/index.d.ts +1 -2
- package/dist/components/table/api.d.ts +5 -7
- package/dist/components/table/components/TableRow.d.ts +4 -5
- package/dist/components/table/components/TableRows.d.ts +4 -5
- package/dist/components/table/components/TableSkeleton.d.ts +4 -4
- package/dist/components/table/helpers/columns.d.ts +2 -9
- package/dist/components/table/hooks/TableProvider.d.ts +6 -8
- package/dist/components/table/hooks/useCreateTable.d.ts +6 -8
- package/dist/components/table/hooks/useTableStore.d.ts +6 -8
- package/dist/components/table/selectors.d.ts +529 -2734
- package/dist/components/table/store.d.ts +11 -26
- package/dist/components/table/types.d.ts +4 -9
- package/dist/constants.d.ts +1 -0
- package/dist/emoji-categorized-CRsMUQyD.js +4 -0
- package/dist/helpers/filterHierarchyByTypes.d.ts +15 -0
- package/dist/helpers/getRandomIconColor.d.ts +1 -0
- package/dist/icons.min-wo13YUY4.js +4 -0
- package/dist/index-BHgJVazX.js +81164 -0
- package/dist/index.d.ts +8 -0
- package/dist/index.js +184 -187
- package/dist/index.umd.cjs +130 -1216
- package/dist/store/accessOptionsControl.d.ts +6 -0
- package/dist/store/onboarding.d.ts +2 -2
- package/dist/utils/getPlanBadgeColor.d.ts +6 -0
- package/dist/utils/queryParams.d.ts +2 -0
- package/package.json +3 -3
- package/dist/KanbanLayout-VHRhOh9W.js +0 -287
- package/dist/TimeLine-BByQEycM.js +0 -198
- package/dist/components/OnBoarding/steps/DifferentLayouts/TimeLine.d.ts +0 -2
- package/dist/components/table/helpers/filter.d.ts +0 -52
- package/dist/emoji-categorized-DAOdcF53.js +0 -4
- package/dist/icons.min-Chyr-bjL.js +0 -4
- package/dist/index-De7pQ4GG.js +0 -66447
- package/dist/index.esm-CKK13a1d.js +0 -6814
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { CSSProperties } from 'react';
|
|
2
2
|
import { Store } from './store';
|
|
3
|
-
import { RowMeta,
|
|
3
|
+
import { RowMeta, TableColumnState, TableRowModel } from './types';
|
|
4
4
|
export declare const rowsReselect: ((state: Store) => {
|
|
5
5
|
topRows: TableRowModel[];
|
|
6
6
|
bottomRows: TableRowModel[];
|
|
@@ -103,19 +103,13 @@ export declare const searchedRowsReselect: ((state: Store) => TableRowModel[]) &
|
|
|
103
103
|
memoize: typeof import('reselect').weakMapMemoize;
|
|
104
104
|
argsMemoize: typeof import('reselect').weakMapMemoize;
|
|
105
105
|
};
|
|
106
|
-
export declare const
|
|
106
|
+
export declare const sortedRowsReselect: ((state: Store) => TableRowModel[]) & {
|
|
107
107
|
clearCache: () => void;
|
|
108
108
|
resultsCount: () => number;
|
|
109
109
|
resetResultsCount: () => void;
|
|
110
110
|
} & {
|
|
111
|
-
resultFunc: (resultFuncArgs_0: TableRowModel[], resultFuncArgs_1:
|
|
112
|
-
|
|
113
|
-
combiner: "and" | "or";
|
|
114
|
-
}) => TableRowModel[];
|
|
115
|
-
memoizedResultFunc: ((resultFuncArgs_0: TableRowModel[], resultFuncArgs_1: {
|
|
116
|
-
rows: import('./store').TableFilterRow[];
|
|
117
|
-
combiner: "and" | "or";
|
|
118
|
-
}) => TableRowModel[]) & {
|
|
111
|
+
resultFunc: (resultFuncArgs_0: TableRowModel[], resultFuncArgs_1: boolean, resultFuncArgs_2: import('./types').TableSortModel | null) => TableRowModel[];
|
|
112
|
+
memoizedResultFunc: ((resultFuncArgs_0: TableRowModel[], resultFuncArgs_1: boolean, resultFuncArgs_2: import('./types').TableSortModel | null) => TableRowModel[]) & {
|
|
119
113
|
clearCache: () => void;
|
|
120
114
|
resultsCount: () => number;
|
|
121
115
|
resetResultsCount: () => void;
|
|
@@ -185,10 +179,7 @@ export declare const filteredRowsReselect: ((state: Store) => TableRowModel[]) &
|
|
|
185
179
|
} & {
|
|
186
180
|
memoize: typeof import('reselect').weakMapMemoize;
|
|
187
181
|
argsMemoize: typeof import('reselect').weakMapMemoize;
|
|
188
|
-
}, (s: Store) =>
|
|
189
|
-
rows: import('./store').TableFilterRow[];
|
|
190
|
-
combiner: "and" | "or";
|
|
191
|
-
}];
|
|
182
|
+
}, (s: Store) => boolean, (s: Store) => import('./types').TableSortModel | null];
|
|
192
183
|
recomputations: () => number;
|
|
193
184
|
resetRecomputations: () => void;
|
|
194
185
|
dependencyRecomputations: () => number;
|
|
@@ -197,31 +188,37 @@ export declare const filteredRowsReselect: ((state: Store) => TableRowModel[]) &
|
|
|
197
188
|
memoize: typeof import('reselect').weakMapMemoize;
|
|
198
189
|
argsMemoize: typeof import('reselect').weakMapMemoize;
|
|
199
190
|
};
|
|
200
|
-
export declare const
|
|
191
|
+
export declare const visibleRowsReselect: ((state: Store) => {
|
|
192
|
+
rows: TableRowModel[];
|
|
193
|
+
meta: Partial<Record<string, RowMeta>>;
|
|
194
|
+
}) & {
|
|
201
195
|
clearCache: () => void;
|
|
202
196
|
resultsCount: () => number;
|
|
203
197
|
resetResultsCount: () => void;
|
|
204
198
|
} & {
|
|
205
|
-
resultFunc: (resultFuncArgs_0: TableRowModel[], resultFuncArgs_1: boolean, resultFuncArgs_2:
|
|
206
|
-
|
|
199
|
+
resultFunc: (resultFuncArgs_0: TableRowModel[], resultFuncArgs_1: boolean, resultFuncArgs_2: string[], resultFuncArgs_3: number, resultFuncArgs_4: number) => {
|
|
200
|
+
rows: TableRowModel[];
|
|
201
|
+
meta: Partial<Record<string, RowMeta>>;
|
|
202
|
+
};
|
|
203
|
+
memoizedResultFunc: ((resultFuncArgs_0: TableRowModel[], resultFuncArgs_1: boolean, resultFuncArgs_2: string[], resultFuncArgs_3: number, resultFuncArgs_4: number) => {
|
|
204
|
+
rows: TableRowModel[];
|
|
205
|
+
meta: Partial<Record<string, RowMeta>>;
|
|
206
|
+
}) & {
|
|
207
207
|
clearCache: () => void;
|
|
208
208
|
resultsCount: () => number;
|
|
209
209
|
resetResultsCount: () => void;
|
|
210
210
|
};
|
|
211
|
-
lastResult: () =>
|
|
211
|
+
lastResult: () => {
|
|
212
|
+
rows: TableRowModel[];
|
|
213
|
+
meta: Partial<Record<string, RowMeta>>;
|
|
214
|
+
};
|
|
212
215
|
dependencies: [((state: Store) => TableRowModel[]) & {
|
|
213
216
|
clearCache: () => void;
|
|
214
217
|
resultsCount: () => number;
|
|
215
218
|
resetResultsCount: () => void;
|
|
216
219
|
} & {
|
|
217
|
-
resultFunc: (resultFuncArgs_0: TableRowModel[], resultFuncArgs_1:
|
|
218
|
-
|
|
219
|
-
combiner: "and" | "or";
|
|
220
|
-
}) => TableRowModel[];
|
|
221
|
-
memoizedResultFunc: ((resultFuncArgs_0: TableRowModel[], resultFuncArgs_1: {
|
|
222
|
-
rows: import('./store').TableFilterRow[];
|
|
223
|
-
combiner: "and" | "or";
|
|
224
|
-
}) => TableRowModel[]) & {
|
|
220
|
+
resultFunc: (resultFuncArgs_0: TableRowModel[], resultFuncArgs_1: boolean, resultFuncArgs_2: import('./types').TableSortModel | null) => TableRowModel[];
|
|
221
|
+
memoizedResultFunc: ((resultFuncArgs_0: TableRowModel[], resultFuncArgs_1: boolean, resultFuncArgs_2: import('./types').TableSortModel | null) => TableRowModel[]) & {
|
|
225
222
|
clearCache: () => void;
|
|
226
223
|
resultsCount: () => number;
|
|
227
224
|
resetResultsCount: () => void;
|
|
@@ -291,155 +288,6 @@ export declare const sortedRowsReselect: ((state: Store) => TableRowModel[]) & {
|
|
|
291
288
|
} & {
|
|
292
289
|
memoize: typeof import('reselect').weakMapMemoize;
|
|
293
290
|
argsMemoize: typeof import('reselect').weakMapMemoize;
|
|
294
|
-
}, (s: Store) => {
|
|
295
|
-
rows: import('./store').TableFilterRow[];
|
|
296
|
-
combiner: "and" | "or";
|
|
297
|
-
}];
|
|
298
|
-
recomputations: () => number;
|
|
299
|
-
resetRecomputations: () => void;
|
|
300
|
-
dependencyRecomputations: () => number;
|
|
301
|
-
resetDependencyRecomputations: () => void;
|
|
302
|
-
} & {
|
|
303
|
-
memoize: typeof import('reselect').weakMapMemoize;
|
|
304
|
-
argsMemoize: typeof import('reselect').weakMapMemoize;
|
|
305
|
-
}, (s: Store) => boolean, (s: Store) => import('./types').TableSortModel | null];
|
|
306
|
-
recomputations: () => number;
|
|
307
|
-
resetRecomputations: () => void;
|
|
308
|
-
dependencyRecomputations: () => number;
|
|
309
|
-
resetDependencyRecomputations: () => void;
|
|
310
|
-
} & {
|
|
311
|
-
memoize: typeof import('reselect').weakMapMemoize;
|
|
312
|
-
argsMemoize: typeof import('reselect').weakMapMemoize;
|
|
313
|
-
};
|
|
314
|
-
export declare const visibleRowsReselect: ((state: Store) => {
|
|
315
|
-
rows: TableRowModel[];
|
|
316
|
-
meta: Partial<Record<string, RowMeta>>;
|
|
317
|
-
}) & {
|
|
318
|
-
clearCache: () => void;
|
|
319
|
-
resultsCount: () => number;
|
|
320
|
-
resetResultsCount: () => void;
|
|
321
|
-
} & {
|
|
322
|
-
resultFunc: (resultFuncArgs_0: TableRowModel[], resultFuncArgs_1: boolean, resultFuncArgs_2: string[], resultFuncArgs_3: number, resultFuncArgs_4: number) => {
|
|
323
|
-
rows: TableRowModel[];
|
|
324
|
-
meta: Partial<Record<string, RowMeta>>;
|
|
325
|
-
};
|
|
326
|
-
memoizedResultFunc: ((resultFuncArgs_0: TableRowModel[], resultFuncArgs_1: boolean, resultFuncArgs_2: string[], resultFuncArgs_3: number, resultFuncArgs_4: number) => {
|
|
327
|
-
rows: TableRowModel[];
|
|
328
|
-
meta: Partial<Record<string, RowMeta>>;
|
|
329
|
-
}) & {
|
|
330
|
-
clearCache: () => void;
|
|
331
|
-
resultsCount: () => number;
|
|
332
|
-
resetResultsCount: () => void;
|
|
333
|
-
};
|
|
334
|
-
lastResult: () => {
|
|
335
|
-
rows: TableRowModel[];
|
|
336
|
-
meta: Partial<Record<string, RowMeta>>;
|
|
337
|
-
};
|
|
338
|
-
dependencies: [((state: Store) => TableRowModel[]) & {
|
|
339
|
-
clearCache: () => void;
|
|
340
|
-
resultsCount: () => number;
|
|
341
|
-
resetResultsCount: () => void;
|
|
342
|
-
} & {
|
|
343
|
-
resultFunc: (resultFuncArgs_0: TableRowModel[], resultFuncArgs_1: boolean, resultFuncArgs_2: import('./types').TableSortModel | null) => TableRowModel[];
|
|
344
|
-
memoizedResultFunc: ((resultFuncArgs_0: TableRowModel[], resultFuncArgs_1: boolean, resultFuncArgs_2: import('./types').TableSortModel | null) => TableRowModel[]) & {
|
|
345
|
-
clearCache: () => void;
|
|
346
|
-
resultsCount: () => number;
|
|
347
|
-
resetResultsCount: () => void;
|
|
348
|
-
};
|
|
349
|
-
lastResult: () => TableRowModel[];
|
|
350
|
-
dependencies: [((state: Store) => TableRowModel[]) & {
|
|
351
|
-
clearCache: () => void;
|
|
352
|
-
resultsCount: () => number;
|
|
353
|
-
resetResultsCount: () => void;
|
|
354
|
-
} & {
|
|
355
|
-
resultFunc: (resultFuncArgs_0: TableRowModel[], resultFuncArgs_1: {
|
|
356
|
-
rows: import('./store').TableFilterRow[];
|
|
357
|
-
combiner: "and" | "or";
|
|
358
|
-
}) => TableRowModel[];
|
|
359
|
-
memoizedResultFunc: ((resultFuncArgs_0: TableRowModel[], resultFuncArgs_1: {
|
|
360
|
-
rows: import('./store').TableFilterRow[];
|
|
361
|
-
combiner: "and" | "or";
|
|
362
|
-
}) => TableRowModel[]) & {
|
|
363
|
-
clearCache: () => void;
|
|
364
|
-
resultsCount: () => number;
|
|
365
|
-
resetResultsCount: () => void;
|
|
366
|
-
};
|
|
367
|
-
lastResult: () => TableRowModel[];
|
|
368
|
-
dependencies: [((state: Store) => TableRowModel[]) & {
|
|
369
|
-
clearCache: () => void;
|
|
370
|
-
resultsCount: () => number;
|
|
371
|
-
resetResultsCount: () => void;
|
|
372
|
-
} & {
|
|
373
|
-
resultFunc: (resultFuncArgs_0: {
|
|
374
|
-
topRows: TableRowModel[];
|
|
375
|
-
bottomRows: TableRowModel[];
|
|
376
|
-
baseRows: TableRowModel[];
|
|
377
|
-
}, resultFuncArgs_1: string, resultFuncArgs_2: boolean) => TableRowModel[];
|
|
378
|
-
memoizedResultFunc: ((resultFuncArgs_0: {
|
|
379
|
-
topRows: TableRowModel[];
|
|
380
|
-
bottomRows: TableRowModel[];
|
|
381
|
-
baseRows: TableRowModel[];
|
|
382
|
-
}, resultFuncArgs_1: string, resultFuncArgs_2: boolean) => TableRowModel[]) & {
|
|
383
|
-
clearCache: () => void;
|
|
384
|
-
resultsCount: () => number;
|
|
385
|
-
resetResultsCount: () => void;
|
|
386
|
-
};
|
|
387
|
-
lastResult: () => TableRowModel[];
|
|
388
|
-
dependencies: [((state: Store) => {
|
|
389
|
-
topRows: TableRowModel[];
|
|
390
|
-
bottomRows: TableRowModel[];
|
|
391
|
-
baseRows: TableRowModel[];
|
|
392
|
-
}) & {
|
|
393
|
-
clearCache: () => void;
|
|
394
|
-
resultsCount: () => number;
|
|
395
|
-
resetResultsCount: () => void;
|
|
396
|
-
} & {
|
|
397
|
-
resultFunc: (resultFuncArgs_0: TableRowModel[], resultFuncArgs_1: string[], resultFuncArgs_2: string[]) => {
|
|
398
|
-
topRows: TableRowModel[];
|
|
399
|
-
bottomRows: TableRowModel[];
|
|
400
|
-
baseRows: TableRowModel[];
|
|
401
|
-
};
|
|
402
|
-
memoizedResultFunc: ((resultFuncArgs_0: TableRowModel[], resultFuncArgs_1: string[], resultFuncArgs_2: string[]) => {
|
|
403
|
-
topRows: TableRowModel[];
|
|
404
|
-
bottomRows: TableRowModel[];
|
|
405
|
-
baseRows: TableRowModel[];
|
|
406
|
-
}) & {
|
|
407
|
-
clearCache: () => void;
|
|
408
|
-
resultsCount: () => number;
|
|
409
|
-
resetResultsCount: () => void;
|
|
410
|
-
};
|
|
411
|
-
lastResult: () => {
|
|
412
|
-
topRows: TableRowModel[];
|
|
413
|
-
bottomRows: TableRowModel[];
|
|
414
|
-
baseRows: TableRowModel[];
|
|
415
|
-
};
|
|
416
|
-
dependencies: [(s: Store) => TableRowModel[], (s: Store) => string[], (s: Store) => string[]];
|
|
417
|
-
recomputations: () => number;
|
|
418
|
-
resetRecomputations: () => void;
|
|
419
|
-
dependencyRecomputations: () => number;
|
|
420
|
-
resetDependencyRecomputations: () => void;
|
|
421
|
-
} & {
|
|
422
|
-
memoize: typeof import('reselect').weakMapMemoize;
|
|
423
|
-
argsMemoize: typeof import('reselect').weakMapMemoize;
|
|
424
|
-
}, (s: Store) => string, (s: Store) => boolean];
|
|
425
|
-
recomputations: () => number;
|
|
426
|
-
resetRecomputations: () => void;
|
|
427
|
-
dependencyRecomputations: () => number;
|
|
428
|
-
resetDependencyRecomputations: () => void;
|
|
429
|
-
} & {
|
|
430
|
-
memoize: typeof import('reselect').weakMapMemoize;
|
|
431
|
-
argsMemoize: typeof import('reselect').weakMapMemoize;
|
|
432
|
-
}, (s: Store) => {
|
|
433
|
-
rows: import('./store').TableFilterRow[];
|
|
434
|
-
combiner: "and" | "or";
|
|
435
|
-
}];
|
|
436
|
-
recomputations: () => number;
|
|
437
|
-
resetRecomputations: () => void;
|
|
438
|
-
dependencyRecomputations: () => number;
|
|
439
|
-
resetDependencyRecomputations: () => void;
|
|
440
|
-
} & {
|
|
441
|
-
memoize: typeof import('reselect').weakMapMemoize;
|
|
442
|
-
argsMemoize: typeof import('reselect').weakMapMemoize;
|
|
443
291
|
}, (s: Store) => boolean, (s: Store) => import('./types').TableSortModel | null];
|
|
444
292
|
recomputations: () => number;
|
|
445
293
|
resetRecomputations: () => void;
|
|
@@ -498,76 +346,50 @@ export declare const paginationMetaReselect: ((state: Store) => {
|
|
|
498
346
|
resultsCount: () => number;
|
|
499
347
|
resetResultsCount: () => void;
|
|
500
348
|
} & {
|
|
501
|
-
resultFunc: (resultFuncArgs_0:
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
349
|
+
resultFunc: (resultFuncArgs_0: {
|
|
350
|
+
topRows: TableRowModel[];
|
|
351
|
+
bottomRows: TableRowModel[];
|
|
352
|
+
baseRows: TableRowModel[];
|
|
353
|
+
}, resultFuncArgs_1: string, resultFuncArgs_2: boolean) => TableRowModel[];
|
|
354
|
+
memoizedResultFunc: ((resultFuncArgs_0: {
|
|
355
|
+
topRows: TableRowModel[];
|
|
356
|
+
bottomRows: TableRowModel[];
|
|
357
|
+
baseRows: TableRowModel[];
|
|
358
|
+
}, resultFuncArgs_1: string, resultFuncArgs_2: boolean) => TableRowModel[]) & {
|
|
509
359
|
clearCache: () => void;
|
|
510
360
|
resultsCount: () => number;
|
|
511
361
|
resetResultsCount: () => void;
|
|
512
362
|
};
|
|
513
363
|
lastResult: () => TableRowModel[];
|
|
514
|
-
dependencies: [((state: Store) =>
|
|
364
|
+
dependencies: [((state: Store) => {
|
|
365
|
+
topRows: TableRowModel[];
|
|
366
|
+
bottomRows: TableRowModel[];
|
|
367
|
+
baseRows: TableRowModel[];
|
|
368
|
+
}) & {
|
|
515
369
|
clearCache: () => void;
|
|
516
370
|
resultsCount: () => number;
|
|
517
371
|
resetResultsCount: () => void;
|
|
518
372
|
} & {
|
|
519
|
-
resultFunc: (resultFuncArgs_0: {
|
|
373
|
+
resultFunc: (resultFuncArgs_0: TableRowModel[], resultFuncArgs_1: string[], resultFuncArgs_2: string[]) => {
|
|
520
374
|
topRows: TableRowModel[];
|
|
521
375
|
bottomRows: TableRowModel[];
|
|
522
376
|
baseRows: TableRowModel[];
|
|
523
|
-
}
|
|
524
|
-
memoizedResultFunc: ((resultFuncArgs_0: {
|
|
377
|
+
};
|
|
378
|
+
memoizedResultFunc: ((resultFuncArgs_0: TableRowModel[], resultFuncArgs_1: string[], resultFuncArgs_2: string[]) => {
|
|
525
379
|
topRows: TableRowModel[];
|
|
526
380
|
bottomRows: TableRowModel[];
|
|
527
381
|
baseRows: TableRowModel[];
|
|
528
|
-
}
|
|
382
|
+
}) & {
|
|
529
383
|
clearCache: () => void;
|
|
530
384
|
resultsCount: () => number;
|
|
531
385
|
resetResultsCount: () => void;
|
|
532
386
|
};
|
|
533
|
-
lastResult: () =>
|
|
534
|
-
dependencies: [((state: Store) => {
|
|
387
|
+
lastResult: () => {
|
|
535
388
|
topRows: TableRowModel[];
|
|
536
389
|
bottomRows: TableRowModel[];
|
|
537
390
|
baseRows: TableRowModel[];
|
|
538
|
-
}
|
|
539
|
-
|
|
540
|
-
resultsCount: () => number;
|
|
541
|
-
resetResultsCount: () => void;
|
|
542
|
-
} & {
|
|
543
|
-
resultFunc: (resultFuncArgs_0: TableRowModel[], resultFuncArgs_1: string[], resultFuncArgs_2: string[]) => {
|
|
544
|
-
topRows: TableRowModel[];
|
|
545
|
-
bottomRows: TableRowModel[];
|
|
546
|
-
baseRows: TableRowModel[];
|
|
547
|
-
};
|
|
548
|
-
memoizedResultFunc: ((resultFuncArgs_0: TableRowModel[], resultFuncArgs_1: string[], resultFuncArgs_2: string[]) => {
|
|
549
|
-
topRows: TableRowModel[];
|
|
550
|
-
bottomRows: TableRowModel[];
|
|
551
|
-
baseRows: TableRowModel[];
|
|
552
|
-
}) & {
|
|
553
|
-
clearCache: () => void;
|
|
554
|
-
resultsCount: () => number;
|
|
555
|
-
resetResultsCount: () => void;
|
|
556
|
-
};
|
|
557
|
-
lastResult: () => {
|
|
558
|
-
topRows: TableRowModel[];
|
|
559
|
-
bottomRows: TableRowModel[];
|
|
560
|
-
baseRows: TableRowModel[];
|
|
561
|
-
};
|
|
562
|
-
dependencies: [(s: Store) => TableRowModel[], (s: Store) => string[], (s: Store) => string[]];
|
|
563
|
-
recomputations: () => number;
|
|
564
|
-
resetRecomputations: () => void;
|
|
565
|
-
dependencyRecomputations: () => number;
|
|
566
|
-
resetDependencyRecomputations: () => void;
|
|
567
|
-
} & {
|
|
568
|
-
memoize: typeof import('reselect').weakMapMemoize;
|
|
569
|
-
argsMemoize: typeof import('reselect').weakMapMemoize;
|
|
570
|
-
}, (s: Store) => string, (s: Store) => boolean];
|
|
391
|
+
};
|
|
392
|
+
dependencies: [(s: Store) => TableRowModel[], (s: Store) => string[], (s: Store) => string[]];
|
|
571
393
|
recomputations: () => number;
|
|
572
394
|
resetRecomputations: () => void;
|
|
573
395
|
dependencyRecomputations: () => number;
|
|
@@ -575,10 +397,7 @@ export declare const paginationMetaReselect: ((state: Store) => {
|
|
|
575
397
|
} & {
|
|
576
398
|
memoize: typeof import('reselect').weakMapMemoize;
|
|
577
399
|
argsMemoize: typeof import('reselect').weakMapMemoize;
|
|
578
|
-
}, (s: Store) =>
|
|
579
|
-
rows: import('./store').TableFilterRow[];
|
|
580
|
-
combiner: "and" | "or";
|
|
581
|
-
}];
|
|
400
|
+
}, (s: Store) => string, (s: Store) => boolean];
|
|
582
401
|
recomputations: () => number;
|
|
583
402
|
resetRecomputations: () => void;
|
|
584
403
|
dependencyRecomputations: () => number;
|
|
@@ -603,12 +422,12 @@ export declare const paginationMetaReselect: ((state: Store) => {
|
|
|
603
422
|
memoize: typeof import('reselect').weakMapMemoize;
|
|
604
423
|
argsMemoize: typeof import('reselect').weakMapMemoize;
|
|
605
424
|
};
|
|
606
|
-
export declare const
|
|
425
|
+
export declare const columnsReselect: ((state: Store) => TableColumnState[]) & {
|
|
607
426
|
clearCache: () => void;
|
|
608
427
|
resultsCount: () => number;
|
|
609
428
|
resetResultsCount: () => void;
|
|
610
429
|
} & {
|
|
611
|
-
resultFunc: (resultFuncArgs_0: boolean, resultFuncArgs_1: string[], resultFuncArgs_2: boolean, resultFuncArgs_3: string[], resultFuncArgs_4:
|
|
430
|
+
resultFunc: (resultFuncArgs_0: boolean, resultFuncArgs_1: string[], resultFuncArgs_2: boolean, resultFuncArgs_3: string[], resultFuncArgs_4: import('./types').TableColumnsProp<TableRowModel>, resultFuncArgs_5: Partial<Record<string, Partial<TableColumnState>>>, resultFuncArgs_6: {
|
|
612
431
|
setPageSize: (v: number) => void;
|
|
613
432
|
setPage: (v: number) => void;
|
|
614
433
|
setSort: (v: import('./types').TableSortModel | null) => void;
|
|
@@ -622,7 +441,6 @@ export declare const groupsAndColumnsReselect: ((state: Store) => TableColumnsPr
|
|
|
622
441
|
setNextPage: () => void;
|
|
623
442
|
setColumnWidth: (field: string, setWidth: number) => void;
|
|
624
443
|
toggleRowExpand: (id: string) => void;
|
|
625
|
-
setHeaderWidth: (id: string, width: number) => void;
|
|
626
444
|
setRootRef: (rootRef: HTMLDivElement) => void;
|
|
627
445
|
setScrollRef: (scrollRef: HTMLDivElement) => void;
|
|
628
446
|
calculateColumnWidths: (clear?: boolean) => void;
|
|
@@ -630,15 +448,14 @@ export declare const groupsAndColumnsReselect: ((state: Store) => TableColumnsPr
|
|
|
630
448
|
unselectVisibleRows: () => void;
|
|
631
449
|
unselectRow: (id: string) => void;
|
|
632
450
|
selectRow: (id: string) => void;
|
|
633
|
-
addFilterRow: (field?: string) => void;
|
|
634
|
-
removeFilterRow: (id: string) => void;
|
|
635
|
-
changeFilterRow: ({ id, ...newRow }: Pick<import('./store').TableFilterRow, "id"> & Partial<Omit<import('./store').TableFilterRow, "id">>) => void;
|
|
636
|
-
setFilterCombiner: (combiner: "and" | "or") => void;
|
|
637
|
-
clearFilter: () => void;
|
|
638
451
|
setAutosize: () => void;
|
|
639
452
|
removeAutosize: () => void;
|
|
640
|
-
|
|
641
|
-
|
|
453
|
+
setColumnsOrder: (columnsOrder: string[]) => void;
|
|
454
|
+
setColumnOrder: (columnId: string, index: number) => void;
|
|
455
|
+
moveColumnLeft: (columnId: string) => void;
|
|
456
|
+
moveColumnRight: (columnId: string) => void;
|
|
457
|
+
}, resultFuncArgs_7: string[]) => TableColumnState[];
|
|
458
|
+
memoizedResultFunc: ((resultFuncArgs_0: boolean, resultFuncArgs_1: string[], resultFuncArgs_2: boolean, resultFuncArgs_3: string[], resultFuncArgs_4: import('./types').TableColumnsProp<TableRowModel>, resultFuncArgs_5: Partial<Record<string, Partial<TableColumnState>>>, resultFuncArgs_6: {
|
|
642
459
|
setPageSize: (v: number) => void;
|
|
643
460
|
setPage: (v: number) => void;
|
|
644
461
|
setSort: (v: import('./types').TableSortModel | null) => void;
|
|
@@ -652,7 +469,6 @@ export declare const groupsAndColumnsReselect: ((state: Store) => TableColumnsPr
|
|
|
652
469
|
setNextPage: () => void;
|
|
653
470
|
setColumnWidth: (field: string, setWidth: number) => void;
|
|
654
471
|
toggleRowExpand: (id: string) => void;
|
|
655
|
-
setHeaderWidth: (id: string, width: number) => void;
|
|
656
472
|
setRootRef: (rootRef: HTMLDivElement) => void;
|
|
657
473
|
setScrollRef: (scrollRef: HTMLDivElement) => void;
|
|
658
474
|
calculateColumnWidths: (clear?: boolean) => void;
|
|
@@ -660,20 +476,19 @@ export declare const groupsAndColumnsReselect: ((state: Store) => TableColumnsPr
|
|
|
660
476
|
unselectVisibleRows: () => void;
|
|
661
477
|
unselectRow: (id: string) => void;
|
|
662
478
|
selectRow: (id: string) => void;
|
|
663
|
-
addFilterRow: (field?: string) => void;
|
|
664
|
-
removeFilterRow: (id: string) => void;
|
|
665
|
-
changeFilterRow: ({ id, ...newRow }: Pick<import('./store').TableFilterRow, "id"> & Partial<Omit<import('./store').TableFilterRow, "id">>) => void;
|
|
666
|
-
setFilterCombiner: (combiner: "and" | "or") => void;
|
|
667
|
-
clearFilter: () => void;
|
|
668
479
|
setAutosize: () => void;
|
|
669
480
|
removeAutosize: () => void;
|
|
670
|
-
|
|
481
|
+
setColumnsOrder: (columnsOrder: string[]) => void;
|
|
482
|
+
setColumnOrder: (columnId: string, index: number) => void;
|
|
483
|
+
moveColumnLeft: (columnId: string) => void;
|
|
484
|
+
moveColumnRight: (columnId: string) => void;
|
|
485
|
+
}, resultFuncArgs_7: string[]) => TableColumnState[]) & {
|
|
671
486
|
clearCache: () => void;
|
|
672
487
|
resultsCount: () => number;
|
|
673
488
|
resetResultsCount: () => void;
|
|
674
489
|
};
|
|
675
|
-
lastResult: () =>
|
|
676
|
-
dependencies: [(s: Store) => boolean, (s: Store) => string[], (s: Store) => boolean, (s: Store) => string[], (s: Store) =>
|
|
490
|
+
lastResult: () => TableColumnState[];
|
|
491
|
+
dependencies: [(s: Store) => boolean, (s: Store) => string[], (s: Store) => boolean, (s: Store) => string[], (s: Store) => import('./types').TableColumnsProp<TableRowModel>, (s: Store) => Partial<Record<string, Partial<TableColumnState>>>, (s: Store) => {
|
|
677
492
|
setPageSize: (v: number) => void;
|
|
678
493
|
setPage: (v: number) => void;
|
|
679
494
|
setSort: (v: import('./types').TableSortModel | null) => void;
|
|
@@ -687,7 +502,6 @@ export declare const groupsAndColumnsReselect: ((state: Store) => TableColumnsPr
|
|
|
687
502
|
setNextPage: () => void;
|
|
688
503
|
setColumnWidth: (field: string, setWidth: number) => void;
|
|
689
504
|
toggleRowExpand: (id: string) => void;
|
|
690
|
-
setHeaderWidth: (id: string, width: number) => void;
|
|
691
505
|
setRootRef: (rootRef: HTMLDivElement) => void;
|
|
692
506
|
setScrollRef: (scrollRef: HTMLDivElement) => void;
|
|
693
507
|
calculateColumnWidths: (clear?: boolean) => void;
|
|
@@ -695,14 +509,13 @@ export declare const groupsAndColumnsReselect: ((state: Store) => TableColumnsPr
|
|
|
695
509
|
unselectVisibleRows: () => void;
|
|
696
510
|
unselectRow: (id: string) => void;
|
|
697
511
|
selectRow: (id: string) => void;
|
|
698
|
-
addFilterRow: (field?: string) => void;
|
|
699
|
-
removeFilterRow: (id: string) => void;
|
|
700
|
-
changeFilterRow: ({ id, ...newRow }: Pick<import('./store').TableFilterRow, "id"> & Partial<Omit<import('./store').TableFilterRow, "id">>) => void;
|
|
701
|
-
setFilterCombiner: (combiner: "and" | "or") => void;
|
|
702
|
-
clearFilter: () => void;
|
|
703
512
|
setAutosize: () => void;
|
|
704
513
|
removeAutosize: () => void;
|
|
705
|
-
|
|
514
|
+
setColumnsOrder: (columnsOrder: string[]) => void;
|
|
515
|
+
setColumnOrder: (columnId: string, index: number) => void;
|
|
516
|
+
moveColumnLeft: (columnId: string) => void;
|
|
517
|
+
moveColumnRight: (columnId: string) => void;
|
|
518
|
+
}, (s: Store) => string[]];
|
|
706
519
|
recomputations: () => number;
|
|
707
520
|
resetRecomputations: () => void;
|
|
708
521
|
dependencyRecomputations: () => number;
|
|
@@ -711,24 +524,24 @@ export declare const groupsAndColumnsReselect: ((state: Store) => TableColumnsPr
|
|
|
711
524
|
memoize: typeof import('reselect').weakMapMemoize;
|
|
712
525
|
argsMemoize: typeof import('reselect').weakMapMemoize;
|
|
713
526
|
};
|
|
714
|
-
export declare const
|
|
527
|
+
export declare const visibleColumnsReselect: ((state: Store) => TableColumnState[]) & {
|
|
715
528
|
clearCache: () => void;
|
|
716
529
|
resultsCount: () => number;
|
|
717
530
|
resetResultsCount: () => void;
|
|
718
531
|
} & {
|
|
719
|
-
resultFunc: (resultFuncArgs_0:
|
|
720
|
-
memoizedResultFunc: ((resultFuncArgs_0:
|
|
532
|
+
resultFunc: (resultFuncArgs_0: TableColumnState[]) => TableColumnState[];
|
|
533
|
+
memoizedResultFunc: ((resultFuncArgs_0: TableColumnState[]) => TableColumnState[]) & {
|
|
721
534
|
clearCache: () => void;
|
|
722
535
|
resultsCount: () => number;
|
|
723
536
|
resetResultsCount: () => void;
|
|
724
537
|
};
|
|
725
|
-
lastResult: () =>
|
|
726
|
-
dependencies: [((state: Store) =>
|
|
538
|
+
lastResult: () => TableColumnState[];
|
|
539
|
+
dependencies: [((state: Store) => TableColumnState[]) & {
|
|
727
540
|
clearCache: () => void;
|
|
728
541
|
resultsCount: () => number;
|
|
729
542
|
resetResultsCount: () => void;
|
|
730
543
|
} & {
|
|
731
|
-
resultFunc: (resultFuncArgs_0: boolean, resultFuncArgs_1: string[], resultFuncArgs_2: boolean, resultFuncArgs_3: string[], resultFuncArgs_4:
|
|
544
|
+
resultFunc: (resultFuncArgs_0: boolean, resultFuncArgs_1: string[], resultFuncArgs_2: boolean, resultFuncArgs_3: string[], resultFuncArgs_4: import('./types').TableColumnsProp<TableRowModel>, resultFuncArgs_5: Partial<Record<string, Partial<TableColumnState>>>, resultFuncArgs_6: {
|
|
732
545
|
setPageSize: (v: number) => void;
|
|
733
546
|
setPage: (v: number) => void;
|
|
734
547
|
setSort: (v: import('./types').TableSortModel | null) => void;
|
|
@@ -742,7 +555,6 @@ export declare const visibleGroupsAndColumnsReselect: ((state: Store) => TableCo
|
|
|
742
555
|
setNextPage: () => void;
|
|
743
556
|
setColumnWidth: (field: string, setWidth: number) => void;
|
|
744
557
|
toggleRowExpand: (id: string) => void;
|
|
745
|
-
setHeaderWidth: (id: string, width: number) => void;
|
|
746
558
|
setRootRef: (rootRef: HTMLDivElement) => void;
|
|
747
559
|
setScrollRef: (scrollRef: HTMLDivElement) => void;
|
|
748
560
|
calculateColumnWidths: (clear?: boolean) => void;
|
|
@@ -750,15 +562,14 @@ export declare const visibleGroupsAndColumnsReselect: ((state: Store) => TableCo
|
|
|
750
562
|
unselectVisibleRows: () => void;
|
|
751
563
|
unselectRow: (id: string) => void;
|
|
752
564
|
selectRow: (id: string) => void;
|
|
753
|
-
addFilterRow: (field?: string) => void;
|
|
754
|
-
removeFilterRow: (id: string) => void;
|
|
755
|
-
changeFilterRow: ({ id, ...newRow }: Pick<import('./store').TableFilterRow, "id"> & Partial<Omit<import('./store').TableFilterRow, "id">>) => void;
|
|
756
|
-
setFilterCombiner: (combiner: "and" | "or") => void;
|
|
757
|
-
clearFilter: () => void;
|
|
758
565
|
setAutosize: () => void;
|
|
759
566
|
removeAutosize: () => void;
|
|
760
|
-
|
|
761
|
-
|
|
567
|
+
setColumnsOrder: (columnsOrder: string[]) => void;
|
|
568
|
+
setColumnOrder: (columnId: string, index: number) => void;
|
|
569
|
+
moveColumnLeft: (columnId: string) => void;
|
|
570
|
+
moveColumnRight: (columnId: string) => void;
|
|
571
|
+
}, resultFuncArgs_7: string[]) => TableColumnState[];
|
|
572
|
+
memoizedResultFunc: ((resultFuncArgs_0: boolean, resultFuncArgs_1: string[], resultFuncArgs_2: boolean, resultFuncArgs_3: string[], resultFuncArgs_4: import('./types').TableColumnsProp<TableRowModel>, resultFuncArgs_5: Partial<Record<string, Partial<TableColumnState>>>, resultFuncArgs_6: {
|
|
762
573
|
setPageSize: (v: number) => void;
|
|
763
574
|
setPage: (v: number) => void;
|
|
764
575
|
setSort: (v: import('./types').TableSortModel | null) => void;
|
|
@@ -772,7 +583,6 @@ export declare const visibleGroupsAndColumnsReselect: ((state: Store) => TableCo
|
|
|
772
583
|
setNextPage: () => void;
|
|
773
584
|
setColumnWidth: (field: string, setWidth: number) => void;
|
|
774
585
|
toggleRowExpand: (id: string) => void;
|
|
775
|
-
setHeaderWidth: (id: string, width: number) => void;
|
|
776
586
|
setRootRef: (rootRef: HTMLDivElement) => void;
|
|
777
587
|
setScrollRef: (scrollRef: HTMLDivElement) => void;
|
|
778
588
|
calculateColumnWidths: (clear?: boolean) => void;
|
|
@@ -780,20 +590,19 @@ export declare const visibleGroupsAndColumnsReselect: ((state: Store) => TableCo
|
|
|
780
590
|
unselectVisibleRows: () => void;
|
|
781
591
|
unselectRow: (id: string) => void;
|
|
782
592
|
selectRow: (id: string) => void;
|
|
783
|
-
addFilterRow: (field?: string) => void;
|
|
784
|
-
removeFilterRow: (id: string) => void;
|
|
785
|
-
changeFilterRow: ({ id, ...newRow }: Pick<import('./store').TableFilterRow, "id"> & Partial<Omit<import('./store').TableFilterRow, "id">>) => void;
|
|
786
|
-
setFilterCombiner: (combiner: "and" | "or") => void;
|
|
787
|
-
clearFilter: () => void;
|
|
788
593
|
setAutosize: () => void;
|
|
789
594
|
removeAutosize: () => void;
|
|
790
|
-
|
|
595
|
+
setColumnsOrder: (columnsOrder: string[]) => void;
|
|
596
|
+
setColumnOrder: (columnId: string, index: number) => void;
|
|
597
|
+
moveColumnLeft: (columnId: string) => void;
|
|
598
|
+
moveColumnRight: (columnId: string) => void;
|
|
599
|
+
}, resultFuncArgs_7: string[]) => TableColumnState[]) & {
|
|
791
600
|
clearCache: () => void;
|
|
792
601
|
resultsCount: () => number;
|
|
793
602
|
resetResultsCount: () => void;
|
|
794
603
|
};
|
|
795
|
-
lastResult: () =>
|
|
796
|
-
dependencies: [(s: Store) => boolean, (s: Store) => string[], (s: Store) => boolean, (s: Store) => string[], (s: Store) =>
|
|
604
|
+
lastResult: () => TableColumnState[];
|
|
605
|
+
dependencies: [(s: Store) => boolean, (s: Store) => string[], (s: Store) => boolean, (s: Store) => string[], (s: Store) => import('./types').TableColumnsProp<TableRowModel>, (s: Store) => Partial<Record<string, Partial<TableColumnState>>>, (s: Store) => {
|
|
797
606
|
setPageSize: (v: number) => void;
|
|
798
607
|
setPage: (v: number) => void;
|
|
799
608
|
setSort: (v: import('./types').TableSortModel | null) => void;
|
|
@@ -807,7 +616,6 @@ export declare const visibleGroupsAndColumnsReselect: ((state: Store) => TableCo
|
|
|
807
616
|
setNextPage: () => void;
|
|
808
617
|
setColumnWidth: (field: string, setWidth: number) => void;
|
|
809
618
|
toggleRowExpand: (id: string) => void;
|
|
810
|
-
setHeaderWidth: (id: string, width: number) => void;
|
|
811
619
|
setRootRef: (rootRef: HTMLDivElement) => void;
|
|
812
620
|
setScrollRef: (scrollRef: HTMLDivElement) => void;
|
|
813
621
|
calculateColumnWidths: (clear?: boolean) => void;
|
|
@@ -815,14 +623,13 @@ export declare const visibleGroupsAndColumnsReselect: ((state: Store) => TableCo
|
|
|
815
623
|
unselectVisibleRows: () => void;
|
|
816
624
|
unselectRow: (id: string) => void;
|
|
817
625
|
selectRow: (id: string) => void;
|
|
818
|
-
addFilterRow: (field?: string) => void;
|
|
819
|
-
removeFilterRow: (id: string) => void;
|
|
820
|
-
changeFilterRow: ({ id, ...newRow }: Pick<import('./store').TableFilterRow, "id"> & Partial<Omit<import('./store').TableFilterRow, "id">>) => void;
|
|
821
|
-
setFilterCombiner: (combiner: "and" | "or") => void;
|
|
822
|
-
clearFilter: () => void;
|
|
823
626
|
setAutosize: () => void;
|
|
824
627
|
removeAutosize: () => void;
|
|
825
|
-
|
|
628
|
+
setColumnsOrder: (columnsOrder: string[]) => void;
|
|
629
|
+
setColumnOrder: (columnId: string, index: number) => void;
|
|
630
|
+
moveColumnLeft: (columnId: string) => void;
|
|
631
|
+
moveColumnRight: (columnId: string) => void;
|
|
632
|
+
}, (s: Store) => string[]];
|
|
826
633
|
recomputations: () => number;
|
|
827
634
|
resetRecomputations: () => void;
|
|
828
635
|
dependencyRecomputations: () => number;
|
|
@@ -839,52 +646,52 @@ export declare const visibleGroupsAndColumnsReselect: ((state: Store) => TableCo
|
|
|
839
646
|
memoize: typeof import('reselect').weakMapMemoize;
|
|
840
647
|
argsMemoize: typeof import('reselect').weakMapMemoize;
|
|
841
648
|
};
|
|
842
|
-
export declare const
|
|
843
|
-
left:
|
|
844
|
-
base:
|
|
845
|
-
right:
|
|
649
|
+
export declare const visibleColumnsBySideReselect: ((state: Store) => {
|
|
650
|
+
left: TableColumnState[];
|
|
651
|
+
base: TableColumnState[];
|
|
652
|
+
right: TableColumnState[];
|
|
846
653
|
}) & {
|
|
847
654
|
clearCache: () => void;
|
|
848
655
|
resultsCount: () => number;
|
|
849
656
|
resetResultsCount: () => void;
|
|
850
657
|
} & {
|
|
851
|
-
resultFunc: (resultFuncArgs_0:
|
|
852
|
-
left:
|
|
853
|
-
base:
|
|
854
|
-
right:
|
|
658
|
+
resultFunc: (resultFuncArgs_0: TableColumnState[]) => {
|
|
659
|
+
left: TableColumnState[];
|
|
660
|
+
base: TableColumnState[];
|
|
661
|
+
right: TableColumnState[];
|
|
855
662
|
};
|
|
856
|
-
memoizedResultFunc: ((resultFuncArgs_0:
|
|
857
|
-
left:
|
|
858
|
-
base:
|
|
859
|
-
right:
|
|
663
|
+
memoizedResultFunc: ((resultFuncArgs_0: TableColumnState[]) => {
|
|
664
|
+
left: TableColumnState[];
|
|
665
|
+
base: TableColumnState[];
|
|
666
|
+
right: TableColumnState[];
|
|
860
667
|
}) & {
|
|
861
668
|
clearCache: () => void;
|
|
862
669
|
resultsCount: () => number;
|
|
863
670
|
resetResultsCount: () => void;
|
|
864
671
|
};
|
|
865
672
|
lastResult: () => {
|
|
866
|
-
left:
|
|
867
|
-
base:
|
|
868
|
-
right:
|
|
673
|
+
left: TableColumnState[];
|
|
674
|
+
base: TableColumnState[];
|
|
675
|
+
right: TableColumnState[];
|
|
869
676
|
};
|
|
870
|
-
dependencies: [((state: Store) =>
|
|
677
|
+
dependencies: [((state: Store) => TableColumnState[]) & {
|
|
871
678
|
clearCache: () => void;
|
|
872
679
|
resultsCount: () => number;
|
|
873
680
|
resetResultsCount: () => void;
|
|
874
681
|
} & {
|
|
875
|
-
resultFunc: (resultFuncArgs_0:
|
|
876
|
-
memoizedResultFunc: ((resultFuncArgs_0:
|
|
682
|
+
resultFunc: (resultFuncArgs_0: TableColumnState[]) => TableColumnState[];
|
|
683
|
+
memoizedResultFunc: ((resultFuncArgs_0: TableColumnState[]) => TableColumnState[]) & {
|
|
877
684
|
clearCache: () => void;
|
|
878
685
|
resultsCount: () => number;
|
|
879
686
|
resetResultsCount: () => void;
|
|
880
687
|
};
|
|
881
|
-
lastResult: () =>
|
|
882
|
-
dependencies: [((state: Store) =>
|
|
688
|
+
lastResult: () => TableColumnState[];
|
|
689
|
+
dependencies: [((state: Store) => TableColumnState[]) & {
|
|
883
690
|
clearCache: () => void;
|
|
884
691
|
resultsCount: () => number;
|
|
885
692
|
resetResultsCount: () => void;
|
|
886
693
|
} & {
|
|
887
|
-
resultFunc: (resultFuncArgs_0: boolean, resultFuncArgs_1: string[], resultFuncArgs_2: boolean, resultFuncArgs_3: string[], resultFuncArgs_4:
|
|
694
|
+
resultFunc: (resultFuncArgs_0: boolean, resultFuncArgs_1: string[], resultFuncArgs_2: boolean, resultFuncArgs_3: string[], resultFuncArgs_4: import('./types').TableColumnsProp<TableRowModel>, resultFuncArgs_5: Partial<Record<string, Partial<TableColumnState>>>, resultFuncArgs_6: {
|
|
888
695
|
setPageSize: (v: number) => void;
|
|
889
696
|
setPage: (v: number) => void;
|
|
890
697
|
setSort: (v: import('./types').TableSortModel | null) => void;
|
|
@@ -898,7 +705,6 @@ export declare const visibleGroupsAndColumnsBySideReselect: ((state: Store) => {
|
|
|
898
705
|
setNextPage: () => void;
|
|
899
706
|
setColumnWidth: (field: string, setWidth: number) => void;
|
|
900
707
|
toggleRowExpand: (id: string) => void;
|
|
901
|
-
setHeaderWidth: (id: string, width: number) => void;
|
|
902
708
|
setRootRef: (rootRef: HTMLDivElement) => void;
|
|
903
709
|
setScrollRef: (scrollRef: HTMLDivElement) => void;
|
|
904
710
|
calculateColumnWidths: (clear?: boolean) => void;
|
|
@@ -906,15 +712,14 @@ export declare const visibleGroupsAndColumnsBySideReselect: ((state: Store) => {
|
|
|
906
712
|
unselectVisibleRows: () => void;
|
|
907
713
|
unselectRow: (id: string) => void;
|
|
908
714
|
selectRow: (id: string) => void;
|
|
909
|
-
addFilterRow: (field?: string) => void;
|
|
910
|
-
removeFilterRow: (id: string) => void;
|
|
911
|
-
changeFilterRow: ({ id, ...newRow }: Pick<import('./store').TableFilterRow, "id"> & Partial<Omit<import('./store').TableFilterRow, "id">>) => void;
|
|
912
|
-
setFilterCombiner: (combiner: "and" | "or") => void;
|
|
913
|
-
clearFilter: () => void;
|
|
914
715
|
setAutosize: () => void;
|
|
915
716
|
removeAutosize: () => void;
|
|
916
|
-
|
|
917
|
-
|
|
717
|
+
setColumnsOrder: (columnsOrder: string[]) => void;
|
|
718
|
+
setColumnOrder: (columnId: string, index: number) => void;
|
|
719
|
+
moveColumnLeft: (columnId: string) => void;
|
|
720
|
+
moveColumnRight: (columnId: string) => void;
|
|
721
|
+
}, resultFuncArgs_7: string[]) => TableColumnState[];
|
|
722
|
+
memoizedResultFunc: ((resultFuncArgs_0: boolean, resultFuncArgs_1: string[], resultFuncArgs_2: boolean, resultFuncArgs_3: string[], resultFuncArgs_4: import('./types').TableColumnsProp<TableRowModel>, resultFuncArgs_5: Partial<Record<string, Partial<TableColumnState>>>, resultFuncArgs_6: {
|
|
918
723
|
setPageSize: (v: number) => void;
|
|
919
724
|
setPage: (v: number) => void;
|
|
920
725
|
setSort: (v: import('./types').TableSortModel | null) => void;
|
|
@@ -928,7 +733,6 @@ export declare const visibleGroupsAndColumnsBySideReselect: ((state: Store) => {
|
|
|
928
733
|
setNextPage: () => void;
|
|
929
734
|
setColumnWidth: (field: string, setWidth: number) => void;
|
|
930
735
|
toggleRowExpand: (id: string) => void;
|
|
931
|
-
setHeaderWidth: (id: string, width: number) => void;
|
|
932
736
|
setRootRef: (rootRef: HTMLDivElement) => void;
|
|
933
737
|
setScrollRef: (scrollRef: HTMLDivElement) => void;
|
|
934
738
|
calculateColumnWidths: (clear?: boolean) => void;
|
|
@@ -936,20 +740,19 @@ export declare const visibleGroupsAndColumnsBySideReselect: ((state: Store) => {
|
|
|
936
740
|
unselectVisibleRows: () => void;
|
|
937
741
|
unselectRow: (id: string) => void;
|
|
938
742
|
selectRow: (id: string) => void;
|
|
939
|
-
addFilterRow: (field?: string) => void;
|
|
940
|
-
removeFilterRow: (id: string) => void;
|
|
941
|
-
changeFilterRow: ({ id, ...newRow }: Pick<import('./store').TableFilterRow, "id"> & Partial<Omit<import('./store').TableFilterRow, "id">>) => void;
|
|
942
|
-
setFilterCombiner: (combiner: "and" | "or") => void;
|
|
943
|
-
clearFilter: () => void;
|
|
944
743
|
setAutosize: () => void;
|
|
945
744
|
removeAutosize: () => void;
|
|
946
|
-
|
|
745
|
+
setColumnsOrder: (columnsOrder: string[]) => void;
|
|
746
|
+
setColumnOrder: (columnId: string, index: number) => void;
|
|
747
|
+
moveColumnLeft: (columnId: string) => void;
|
|
748
|
+
moveColumnRight: (columnId: string) => void;
|
|
749
|
+
}, resultFuncArgs_7: string[]) => TableColumnState[]) & {
|
|
947
750
|
clearCache: () => void;
|
|
948
751
|
resultsCount: () => number;
|
|
949
752
|
resetResultsCount: () => void;
|
|
950
753
|
};
|
|
951
|
-
lastResult: () =>
|
|
952
|
-
dependencies: [(s: Store) => boolean, (s: Store) => string[], (s: Store) => boolean, (s: Store) => string[], (s: Store) =>
|
|
754
|
+
lastResult: () => TableColumnState[];
|
|
755
|
+
dependencies: [(s: Store) => boolean, (s: Store) => string[], (s: Store) => boolean, (s: Store) => string[], (s: Store) => import('./types').TableColumnsProp<TableRowModel>, (s: Store) => Partial<Record<string, Partial<TableColumnState>>>, (s: Store) => {
|
|
953
756
|
setPageSize: (v: number) => void;
|
|
954
757
|
setPage: (v: number) => void;
|
|
955
758
|
setSort: (v: import('./types').TableSortModel | null) => void;
|
|
@@ -963,7 +766,6 @@ export declare const visibleGroupsAndColumnsBySideReselect: ((state: Store) => {
|
|
|
963
766
|
setNextPage: () => void;
|
|
964
767
|
setColumnWidth: (field: string, setWidth: number) => void;
|
|
965
768
|
toggleRowExpand: (id: string) => void;
|
|
966
|
-
setHeaderWidth: (id: string, width: number) => void;
|
|
967
769
|
setRootRef: (rootRef: HTMLDivElement) => void;
|
|
968
770
|
setScrollRef: (scrollRef: HTMLDivElement) => void;
|
|
969
771
|
calculateColumnWidths: (clear?: boolean) => void;
|
|
@@ -971,14 +773,13 @@ export declare const visibleGroupsAndColumnsBySideReselect: ((state: Store) => {
|
|
|
971
773
|
unselectVisibleRows: () => void;
|
|
972
774
|
unselectRow: (id: string) => void;
|
|
973
775
|
selectRow: (id: string) => void;
|
|
974
|
-
addFilterRow: (field?: string) => void;
|
|
975
|
-
removeFilterRow: (id: string) => void;
|
|
976
|
-
changeFilterRow: ({ id, ...newRow }: Pick<import('./store').TableFilterRow, "id"> & Partial<Omit<import('./store').TableFilterRow, "id">>) => void;
|
|
977
|
-
setFilterCombiner: (combiner: "and" | "or") => void;
|
|
978
|
-
clearFilter: () => void;
|
|
979
776
|
setAutosize: () => void;
|
|
980
777
|
removeAutosize: () => void;
|
|
981
|
-
|
|
778
|
+
setColumnsOrder: (columnsOrder: string[]) => void;
|
|
779
|
+
setColumnOrder: (columnId: string, index: number) => void;
|
|
780
|
+
moveColumnLeft: (columnId: string) => void;
|
|
781
|
+
moveColumnRight: (columnId: string) => void;
|
|
782
|
+
}, (s: Store) => string[]];
|
|
982
783
|
recomputations: () => number;
|
|
983
784
|
resetRecomputations: () => void;
|
|
984
785
|
dependencyRecomputations: () => number;
|
|
@@ -1003,360 +804,24 @@ export declare const visibleGroupsAndColumnsBySideReselect: ((state: Store) => {
|
|
|
1003
804
|
memoize: typeof import('reselect').weakMapMemoize;
|
|
1004
805
|
argsMemoize: typeof import('reselect').weakMapMemoize;
|
|
1005
806
|
};
|
|
1006
|
-
export declare const
|
|
1007
|
-
left: import('./types').TableColumnDef<TableRowModel>[];
|
|
1008
|
-
base: import('./types').TableColumnDef<TableRowModel>[];
|
|
1009
|
-
right: import('./types').TableColumnDef<TableRowModel>[];
|
|
1010
|
-
}) & {
|
|
807
|
+
export declare const columnsMapReselect: ((state: Store) => Record<string, TableColumnState>) & {
|
|
1011
808
|
clearCache: () => void;
|
|
1012
809
|
resultsCount: () => number;
|
|
1013
810
|
resetResultsCount: () => void;
|
|
1014
811
|
} & {
|
|
1015
|
-
resultFunc: (resultFuncArgs_0:
|
|
1016
|
-
|
|
1017
|
-
base: TableColumnsProp;
|
|
1018
|
-
right: TableColumnsProp;
|
|
1019
|
-
}) => {
|
|
1020
|
-
left: import('./types').TableColumnDef<TableRowModel>[];
|
|
1021
|
-
base: import('./types').TableColumnDef<TableRowModel>[];
|
|
1022
|
-
right: import('./types').TableColumnDef<TableRowModel>[];
|
|
1023
|
-
};
|
|
1024
|
-
memoizedResultFunc: ((resultFuncArgs_0: {
|
|
1025
|
-
left: TableColumnsProp;
|
|
1026
|
-
base: TableColumnsProp;
|
|
1027
|
-
right: TableColumnsProp;
|
|
1028
|
-
}) => {
|
|
1029
|
-
left: import('./types').TableColumnDef<TableRowModel>[];
|
|
1030
|
-
base: import('./types').TableColumnDef<TableRowModel>[];
|
|
1031
|
-
right: import('./types').TableColumnDef<TableRowModel>[];
|
|
1032
|
-
}) & {
|
|
812
|
+
resultFunc: (resultFuncArgs_0: TableColumnState[]) => Record<string, TableColumnState>;
|
|
813
|
+
memoizedResultFunc: ((resultFuncArgs_0: TableColumnState[]) => Record<string, TableColumnState>) & {
|
|
1033
814
|
clearCache: () => void;
|
|
1034
815
|
resultsCount: () => number;
|
|
1035
816
|
resetResultsCount: () => void;
|
|
1036
817
|
};
|
|
1037
|
-
lastResult: () =>
|
|
1038
|
-
|
|
1039
|
-
base: import('./types').TableColumnDef<TableRowModel>[];
|
|
1040
|
-
right: import('./types').TableColumnDef<TableRowModel>[];
|
|
1041
|
-
};
|
|
1042
|
-
dependencies: [((state: Store) => {
|
|
1043
|
-
left: TableColumnsProp;
|
|
1044
|
-
base: TableColumnsProp;
|
|
1045
|
-
right: TableColumnsProp;
|
|
1046
|
-
}) & {
|
|
1047
|
-
clearCache: () => void;
|
|
1048
|
-
resultsCount: () => number;
|
|
1049
|
-
resetResultsCount: () => void;
|
|
1050
|
-
} & {
|
|
1051
|
-
resultFunc: (resultFuncArgs_0: TableColumnsProp) => {
|
|
1052
|
-
left: TableColumnsProp;
|
|
1053
|
-
base: TableColumnsProp;
|
|
1054
|
-
right: TableColumnsProp;
|
|
1055
|
-
};
|
|
1056
|
-
memoizedResultFunc: ((resultFuncArgs_0: TableColumnsProp) => {
|
|
1057
|
-
left: TableColumnsProp;
|
|
1058
|
-
base: TableColumnsProp;
|
|
1059
|
-
right: TableColumnsProp;
|
|
1060
|
-
}) & {
|
|
1061
|
-
clearCache: () => void;
|
|
1062
|
-
resultsCount: () => number;
|
|
1063
|
-
resetResultsCount: () => void;
|
|
1064
|
-
};
|
|
1065
|
-
lastResult: () => {
|
|
1066
|
-
left: TableColumnsProp;
|
|
1067
|
-
base: TableColumnsProp;
|
|
1068
|
-
right: TableColumnsProp;
|
|
1069
|
-
};
|
|
1070
|
-
dependencies: [((state: Store) => TableColumnsProp) & {
|
|
1071
|
-
clearCache: () => void;
|
|
1072
|
-
resultsCount: () => number;
|
|
1073
|
-
resetResultsCount: () => void;
|
|
1074
|
-
} & {
|
|
1075
|
-
resultFunc: (resultFuncArgs_0: TableColumnsProp<TableRowModel, TableColumnState>) => TableColumnsProp;
|
|
1076
|
-
memoizedResultFunc: ((resultFuncArgs_0: TableColumnsProp<TableRowModel, TableColumnState>) => TableColumnsProp) & {
|
|
1077
|
-
clearCache: () => void;
|
|
1078
|
-
resultsCount: () => number;
|
|
1079
|
-
resetResultsCount: () => void;
|
|
1080
|
-
};
|
|
1081
|
-
lastResult: () => TableColumnsProp;
|
|
1082
|
-
dependencies: [((state: Store) => TableColumnsProp<TableRowModel, TableColumnState>) & {
|
|
1083
|
-
clearCache: () => void;
|
|
1084
|
-
resultsCount: () => number;
|
|
1085
|
-
resetResultsCount: () => void;
|
|
1086
|
-
} & {
|
|
1087
|
-
resultFunc: (resultFuncArgs_0: boolean, resultFuncArgs_1: string[], resultFuncArgs_2: boolean, resultFuncArgs_3: string[], resultFuncArgs_4: TableColumnsProp<TableRowModel, import('./types').TableColumnDef<TableRowModel>>, resultFuncArgs_5: Partial<Record<string, Partial<TableColumnState>>>, resultFuncArgs_6: {
|
|
1088
|
-
setPageSize: (v: number) => void;
|
|
1089
|
-
setPage: (v: number) => void;
|
|
1090
|
-
setSort: (v: import('./types').TableSortModel | null) => void;
|
|
1091
|
-
downloadCSV: () => void;
|
|
1092
|
-
downloadExcel: () => void;
|
|
1093
|
-
setSelected: (selected: string[]) => void;
|
|
1094
|
-
toggleColumn: (v: string) => void;
|
|
1095
|
-
setVisibleColumns: (v: string[]) => void;
|
|
1096
|
-
setSearch: (v: string) => void;
|
|
1097
|
-
setPrevPage: () => void;
|
|
1098
|
-
setNextPage: () => void;
|
|
1099
|
-
setColumnWidth: (field: string, setWidth: number) => void;
|
|
1100
|
-
toggleRowExpand: (id: string) => void;
|
|
1101
|
-
setHeaderWidth: (id: string, width: number) => void;
|
|
1102
|
-
setRootRef: (rootRef: HTMLDivElement) => void;
|
|
1103
|
-
setScrollRef: (scrollRef: HTMLDivElement) => void;
|
|
1104
|
-
calculateColumnWidths: (clear?: boolean) => void;
|
|
1105
|
-
selectVisibleRows: () => void;
|
|
1106
|
-
unselectVisibleRows: () => void;
|
|
1107
|
-
unselectRow: (id: string) => void;
|
|
1108
|
-
selectRow: (id: string) => void;
|
|
1109
|
-
addFilterRow: (field?: string) => void;
|
|
1110
|
-
removeFilterRow: (id: string) => void;
|
|
1111
|
-
changeFilterRow: ({ id, ...newRow }: Pick<import('./store').TableFilterRow, "id"> & Partial<Omit<import('./store').TableFilterRow, "id">>) => void;
|
|
1112
|
-
setFilterCombiner: (combiner: "and" | "or") => void;
|
|
1113
|
-
clearFilter: () => void;
|
|
1114
|
-
setAutosize: () => void;
|
|
1115
|
-
removeAutosize: () => void;
|
|
1116
|
-
}) => TableColumnsProp<TableRowModel, TableColumnState>;
|
|
1117
|
-
memoizedResultFunc: ((resultFuncArgs_0: boolean, resultFuncArgs_1: string[], resultFuncArgs_2: boolean, resultFuncArgs_3: string[], resultFuncArgs_4: TableColumnsProp<TableRowModel, import('./types').TableColumnDef<TableRowModel>>, resultFuncArgs_5: Partial<Record<string, Partial<TableColumnState>>>, resultFuncArgs_6: {
|
|
1118
|
-
setPageSize: (v: number) => void;
|
|
1119
|
-
setPage: (v: number) => void;
|
|
1120
|
-
setSort: (v: import('./types').TableSortModel | null) => void;
|
|
1121
|
-
downloadCSV: () => void;
|
|
1122
|
-
downloadExcel: () => void;
|
|
1123
|
-
setSelected: (selected: string[]) => void;
|
|
1124
|
-
toggleColumn: (v: string) => void;
|
|
1125
|
-
setVisibleColumns: (v: string[]) => void;
|
|
1126
|
-
setSearch: (v: string) => void;
|
|
1127
|
-
setPrevPage: () => void;
|
|
1128
|
-
setNextPage: () => void;
|
|
1129
|
-
setColumnWidth: (field: string, setWidth: number) => void;
|
|
1130
|
-
toggleRowExpand: (id: string) => void;
|
|
1131
|
-
setHeaderWidth: (id: string, width: number) => void;
|
|
1132
|
-
setRootRef: (rootRef: HTMLDivElement) => void;
|
|
1133
|
-
setScrollRef: (scrollRef: HTMLDivElement) => void;
|
|
1134
|
-
calculateColumnWidths: (clear?: boolean) => void;
|
|
1135
|
-
selectVisibleRows: () => void;
|
|
1136
|
-
unselectVisibleRows: () => void;
|
|
1137
|
-
unselectRow: (id: string) => void;
|
|
1138
|
-
selectRow: (id: string) => void;
|
|
1139
|
-
addFilterRow: (field?: string) => void;
|
|
1140
|
-
removeFilterRow: (id: string) => void;
|
|
1141
|
-
changeFilterRow: ({ id, ...newRow }: Pick<import('./store').TableFilterRow, "id"> & Partial<Omit<import('./store').TableFilterRow, "id">>) => void;
|
|
1142
|
-
setFilterCombiner: (combiner: "and" | "or") => void;
|
|
1143
|
-
clearFilter: () => void;
|
|
1144
|
-
setAutosize: () => void;
|
|
1145
|
-
removeAutosize: () => void;
|
|
1146
|
-
}) => TableColumnsProp<TableRowModel, TableColumnState>) & {
|
|
1147
|
-
clearCache: () => void;
|
|
1148
|
-
resultsCount: () => number;
|
|
1149
|
-
resetResultsCount: () => void;
|
|
1150
|
-
};
|
|
1151
|
-
lastResult: () => TableColumnsProp<TableRowModel, TableColumnState>;
|
|
1152
|
-
dependencies: [(s: Store) => boolean, (s: Store) => string[], (s: Store) => boolean, (s: Store) => string[], (s: Store) => TableColumnsProp<TableRowModel, import('./types').TableColumnDef<TableRowModel>>, (s: Store) => Partial<Record<string, Partial<TableColumnState>>>, (s: Store) => {
|
|
1153
|
-
setPageSize: (v: number) => void;
|
|
1154
|
-
setPage: (v: number) => void;
|
|
1155
|
-
setSort: (v: import('./types').TableSortModel | null) => void;
|
|
1156
|
-
downloadCSV: () => void;
|
|
1157
|
-
downloadExcel: () => void;
|
|
1158
|
-
setSelected: (selected: string[]) => void;
|
|
1159
|
-
toggleColumn: (v: string) => void;
|
|
1160
|
-
setVisibleColumns: (v: string[]) => void;
|
|
1161
|
-
setSearch: (v: string) => void;
|
|
1162
|
-
setPrevPage: () => void;
|
|
1163
|
-
setNextPage: () => void;
|
|
1164
|
-
setColumnWidth: (field: string, setWidth: number) => void;
|
|
1165
|
-
toggleRowExpand: (id: string) => void;
|
|
1166
|
-
setHeaderWidth: (id: string, width: number) => void;
|
|
1167
|
-
setRootRef: (rootRef: HTMLDivElement) => void;
|
|
1168
|
-
setScrollRef: (scrollRef: HTMLDivElement) => void;
|
|
1169
|
-
calculateColumnWidths: (clear?: boolean) => void;
|
|
1170
|
-
selectVisibleRows: () => void;
|
|
1171
|
-
unselectVisibleRows: () => void;
|
|
1172
|
-
unselectRow: (id: string) => void;
|
|
1173
|
-
selectRow: (id: string) => void;
|
|
1174
|
-
addFilterRow: (field?: string) => void;
|
|
1175
|
-
removeFilterRow: (id: string) => void;
|
|
1176
|
-
changeFilterRow: ({ id, ...newRow }: Pick<import('./store').TableFilterRow, "id"> & Partial<Omit<import('./store').TableFilterRow, "id">>) => void;
|
|
1177
|
-
setFilterCombiner: (combiner: "and" | "or") => void;
|
|
1178
|
-
clearFilter: () => void;
|
|
1179
|
-
setAutosize: () => void;
|
|
1180
|
-
removeAutosize: () => void;
|
|
1181
|
-
}];
|
|
1182
|
-
recomputations: () => number;
|
|
1183
|
-
resetRecomputations: () => void;
|
|
1184
|
-
dependencyRecomputations: () => number;
|
|
1185
|
-
resetDependencyRecomputations: () => void;
|
|
1186
|
-
} & {
|
|
1187
|
-
memoize: typeof import('reselect').weakMapMemoize;
|
|
1188
|
-
argsMemoize: typeof import('reselect').weakMapMemoize;
|
|
1189
|
-
}];
|
|
1190
|
-
recomputations: () => number;
|
|
1191
|
-
resetRecomputations: () => void;
|
|
1192
|
-
dependencyRecomputations: () => number;
|
|
1193
|
-
resetDependencyRecomputations: () => void;
|
|
1194
|
-
} & {
|
|
1195
|
-
memoize: typeof import('reselect').weakMapMemoize;
|
|
1196
|
-
argsMemoize: typeof import('reselect').weakMapMemoize;
|
|
1197
|
-
}];
|
|
1198
|
-
recomputations: () => number;
|
|
1199
|
-
resetRecomputations: () => void;
|
|
1200
|
-
dependencyRecomputations: () => number;
|
|
1201
|
-
resetDependencyRecomputations: () => void;
|
|
1202
|
-
} & {
|
|
1203
|
-
memoize: typeof import('reselect').weakMapMemoize;
|
|
1204
|
-
argsMemoize: typeof import('reselect').weakMapMemoize;
|
|
1205
|
-
}];
|
|
1206
|
-
recomputations: () => number;
|
|
1207
|
-
resetRecomputations: () => void;
|
|
1208
|
-
dependencyRecomputations: () => number;
|
|
1209
|
-
resetDependencyRecomputations: () => void;
|
|
1210
|
-
} & {
|
|
1211
|
-
memoize: typeof import('reselect').weakMapMemoize;
|
|
1212
|
-
argsMemoize: typeof import('reselect').weakMapMemoize;
|
|
1213
|
-
};
|
|
1214
|
-
export declare const groupsAndColumnsMapReselect: ((state: Store) => Record<string, import('./types').TableColumnDef<TableRowModel> | import('./types').TableColumnGroupDef<TableRowModel, import('./types').TableColumnDef<TableRowModel>>>) & {
|
|
1215
|
-
clearCache: () => void;
|
|
1216
|
-
resultsCount: () => number;
|
|
1217
|
-
resetResultsCount: () => void;
|
|
1218
|
-
} & {
|
|
1219
|
-
resultFunc: (resultFuncArgs_0: TableColumnsProp<TableRowModel, TableColumnState>) => Record<string, import('./types').TableColumnDef<TableRowModel> | import('./types').TableColumnGroupDef<TableRowModel, import('./types').TableColumnDef<TableRowModel>>>;
|
|
1220
|
-
memoizedResultFunc: ((resultFuncArgs_0: TableColumnsProp<TableRowModel, TableColumnState>) => Record<string, import('./types').TableColumnDef<TableRowModel> | import('./types').TableColumnGroupDef<TableRowModel, import('./types').TableColumnDef<TableRowModel>>>) & {
|
|
1221
|
-
clearCache: () => void;
|
|
1222
|
-
resultsCount: () => number;
|
|
1223
|
-
resetResultsCount: () => void;
|
|
1224
|
-
};
|
|
1225
|
-
lastResult: () => Record<string, import('./types').TableColumnDef<TableRowModel> | import('./types').TableColumnGroupDef<TableRowModel, import('./types').TableColumnDef<TableRowModel>>>;
|
|
1226
|
-
dependencies: [((state: Store) => TableColumnsProp<TableRowModel, TableColumnState>) & {
|
|
1227
|
-
clearCache: () => void;
|
|
1228
|
-
resultsCount: () => number;
|
|
1229
|
-
resetResultsCount: () => void;
|
|
1230
|
-
} & {
|
|
1231
|
-
resultFunc: (resultFuncArgs_0: boolean, resultFuncArgs_1: string[], resultFuncArgs_2: boolean, resultFuncArgs_3: string[], resultFuncArgs_4: TableColumnsProp<TableRowModel, import('./types').TableColumnDef<TableRowModel>>, resultFuncArgs_5: Partial<Record<string, Partial<TableColumnState>>>, resultFuncArgs_6: {
|
|
1232
|
-
setPageSize: (v: number) => void;
|
|
1233
|
-
setPage: (v: number) => void;
|
|
1234
|
-
setSort: (v: import('./types').TableSortModel | null) => void;
|
|
1235
|
-
downloadCSV: () => void;
|
|
1236
|
-
downloadExcel: () => void;
|
|
1237
|
-
setSelected: (selected: string[]) => void;
|
|
1238
|
-
toggleColumn: (v: string) => void;
|
|
1239
|
-
setVisibleColumns: (v: string[]) => void;
|
|
1240
|
-
setSearch: (v: string) => void;
|
|
1241
|
-
setPrevPage: () => void;
|
|
1242
|
-
setNextPage: () => void;
|
|
1243
|
-
setColumnWidth: (field: string, setWidth: number) => void;
|
|
1244
|
-
toggleRowExpand: (id: string) => void;
|
|
1245
|
-
setHeaderWidth: (id: string, width: number) => void;
|
|
1246
|
-
setRootRef: (rootRef: HTMLDivElement) => void;
|
|
1247
|
-
setScrollRef: (scrollRef: HTMLDivElement) => void;
|
|
1248
|
-
calculateColumnWidths: (clear?: boolean) => void;
|
|
1249
|
-
selectVisibleRows: () => void;
|
|
1250
|
-
unselectVisibleRows: () => void;
|
|
1251
|
-
unselectRow: (id: string) => void;
|
|
1252
|
-
selectRow: (id: string) => void;
|
|
1253
|
-
addFilterRow: (field?: string) => void;
|
|
1254
|
-
removeFilterRow: (id: string) => void;
|
|
1255
|
-
changeFilterRow: ({ id, ...newRow }: Pick<import('./store').TableFilterRow, "id"> & Partial<Omit<import('./store').TableFilterRow, "id">>) => void;
|
|
1256
|
-
setFilterCombiner: (combiner: "and" | "or") => void;
|
|
1257
|
-
clearFilter: () => void;
|
|
1258
|
-
setAutosize: () => void;
|
|
1259
|
-
removeAutosize: () => void;
|
|
1260
|
-
}) => TableColumnsProp<TableRowModel, TableColumnState>;
|
|
1261
|
-
memoizedResultFunc: ((resultFuncArgs_0: boolean, resultFuncArgs_1: string[], resultFuncArgs_2: boolean, resultFuncArgs_3: string[], resultFuncArgs_4: TableColumnsProp<TableRowModel, import('./types').TableColumnDef<TableRowModel>>, resultFuncArgs_5: Partial<Record<string, Partial<TableColumnState>>>, resultFuncArgs_6: {
|
|
1262
|
-
setPageSize: (v: number) => void;
|
|
1263
|
-
setPage: (v: number) => void;
|
|
1264
|
-
setSort: (v: import('./types').TableSortModel | null) => void;
|
|
1265
|
-
downloadCSV: () => void;
|
|
1266
|
-
downloadExcel: () => void;
|
|
1267
|
-
setSelected: (selected: string[]) => void;
|
|
1268
|
-
toggleColumn: (v: string) => void;
|
|
1269
|
-
setVisibleColumns: (v: string[]) => void;
|
|
1270
|
-
setSearch: (v: string) => void;
|
|
1271
|
-
setPrevPage: () => void;
|
|
1272
|
-
setNextPage: () => void;
|
|
1273
|
-
setColumnWidth: (field: string, setWidth: number) => void;
|
|
1274
|
-
toggleRowExpand: (id: string) => void;
|
|
1275
|
-
setHeaderWidth: (id: string, width: number) => void;
|
|
1276
|
-
setRootRef: (rootRef: HTMLDivElement) => void;
|
|
1277
|
-
setScrollRef: (scrollRef: HTMLDivElement) => void;
|
|
1278
|
-
calculateColumnWidths: (clear?: boolean) => void;
|
|
1279
|
-
selectVisibleRows: () => void;
|
|
1280
|
-
unselectVisibleRows: () => void;
|
|
1281
|
-
unselectRow: (id: string) => void;
|
|
1282
|
-
selectRow: (id: string) => void;
|
|
1283
|
-
addFilterRow: (field?: string) => void;
|
|
1284
|
-
removeFilterRow: (id: string) => void;
|
|
1285
|
-
changeFilterRow: ({ id, ...newRow }: Pick<import('./store').TableFilterRow, "id"> & Partial<Omit<import('./store').TableFilterRow, "id">>) => void;
|
|
1286
|
-
setFilterCombiner: (combiner: "and" | "or") => void;
|
|
1287
|
-
clearFilter: () => void;
|
|
1288
|
-
setAutosize: () => void;
|
|
1289
|
-
removeAutosize: () => void;
|
|
1290
|
-
}) => TableColumnsProp<TableRowModel, TableColumnState>) & {
|
|
1291
|
-
clearCache: () => void;
|
|
1292
|
-
resultsCount: () => number;
|
|
1293
|
-
resetResultsCount: () => void;
|
|
1294
|
-
};
|
|
1295
|
-
lastResult: () => TableColumnsProp<TableRowModel, TableColumnState>;
|
|
1296
|
-
dependencies: [(s: Store) => boolean, (s: Store) => string[], (s: Store) => boolean, (s: Store) => string[], (s: Store) => TableColumnsProp<TableRowModel, import('./types').TableColumnDef<TableRowModel>>, (s: Store) => Partial<Record<string, Partial<TableColumnState>>>, (s: Store) => {
|
|
1297
|
-
setPageSize: (v: number) => void;
|
|
1298
|
-
setPage: (v: number) => void;
|
|
1299
|
-
setSort: (v: import('./types').TableSortModel | null) => void;
|
|
1300
|
-
downloadCSV: () => void;
|
|
1301
|
-
downloadExcel: () => void;
|
|
1302
|
-
setSelected: (selected: string[]) => void;
|
|
1303
|
-
toggleColumn: (v: string) => void;
|
|
1304
|
-
setVisibleColumns: (v: string[]) => void;
|
|
1305
|
-
setSearch: (v: string) => void;
|
|
1306
|
-
setPrevPage: () => void;
|
|
1307
|
-
setNextPage: () => void;
|
|
1308
|
-
setColumnWidth: (field: string, setWidth: number) => void;
|
|
1309
|
-
toggleRowExpand: (id: string) => void;
|
|
1310
|
-
setHeaderWidth: (id: string, width: number) => void;
|
|
1311
|
-
setRootRef: (rootRef: HTMLDivElement) => void;
|
|
1312
|
-
setScrollRef: (scrollRef: HTMLDivElement) => void;
|
|
1313
|
-
calculateColumnWidths: (clear?: boolean) => void;
|
|
1314
|
-
selectVisibleRows: () => void;
|
|
1315
|
-
unselectVisibleRows: () => void;
|
|
1316
|
-
unselectRow: (id: string) => void;
|
|
1317
|
-
selectRow: (id: string) => void;
|
|
1318
|
-
addFilterRow: (field?: string) => void;
|
|
1319
|
-
removeFilterRow: (id: string) => void;
|
|
1320
|
-
changeFilterRow: ({ id, ...newRow }: Pick<import('./store').TableFilterRow, "id"> & Partial<Omit<import('./store').TableFilterRow, "id">>) => void;
|
|
1321
|
-
setFilterCombiner: (combiner: "and" | "or") => void;
|
|
1322
|
-
clearFilter: () => void;
|
|
1323
|
-
setAutosize: () => void;
|
|
1324
|
-
removeAutosize: () => void;
|
|
1325
|
-
}];
|
|
1326
|
-
recomputations: () => number;
|
|
1327
|
-
resetRecomputations: () => void;
|
|
1328
|
-
dependencyRecomputations: () => number;
|
|
1329
|
-
resetDependencyRecomputations: () => void;
|
|
1330
|
-
} & {
|
|
1331
|
-
memoize: typeof import('reselect').weakMapMemoize;
|
|
1332
|
-
argsMemoize: typeof import('reselect').weakMapMemoize;
|
|
1333
|
-
}];
|
|
1334
|
-
recomputations: () => number;
|
|
1335
|
-
resetRecomputations: () => void;
|
|
1336
|
-
dependencyRecomputations: () => number;
|
|
1337
|
-
resetDependencyRecomputations: () => void;
|
|
1338
|
-
} & {
|
|
1339
|
-
memoize: typeof import('reselect').weakMapMemoize;
|
|
1340
|
-
argsMemoize: typeof import('reselect').weakMapMemoize;
|
|
1341
|
-
};
|
|
1342
|
-
export declare const columnsReselect: ((state: Store) => TableColumnState[]) & {
|
|
1343
|
-
clearCache: () => void;
|
|
1344
|
-
resultsCount: () => number;
|
|
1345
|
-
resetResultsCount: () => void;
|
|
1346
|
-
} & {
|
|
1347
|
-
resultFunc: (resultFuncArgs_0: TableColumnsProp<TableRowModel, TableColumnState>) => TableColumnState[];
|
|
1348
|
-
memoizedResultFunc: ((resultFuncArgs_0: TableColumnsProp<TableRowModel, TableColumnState>) => TableColumnState[]) & {
|
|
1349
|
-
clearCache: () => void;
|
|
1350
|
-
resultsCount: () => number;
|
|
1351
|
-
resetResultsCount: () => void;
|
|
1352
|
-
};
|
|
1353
|
-
lastResult: () => TableColumnState[];
|
|
1354
|
-
dependencies: [((state: Store) => TableColumnsProp<TableRowModel, TableColumnState>) & {
|
|
818
|
+
lastResult: () => Record<string, TableColumnState>;
|
|
819
|
+
dependencies: [((state: Store) => TableColumnState[]) & {
|
|
1355
820
|
clearCache: () => void;
|
|
1356
821
|
resultsCount: () => number;
|
|
1357
822
|
resetResultsCount: () => void;
|
|
1358
823
|
} & {
|
|
1359
|
-
resultFunc: (resultFuncArgs_0: boolean, resultFuncArgs_1: string[], resultFuncArgs_2: boolean, resultFuncArgs_3: string[], resultFuncArgs_4:
|
|
824
|
+
resultFunc: (resultFuncArgs_0: boolean, resultFuncArgs_1: string[], resultFuncArgs_2: boolean, resultFuncArgs_3: string[], resultFuncArgs_4: import('./types').TableColumnsProp<TableRowModel>, resultFuncArgs_5: Partial<Record<string, Partial<TableColumnState>>>, resultFuncArgs_6: {
|
|
1360
825
|
setPageSize: (v: number) => void;
|
|
1361
826
|
setPage: (v: number) => void;
|
|
1362
827
|
setSort: (v: import('./types').TableSortModel | null) => void;
|
|
@@ -1370,7 +835,6 @@ export declare const columnsReselect: ((state: Store) => TableColumnState[]) & {
|
|
|
1370
835
|
setNextPage: () => void;
|
|
1371
836
|
setColumnWidth: (field: string, setWidth: number) => void;
|
|
1372
837
|
toggleRowExpand: (id: string) => void;
|
|
1373
|
-
setHeaderWidth: (id: string, width: number) => void;
|
|
1374
838
|
setRootRef: (rootRef: HTMLDivElement) => void;
|
|
1375
839
|
setScrollRef: (scrollRef: HTMLDivElement) => void;
|
|
1376
840
|
calculateColumnWidths: (clear?: boolean) => void;
|
|
@@ -1378,15 +842,14 @@ export declare const columnsReselect: ((state: Store) => TableColumnState[]) & {
|
|
|
1378
842
|
unselectVisibleRows: () => void;
|
|
1379
843
|
unselectRow: (id: string) => void;
|
|
1380
844
|
selectRow: (id: string) => void;
|
|
1381
|
-
addFilterRow: (field?: string) => void;
|
|
1382
|
-
removeFilterRow: (id: string) => void;
|
|
1383
|
-
changeFilterRow: ({ id, ...newRow }: Pick<import('./store').TableFilterRow, "id"> & Partial<Omit<import('./store').TableFilterRow, "id">>) => void;
|
|
1384
|
-
setFilterCombiner: (combiner: "and" | "or") => void;
|
|
1385
|
-
clearFilter: () => void;
|
|
1386
845
|
setAutosize: () => void;
|
|
1387
846
|
removeAutosize: () => void;
|
|
1388
|
-
|
|
1389
|
-
|
|
847
|
+
setColumnsOrder: (columnsOrder: string[]) => void;
|
|
848
|
+
setColumnOrder: (columnId: string, index: number) => void;
|
|
849
|
+
moveColumnLeft: (columnId: string) => void;
|
|
850
|
+
moveColumnRight: (columnId: string) => void;
|
|
851
|
+
}, resultFuncArgs_7: string[]) => TableColumnState[];
|
|
852
|
+
memoizedResultFunc: ((resultFuncArgs_0: boolean, resultFuncArgs_1: string[], resultFuncArgs_2: boolean, resultFuncArgs_3: string[], resultFuncArgs_4: import('./types').TableColumnsProp<TableRowModel>, resultFuncArgs_5: Partial<Record<string, Partial<TableColumnState>>>, resultFuncArgs_6: {
|
|
1390
853
|
setPageSize: (v: number) => void;
|
|
1391
854
|
setPage: (v: number) => void;
|
|
1392
855
|
setSort: (v: import('./types').TableSortModel | null) => void;
|
|
@@ -1400,7 +863,6 @@ export declare const columnsReselect: ((state: Store) => TableColumnState[]) & {
|
|
|
1400
863
|
setNextPage: () => void;
|
|
1401
864
|
setColumnWidth: (field: string, setWidth: number) => void;
|
|
1402
865
|
toggleRowExpand: (id: string) => void;
|
|
1403
|
-
setHeaderWidth: (id: string, width: number) => void;
|
|
1404
866
|
setRootRef: (rootRef: HTMLDivElement) => void;
|
|
1405
867
|
setScrollRef: (scrollRef: HTMLDivElement) => void;
|
|
1406
868
|
calculateColumnWidths: (clear?: boolean) => void;
|
|
@@ -1408,20 +870,19 @@ export declare const columnsReselect: ((state: Store) => TableColumnState[]) & {
|
|
|
1408
870
|
unselectVisibleRows: () => void;
|
|
1409
871
|
unselectRow: (id: string) => void;
|
|
1410
872
|
selectRow: (id: string) => void;
|
|
1411
|
-
addFilterRow: (field?: string) => void;
|
|
1412
|
-
removeFilterRow: (id: string) => void;
|
|
1413
|
-
changeFilterRow: ({ id, ...newRow }: Pick<import('./store').TableFilterRow, "id"> & Partial<Omit<import('./store').TableFilterRow, "id">>) => void;
|
|
1414
|
-
setFilterCombiner: (combiner: "and" | "or") => void;
|
|
1415
|
-
clearFilter: () => void;
|
|
1416
873
|
setAutosize: () => void;
|
|
1417
874
|
removeAutosize: () => void;
|
|
1418
|
-
|
|
875
|
+
setColumnsOrder: (columnsOrder: string[]) => void;
|
|
876
|
+
setColumnOrder: (columnId: string, index: number) => void;
|
|
877
|
+
moveColumnLeft: (columnId: string) => void;
|
|
878
|
+
moveColumnRight: (columnId: string) => void;
|
|
879
|
+
}, resultFuncArgs_7: string[]) => TableColumnState[]) & {
|
|
1419
880
|
clearCache: () => void;
|
|
1420
881
|
resultsCount: () => number;
|
|
1421
882
|
resetResultsCount: () => void;
|
|
1422
883
|
};
|
|
1423
|
-
lastResult: () =>
|
|
1424
|
-
dependencies: [(s: Store) => boolean, (s: Store) => string[], (s: Store) => boolean, (s: Store) => string[], (s: Store) =>
|
|
884
|
+
lastResult: () => TableColumnState[];
|
|
885
|
+
dependencies: [(s: Store) => boolean, (s: Store) => string[], (s: Store) => boolean, (s: Store) => string[], (s: Store) => import('./types').TableColumnsProp<TableRowModel>, (s: Store) => Partial<Record<string, Partial<TableColumnState>>>, (s: Store) => {
|
|
1425
886
|
setPageSize: (v: number) => void;
|
|
1426
887
|
setPage: (v: number) => void;
|
|
1427
888
|
setSort: (v: import('./types').TableSortModel | null) => void;
|
|
@@ -1435,7 +896,6 @@ export declare const columnsReselect: ((state: Store) => TableColumnState[]) & {
|
|
|
1435
896
|
setNextPage: () => void;
|
|
1436
897
|
setColumnWidth: (field: string, setWidth: number) => void;
|
|
1437
898
|
toggleRowExpand: (id: string) => void;
|
|
1438
|
-
setHeaderWidth: (id: string, width: number) => void;
|
|
1439
899
|
setRootRef: (rootRef: HTMLDivElement) => void;
|
|
1440
900
|
setScrollRef: (scrollRef: HTMLDivElement) => void;
|
|
1441
901
|
calculateColumnWidths: (clear?: boolean) => void;
|
|
@@ -1443,14 +903,13 @@ export declare const columnsReselect: ((state: Store) => TableColumnState[]) & {
|
|
|
1443
903
|
unselectVisibleRows: () => void;
|
|
1444
904
|
unselectRow: (id: string) => void;
|
|
1445
905
|
selectRow: (id: string) => void;
|
|
1446
|
-
addFilterRow: (field?: string) => void;
|
|
1447
|
-
removeFilterRow: (id: string) => void;
|
|
1448
|
-
changeFilterRow: ({ id, ...newRow }: Pick<import('./store').TableFilterRow, "id"> & Partial<Omit<import('./store').TableFilterRow, "id">>) => void;
|
|
1449
|
-
setFilterCombiner: (combiner: "and" | "or") => void;
|
|
1450
|
-
clearFilter: () => void;
|
|
1451
906
|
setAutosize: () => void;
|
|
1452
907
|
removeAutosize: () => void;
|
|
1453
|
-
|
|
908
|
+
setColumnsOrder: (columnsOrder: string[]) => void;
|
|
909
|
+
setColumnOrder: (columnId: string, index: number) => void;
|
|
910
|
+
moveColumnLeft: (columnId: string) => void;
|
|
911
|
+
moveColumnRight: (columnId: string) => void;
|
|
912
|
+
}, (s: Store) => string[]];
|
|
1454
913
|
recomputations: () => number;
|
|
1455
914
|
resetRecomputations: () => void;
|
|
1456
915
|
dependencyRecomputations: () => number;
|
|
@@ -1467,36 +926,36 @@ export declare const columnsReselect: ((state: Store) => TableColumnState[]) & {
|
|
|
1467
926
|
memoize: typeof import('reselect').weakMapMemoize;
|
|
1468
927
|
argsMemoize: typeof import('reselect').weakMapMemoize;
|
|
1469
928
|
};
|
|
1470
|
-
export declare const
|
|
929
|
+
export declare const variableReselect: ((state: Store) => CSSProperties) & {
|
|
1471
930
|
clearCache: () => void;
|
|
1472
931
|
resultsCount: () => number;
|
|
1473
932
|
resetResultsCount: () => void;
|
|
1474
933
|
} & {
|
|
1475
|
-
resultFunc: (resultFuncArgs_0: TableColumnState[]) =>
|
|
1476
|
-
memoizedResultFunc: ((resultFuncArgs_0: TableColumnState[]
|
|
934
|
+
resultFunc: (resultFuncArgs_0: TableColumnState[], resultFuncArgs_1: number, resultFuncArgs_2: number) => CSSProperties;
|
|
935
|
+
memoizedResultFunc: ((resultFuncArgs_0: TableColumnState[], resultFuncArgs_1: number, resultFuncArgs_2: number) => CSSProperties) & {
|
|
1477
936
|
clearCache: () => void;
|
|
1478
937
|
resultsCount: () => number;
|
|
1479
938
|
resetResultsCount: () => void;
|
|
1480
939
|
};
|
|
1481
|
-
lastResult: () =>
|
|
940
|
+
lastResult: () => CSSProperties;
|
|
1482
941
|
dependencies: [((state: Store) => TableColumnState[]) & {
|
|
1483
942
|
clearCache: () => void;
|
|
1484
943
|
resultsCount: () => number;
|
|
1485
944
|
resetResultsCount: () => void;
|
|
1486
945
|
} & {
|
|
1487
|
-
resultFunc: (resultFuncArgs_0:
|
|
1488
|
-
memoizedResultFunc: ((resultFuncArgs_0:
|
|
946
|
+
resultFunc: (resultFuncArgs_0: TableColumnState[]) => TableColumnState[];
|
|
947
|
+
memoizedResultFunc: ((resultFuncArgs_0: TableColumnState[]) => TableColumnState[]) & {
|
|
1489
948
|
clearCache: () => void;
|
|
1490
949
|
resultsCount: () => number;
|
|
1491
950
|
resetResultsCount: () => void;
|
|
1492
951
|
};
|
|
1493
952
|
lastResult: () => TableColumnState[];
|
|
1494
|
-
dependencies: [((state: Store) =>
|
|
953
|
+
dependencies: [((state: Store) => TableColumnState[]) & {
|
|
1495
954
|
clearCache: () => void;
|
|
1496
955
|
resultsCount: () => number;
|
|
1497
956
|
resetResultsCount: () => void;
|
|
1498
957
|
} & {
|
|
1499
|
-
resultFunc: (resultFuncArgs_0: boolean, resultFuncArgs_1: string[], resultFuncArgs_2: boolean, resultFuncArgs_3: string[], resultFuncArgs_4:
|
|
958
|
+
resultFunc: (resultFuncArgs_0: boolean, resultFuncArgs_1: string[], resultFuncArgs_2: boolean, resultFuncArgs_3: string[], resultFuncArgs_4: import('./types').TableColumnsProp<TableRowModel>, resultFuncArgs_5: Partial<Record<string, Partial<TableColumnState>>>, resultFuncArgs_6: {
|
|
1500
959
|
setPageSize: (v: number) => void;
|
|
1501
960
|
setPage: (v: number) => void;
|
|
1502
961
|
setSort: (v: import('./types').TableSortModel | null) => void;
|
|
@@ -1510,7 +969,6 @@ export declare const columnsMapReselect: ((state: Store) => Record<string, Table
|
|
|
1510
969
|
setNextPage: () => void;
|
|
1511
970
|
setColumnWidth: (field: string, setWidth: number) => void;
|
|
1512
971
|
toggleRowExpand: (id: string) => void;
|
|
1513
|
-
setHeaderWidth: (id: string, width: number) => void;
|
|
1514
972
|
setRootRef: (rootRef: HTMLDivElement) => void;
|
|
1515
973
|
setScrollRef: (scrollRef: HTMLDivElement) => void;
|
|
1516
974
|
calculateColumnWidths: (clear?: boolean) => void;
|
|
@@ -1518,15 +976,14 @@ export declare const columnsMapReselect: ((state: Store) => Record<string, Table
|
|
|
1518
976
|
unselectVisibleRows: () => void;
|
|
1519
977
|
unselectRow: (id: string) => void;
|
|
1520
978
|
selectRow: (id: string) => void;
|
|
1521
|
-
addFilterRow: (field?: string) => void;
|
|
1522
|
-
removeFilterRow: (id: string) => void;
|
|
1523
|
-
changeFilterRow: ({ id, ...newRow }: Pick<import('./store').TableFilterRow, "id"> & Partial<Omit<import('./store').TableFilterRow, "id">>) => void;
|
|
1524
|
-
setFilterCombiner: (combiner: "and" | "or") => void;
|
|
1525
|
-
clearFilter: () => void;
|
|
1526
979
|
setAutosize: () => void;
|
|
1527
980
|
removeAutosize: () => void;
|
|
1528
|
-
|
|
1529
|
-
|
|
981
|
+
setColumnsOrder: (columnsOrder: string[]) => void;
|
|
982
|
+
setColumnOrder: (columnId: string, index: number) => void;
|
|
983
|
+
moveColumnLeft: (columnId: string) => void;
|
|
984
|
+
moveColumnRight: (columnId: string) => void;
|
|
985
|
+
}, resultFuncArgs_7: string[]) => TableColumnState[];
|
|
986
|
+
memoizedResultFunc: ((resultFuncArgs_0: boolean, resultFuncArgs_1: string[], resultFuncArgs_2: boolean, resultFuncArgs_3: string[], resultFuncArgs_4: import('./types').TableColumnsProp<TableRowModel>, resultFuncArgs_5: Partial<Record<string, Partial<TableColumnState>>>, resultFuncArgs_6: {
|
|
1530
987
|
setPageSize: (v: number) => void;
|
|
1531
988
|
setPage: (v: number) => void;
|
|
1532
989
|
setSort: (v: import('./types').TableSortModel | null) => void;
|
|
@@ -1540,7 +997,6 @@ export declare const columnsMapReselect: ((state: Store) => Record<string, Table
|
|
|
1540
997
|
setNextPage: () => void;
|
|
1541
998
|
setColumnWidth: (field: string, setWidth: number) => void;
|
|
1542
999
|
toggleRowExpand: (id: string) => void;
|
|
1543
|
-
setHeaderWidth: (id: string, width: number) => void;
|
|
1544
1000
|
setRootRef: (rootRef: HTMLDivElement) => void;
|
|
1545
1001
|
setScrollRef: (scrollRef: HTMLDivElement) => void;
|
|
1546
1002
|
calculateColumnWidths: (clear?: boolean) => void;
|
|
@@ -1548,20 +1004,19 @@ export declare const columnsMapReselect: ((state: Store) => Record<string, Table
|
|
|
1548
1004
|
unselectVisibleRows: () => void;
|
|
1549
1005
|
unselectRow: (id: string) => void;
|
|
1550
1006
|
selectRow: (id: string) => void;
|
|
1551
|
-
addFilterRow: (field?: string) => void;
|
|
1552
|
-
removeFilterRow: (id: string) => void;
|
|
1553
|
-
changeFilterRow: ({ id, ...newRow }: Pick<import('./store').TableFilterRow, "id"> & Partial<Omit<import('./store').TableFilterRow, "id">>) => void;
|
|
1554
|
-
setFilterCombiner: (combiner: "and" | "or") => void;
|
|
1555
|
-
clearFilter: () => void;
|
|
1556
1007
|
setAutosize: () => void;
|
|
1557
1008
|
removeAutosize: () => void;
|
|
1558
|
-
|
|
1009
|
+
setColumnsOrder: (columnsOrder: string[]) => void;
|
|
1010
|
+
setColumnOrder: (columnId: string, index: number) => void;
|
|
1011
|
+
moveColumnLeft: (columnId: string) => void;
|
|
1012
|
+
moveColumnRight: (columnId: string) => void;
|
|
1013
|
+
}, resultFuncArgs_7: string[]) => TableColumnState[]) & {
|
|
1559
1014
|
clearCache: () => void;
|
|
1560
1015
|
resultsCount: () => number;
|
|
1561
1016
|
resetResultsCount: () => void;
|
|
1562
1017
|
};
|
|
1563
|
-
lastResult: () =>
|
|
1564
|
-
dependencies: [(s: Store) => boolean, (s: Store) => string[], (s: Store) => boolean, (s: Store) => string[], (s: Store) =>
|
|
1018
|
+
lastResult: () => TableColumnState[];
|
|
1019
|
+
dependencies: [(s: Store) => boolean, (s: Store) => string[], (s: Store) => boolean, (s: Store) => string[], (s: Store) => import('./types').TableColumnsProp<TableRowModel>, (s: Store) => Partial<Record<string, Partial<TableColumnState>>>, (s: Store) => {
|
|
1565
1020
|
setPageSize: (v: number) => void;
|
|
1566
1021
|
setPage: (v: number) => void;
|
|
1567
1022
|
setSort: (v: import('./types').TableSortModel | null) => void;
|
|
@@ -1575,7 +1030,6 @@ export declare const columnsMapReselect: ((state: Store) => Record<string, Table
|
|
|
1575
1030
|
setNextPage: () => void;
|
|
1576
1031
|
setColumnWidth: (field: string, setWidth: number) => void;
|
|
1577
1032
|
toggleRowExpand: (id: string) => void;
|
|
1578
|
-
setHeaderWidth: (id: string, width: number) => void;
|
|
1579
1033
|
setRootRef: (rootRef: HTMLDivElement) => void;
|
|
1580
1034
|
setScrollRef: (scrollRef: HTMLDivElement) => void;
|
|
1581
1035
|
calculateColumnWidths: (clear?: boolean) => void;
|
|
@@ -1583,14 +1037,13 @@ export declare const columnsMapReselect: ((state: Store) => Record<string, Table
|
|
|
1583
1037
|
unselectVisibleRows: () => void;
|
|
1584
1038
|
unselectRow: (id: string) => void;
|
|
1585
1039
|
selectRow: (id: string) => void;
|
|
1586
|
-
addFilterRow: (field?: string) => void;
|
|
1587
|
-
removeFilterRow: (id: string) => void;
|
|
1588
|
-
changeFilterRow: ({ id, ...newRow }: Pick<import('./store').TableFilterRow, "id"> & Partial<Omit<import('./store').TableFilterRow, "id">>) => void;
|
|
1589
|
-
setFilterCombiner: (combiner: "and" | "or") => void;
|
|
1590
|
-
clearFilter: () => void;
|
|
1591
1040
|
setAutosize: () => void;
|
|
1592
1041
|
removeAutosize: () => void;
|
|
1593
|
-
|
|
1042
|
+
setColumnsOrder: (columnsOrder: string[]) => void;
|
|
1043
|
+
setColumnOrder: (columnId: string, index: number) => void;
|
|
1044
|
+
moveColumnLeft: (columnId: string) => void;
|
|
1045
|
+
moveColumnRight: (columnId: string) => void;
|
|
1046
|
+
}, (s: Store) => string[]];
|
|
1594
1047
|
recomputations: () => number;
|
|
1595
1048
|
resetRecomputations: () => void;
|
|
1596
1049
|
dependencyRecomputations: () => number;
|
|
@@ -1606,7 +1059,7 @@ export declare const columnsMapReselect: ((state: Store) => Record<string, Table
|
|
|
1606
1059
|
} & {
|
|
1607
1060
|
memoize: typeof import('reselect').weakMapMemoize;
|
|
1608
1061
|
argsMemoize: typeof import('reselect').weakMapMemoize;
|
|
1609
|
-
}];
|
|
1062
|
+
}, (s: Store) => number, (s: Store) => number];
|
|
1610
1063
|
recomputations: () => number;
|
|
1611
1064
|
resetRecomputations: () => void;
|
|
1612
1065
|
dependencyRecomputations: () => number;
|
|
@@ -1615,1795 +1068,125 @@ export declare const columnsMapReselect: ((state: Store) => Record<string, Table
|
|
|
1615
1068
|
memoize: typeof import('reselect').weakMapMemoize;
|
|
1616
1069
|
argsMemoize: typeof import('reselect').weakMapMemoize;
|
|
1617
1070
|
};
|
|
1618
|
-
export declare const
|
|
1619
|
-
|
|
1620
|
-
|
|
1621
|
-
|
|
1622
|
-
} & {
|
|
1623
|
-
resultFunc: (resultFuncArgs_0: TableColumnState[]) => TableColumnState[];
|
|
1624
|
-
memoizedResultFunc: ((resultFuncArgs_0: TableColumnState[]) => TableColumnState[]) & {
|
|
1625
|
-
clearCache: () => void;
|
|
1626
|
-
resultsCount: () => number;
|
|
1627
|
-
resetResultsCount: () => void;
|
|
1628
|
-
};
|
|
1629
|
-
lastResult: () => TableColumnState[];
|
|
1630
|
-
dependencies: [((state: Store) => TableColumnState[]) & {
|
|
1631
|
-
clearCache: () => void;
|
|
1632
|
-
resultsCount: () => number;
|
|
1633
|
-
resetResultsCount: () => void;
|
|
1634
|
-
} & {
|
|
1635
|
-
resultFunc: (resultFuncArgs_0: TableColumnsProp<TableRowModel, TableColumnState>) => TableColumnState[];
|
|
1636
|
-
memoizedResultFunc: ((resultFuncArgs_0: TableColumnsProp<TableRowModel, TableColumnState>) => TableColumnState[]) & {
|
|
1637
|
-
clearCache: () => void;
|
|
1638
|
-
resultsCount: () => number;
|
|
1639
|
-
resetResultsCount: () => void;
|
|
1640
|
-
};
|
|
1641
|
-
lastResult: () => TableColumnState[];
|
|
1642
|
-
dependencies: [((state: Store) => TableColumnsProp<TableRowModel, TableColumnState>) & {
|
|
1643
|
-
clearCache: () => void;
|
|
1644
|
-
resultsCount: () => number;
|
|
1645
|
-
resetResultsCount: () => void;
|
|
1646
|
-
} & {
|
|
1647
|
-
resultFunc: (resultFuncArgs_0: boolean, resultFuncArgs_1: string[], resultFuncArgs_2: boolean, resultFuncArgs_3: string[], resultFuncArgs_4: TableColumnsProp<TableRowModel, import('./types').TableColumnDef<TableRowModel>>, resultFuncArgs_5: Partial<Record<string, Partial<TableColumnState>>>, resultFuncArgs_6: {
|
|
1648
|
-
setPageSize: (v: number) => void;
|
|
1649
|
-
setPage: (v: number) => void;
|
|
1650
|
-
setSort: (v: import('./types').TableSortModel | null) => void;
|
|
1651
|
-
downloadCSV: () => void;
|
|
1652
|
-
downloadExcel: () => void;
|
|
1653
|
-
setSelected: (selected: string[]) => void;
|
|
1654
|
-
toggleColumn: (v: string) => void;
|
|
1655
|
-
setVisibleColumns: (v: string[]) => void;
|
|
1656
|
-
setSearch: (v: string) => void;
|
|
1657
|
-
setPrevPage: () => void;
|
|
1658
|
-
setNextPage: () => void;
|
|
1659
|
-
setColumnWidth: (field: string, setWidth: number) => void;
|
|
1660
|
-
toggleRowExpand: (id: string) => void;
|
|
1661
|
-
setHeaderWidth: (id: string, width: number) => void;
|
|
1662
|
-
setRootRef: (rootRef: HTMLDivElement) => void;
|
|
1663
|
-
setScrollRef: (scrollRef: HTMLDivElement) => void;
|
|
1664
|
-
calculateColumnWidths: (clear?: boolean) => void;
|
|
1665
|
-
selectVisibleRows: () => void;
|
|
1666
|
-
unselectVisibleRows: () => void;
|
|
1667
|
-
unselectRow: (id: string) => void;
|
|
1668
|
-
selectRow: (id: string) => void;
|
|
1669
|
-
addFilterRow: (field?: string) => void;
|
|
1670
|
-
removeFilterRow: (id: string) => void;
|
|
1671
|
-
changeFilterRow: ({ id, ...newRow }: Pick<import('./store').TableFilterRow, "id"> & Partial<Omit<import('./store').TableFilterRow, "id">>) => void;
|
|
1672
|
-
setFilterCombiner: (combiner: "and" | "or") => void;
|
|
1673
|
-
clearFilter: () => void;
|
|
1674
|
-
setAutosize: () => void;
|
|
1675
|
-
removeAutosize: () => void;
|
|
1676
|
-
}) => TableColumnsProp<TableRowModel, TableColumnState>;
|
|
1677
|
-
memoizedResultFunc: ((resultFuncArgs_0: boolean, resultFuncArgs_1: string[], resultFuncArgs_2: boolean, resultFuncArgs_3: string[], resultFuncArgs_4: TableColumnsProp<TableRowModel, import('./types').TableColumnDef<TableRowModel>>, resultFuncArgs_5: Partial<Record<string, Partial<TableColumnState>>>, resultFuncArgs_6: {
|
|
1678
|
-
setPageSize: (v: number) => void;
|
|
1679
|
-
setPage: (v: number) => void;
|
|
1680
|
-
setSort: (v: import('./types').TableSortModel | null) => void;
|
|
1681
|
-
downloadCSV: () => void;
|
|
1682
|
-
downloadExcel: () => void;
|
|
1683
|
-
setSelected: (selected: string[]) => void;
|
|
1684
|
-
toggleColumn: (v: string) => void;
|
|
1685
|
-
setVisibleColumns: (v: string[]) => void;
|
|
1686
|
-
setSearch: (v: string) => void;
|
|
1687
|
-
setPrevPage: () => void;
|
|
1688
|
-
setNextPage: () => void;
|
|
1689
|
-
setColumnWidth: (field: string, setWidth: number) => void;
|
|
1690
|
-
toggleRowExpand: (id: string) => void;
|
|
1691
|
-
setHeaderWidth: (id: string, width: number) => void;
|
|
1692
|
-
setRootRef: (rootRef: HTMLDivElement) => void;
|
|
1693
|
-
setScrollRef: (scrollRef: HTMLDivElement) => void;
|
|
1694
|
-
calculateColumnWidths: (clear?: boolean) => void;
|
|
1695
|
-
selectVisibleRows: () => void;
|
|
1696
|
-
unselectVisibleRows: () => void;
|
|
1697
|
-
unselectRow: (id: string) => void;
|
|
1698
|
-
selectRow: (id: string) => void;
|
|
1699
|
-
addFilterRow: (field?: string) => void;
|
|
1700
|
-
removeFilterRow: (id: string) => void;
|
|
1701
|
-
changeFilterRow: ({ id, ...newRow }: Pick<import('./store').TableFilterRow, "id"> & Partial<Omit<import('./store').TableFilterRow, "id">>) => void;
|
|
1702
|
-
setFilterCombiner: (combiner: "and" | "or") => void;
|
|
1703
|
-
clearFilter: () => void;
|
|
1704
|
-
setAutosize: () => void;
|
|
1705
|
-
removeAutosize: () => void;
|
|
1706
|
-
}) => TableColumnsProp<TableRowModel, TableColumnState>) & {
|
|
1707
|
-
clearCache: () => void;
|
|
1708
|
-
resultsCount: () => number;
|
|
1709
|
-
resetResultsCount: () => void;
|
|
1710
|
-
};
|
|
1711
|
-
lastResult: () => TableColumnsProp<TableRowModel, TableColumnState>;
|
|
1712
|
-
dependencies: [(s: Store) => boolean, (s: Store) => string[], (s: Store) => boolean, (s: Store) => string[], (s: Store) => TableColumnsProp<TableRowModel, import('./types').TableColumnDef<TableRowModel>>, (s: Store) => Partial<Record<string, Partial<TableColumnState>>>, (s: Store) => {
|
|
1713
|
-
setPageSize: (v: number) => void;
|
|
1714
|
-
setPage: (v: number) => void;
|
|
1715
|
-
setSort: (v: import('./types').TableSortModel | null) => void;
|
|
1716
|
-
downloadCSV: () => void;
|
|
1717
|
-
downloadExcel: () => void;
|
|
1718
|
-
setSelected: (selected: string[]) => void;
|
|
1719
|
-
toggleColumn: (v: string) => void;
|
|
1720
|
-
setVisibleColumns: (v: string[]) => void;
|
|
1721
|
-
setSearch: (v: string) => void;
|
|
1722
|
-
setPrevPage: () => void;
|
|
1723
|
-
setNextPage: () => void;
|
|
1724
|
-
setColumnWidth: (field: string, setWidth: number) => void;
|
|
1725
|
-
toggleRowExpand: (id: string) => void;
|
|
1726
|
-
setHeaderWidth: (id: string, width: number) => void;
|
|
1727
|
-
setRootRef: (rootRef: HTMLDivElement) => void;
|
|
1728
|
-
setScrollRef: (scrollRef: HTMLDivElement) => void;
|
|
1729
|
-
calculateColumnWidths: (clear?: boolean) => void;
|
|
1730
|
-
selectVisibleRows: () => void;
|
|
1731
|
-
unselectVisibleRows: () => void;
|
|
1732
|
-
unselectRow: (id: string) => void;
|
|
1733
|
-
selectRow: (id: string) => void;
|
|
1734
|
-
addFilterRow: (field?: string) => void;
|
|
1735
|
-
removeFilterRow: (id: string) => void;
|
|
1736
|
-
changeFilterRow: ({ id, ...newRow }: Pick<import('./store').TableFilterRow, "id"> & Partial<Omit<import('./store').TableFilterRow, "id">>) => void;
|
|
1737
|
-
setFilterCombiner: (combiner: "and" | "or") => void;
|
|
1738
|
-
clearFilter: () => void;
|
|
1739
|
-
setAutosize: () => void;
|
|
1740
|
-
removeAutosize: () => void;
|
|
1741
|
-
}];
|
|
1742
|
-
recomputations: () => number;
|
|
1743
|
-
resetRecomputations: () => void;
|
|
1744
|
-
dependencyRecomputations: () => number;
|
|
1745
|
-
resetDependencyRecomputations: () => void;
|
|
1746
|
-
} & {
|
|
1747
|
-
memoize: typeof import('reselect').weakMapMemoize;
|
|
1748
|
-
argsMemoize: typeof import('reselect').weakMapMemoize;
|
|
1749
|
-
}];
|
|
1750
|
-
recomputations: () => number;
|
|
1751
|
-
resetRecomputations: () => void;
|
|
1752
|
-
dependencyRecomputations: () => number;
|
|
1753
|
-
resetDependencyRecomputations: () => void;
|
|
1754
|
-
} & {
|
|
1755
|
-
memoize: typeof import('reselect').weakMapMemoize;
|
|
1756
|
-
argsMemoize: typeof import('reselect').weakMapMemoize;
|
|
1757
|
-
}];
|
|
1758
|
-
recomputations: () => number;
|
|
1759
|
-
resetRecomputations: () => void;
|
|
1760
|
-
dependencyRecomputations: () => number;
|
|
1761
|
-
resetDependencyRecomputations: () => void;
|
|
1762
|
-
} & {
|
|
1763
|
-
memoize: typeof import('reselect').weakMapMemoize;
|
|
1764
|
-
argsMemoize: typeof import('reselect').weakMapMemoize;
|
|
1765
|
-
};
|
|
1766
|
-
export declare const maxColumnsDepthReselect: ((state: Store) => number) & {
|
|
1767
|
-
clearCache: () => void;
|
|
1768
|
-
resultsCount: () => number;
|
|
1769
|
-
resetResultsCount: () => void;
|
|
1770
|
-
} & {
|
|
1771
|
-
resultFunc: (resultFuncArgs_0: TableColumnsProp) => number;
|
|
1772
|
-
memoizedResultFunc: ((resultFuncArgs_0: TableColumnsProp) => number) & {
|
|
1773
|
-
clearCache: () => void;
|
|
1774
|
-
resultsCount: () => number;
|
|
1775
|
-
resetResultsCount: () => void;
|
|
1776
|
-
};
|
|
1777
|
-
lastResult: () => number;
|
|
1778
|
-
dependencies: [((state: Store) => TableColumnsProp) & {
|
|
1779
|
-
clearCache: () => void;
|
|
1780
|
-
resultsCount: () => number;
|
|
1781
|
-
resetResultsCount: () => void;
|
|
1782
|
-
} & {
|
|
1783
|
-
resultFunc: (resultFuncArgs_0: TableColumnsProp<TableRowModel, TableColumnState>) => TableColumnsProp;
|
|
1784
|
-
memoizedResultFunc: ((resultFuncArgs_0: TableColumnsProp<TableRowModel, TableColumnState>) => TableColumnsProp) & {
|
|
1785
|
-
clearCache: () => void;
|
|
1786
|
-
resultsCount: () => number;
|
|
1787
|
-
resetResultsCount: () => void;
|
|
1788
|
-
};
|
|
1789
|
-
lastResult: () => TableColumnsProp;
|
|
1790
|
-
dependencies: [((state: Store) => TableColumnsProp<TableRowModel, TableColumnState>) & {
|
|
1791
|
-
clearCache: () => void;
|
|
1792
|
-
resultsCount: () => number;
|
|
1793
|
-
resetResultsCount: () => void;
|
|
1794
|
-
} & {
|
|
1795
|
-
resultFunc: (resultFuncArgs_0: boolean, resultFuncArgs_1: string[], resultFuncArgs_2: boolean, resultFuncArgs_3: string[], resultFuncArgs_4: TableColumnsProp<TableRowModel, import('./types').TableColumnDef<TableRowModel>>, resultFuncArgs_5: Partial<Record<string, Partial<TableColumnState>>>, resultFuncArgs_6: {
|
|
1796
|
-
setPageSize: (v: number) => void;
|
|
1797
|
-
setPage: (v: number) => void;
|
|
1798
|
-
setSort: (v: import('./types').TableSortModel | null) => void;
|
|
1799
|
-
downloadCSV: () => void;
|
|
1800
|
-
downloadExcel: () => void;
|
|
1801
|
-
setSelected: (selected: string[]) => void;
|
|
1802
|
-
toggleColumn: (v: string) => void;
|
|
1803
|
-
setVisibleColumns: (v: string[]) => void;
|
|
1804
|
-
setSearch: (v: string) => void;
|
|
1805
|
-
setPrevPage: () => void;
|
|
1806
|
-
setNextPage: () => void;
|
|
1807
|
-
setColumnWidth: (field: string, setWidth: number) => void;
|
|
1808
|
-
toggleRowExpand: (id: string) => void;
|
|
1809
|
-
setHeaderWidth: (id: string, width: number) => void;
|
|
1810
|
-
setRootRef: (rootRef: HTMLDivElement) => void;
|
|
1811
|
-
setScrollRef: (scrollRef: HTMLDivElement) => void;
|
|
1812
|
-
calculateColumnWidths: (clear?: boolean) => void;
|
|
1813
|
-
selectVisibleRows: () => void;
|
|
1814
|
-
unselectVisibleRows: () => void;
|
|
1815
|
-
unselectRow: (id: string) => void;
|
|
1816
|
-
selectRow: (id: string) => void;
|
|
1817
|
-
addFilterRow: (field?: string) => void;
|
|
1818
|
-
removeFilterRow: (id: string) => void;
|
|
1819
|
-
changeFilterRow: ({ id, ...newRow }: Pick<import('./store').TableFilterRow, "id"> & Partial<Omit<import('./store').TableFilterRow, "id">>) => void;
|
|
1820
|
-
setFilterCombiner: (combiner: "and" | "or") => void;
|
|
1821
|
-
clearFilter: () => void;
|
|
1822
|
-
setAutosize: () => void;
|
|
1823
|
-
removeAutosize: () => void;
|
|
1824
|
-
}) => TableColumnsProp<TableRowModel, TableColumnState>;
|
|
1825
|
-
memoizedResultFunc: ((resultFuncArgs_0: boolean, resultFuncArgs_1: string[], resultFuncArgs_2: boolean, resultFuncArgs_3: string[], resultFuncArgs_4: TableColumnsProp<TableRowModel, import('./types').TableColumnDef<TableRowModel>>, resultFuncArgs_5: Partial<Record<string, Partial<TableColumnState>>>, resultFuncArgs_6: {
|
|
1826
|
-
setPageSize: (v: number) => void;
|
|
1827
|
-
setPage: (v: number) => void;
|
|
1828
|
-
setSort: (v: import('./types').TableSortModel | null) => void;
|
|
1829
|
-
downloadCSV: () => void;
|
|
1830
|
-
downloadExcel: () => void;
|
|
1831
|
-
setSelected: (selected: string[]) => void;
|
|
1832
|
-
toggleColumn: (v: string) => void;
|
|
1833
|
-
setVisibleColumns: (v: string[]) => void;
|
|
1834
|
-
setSearch: (v: string) => void;
|
|
1835
|
-
setPrevPage: () => void;
|
|
1836
|
-
setNextPage: () => void;
|
|
1837
|
-
setColumnWidth: (field: string, setWidth: number) => void;
|
|
1838
|
-
toggleRowExpand: (id: string) => void;
|
|
1839
|
-
setHeaderWidth: (id: string, width: number) => void;
|
|
1840
|
-
setRootRef: (rootRef: HTMLDivElement) => void;
|
|
1841
|
-
setScrollRef: (scrollRef: HTMLDivElement) => void;
|
|
1842
|
-
calculateColumnWidths: (clear?: boolean) => void;
|
|
1843
|
-
selectVisibleRows: () => void;
|
|
1844
|
-
unselectVisibleRows: () => void;
|
|
1845
|
-
unselectRow: (id: string) => void;
|
|
1846
|
-
selectRow: (id: string) => void;
|
|
1847
|
-
addFilterRow: (field?: string) => void;
|
|
1848
|
-
removeFilterRow: (id: string) => void;
|
|
1849
|
-
changeFilterRow: ({ id, ...newRow }: Pick<import('./store').TableFilterRow, "id"> & Partial<Omit<import('./store').TableFilterRow, "id">>) => void;
|
|
1850
|
-
setFilterCombiner: (combiner: "and" | "or") => void;
|
|
1851
|
-
clearFilter: () => void;
|
|
1852
|
-
setAutosize: () => void;
|
|
1853
|
-
removeAutosize: () => void;
|
|
1854
|
-
}) => TableColumnsProp<TableRowModel, TableColumnState>) & {
|
|
1855
|
-
clearCache: () => void;
|
|
1856
|
-
resultsCount: () => number;
|
|
1857
|
-
resetResultsCount: () => void;
|
|
1858
|
-
};
|
|
1859
|
-
lastResult: () => TableColumnsProp<TableRowModel, TableColumnState>;
|
|
1860
|
-
dependencies: [(s: Store) => boolean, (s: Store) => string[], (s: Store) => boolean, (s: Store) => string[], (s: Store) => TableColumnsProp<TableRowModel, import('./types').TableColumnDef<TableRowModel>>, (s: Store) => Partial<Record<string, Partial<TableColumnState>>>, (s: Store) => {
|
|
1861
|
-
setPageSize: (v: number) => void;
|
|
1862
|
-
setPage: (v: number) => void;
|
|
1863
|
-
setSort: (v: import('./types').TableSortModel | null) => void;
|
|
1864
|
-
downloadCSV: () => void;
|
|
1865
|
-
downloadExcel: () => void;
|
|
1866
|
-
setSelected: (selected: string[]) => void;
|
|
1867
|
-
toggleColumn: (v: string) => void;
|
|
1868
|
-
setVisibleColumns: (v: string[]) => void;
|
|
1869
|
-
setSearch: (v: string) => void;
|
|
1870
|
-
setPrevPage: () => void;
|
|
1871
|
-
setNextPage: () => void;
|
|
1872
|
-
setColumnWidth: (field: string, setWidth: number) => void;
|
|
1873
|
-
toggleRowExpand: (id: string) => void;
|
|
1874
|
-
setHeaderWidth: (id: string, width: number) => void;
|
|
1875
|
-
setRootRef: (rootRef: HTMLDivElement) => void;
|
|
1876
|
-
setScrollRef: (scrollRef: HTMLDivElement) => void;
|
|
1877
|
-
calculateColumnWidths: (clear?: boolean) => void;
|
|
1878
|
-
selectVisibleRows: () => void;
|
|
1879
|
-
unselectVisibleRows: () => void;
|
|
1880
|
-
unselectRow: (id: string) => void;
|
|
1881
|
-
selectRow: (id: string) => void;
|
|
1882
|
-
addFilterRow: (field?: string) => void;
|
|
1883
|
-
removeFilterRow: (id: string) => void;
|
|
1884
|
-
changeFilterRow: ({ id, ...newRow }: Pick<import('./store').TableFilterRow, "id"> & Partial<Omit<import('./store').TableFilterRow, "id">>) => void;
|
|
1885
|
-
setFilterCombiner: (combiner: "and" | "or") => void;
|
|
1886
|
-
clearFilter: () => void;
|
|
1887
|
-
setAutosize: () => void;
|
|
1888
|
-
removeAutosize: () => void;
|
|
1889
|
-
}];
|
|
1890
|
-
recomputations: () => number;
|
|
1891
|
-
resetRecomputations: () => void;
|
|
1892
|
-
dependencyRecomputations: () => number;
|
|
1893
|
-
resetDependencyRecomputations: () => void;
|
|
1894
|
-
} & {
|
|
1895
|
-
memoize: typeof import('reselect').weakMapMemoize;
|
|
1896
|
-
argsMemoize: typeof import('reselect').weakMapMemoize;
|
|
1897
|
-
}];
|
|
1898
|
-
recomputations: () => number;
|
|
1899
|
-
resetRecomputations: () => void;
|
|
1900
|
-
dependencyRecomputations: () => number;
|
|
1901
|
-
resetDependencyRecomputations: () => void;
|
|
1902
|
-
} & {
|
|
1903
|
-
memoize: typeof import('reselect').weakMapMemoize;
|
|
1904
|
-
argsMemoize: typeof import('reselect').weakMapMemoize;
|
|
1905
|
-
}];
|
|
1906
|
-
recomputations: () => number;
|
|
1907
|
-
resetRecomputations: () => void;
|
|
1908
|
-
dependencyRecomputations: () => number;
|
|
1909
|
-
resetDependencyRecomputations: () => void;
|
|
1910
|
-
} & {
|
|
1911
|
-
memoize: typeof import('reselect').weakMapMemoize;
|
|
1912
|
-
argsMemoize: typeof import('reselect').weakMapMemoize;
|
|
1913
|
-
};
|
|
1914
|
-
export declare const variableReselect: ((state: Store) => CSSProperties) & {
|
|
1915
|
-
clearCache: () => void;
|
|
1916
|
-
resultsCount: () => number;
|
|
1917
|
-
resetResultsCount: () => void;
|
|
1918
|
-
} & {
|
|
1919
|
-
resultFunc: (resultFuncArgs_0: TableColumnState[], resultFuncArgs_1: number, resultFuncArgs_2: number, resultFuncArgs_3: number) => CSSProperties;
|
|
1920
|
-
memoizedResultFunc: ((resultFuncArgs_0: TableColumnState[], resultFuncArgs_1: number, resultFuncArgs_2: number, resultFuncArgs_3: number) => CSSProperties) & {
|
|
1921
|
-
clearCache: () => void;
|
|
1922
|
-
resultsCount: () => number;
|
|
1923
|
-
resetResultsCount: () => void;
|
|
1924
|
-
};
|
|
1925
|
-
lastResult: () => CSSProperties;
|
|
1926
|
-
dependencies: [((state: Store) => TableColumnState[]) & {
|
|
1927
|
-
clearCache: () => void;
|
|
1928
|
-
resultsCount: () => number;
|
|
1929
|
-
resetResultsCount: () => void;
|
|
1930
|
-
} & {
|
|
1931
|
-
resultFunc: (resultFuncArgs_0: TableColumnState[]) => TableColumnState[];
|
|
1932
|
-
memoizedResultFunc: ((resultFuncArgs_0: TableColumnState[]) => TableColumnState[]) & {
|
|
1933
|
-
clearCache: () => void;
|
|
1934
|
-
resultsCount: () => number;
|
|
1935
|
-
resetResultsCount: () => void;
|
|
1936
|
-
};
|
|
1937
|
-
lastResult: () => TableColumnState[];
|
|
1938
|
-
dependencies: [((state: Store) => TableColumnState[]) & {
|
|
1939
|
-
clearCache: () => void;
|
|
1940
|
-
resultsCount: () => number;
|
|
1941
|
-
resetResultsCount: () => void;
|
|
1942
|
-
} & {
|
|
1943
|
-
resultFunc: (resultFuncArgs_0: TableColumnsProp<TableRowModel, TableColumnState>) => TableColumnState[];
|
|
1944
|
-
memoizedResultFunc: ((resultFuncArgs_0: TableColumnsProp<TableRowModel, TableColumnState>) => TableColumnState[]) & {
|
|
1945
|
-
clearCache: () => void;
|
|
1946
|
-
resultsCount: () => number;
|
|
1947
|
-
resetResultsCount: () => void;
|
|
1948
|
-
};
|
|
1949
|
-
lastResult: () => TableColumnState[];
|
|
1950
|
-
dependencies: [((state: Store) => TableColumnsProp<TableRowModel, TableColumnState>) & {
|
|
1951
|
-
clearCache: () => void;
|
|
1952
|
-
resultsCount: () => number;
|
|
1953
|
-
resetResultsCount: () => void;
|
|
1954
|
-
} & {
|
|
1955
|
-
resultFunc: (resultFuncArgs_0: boolean, resultFuncArgs_1: string[], resultFuncArgs_2: boolean, resultFuncArgs_3: string[], resultFuncArgs_4: TableColumnsProp<TableRowModel, import('./types').TableColumnDef<TableRowModel>>, resultFuncArgs_5: Partial<Record<string, Partial<TableColumnState>>>, resultFuncArgs_6: {
|
|
1956
|
-
setPageSize: (v: number) => void;
|
|
1957
|
-
setPage: (v: number) => void;
|
|
1958
|
-
setSort: (v: import('./types').TableSortModel | null) => void;
|
|
1959
|
-
downloadCSV: () => void;
|
|
1960
|
-
downloadExcel: () => void;
|
|
1961
|
-
setSelected: (selected: string[]) => void;
|
|
1962
|
-
toggleColumn: (v: string) => void;
|
|
1963
|
-
setVisibleColumns: (v: string[]) => void;
|
|
1964
|
-
setSearch: (v: string) => void;
|
|
1965
|
-
setPrevPage: () => void;
|
|
1966
|
-
setNextPage: () => void;
|
|
1967
|
-
setColumnWidth: (field: string, setWidth: number) => void;
|
|
1968
|
-
toggleRowExpand: (id: string) => void;
|
|
1969
|
-
setHeaderWidth: (id: string, width: number) => void;
|
|
1970
|
-
setRootRef: (rootRef: HTMLDivElement) => void;
|
|
1971
|
-
setScrollRef: (scrollRef: HTMLDivElement) => void;
|
|
1972
|
-
calculateColumnWidths: (clear?: boolean) => void;
|
|
1973
|
-
selectVisibleRows: () => void;
|
|
1974
|
-
unselectVisibleRows: () => void;
|
|
1975
|
-
unselectRow: (id: string) => void;
|
|
1976
|
-
selectRow: (id: string) => void;
|
|
1977
|
-
addFilterRow: (field?: string) => void;
|
|
1978
|
-
removeFilterRow: (id: string) => void;
|
|
1979
|
-
changeFilterRow: ({ id, ...newRow }: Pick<import('./store').TableFilterRow, "id"> & Partial<Omit<import('./store').TableFilterRow, "id">>) => void;
|
|
1980
|
-
setFilterCombiner: (combiner: "and" | "or") => void;
|
|
1981
|
-
clearFilter: () => void;
|
|
1982
|
-
setAutosize: () => void;
|
|
1983
|
-
removeAutosize: () => void;
|
|
1984
|
-
}) => TableColumnsProp<TableRowModel, TableColumnState>;
|
|
1985
|
-
memoizedResultFunc: ((resultFuncArgs_0: boolean, resultFuncArgs_1: string[], resultFuncArgs_2: boolean, resultFuncArgs_3: string[], resultFuncArgs_4: TableColumnsProp<TableRowModel, import('./types').TableColumnDef<TableRowModel>>, resultFuncArgs_5: Partial<Record<string, Partial<TableColumnState>>>, resultFuncArgs_6: {
|
|
1986
|
-
setPageSize: (v: number) => void;
|
|
1987
|
-
setPage: (v: number) => void;
|
|
1988
|
-
setSort: (v: import('./types').TableSortModel | null) => void;
|
|
1989
|
-
downloadCSV: () => void;
|
|
1990
|
-
downloadExcel: () => void;
|
|
1991
|
-
setSelected: (selected: string[]) => void;
|
|
1992
|
-
toggleColumn: (v: string) => void;
|
|
1993
|
-
setVisibleColumns: (v: string[]) => void;
|
|
1994
|
-
setSearch: (v: string) => void;
|
|
1995
|
-
setPrevPage: () => void;
|
|
1996
|
-
setNextPage: () => void;
|
|
1997
|
-
setColumnWidth: (field: string, setWidth: number) => void;
|
|
1998
|
-
toggleRowExpand: (id: string) => void;
|
|
1999
|
-
setHeaderWidth: (id: string, width: number) => void;
|
|
2000
|
-
setRootRef: (rootRef: HTMLDivElement) => void;
|
|
2001
|
-
setScrollRef: (scrollRef: HTMLDivElement) => void;
|
|
2002
|
-
calculateColumnWidths: (clear?: boolean) => void;
|
|
2003
|
-
selectVisibleRows: () => void;
|
|
2004
|
-
unselectVisibleRows: () => void;
|
|
2005
|
-
unselectRow: (id: string) => void;
|
|
2006
|
-
selectRow: (id: string) => void;
|
|
2007
|
-
addFilterRow: (field?: string) => void;
|
|
2008
|
-
removeFilterRow: (id: string) => void;
|
|
2009
|
-
changeFilterRow: ({ id, ...newRow }: Pick<import('./store').TableFilterRow, "id"> & Partial<Omit<import('./store').TableFilterRow, "id">>) => void;
|
|
2010
|
-
setFilterCombiner: (combiner: "and" | "or") => void;
|
|
2011
|
-
clearFilter: () => void;
|
|
2012
|
-
setAutosize: () => void;
|
|
2013
|
-
removeAutosize: () => void;
|
|
2014
|
-
}) => TableColumnsProp<TableRowModel, TableColumnState>) & {
|
|
2015
|
-
clearCache: () => void;
|
|
2016
|
-
resultsCount: () => number;
|
|
2017
|
-
resetResultsCount: () => void;
|
|
2018
|
-
};
|
|
2019
|
-
lastResult: () => TableColumnsProp<TableRowModel, TableColumnState>;
|
|
2020
|
-
dependencies: [(s: Store) => boolean, (s: Store) => string[], (s: Store) => boolean, (s: Store) => string[], (s: Store) => TableColumnsProp<TableRowModel, import('./types').TableColumnDef<TableRowModel>>, (s: Store) => Partial<Record<string, Partial<TableColumnState>>>, (s: Store) => {
|
|
2021
|
-
setPageSize: (v: number) => void;
|
|
2022
|
-
setPage: (v: number) => void;
|
|
2023
|
-
setSort: (v: import('./types').TableSortModel | null) => void;
|
|
2024
|
-
downloadCSV: () => void;
|
|
2025
|
-
downloadExcel: () => void;
|
|
2026
|
-
setSelected: (selected: string[]) => void;
|
|
2027
|
-
toggleColumn: (v: string) => void;
|
|
2028
|
-
setVisibleColumns: (v: string[]) => void;
|
|
2029
|
-
setSearch: (v: string) => void;
|
|
2030
|
-
setPrevPage: () => void;
|
|
2031
|
-
setNextPage: () => void;
|
|
2032
|
-
setColumnWidth: (field: string, setWidth: number) => void;
|
|
2033
|
-
toggleRowExpand: (id: string) => void;
|
|
2034
|
-
setHeaderWidth: (id: string, width: number) => void;
|
|
2035
|
-
setRootRef: (rootRef: HTMLDivElement) => void;
|
|
2036
|
-
setScrollRef: (scrollRef: HTMLDivElement) => void;
|
|
2037
|
-
calculateColumnWidths: (clear?: boolean) => void;
|
|
2038
|
-
selectVisibleRows: () => void;
|
|
2039
|
-
unselectVisibleRows: () => void;
|
|
2040
|
-
unselectRow: (id: string) => void;
|
|
2041
|
-
selectRow: (id: string) => void;
|
|
2042
|
-
addFilterRow: (field?: string) => void;
|
|
2043
|
-
removeFilterRow: (id: string) => void;
|
|
2044
|
-
changeFilterRow: ({ id, ...newRow }: Pick<import('./store').TableFilterRow, "id"> & Partial<Omit<import('./store').TableFilterRow, "id">>) => void;
|
|
2045
|
-
setFilterCombiner: (combiner: "and" | "or") => void;
|
|
2046
|
-
clearFilter: () => void;
|
|
2047
|
-
setAutosize: () => void;
|
|
2048
|
-
removeAutosize: () => void;
|
|
2049
|
-
}];
|
|
2050
|
-
recomputations: () => number;
|
|
2051
|
-
resetRecomputations: () => void;
|
|
2052
|
-
dependencyRecomputations: () => number;
|
|
2053
|
-
resetDependencyRecomputations: () => void;
|
|
2054
|
-
} & {
|
|
2055
|
-
memoize: typeof import('reselect').weakMapMemoize;
|
|
2056
|
-
argsMemoize: typeof import('reselect').weakMapMemoize;
|
|
2057
|
-
}];
|
|
2058
|
-
recomputations: () => number;
|
|
2059
|
-
resetRecomputations: () => void;
|
|
2060
|
-
dependencyRecomputations: () => number;
|
|
2061
|
-
resetDependencyRecomputations: () => void;
|
|
2062
|
-
} & {
|
|
2063
|
-
memoize: typeof import('reselect').weakMapMemoize;
|
|
2064
|
-
argsMemoize: typeof import('reselect').weakMapMemoize;
|
|
2065
|
-
}];
|
|
2066
|
-
recomputations: () => number;
|
|
2067
|
-
resetRecomputations: () => void;
|
|
2068
|
-
dependencyRecomputations: () => number;
|
|
2069
|
-
resetDependencyRecomputations: () => void;
|
|
2070
|
-
} & {
|
|
2071
|
-
memoize: typeof import('reselect').weakMapMemoize;
|
|
2072
|
-
argsMemoize: typeof import('reselect').weakMapMemoize;
|
|
2073
|
-
}, ((state: Store) => number) & {
|
|
2074
|
-
clearCache: () => void;
|
|
2075
|
-
resultsCount: () => number;
|
|
2076
|
-
resetResultsCount: () => void;
|
|
2077
|
-
} & {
|
|
2078
|
-
resultFunc: (resultFuncArgs_0: TableColumnsProp) => number;
|
|
2079
|
-
memoizedResultFunc: ((resultFuncArgs_0: TableColumnsProp) => number) & {
|
|
2080
|
-
clearCache: () => void;
|
|
2081
|
-
resultsCount: () => number;
|
|
2082
|
-
resetResultsCount: () => void;
|
|
2083
|
-
};
|
|
2084
|
-
lastResult: () => number;
|
|
2085
|
-
dependencies: [((state: Store) => TableColumnsProp) & {
|
|
2086
|
-
clearCache: () => void;
|
|
2087
|
-
resultsCount: () => number;
|
|
2088
|
-
resetResultsCount: () => void;
|
|
2089
|
-
} & {
|
|
2090
|
-
resultFunc: (resultFuncArgs_0: TableColumnsProp<TableRowModel, TableColumnState>) => TableColumnsProp;
|
|
2091
|
-
memoizedResultFunc: ((resultFuncArgs_0: TableColumnsProp<TableRowModel, TableColumnState>) => TableColumnsProp) & {
|
|
2092
|
-
clearCache: () => void;
|
|
2093
|
-
resultsCount: () => number;
|
|
2094
|
-
resetResultsCount: () => void;
|
|
2095
|
-
};
|
|
2096
|
-
lastResult: () => TableColumnsProp;
|
|
2097
|
-
dependencies: [((state: Store) => TableColumnsProp<TableRowModel, TableColumnState>) & {
|
|
2098
|
-
clearCache: () => void;
|
|
2099
|
-
resultsCount: () => number;
|
|
2100
|
-
resetResultsCount: () => void;
|
|
2101
|
-
} & {
|
|
2102
|
-
resultFunc: (resultFuncArgs_0: boolean, resultFuncArgs_1: string[], resultFuncArgs_2: boolean, resultFuncArgs_3: string[], resultFuncArgs_4: TableColumnsProp<TableRowModel, import('./types').TableColumnDef<TableRowModel>>, resultFuncArgs_5: Partial<Record<string, Partial<TableColumnState>>>, resultFuncArgs_6: {
|
|
2103
|
-
setPageSize: (v: number) => void;
|
|
2104
|
-
setPage: (v: number) => void;
|
|
2105
|
-
setSort: (v: import('./types').TableSortModel | null) => void;
|
|
2106
|
-
downloadCSV: () => void;
|
|
2107
|
-
downloadExcel: () => void;
|
|
2108
|
-
setSelected: (selected: string[]) => void;
|
|
2109
|
-
toggleColumn: (v: string) => void;
|
|
2110
|
-
setVisibleColumns: (v: string[]) => void;
|
|
2111
|
-
setSearch: (v: string) => void;
|
|
2112
|
-
setPrevPage: () => void;
|
|
2113
|
-
setNextPage: () => void;
|
|
2114
|
-
setColumnWidth: (field: string, setWidth: number) => void;
|
|
2115
|
-
toggleRowExpand: (id: string) => void;
|
|
2116
|
-
setHeaderWidth: (id: string, width: number) => void;
|
|
2117
|
-
setRootRef: (rootRef: HTMLDivElement) => void;
|
|
2118
|
-
setScrollRef: (scrollRef: HTMLDivElement) => void;
|
|
2119
|
-
calculateColumnWidths: (clear?: boolean) => void;
|
|
2120
|
-
selectVisibleRows: () => void;
|
|
2121
|
-
unselectVisibleRows: () => void;
|
|
2122
|
-
unselectRow: (id: string) => void;
|
|
2123
|
-
selectRow: (id: string) => void;
|
|
2124
|
-
addFilterRow: (field?: string) => void;
|
|
2125
|
-
removeFilterRow: (id: string) => void;
|
|
2126
|
-
changeFilterRow: ({ id, ...newRow }: Pick<import('./store').TableFilterRow, "id"> & Partial<Omit<import('./store').TableFilterRow, "id">>) => void;
|
|
2127
|
-
setFilterCombiner: (combiner: "and" | "or") => void;
|
|
2128
|
-
clearFilter: () => void;
|
|
2129
|
-
setAutosize: () => void;
|
|
2130
|
-
removeAutosize: () => void;
|
|
2131
|
-
}) => TableColumnsProp<TableRowModel, TableColumnState>;
|
|
2132
|
-
memoizedResultFunc: ((resultFuncArgs_0: boolean, resultFuncArgs_1: string[], resultFuncArgs_2: boolean, resultFuncArgs_3: string[], resultFuncArgs_4: TableColumnsProp<TableRowModel, import('./types').TableColumnDef<TableRowModel>>, resultFuncArgs_5: Partial<Record<string, Partial<TableColumnState>>>, resultFuncArgs_6: {
|
|
2133
|
-
setPageSize: (v: number) => void;
|
|
2134
|
-
setPage: (v: number) => void;
|
|
2135
|
-
setSort: (v: import('./types').TableSortModel | null) => void;
|
|
2136
|
-
downloadCSV: () => void;
|
|
2137
|
-
downloadExcel: () => void;
|
|
2138
|
-
setSelected: (selected: string[]) => void;
|
|
2139
|
-
toggleColumn: (v: string) => void;
|
|
2140
|
-
setVisibleColumns: (v: string[]) => void;
|
|
2141
|
-
setSearch: (v: string) => void;
|
|
2142
|
-
setPrevPage: () => void;
|
|
2143
|
-
setNextPage: () => void;
|
|
2144
|
-
setColumnWidth: (field: string, setWidth: number) => void;
|
|
2145
|
-
toggleRowExpand: (id: string) => void;
|
|
2146
|
-
setHeaderWidth: (id: string, width: number) => void;
|
|
2147
|
-
setRootRef: (rootRef: HTMLDivElement) => void;
|
|
2148
|
-
setScrollRef: (scrollRef: HTMLDivElement) => void;
|
|
2149
|
-
calculateColumnWidths: (clear?: boolean) => void;
|
|
2150
|
-
selectVisibleRows: () => void;
|
|
2151
|
-
unselectVisibleRows: () => void;
|
|
2152
|
-
unselectRow: (id: string) => void;
|
|
2153
|
-
selectRow: (id: string) => void;
|
|
2154
|
-
addFilterRow: (field?: string) => void;
|
|
2155
|
-
removeFilterRow: (id: string) => void;
|
|
2156
|
-
changeFilterRow: ({ id, ...newRow }: Pick<import('./store').TableFilterRow, "id"> & Partial<Omit<import('./store').TableFilterRow, "id">>) => void;
|
|
2157
|
-
setFilterCombiner: (combiner: "and" | "or") => void;
|
|
2158
|
-
clearFilter: () => void;
|
|
2159
|
-
setAutosize: () => void;
|
|
2160
|
-
removeAutosize: () => void;
|
|
2161
|
-
}) => TableColumnsProp<TableRowModel, TableColumnState>) & {
|
|
2162
|
-
clearCache: () => void;
|
|
2163
|
-
resultsCount: () => number;
|
|
2164
|
-
resetResultsCount: () => void;
|
|
2165
|
-
};
|
|
2166
|
-
lastResult: () => TableColumnsProp<TableRowModel, TableColumnState>;
|
|
2167
|
-
dependencies: [(s: Store) => boolean, (s: Store) => string[], (s: Store) => boolean, (s: Store) => string[], (s: Store) => TableColumnsProp<TableRowModel, import('./types').TableColumnDef<TableRowModel>>, (s: Store) => Partial<Record<string, Partial<TableColumnState>>>, (s: Store) => {
|
|
2168
|
-
setPageSize: (v: number) => void;
|
|
2169
|
-
setPage: (v: number) => void;
|
|
2170
|
-
setSort: (v: import('./types').TableSortModel | null) => void;
|
|
2171
|
-
downloadCSV: () => void;
|
|
2172
|
-
downloadExcel: () => void;
|
|
2173
|
-
setSelected: (selected: string[]) => void;
|
|
2174
|
-
toggleColumn: (v: string) => void;
|
|
2175
|
-
setVisibleColumns: (v: string[]) => void;
|
|
2176
|
-
setSearch: (v: string) => void;
|
|
2177
|
-
setPrevPage: () => void;
|
|
2178
|
-
setNextPage: () => void;
|
|
2179
|
-
setColumnWidth: (field: string, setWidth: number) => void;
|
|
2180
|
-
toggleRowExpand: (id: string) => void;
|
|
2181
|
-
setHeaderWidth: (id: string, width: number) => void;
|
|
2182
|
-
setRootRef: (rootRef: HTMLDivElement) => void;
|
|
2183
|
-
setScrollRef: (scrollRef: HTMLDivElement) => void;
|
|
2184
|
-
calculateColumnWidths: (clear?: boolean) => void;
|
|
2185
|
-
selectVisibleRows: () => void;
|
|
2186
|
-
unselectVisibleRows: () => void;
|
|
2187
|
-
unselectRow: (id: string) => void;
|
|
2188
|
-
selectRow: (id: string) => void;
|
|
2189
|
-
addFilterRow: (field?: string) => void;
|
|
2190
|
-
removeFilterRow: (id: string) => void;
|
|
2191
|
-
changeFilterRow: ({ id, ...newRow }: Pick<import('./store').TableFilterRow, "id"> & Partial<Omit<import('./store').TableFilterRow, "id">>) => void;
|
|
2192
|
-
setFilterCombiner: (combiner: "and" | "or") => void;
|
|
2193
|
-
clearFilter: () => void;
|
|
2194
|
-
setAutosize: () => void;
|
|
2195
|
-
removeAutosize: () => void;
|
|
2196
|
-
}];
|
|
2197
|
-
recomputations: () => number;
|
|
2198
|
-
resetRecomputations: () => void;
|
|
2199
|
-
dependencyRecomputations: () => number;
|
|
2200
|
-
resetDependencyRecomputations: () => void;
|
|
2201
|
-
} & {
|
|
2202
|
-
memoize: typeof import('reselect').weakMapMemoize;
|
|
2203
|
-
argsMemoize: typeof import('reselect').weakMapMemoize;
|
|
2204
|
-
}];
|
|
2205
|
-
recomputations: () => number;
|
|
2206
|
-
resetRecomputations: () => void;
|
|
2207
|
-
dependencyRecomputations: () => number;
|
|
2208
|
-
resetDependencyRecomputations: () => void;
|
|
2209
|
-
} & {
|
|
2210
|
-
memoize: typeof import('reselect').weakMapMemoize;
|
|
2211
|
-
argsMemoize: typeof import('reselect').weakMapMemoize;
|
|
2212
|
-
}];
|
|
2213
|
-
recomputations: () => number;
|
|
2214
|
-
resetRecomputations: () => void;
|
|
2215
|
-
dependencyRecomputations: () => number;
|
|
2216
|
-
resetDependencyRecomputations: () => void;
|
|
2217
|
-
} & {
|
|
2218
|
-
memoize: typeof import('reselect').weakMapMemoize;
|
|
2219
|
-
argsMemoize: typeof import('reselect').weakMapMemoize;
|
|
2220
|
-
}, (s: Store) => number, (s: Store) => number];
|
|
2221
|
-
recomputations: () => number;
|
|
2222
|
-
resetRecomputations: () => void;
|
|
2223
|
-
dependencyRecomputations: () => number;
|
|
2224
|
-
resetDependencyRecomputations: () => void;
|
|
2225
|
-
} & {
|
|
2226
|
-
memoize: typeof import('reselect').weakMapMemoize;
|
|
2227
|
-
argsMemoize: typeof import('reselect').weakMapMemoize;
|
|
2228
|
-
};
|
|
2229
|
-
export declare const metaReselect: ((state: Store) => {
|
|
2230
|
-
zeroRows: boolean;
|
|
2231
|
-
zeroColumns: boolean;
|
|
2232
|
-
hasSearch: boolean;
|
|
2233
|
-
}) & {
|
|
2234
|
-
clearCache: () => void;
|
|
2235
|
-
resultsCount: () => number;
|
|
2236
|
-
resetResultsCount: () => void;
|
|
2237
|
-
} & {
|
|
2238
|
-
resultFunc: (resultFuncArgs_0: {
|
|
2239
|
-
rows: TableRowModel[];
|
|
2240
|
-
meta: Partial<Record<string, RowMeta>>;
|
|
2241
|
-
}, resultFuncArgs_1: TableColumnState[], resultFuncArgs_2: boolean, resultFuncArgs_3: string) => {
|
|
2242
|
-
zeroRows: boolean;
|
|
2243
|
-
zeroColumns: boolean;
|
|
2244
|
-
hasSearch: boolean;
|
|
2245
|
-
};
|
|
2246
|
-
memoizedResultFunc: ((resultFuncArgs_0: {
|
|
2247
|
-
rows: TableRowModel[];
|
|
2248
|
-
meta: Partial<Record<string, RowMeta>>;
|
|
2249
|
-
}, resultFuncArgs_1: TableColumnState[], resultFuncArgs_2: boolean, resultFuncArgs_3: string) => {
|
|
2250
|
-
zeroRows: boolean;
|
|
2251
|
-
zeroColumns: boolean;
|
|
2252
|
-
hasSearch: boolean;
|
|
2253
|
-
}) & {
|
|
2254
|
-
clearCache: () => void;
|
|
2255
|
-
resultsCount: () => number;
|
|
2256
|
-
resetResultsCount: () => void;
|
|
2257
|
-
};
|
|
2258
|
-
lastResult: () => {
|
|
2259
|
-
zeroRows: boolean;
|
|
2260
|
-
zeroColumns: boolean;
|
|
2261
|
-
hasSearch: boolean;
|
|
2262
|
-
};
|
|
2263
|
-
dependencies: [((state: Store) => {
|
|
2264
|
-
rows: TableRowModel[];
|
|
2265
|
-
meta: Partial<Record<string, RowMeta>>;
|
|
2266
|
-
}) & {
|
|
2267
|
-
clearCache: () => void;
|
|
2268
|
-
resultsCount: () => number;
|
|
2269
|
-
resetResultsCount: () => void;
|
|
2270
|
-
} & {
|
|
2271
|
-
resultFunc: (resultFuncArgs_0: TableRowModel[], resultFuncArgs_1: boolean, resultFuncArgs_2: string[], resultFuncArgs_3: number, resultFuncArgs_4: number) => {
|
|
2272
|
-
rows: TableRowModel[];
|
|
2273
|
-
meta: Partial<Record<string, RowMeta>>;
|
|
2274
|
-
};
|
|
2275
|
-
memoizedResultFunc: ((resultFuncArgs_0: TableRowModel[], resultFuncArgs_1: boolean, resultFuncArgs_2: string[], resultFuncArgs_3: number, resultFuncArgs_4: number) => {
|
|
2276
|
-
rows: TableRowModel[];
|
|
2277
|
-
meta: Partial<Record<string, RowMeta>>;
|
|
2278
|
-
}) & {
|
|
2279
|
-
clearCache: () => void;
|
|
2280
|
-
resultsCount: () => number;
|
|
2281
|
-
resetResultsCount: () => void;
|
|
2282
|
-
};
|
|
2283
|
-
lastResult: () => {
|
|
2284
|
-
rows: TableRowModel[];
|
|
2285
|
-
meta: Partial<Record<string, RowMeta>>;
|
|
2286
|
-
};
|
|
2287
|
-
dependencies: [((state: Store) => TableRowModel[]) & {
|
|
2288
|
-
clearCache: () => void;
|
|
2289
|
-
resultsCount: () => number;
|
|
2290
|
-
resetResultsCount: () => void;
|
|
2291
|
-
} & {
|
|
2292
|
-
resultFunc: (resultFuncArgs_0: TableRowModel[], resultFuncArgs_1: boolean, resultFuncArgs_2: import('./types').TableSortModel | null) => TableRowModel[];
|
|
2293
|
-
memoizedResultFunc: ((resultFuncArgs_0: TableRowModel[], resultFuncArgs_1: boolean, resultFuncArgs_2: import('./types').TableSortModel | null) => TableRowModel[]) & {
|
|
2294
|
-
clearCache: () => void;
|
|
2295
|
-
resultsCount: () => number;
|
|
2296
|
-
resetResultsCount: () => void;
|
|
2297
|
-
};
|
|
2298
|
-
lastResult: () => TableRowModel[];
|
|
2299
|
-
dependencies: [((state: Store) => TableRowModel[]) & {
|
|
2300
|
-
clearCache: () => void;
|
|
2301
|
-
resultsCount: () => number;
|
|
2302
|
-
resetResultsCount: () => void;
|
|
2303
|
-
} & {
|
|
2304
|
-
resultFunc: (resultFuncArgs_0: TableRowModel[], resultFuncArgs_1: {
|
|
2305
|
-
rows: import('./store').TableFilterRow[];
|
|
2306
|
-
combiner: "and" | "or";
|
|
2307
|
-
}) => TableRowModel[];
|
|
2308
|
-
memoizedResultFunc: ((resultFuncArgs_0: TableRowModel[], resultFuncArgs_1: {
|
|
2309
|
-
rows: import('./store').TableFilterRow[];
|
|
2310
|
-
combiner: "and" | "or";
|
|
2311
|
-
}) => TableRowModel[]) & {
|
|
2312
|
-
clearCache: () => void;
|
|
2313
|
-
resultsCount: () => number;
|
|
2314
|
-
resetResultsCount: () => void;
|
|
2315
|
-
};
|
|
2316
|
-
lastResult: () => TableRowModel[];
|
|
2317
|
-
dependencies: [((state: Store) => TableRowModel[]) & {
|
|
2318
|
-
clearCache: () => void;
|
|
2319
|
-
resultsCount: () => number;
|
|
2320
|
-
resetResultsCount: () => void;
|
|
2321
|
-
} & {
|
|
2322
|
-
resultFunc: (resultFuncArgs_0: {
|
|
2323
|
-
topRows: TableRowModel[];
|
|
2324
|
-
bottomRows: TableRowModel[];
|
|
2325
|
-
baseRows: TableRowModel[];
|
|
2326
|
-
}, resultFuncArgs_1: string, resultFuncArgs_2: boolean) => TableRowModel[];
|
|
2327
|
-
memoizedResultFunc: ((resultFuncArgs_0: {
|
|
2328
|
-
topRows: TableRowModel[];
|
|
2329
|
-
bottomRows: TableRowModel[];
|
|
2330
|
-
baseRows: TableRowModel[];
|
|
2331
|
-
}, resultFuncArgs_1: string, resultFuncArgs_2: boolean) => TableRowModel[]) & {
|
|
2332
|
-
clearCache: () => void;
|
|
2333
|
-
resultsCount: () => number;
|
|
2334
|
-
resetResultsCount: () => void;
|
|
2335
|
-
};
|
|
2336
|
-
lastResult: () => TableRowModel[];
|
|
2337
|
-
dependencies: [((state: Store) => {
|
|
2338
|
-
topRows: TableRowModel[];
|
|
2339
|
-
bottomRows: TableRowModel[];
|
|
2340
|
-
baseRows: TableRowModel[];
|
|
2341
|
-
}) & {
|
|
2342
|
-
clearCache: () => void;
|
|
2343
|
-
resultsCount: () => number;
|
|
2344
|
-
resetResultsCount: () => void;
|
|
2345
|
-
} & {
|
|
2346
|
-
resultFunc: (resultFuncArgs_0: TableRowModel[], resultFuncArgs_1: string[], resultFuncArgs_2: string[]) => {
|
|
2347
|
-
topRows: TableRowModel[];
|
|
2348
|
-
bottomRows: TableRowModel[];
|
|
2349
|
-
baseRows: TableRowModel[];
|
|
2350
|
-
};
|
|
2351
|
-
memoizedResultFunc: ((resultFuncArgs_0: TableRowModel[], resultFuncArgs_1: string[], resultFuncArgs_2: string[]) => {
|
|
2352
|
-
topRows: TableRowModel[];
|
|
2353
|
-
bottomRows: TableRowModel[];
|
|
2354
|
-
baseRows: TableRowModel[];
|
|
2355
|
-
}) & {
|
|
2356
|
-
clearCache: () => void;
|
|
2357
|
-
resultsCount: () => number;
|
|
2358
|
-
resetResultsCount: () => void;
|
|
2359
|
-
};
|
|
2360
|
-
lastResult: () => {
|
|
2361
|
-
topRows: TableRowModel[];
|
|
2362
|
-
bottomRows: TableRowModel[];
|
|
2363
|
-
baseRows: TableRowModel[];
|
|
2364
|
-
};
|
|
2365
|
-
dependencies: [(s: Store) => TableRowModel[], (s: Store) => string[], (s: Store) => string[]];
|
|
2366
|
-
recomputations: () => number;
|
|
2367
|
-
resetRecomputations: () => void;
|
|
2368
|
-
dependencyRecomputations: () => number;
|
|
2369
|
-
resetDependencyRecomputations: () => void;
|
|
2370
|
-
} & {
|
|
2371
|
-
memoize: typeof import('reselect').weakMapMemoize;
|
|
2372
|
-
argsMemoize: typeof import('reselect').weakMapMemoize;
|
|
2373
|
-
}, (s: Store) => string, (s: Store) => boolean];
|
|
2374
|
-
recomputations: () => number;
|
|
2375
|
-
resetRecomputations: () => void;
|
|
2376
|
-
dependencyRecomputations: () => number;
|
|
2377
|
-
resetDependencyRecomputations: () => void;
|
|
2378
|
-
} & {
|
|
2379
|
-
memoize: typeof import('reselect').weakMapMemoize;
|
|
2380
|
-
argsMemoize: typeof import('reselect').weakMapMemoize;
|
|
2381
|
-
}, (s: Store) => {
|
|
2382
|
-
rows: import('./store').TableFilterRow[];
|
|
2383
|
-
combiner: "and" | "or";
|
|
2384
|
-
}];
|
|
2385
|
-
recomputations: () => number;
|
|
2386
|
-
resetRecomputations: () => void;
|
|
2387
|
-
dependencyRecomputations: () => number;
|
|
2388
|
-
resetDependencyRecomputations: () => void;
|
|
2389
|
-
} & {
|
|
2390
|
-
memoize: typeof import('reselect').weakMapMemoize;
|
|
2391
|
-
argsMemoize: typeof import('reselect').weakMapMemoize;
|
|
2392
|
-
}, (s: Store) => boolean, (s: Store) => import('./types').TableSortModel | null];
|
|
2393
|
-
recomputations: () => number;
|
|
2394
|
-
resetRecomputations: () => void;
|
|
2395
|
-
dependencyRecomputations: () => number;
|
|
2396
|
-
resetDependencyRecomputations: () => void;
|
|
2397
|
-
} & {
|
|
2398
|
-
memoize: typeof import('reselect').weakMapMemoize;
|
|
2399
|
-
argsMemoize: typeof import('reselect').weakMapMemoize;
|
|
2400
|
-
}, (s: Store) => boolean, (s: Store) => string[], (s: Store) => number, (s: Store) => number];
|
|
2401
|
-
recomputations: () => number;
|
|
2402
|
-
resetRecomputations: () => void;
|
|
2403
|
-
dependencyRecomputations: () => number;
|
|
2404
|
-
resetDependencyRecomputations: () => void;
|
|
2405
|
-
} & {
|
|
2406
|
-
memoize: typeof import('reselect').weakMapMemoize;
|
|
2407
|
-
argsMemoize: typeof import('reselect').weakMapMemoize;
|
|
2408
|
-
}, ((state: Store) => TableColumnState[]) & {
|
|
2409
|
-
clearCache: () => void;
|
|
2410
|
-
resultsCount: () => number;
|
|
2411
|
-
resetResultsCount: () => void;
|
|
2412
|
-
} & {
|
|
2413
|
-
resultFunc: (resultFuncArgs_0: TableColumnState[]) => TableColumnState[];
|
|
2414
|
-
memoizedResultFunc: ((resultFuncArgs_0: TableColumnState[]) => TableColumnState[]) & {
|
|
2415
|
-
clearCache: () => void;
|
|
2416
|
-
resultsCount: () => number;
|
|
2417
|
-
resetResultsCount: () => void;
|
|
2418
|
-
};
|
|
2419
|
-
lastResult: () => TableColumnState[];
|
|
2420
|
-
dependencies: [((state: Store) => TableColumnState[]) & {
|
|
2421
|
-
clearCache: () => void;
|
|
2422
|
-
resultsCount: () => number;
|
|
2423
|
-
resetResultsCount: () => void;
|
|
2424
|
-
} & {
|
|
2425
|
-
resultFunc: (resultFuncArgs_0: TableColumnsProp<TableRowModel, TableColumnState>) => TableColumnState[];
|
|
2426
|
-
memoizedResultFunc: ((resultFuncArgs_0: TableColumnsProp<TableRowModel, TableColumnState>) => TableColumnState[]) & {
|
|
2427
|
-
clearCache: () => void;
|
|
2428
|
-
resultsCount: () => number;
|
|
2429
|
-
resetResultsCount: () => void;
|
|
2430
|
-
};
|
|
2431
|
-
lastResult: () => TableColumnState[];
|
|
2432
|
-
dependencies: [((state: Store) => TableColumnsProp<TableRowModel, TableColumnState>) & {
|
|
2433
|
-
clearCache: () => void;
|
|
2434
|
-
resultsCount: () => number;
|
|
2435
|
-
resetResultsCount: () => void;
|
|
2436
|
-
} & {
|
|
2437
|
-
resultFunc: (resultFuncArgs_0: boolean, resultFuncArgs_1: string[], resultFuncArgs_2: boolean, resultFuncArgs_3: string[], resultFuncArgs_4: TableColumnsProp<TableRowModel, import('./types').TableColumnDef<TableRowModel>>, resultFuncArgs_5: Partial<Record<string, Partial<TableColumnState>>>, resultFuncArgs_6: {
|
|
2438
|
-
setPageSize: (v: number) => void;
|
|
2439
|
-
setPage: (v: number) => void;
|
|
2440
|
-
setSort: (v: import('./types').TableSortModel | null) => void;
|
|
2441
|
-
downloadCSV: () => void;
|
|
2442
|
-
downloadExcel: () => void;
|
|
2443
|
-
setSelected: (selected: string[]) => void;
|
|
2444
|
-
toggleColumn: (v: string) => void;
|
|
2445
|
-
setVisibleColumns: (v: string[]) => void;
|
|
2446
|
-
setSearch: (v: string) => void;
|
|
2447
|
-
setPrevPage: () => void;
|
|
2448
|
-
setNextPage: () => void;
|
|
2449
|
-
setColumnWidth: (field: string, setWidth: number) => void;
|
|
2450
|
-
toggleRowExpand: (id: string) => void;
|
|
2451
|
-
setHeaderWidth: (id: string, width: number) => void;
|
|
2452
|
-
setRootRef: (rootRef: HTMLDivElement) => void;
|
|
2453
|
-
setScrollRef: (scrollRef: HTMLDivElement) => void;
|
|
2454
|
-
calculateColumnWidths: (clear?: boolean) => void;
|
|
2455
|
-
selectVisibleRows: () => void;
|
|
2456
|
-
unselectVisibleRows: () => void;
|
|
2457
|
-
unselectRow: (id: string) => void;
|
|
2458
|
-
selectRow: (id: string) => void;
|
|
2459
|
-
addFilterRow: (field?: string) => void;
|
|
2460
|
-
removeFilterRow: (id: string) => void;
|
|
2461
|
-
changeFilterRow: ({ id, ...newRow }: Pick<import('./store').TableFilterRow, "id"> & Partial<Omit<import('./store').TableFilterRow, "id">>) => void;
|
|
2462
|
-
setFilterCombiner: (combiner: "and" | "or") => void;
|
|
2463
|
-
clearFilter: () => void;
|
|
2464
|
-
setAutosize: () => void;
|
|
2465
|
-
removeAutosize: () => void;
|
|
2466
|
-
}) => TableColumnsProp<TableRowModel, TableColumnState>;
|
|
2467
|
-
memoizedResultFunc: ((resultFuncArgs_0: boolean, resultFuncArgs_1: string[], resultFuncArgs_2: boolean, resultFuncArgs_3: string[], resultFuncArgs_4: TableColumnsProp<TableRowModel, import('./types').TableColumnDef<TableRowModel>>, resultFuncArgs_5: Partial<Record<string, Partial<TableColumnState>>>, resultFuncArgs_6: {
|
|
2468
|
-
setPageSize: (v: number) => void;
|
|
2469
|
-
setPage: (v: number) => void;
|
|
2470
|
-
setSort: (v: import('./types').TableSortModel | null) => void;
|
|
2471
|
-
downloadCSV: () => void;
|
|
2472
|
-
downloadExcel: () => void;
|
|
2473
|
-
setSelected: (selected: string[]) => void;
|
|
2474
|
-
toggleColumn: (v: string) => void;
|
|
2475
|
-
setVisibleColumns: (v: string[]) => void;
|
|
2476
|
-
setSearch: (v: string) => void;
|
|
2477
|
-
setPrevPage: () => void;
|
|
2478
|
-
setNextPage: () => void;
|
|
2479
|
-
setColumnWidth: (field: string, setWidth: number) => void;
|
|
2480
|
-
toggleRowExpand: (id: string) => void;
|
|
2481
|
-
setHeaderWidth: (id: string, width: number) => void;
|
|
2482
|
-
setRootRef: (rootRef: HTMLDivElement) => void;
|
|
2483
|
-
setScrollRef: (scrollRef: HTMLDivElement) => void;
|
|
2484
|
-
calculateColumnWidths: (clear?: boolean) => void;
|
|
2485
|
-
selectVisibleRows: () => void;
|
|
2486
|
-
unselectVisibleRows: () => void;
|
|
2487
|
-
unselectRow: (id: string) => void;
|
|
2488
|
-
selectRow: (id: string) => void;
|
|
2489
|
-
addFilterRow: (field?: string) => void;
|
|
2490
|
-
removeFilterRow: (id: string) => void;
|
|
2491
|
-
changeFilterRow: ({ id, ...newRow }: Pick<import('./store').TableFilterRow, "id"> & Partial<Omit<import('./store').TableFilterRow, "id">>) => void;
|
|
2492
|
-
setFilterCombiner: (combiner: "and" | "or") => void;
|
|
2493
|
-
clearFilter: () => void;
|
|
2494
|
-
setAutosize: () => void;
|
|
2495
|
-
removeAutosize: () => void;
|
|
2496
|
-
}) => TableColumnsProp<TableRowModel, TableColumnState>) & {
|
|
2497
|
-
clearCache: () => void;
|
|
2498
|
-
resultsCount: () => number;
|
|
2499
|
-
resetResultsCount: () => void;
|
|
2500
|
-
};
|
|
2501
|
-
lastResult: () => TableColumnsProp<TableRowModel, TableColumnState>;
|
|
2502
|
-
dependencies: [(s: Store) => boolean, (s: Store) => string[], (s: Store) => boolean, (s: Store) => string[], (s: Store) => TableColumnsProp<TableRowModel, import('./types').TableColumnDef<TableRowModel>>, (s: Store) => Partial<Record<string, Partial<TableColumnState>>>, (s: Store) => {
|
|
2503
|
-
setPageSize: (v: number) => void;
|
|
2504
|
-
setPage: (v: number) => void;
|
|
2505
|
-
setSort: (v: import('./types').TableSortModel | null) => void;
|
|
2506
|
-
downloadCSV: () => void;
|
|
2507
|
-
downloadExcel: () => void;
|
|
2508
|
-
setSelected: (selected: string[]) => void;
|
|
2509
|
-
toggleColumn: (v: string) => void;
|
|
2510
|
-
setVisibleColumns: (v: string[]) => void;
|
|
2511
|
-
setSearch: (v: string) => void;
|
|
2512
|
-
setPrevPage: () => void;
|
|
2513
|
-
setNextPage: () => void;
|
|
2514
|
-
setColumnWidth: (field: string, setWidth: number) => void;
|
|
2515
|
-
toggleRowExpand: (id: string) => void;
|
|
2516
|
-
setHeaderWidth: (id: string, width: number) => void;
|
|
2517
|
-
setRootRef: (rootRef: HTMLDivElement) => void;
|
|
2518
|
-
setScrollRef: (scrollRef: HTMLDivElement) => void;
|
|
2519
|
-
calculateColumnWidths: (clear?: boolean) => void;
|
|
2520
|
-
selectVisibleRows: () => void;
|
|
2521
|
-
unselectVisibleRows: () => void;
|
|
2522
|
-
unselectRow: (id: string) => void;
|
|
2523
|
-
selectRow: (id: string) => void;
|
|
2524
|
-
addFilterRow: (field?: string) => void;
|
|
2525
|
-
removeFilterRow: (id: string) => void;
|
|
2526
|
-
changeFilterRow: ({ id, ...newRow }: Pick<import('./store').TableFilterRow, "id"> & Partial<Omit<import('./store').TableFilterRow, "id">>) => void;
|
|
2527
|
-
setFilterCombiner: (combiner: "and" | "or") => void;
|
|
2528
|
-
clearFilter: () => void;
|
|
2529
|
-
setAutosize: () => void;
|
|
2530
|
-
removeAutosize: () => void;
|
|
2531
|
-
}];
|
|
2532
|
-
recomputations: () => number;
|
|
2533
|
-
resetRecomputations: () => void;
|
|
2534
|
-
dependencyRecomputations: () => number;
|
|
2535
|
-
resetDependencyRecomputations: () => void;
|
|
2536
|
-
} & {
|
|
2537
|
-
memoize: typeof import('reselect').weakMapMemoize;
|
|
2538
|
-
argsMemoize: typeof import('reselect').weakMapMemoize;
|
|
2539
|
-
}];
|
|
2540
|
-
recomputations: () => number;
|
|
2541
|
-
resetRecomputations: () => void;
|
|
2542
|
-
dependencyRecomputations: () => number;
|
|
2543
|
-
resetDependencyRecomputations: () => void;
|
|
2544
|
-
} & {
|
|
2545
|
-
memoize: typeof import('reselect').weakMapMemoize;
|
|
2546
|
-
argsMemoize: typeof import('reselect').weakMapMemoize;
|
|
2547
|
-
}];
|
|
2548
|
-
recomputations: () => number;
|
|
2549
|
-
resetRecomputations: () => void;
|
|
2550
|
-
dependencyRecomputations: () => number;
|
|
2551
|
-
resetDependencyRecomputations: () => void;
|
|
2552
|
-
} & {
|
|
2553
|
-
memoize: typeof import('reselect').weakMapMemoize;
|
|
2554
|
-
argsMemoize: typeof import('reselect').weakMapMemoize;
|
|
2555
|
-
}, (s: Store) => boolean, (s: Store) => string];
|
|
2556
|
-
recomputations: () => number;
|
|
2557
|
-
resetRecomputations: () => void;
|
|
2558
|
-
dependencyRecomputations: () => number;
|
|
2559
|
-
resetDependencyRecomputations: () => void;
|
|
2560
|
-
} & {
|
|
2561
|
-
memoize: typeof import('reselect').weakMapMemoize;
|
|
2562
|
-
argsMemoize: typeof import('reselect').weakMapMemoize;
|
|
2563
|
-
};
|
|
2564
|
-
type calculatePanelDataProps = {
|
|
2565
|
-
items: TableColumnsProp;
|
|
2566
|
-
maxDepth: number;
|
|
2567
|
-
};
|
|
2568
|
-
export declare const calculatePanelData: ({ items, maxDepth }: calculatePanelDataProps) => {
|
|
2569
|
-
gridAreas: import('./helpers/columns').GridAreaMap;
|
|
2570
|
-
style: CSSProperties;
|
|
2571
|
-
columns: import('./types').TableColumnDef<TableRowModel>[];
|
|
2572
|
-
};
|
|
2573
|
-
export declare const columnsStylesReselect: ((state: Store) => {
|
|
2574
|
-
left: {
|
|
2575
|
-
gridAreas: import('./helpers/columns').GridAreaMap;
|
|
2576
|
-
style: CSSProperties;
|
|
2577
|
-
columns: import('./types').TableColumnDef<TableRowModel>[];
|
|
2578
|
-
};
|
|
2579
|
-
base: {
|
|
2580
|
-
gridAreas: import('./helpers/columns').GridAreaMap;
|
|
2581
|
-
style: CSSProperties;
|
|
2582
|
-
columns: import('./types').TableColumnDef<TableRowModel>[];
|
|
2583
|
-
};
|
|
2584
|
-
right: {
|
|
2585
|
-
gridAreas: import('./helpers/columns').GridAreaMap;
|
|
2586
|
-
style: CSSProperties;
|
|
2587
|
-
columns: import('./types').TableColumnDef<TableRowModel>[];
|
|
2588
|
-
};
|
|
2589
|
-
}) & {
|
|
2590
|
-
clearCache: () => void;
|
|
2591
|
-
resultsCount: () => number;
|
|
2592
|
-
resetResultsCount: () => void;
|
|
2593
|
-
} & {
|
|
2594
|
-
resultFunc: (resultFuncArgs_0: {
|
|
2595
|
-
left: TableColumnsProp;
|
|
2596
|
-
base: TableColumnsProp;
|
|
2597
|
-
right: TableColumnsProp;
|
|
2598
|
-
}, resultFuncArgs_1: number) => {
|
|
2599
|
-
left: {
|
|
2600
|
-
gridAreas: import('./helpers/columns').GridAreaMap;
|
|
2601
|
-
style: CSSProperties;
|
|
2602
|
-
columns: import('./types').TableColumnDef<TableRowModel>[];
|
|
2603
|
-
};
|
|
2604
|
-
base: {
|
|
2605
|
-
gridAreas: import('./helpers/columns').GridAreaMap;
|
|
2606
|
-
style: CSSProperties;
|
|
2607
|
-
columns: import('./types').TableColumnDef<TableRowModel>[];
|
|
2608
|
-
};
|
|
2609
|
-
right: {
|
|
2610
|
-
gridAreas: import('./helpers/columns').GridAreaMap;
|
|
2611
|
-
style: CSSProperties;
|
|
2612
|
-
columns: import('./types').TableColumnDef<TableRowModel>[];
|
|
2613
|
-
};
|
|
2614
|
-
};
|
|
2615
|
-
memoizedResultFunc: ((resultFuncArgs_0: {
|
|
2616
|
-
left: TableColumnsProp;
|
|
2617
|
-
base: TableColumnsProp;
|
|
2618
|
-
right: TableColumnsProp;
|
|
2619
|
-
}, resultFuncArgs_1: number) => {
|
|
2620
|
-
left: {
|
|
2621
|
-
gridAreas: import('./helpers/columns').GridAreaMap;
|
|
2622
|
-
style: CSSProperties;
|
|
2623
|
-
columns: import('./types').TableColumnDef<TableRowModel>[];
|
|
2624
|
-
};
|
|
2625
|
-
base: {
|
|
2626
|
-
gridAreas: import('./helpers/columns').GridAreaMap;
|
|
2627
|
-
style: CSSProperties;
|
|
2628
|
-
columns: import('./types').TableColumnDef<TableRowModel>[];
|
|
2629
|
-
};
|
|
2630
|
-
right: {
|
|
2631
|
-
gridAreas: import('./helpers/columns').GridAreaMap;
|
|
2632
|
-
style: CSSProperties;
|
|
2633
|
-
columns: import('./types').TableColumnDef<TableRowModel>[];
|
|
2634
|
-
};
|
|
2635
|
-
}) & {
|
|
2636
|
-
clearCache: () => void;
|
|
2637
|
-
resultsCount: () => number;
|
|
2638
|
-
resetResultsCount: () => void;
|
|
2639
|
-
};
|
|
2640
|
-
lastResult: () => {
|
|
2641
|
-
left: {
|
|
2642
|
-
gridAreas: import('./helpers/columns').GridAreaMap;
|
|
2643
|
-
style: CSSProperties;
|
|
2644
|
-
columns: import('./types').TableColumnDef<TableRowModel>[];
|
|
2645
|
-
};
|
|
2646
|
-
base: {
|
|
2647
|
-
gridAreas: import('./helpers/columns').GridAreaMap;
|
|
2648
|
-
style: CSSProperties;
|
|
2649
|
-
columns: import('./types').TableColumnDef<TableRowModel>[];
|
|
2650
|
-
};
|
|
2651
|
-
right: {
|
|
2652
|
-
gridAreas: import('./helpers/columns').GridAreaMap;
|
|
2653
|
-
style: CSSProperties;
|
|
2654
|
-
columns: import('./types').TableColumnDef<TableRowModel>[];
|
|
2655
|
-
};
|
|
2656
|
-
};
|
|
2657
|
-
dependencies: [((state: Store) => {
|
|
2658
|
-
left: TableColumnsProp;
|
|
2659
|
-
base: TableColumnsProp;
|
|
2660
|
-
right: TableColumnsProp;
|
|
2661
|
-
}) & {
|
|
2662
|
-
clearCache: () => void;
|
|
2663
|
-
resultsCount: () => number;
|
|
2664
|
-
resetResultsCount: () => void;
|
|
2665
|
-
} & {
|
|
2666
|
-
resultFunc: (resultFuncArgs_0: TableColumnsProp) => {
|
|
2667
|
-
left: TableColumnsProp;
|
|
2668
|
-
base: TableColumnsProp;
|
|
2669
|
-
right: TableColumnsProp;
|
|
2670
|
-
};
|
|
2671
|
-
memoizedResultFunc: ((resultFuncArgs_0: TableColumnsProp) => {
|
|
2672
|
-
left: TableColumnsProp;
|
|
2673
|
-
base: TableColumnsProp;
|
|
2674
|
-
right: TableColumnsProp;
|
|
2675
|
-
}) & {
|
|
2676
|
-
clearCache: () => void;
|
|
2677
|
-
resultsCount: () => number;
|
|
2678
|
-
resetResultsCount: () => void;
|
|
2679
|
-
};
|
|
2680
|
-
lastResult: () => {
|
|
2681
|
-
left: TableColumnsProp;
|
|
2682
|
-
base: TableColumnsProp;
|
|
2683
|
-
right: TableColumnsProp;
|
|
2684
|
-
};
|
|
2685
|
-
dependencies: [((state: Store) => TableColumnsProp) & {
|
|
2686
|
-
clearCache: () => void;
|
|
2687
|
-
resultsCount: () => number;
|
|
2688
|
-
resetResultsCount: () => void;
|
|
2689
|
-
} & {
|
|
2690
|
-
resultFunc: (resultFuncArgs_0: TableColumnsProp<TableRowModel, TableColumnState>) => TableColumnsProp;
|
|
2691
|
-
memoizedResultFunc: ((resultFuncArgs_0: TableColumnsProp<TableRowModel, TableColumnState>) => TableColumnsProp) & {
|
|
2692
|
-
clearCache: () => void;
|
|
2693
|
-
resultsCount: () => number;
|
|
2694
|
-
resetResultsCount: () => void;
|
|
2695
|
-
};
|
|
2696
|
-
lastResult: () => TableColumnsProp;
|
|
2697
|
-
dependencies: [((state: Store) => TableColumnsProp<TableRowModel, TableColumnState>) & {
|
|
2698
|
-
clearCache: () => void;
|
|
2699
|
-
resultsCount: () => number;
|
|
2700
|
-
resetResultsCount: () => void;
|
|
2701
|
-
} & {
|
|
2702
|
-
resultFunc: (resultFuncArgs_0: boolean, resultFuncArgs_1: string[], resultFuncArgs_2: boolean, resultFuncArgs_3: string[], resultFuncArgs_4: TableColumnsProp<TableRowModel, import('./types').TableColumnDef<TableRowModel>>, resultFuncArgs_5: Partial<Record<string, Partial<TableColumnState>>>, resultFuncArgs_6: {
|
|
2703
|
-
setPageSize: (v: number) => void;
|
|
2704
|
-
setPage: (v: number) => void;
|
|
2705
|
-
setSort: (v: import('./types').TableSortModel | null) => void;
|
|
2706
|
-
downloadCSV: () => void;
|
|
2707
|
-
downloadExcel: () => void;
|
|
2708
|
-
setSelected: (selected: string[]) => void;
|
|
2709
|
-
toggleColumn: (v: string) => void;
|
|
2710
|
-
setVisibleColumns: (v: string[]) => void;
|
|
2711
|
-
setSearch: (v: string) => void;
|
|
2712
|
-
setPrevPage: () => void;
|
|
2713
|
-
setNextPage: () => void;
|
|
2714
|
-
setColumnWidth: (field: string, setWidth: number) => void;
|
|
2715
|
-
toggleRowExpand: (id: string) => void;
|
|
2716
|
-
setHeaderWidth: (id: string, width: number) => void;
|
|
2717
|
-
setRootRef: (rootRef: HTMLDivElement) => void;
|
|
2718
|
-
setScrollRef: (scrollRef: HTMLDivElement) => void;
|
|
2719
|
-
calculateColumnWidths: (clear?: boolean) => void;
|
|
2720
|
-
selectVisibleRows: () => void;
|
|
2721
|
-
unselectVisibleRows: () => void;
|
|
2722
|
-
unselectRow: (id: string) => void;
|
|
2723
|
-
selectRow: (id: string) => void;
|
|
2724
|
-
addFilterRow: (field?: string) => void;
|
|
2725
|
-
removeFilterRow: (id: string) => void;
|
|
2726
|
-
changeFilterRow: ({ id, ...newRow }: Pick<import('./store').TableFilterRow, "id"> & Partial<Omit<import('./store').TableFilterRow, "id">>) => void;
|
|
2727
|
-
setFilterCombiner: (combiner: "and" | "or") => void;
|
|
2728
|
-
clearFilter: () => void;
|
|
2729
|
-
setAutosize: () => void;
|
|
2730
|
-
removeAutosize: () => void;
|
|
2731
|
-
}) => TableColumnsProp<TableRowModel, TableColumnState>;
|
|
2732
|
-
memoizedResultFunc: ((resultFuncArgs_0: boolean, resultFuncArgs_1: string[], resultFuncArgs_2: boolean, resultFuncArgs_3: string[], resultFuncArgs_4: TableColumnsProp<TableRowModel, import('./types').TableColumnDef<TableRowModel>>, resultFuncArgs_5: Partial<Record<string, Partial<TableColumnState>>>, resultFuncArgs_6: {
|
|
2733
|
-
setPageSize: (v: number) => void;
|
|
2734
|
-
setPage: (v: number) => void;
|
|
2735
|
-
setSort: (v: import('./types').TableSortModel | null) => void;
|
|
2736
|
-
downloadCSV: () => void;
|
|
2737
|
-
downloadExcel: () => void;
|
|
2738
|
-
setSelected: (selected: string[]) => void;
|
|
2739
|
-
toggleColumn: (v: string) => void;
|
|
2740
|
-
setVisibleColumns: (v: string[]) => void;
|
|
2741
|
-
setSearch: (v: string) => void;
|
|
2742
|
-
setPrevPage: () => void;
|
|
2743
|
-
setNextPage: () => void;
|
|
2744
|
-
setColumnWidth: (field: string, setWidth: number) => void;
|
|
2745
|
-
toggleRowExpand: (id: string) => void;
|
|
2746
|
-
setHeaderWidth: (id: string, width: number) => void;
|
|
2747
|
-
setRootRef: (rootRef: HTMLDivElement) => void;
|
|
2748
|
-
setScrollRef: (scrollRef: HTMLDivElement) => void;
|
|
2749
|
-
calculateColumnWidths: (clear?: boolean) => void;
|
|
2750
|
-
selectVisibleRows: () => void;
|
|
2751
|
-
unselectVisibleRows: () => void;
|
|
2752
|
-
unselectRow: (id: string) => void;
|
|
2753
|
-
selectRow: (id: string) => void;
|
|
2754
|
-
addFilterRow: (field?: string) => void;
|
|
2755
|
-
removeFilterRow: (id: string) => void;
|
|
2756
|
-
changeFilterRow: ({ id, ...newRow }: Pick<import('./store').TableFilterRow, "id"> & Partial<Omit<import('./store').TableFilterRow, "id">>) => void;
|
|
2757
|
-
setFilterCombiner: (combiner: "and" | "or") => void;
|
|
2758
|
-
clearFilter: () => void;
|
|
2759
|
-
setAutosize: () => void;
|
|
2760
|
-
removeAutosize: () => void;
|
|
2761
|
-
}) => TableColumnsProp<TableRowModel, TableColumnState>) & {
|
|
2762
|
-
clearCache: () => void;
|
|
2763
|
-
resultsCount: () => number;
|
|
2764
|
-
resetResultsCount: () => void;
|
|
2765
|
-
};
|
|
2766
|
-
lastResult: () => TableColumnsProp<TableRowModel, TableColumnState>;
|
|
2767
|
-
dependencies: [(s: Store) => boolean, (s: Store) => string[], (s: Store) => boolean, (s: Store) => string[], (s: Store) => TableColumnsProp<TableRowModel, import('./types').TableColumnDef<TableRowModel>>, (s: Store) => Partial<Record<string, Partial<TableColumnState>>>, (s: Store) => {
|
|
2768
|
-
setPageSize: (v: number) => void;
|
|
2769
|
-
setPage: (v: number) => void;
|
|
2770
|
-
setSort: (v: import('./types').TableSortModel | null) => void;
|
|
2771
|
-
downloadCSV: () => void;
|
|
2772
|
-
downloadExcel: () => void;
|
|
2773
|
-
setSelected: (selected: string[]) => void;
|
|
2774
|
-
toggleColumn: (v: string) => void;
|
|
2775
|
-
setVisibleColumns: (v: string[]) => void;
|
|
2776
|
-
setSearch: (v: string) => void;
|
|
2777
|
-
setPrevPage: () => void;
|
|
2778
|
-
setNextPage: () => void;
|
|
2779
|
-
setColumnWidth: (field: string, setWidth: number) => void;
|
|
2780
|
-
toggleRowExpand: (id: string) => void;
|
|
2781
|
-
setHeaderWidth: (id: string, width: number) => void;
|
|
2782
|
-
setRootRef: (rootRef: HTMLDivElement) => void;
|
|
2783
|
-
setScrollRef: (scrollRef: HTMLDivElement) => void;
|
|
2784
|
-
calculateColumnWidths: (clear?: boolean) => void;
|
|
2785
|
-
selectVisibleRows: () => void;
|
|
2786
|
-
unselectVisibleRows: () => void;
|
|
2787
|
-
unselectRow: (id: string) => void;
|
|
2788
|
-
selectRow: (id: string) => void;
|
|
2789
|
-
addFilterRow: (field?: string) => void;
|
|
2790
|
-
removeFilterRow: (id: string) => void;
|
|
2791
|
-
changeFilterRow: ({ id, ...newRow }: Pick<import('./store').TableFilterRow, "id"> & Partial<Omit<import('./store').TableFilterRow, "id">>) => void;
|
|
2792
|
-
setFilterCombiner: (combiner: "and" | "or") => void;
|
|
2793
|
-
clearFilter: () => void;
|
|
2794
|
-
setAutosize: () => void;
|
|
2795
|
-
removeAutosize: () => void;
|
|
2796
|
-
}];
|
|
2797
|
-
recomputations: () => number;
|
|
2798
|
-
resetRecomputations: () => void;
|
|
2799
|
-
dependencyRecomputations: () => number;
|
|
2800
|
-
resetDependencyRecomputations: () => void;
|
|
2801
|
-
} & {
|
|
2802
|
-
memoize: typeof import('reselect').weakMapMemoize;
|
|
2803
|
-
argsMemoize: typeof import('reselect').weakMapMemoize;
|
|
2804
|
-
}];
|
|
2805
|
-
recomputations: () => number;
|
|
2806
|
-
resetRecomputations: () => void;
|
|
2807
|
-
dependencyRecomputations: () => number;
|
|
2808
|
-
resetDependencyRecomputations: () => void;
|
|
2809
|
-
} & {
|
|
2810
|
-
memoize: typeof import('reselect').weakMapMemoize;
|
|
2811
|
-
argsMemoize: typeof import('reselect').weakMapMemoize;
|
|
2812
|
-
}];
|
|
2813
|
-
recomputations: () => number;
|
|
2814
|
-
resetRecomputations: () => void;
|
|
2815
|
-
dependencyRecomputations: () => number;
|
|
2816
|
-
resetDependencyRecomputations: () => void;
|
|
2817
|
-
} & {
|
|
2818
|
-
memoize: typeof import('reselect').weakMapMemoize;
|
|
2819
|
-
argsMemoize: typeof import('reselect').weakMapMemoize;
|
|
2820
|
-
}, ((state: Store) => number) & {
|
|
2821
|
-
clearCache: () => void;
|
|
2822
|
-
resultsCount: () => number;
|
|
2823
|
-
resetResultsCount: () => void;
|
|
2824
|
-
} & {
|
|
2825
|
-
resultFunc: (resultFuncArgs_0: TableColumnsProp) => number;
|
|
2826
|
-
memoizedResultFunc: ((resultFuncArgs_0: TableColumnsProp) => number) & {
|
|
2827
|
-
clearCache: () => void;
|
|
2828
|
-
resultsCount: () => number;
|
|
2829
|
-
resetResultsCount: () => void;
|
|
2830
|
-
};
|
|
2831
|
-
lastResult: () => number;
|
|
2832
|
-
dependencies: [((state: Store) => TableColumnsProp) & {
|
|
2833
|
-
clearCache: () => void;
|
|
2834
|
-
resultsCount: () => number;
|
|
2835
|
-
resetResultsCount: () => void;
|
|
2836
|
-
} & {
|
|
2837
|
-
resultFunc: (resultFuncArgs_0: TableColumnsProp<TableRowModel, TableColumnState>) => TableColumnsProp;
|
|
2838
|
-
memoizedResultFunc: ((resultFuncArgs_0: TableColumnsProp<TableRowModel, TableColumnState>) => TableColumnsProp) & {
|
|
2839
|
-
clearCache: () => void;
|
|
2840
|
-
resultsCount: () => number;
|
|
2841
|
-
resetResultsCount: () => void;
|
|
2842
|
-
};
|
|
2843
|
-
lastResult: () => TableColumnsProp;
|
|
2844
|
-
dependencies: [((state: Store) => TableColumnsProp<TableRowModel, TableColumnState>) & {
|
|
2845
|
-
clearCache: () => void;
|
|
2846
|
-
resultsCount: () => number;
|
|
2847
|
-
resetResultsCount: () => void;
|
|
2848
|
-
} & {
|
|
2849
|
-
resultFunc: (resultFuncArgs_0: boolean, resultFuncArgs_1: string[], resultFuncArgs_2: boolean, resultFuncArgs_3: string[], resultFuncArgs_4: TableColumnsProp<TableRowModel, import('./types').TableColumnDef<TableRowModel>>, resultFuncArgs_5: Partial<Record<string, Partial<TableColumnState>>>, resultFuncArgs_6: {
|
|
2850
|
-
setPageSize: (v: number) => void;
|
|
2851
|
-
setPage: (v: number) => void;
|
|
2852
|
-
setSort: (v: import('./types').TableSortModel | null) => void;
|
|
2853
|
-
downloadCSV: () => void;
|
|
2854
|
-
downloadExcel: () => void;
|
|
2855
|
-
setSelected: (selected: string[]) => void;
|
|
2856
|
-
toggleColumn: (v: string) => void;
|
|
2857
|
-
setVisibleColumns: (v: string[]) => void;
|
|
2858
|
-
setSearch: (v: string) => void;
|
|
2859
|
-
setPrevPage: () => void;
|
|
2860
|
-
setNextPage: () => void;
|
|
2861
|
-
setColumnWidth: (field: string, setWidth: number) => void;
|
|
2862
|
-
toggleRowExpand: (id: string) => void;
|
|
2863
|
-
setHeaderWidth: (id: string, width: number) => void;
|
|
2864
|
-
setRootRef: (rootRef: HTMLDivElement) => void;
|
|
2865
|
-
setScrollRef: (scrollRef: HTMLDivElement) => void;
|
|
2866
|
-
calculateColumnWidths: (clear?: boolean) => void;
|
|
2867
|
-
selectVisibleRows: () => void;
|
|
2868
|
-
unselectVisibleRows: () => void;
|
|
2869
|
-
unselectRow: (id: string) => void;
|
|
2870
|
-
selectRow: (id: string) => void;
|
|
2871
|
-
addFilterRow: (field?: string) => void;
|
|
2872
|
-
removeFilterRow: (id: string) => void;
|
|
2873
|
-
changeFilterRow: ({ id, ...newRow }: Pick<import('./store').TableFilterRow, "id"> & Partial<Omit<import('./store').TableFilterRow, "id">>) => void;
|
|
2874
|
-
setFilterCombiner: (combiner: "and" | "or") => void;
|
|
2875
|
-
clearFilter: () => void;
|
|
2876
|
-
setAutosize: () => void;
|
|
2877
|
-
removeAutosize: () => void;
|
|
2878
|
-
}) => TableColumnsProp<TableRowModel, TableColumnState>;
|
|
2879
|
-
memoizedResultFunc: ((resultFuncArgs_0: boolean, resultFuncArgs_1: string[], resultFuncArgs_2: boolean, resultFuncArgs_3: string[], resultFuncArgs_4: TableColumnsProp<TableRowModel, import('./types').TableColumnDef<TableRowModel>>, resultFuncArgs_5: Partial<Record<string, Partial<TableColumnState>>>, resultFuncArgs_6: {
|
|
2880
|
-
setPageSize: (v: number) => void;
|
|
2881
|
-
setPage: (v: number) => void;
|
|
2882
|
-
setSort: (v: import('./types').TableSortModel | null) => void;
|
|
2883
|
-
downloadCSV: () => void;
|
|
2884
|
-
downloadExcel: () => void;
|
|
2885
|
-
setSelected: (selected: string[]) => void;
|
|
2886
|
-
toggleColumn: (v: string) => void;
|
|
2887
|
-
setVisibleColumns: (v: string[]) => void;
|
|
2888
|
-
setSearch: (v: string) => void;
|
|
2889
|
-
setPrevPage: () => void;
|
|
2890
|
-
setNextPage: () => void;
|
|
2891
|
-
setColumnWidth: (field: string, setWidth: number) => void;
|
|
2892
|
-
toggleRowExpand: (id: string) => void;
|
|
2893
|
-
setHeaderWidth: (id: string, width: number) => void;
|
|
2894
|
-
setRootRef: (rootRef: HTMLDivElement) => void;
|
|
2895
|
-
setScrollRef: (scrollRef: HTMLDivElement) => void;
|
|
2896
|
-
calculateColumnWidths: (clear?: boolean) => void;
|
|
2897
|
-
selectVisibleRows: () => void;
|
|
2898
|
-
unselectVisibleRows: () => void;
|
|
2899
|
-
unselectRow: (id: string) => void;
|
|
2900
|
-
selectRow: (id: string) => void;
|
|
2901
|
-
addFilterRow: (field?: string) => void;
|
|
2902
|
-
removeFilterRow: (id: string) => void;
|
|
2903
|
-
changeFilterRow: ({ id, ...newRow }: Pick<import('./store').TableFilterRow, "id"> & Partial<Omit<import('./store').TableFilterRow, "id">>) => void;
|
|
2904
|
-
setFilterCombiner: (combiner: "and" | "or") => void;
|
|
2905
|
-
clearFilter: () => void;
|
|
2906
|
-
setAutosize: () => void;
|
|
2907
|
-
removeAutosize: () => void;
|
|
2908
|
-
}) => TableColumnsProp<TableRowModel, TableColumnState>) & {
|
|
2909
|
-
clearCache: () => void;
|
|
2910
|
-
resultsCount: () => number;
|
|
2911
|
-
resetResultsCount: () => void;
|
|
2912
|
-
};
|
|
2913
|
-
lastResult: () => TableColumnsProp<TableRowModel, TableColumnState>;
|
|
2914
|
-
dependencies: [(s: Store) => boolean, (s: Store) => string[], (s: Store) => boolean, (s: Store) => string[], (s: Store) => TableColumnsProp<TableRowModel, import('./types').TableColumnDef<TableRowModel>>, (s: Store) => Partial<Record<string, Partial<TableColumnState>>>, (s: Store) => {
|
|
2915
|
-
setPageSize: (v: number) => void;
|
|
2916
|
-
setPage: (v: number) => void;
|
|
2917
|
-
setSort: (v: import('./types').TableSortModel | null) => void;
|
|
2918
|
-
downloadCSV: () => void;
|
|
2919
|
-
downloadExcel: () => void;
|
|
2920
|
-
setSelected: (selected: string[]) => void;
|
|
2921
|
-
toggleColumn: (v: string) => void;
|
|
2922
|
-
setVisibleColumns: (v: string[]) => void;
|
|
2923
|
-
setSearch: (v: string) => void;
|
|
2924
|
-
setPrevPage: () => void;
|
|
2925
|
-
setNextPage: () => void;
|
|
2926
|
-
setColumnWidth: (field: string, setWidth: number) => void;
|
|
2927
|
-
toggleRowExpand: (id: string) => void;
|
|
2928
|
-
setHeaderWidth: (id: string, width: number) => void;
|
|
2929
|
-
setRootRef: (rootRef: HTMLDivElement) => void;
|
|
2930
|
-
setScrollRef: (scrollRef: HTMLDivElement) => void;
|
|
2931
|
-
calculateColumnWidths: (clear?: boolean) => void;
|
|
2932
|
-
selectVisibleRows: () => void;
|
|
2933
|
-
unselectVisibleRows: () => void;
|
|
2934
|
-
unselectRow: (id: string) => void;
|
|
2935
|
-
selectRow: (id: string) => void;
|
|
2936
|
-
addFilterRow: (field?: string) => void;
|
|
2937
|
-
removeFilterRow: (id: string) => void;
|
|
2938
|
-
changeFilterRow: ({ id, ...newRow }: Pick<import('./store').TableFilterRow, "id"> & Partial<Omit<import('./store').TableFilterRow, "id">>) => void;
|
|
2939
|
-
setFilterCombiner: (combiner: "and" | "or") => void;
|
|
2940
|
-
clearFilter: () => void;
|
|
2941
|
-
setAutosize: () => void;
|
|
2942
|
-
removeAutosize: () => void;
|
|
2943
|
-
}];
|
|
2944
|
-
recomputations: () => number;
|
|
2945
|
-
resetRecomputations: () => void;
|
|
2946
|
-
dependencyRecomputations: () => number;
|
|
2947
|
-
resetDependencyRecomputations: () => void;
|
|
2948
|
-
} & {
|
|
2949
|
-
memoize: typeof import('reselect').weakMapMemoize;
|
|
2950
|
-
argsMemoize: typeof import('reselect').weakMapMemoize;
|
|
2951
|
-
}];
|
|
2952
|
-
recomputations: () => number;
|
|
2953
|
-
resetRecomputations: () => void;
|
|
2954
|
-
dependencyRecomputations: () => number;
|
|
2955
|
-
resetDependencyRecomputations: () => void;
|
|
2956
|
-
} & {
|
|
2957
|
-
memoize: typeof import('reselect').weakMapMemoize;
|
|
2958
|
-
argsMemoize: typeof import('reselect').weakMapMemoize;
|
|
2959
|
-
}];
|
|
2960
|
-
recomputations: () => number;
|
|
2961
|
-
resetRecomputations: () => void;
|
|
2962
|
-
dependencyRecomputations: () => number;
|
|
2963
|
-
resetDependencyRecomputations: () => void;
|
|
2964
|
-
} & {
|
|
2965
|
-
memoize: typeof import('reselect').weakMapMemoize;
|
|
2966
|
-
argsMemoize: typeof import('reselect').weakMapMemoize;
|
|
2967
|
-
}];
|
|
2968
|
-
recomputations: () => number;
|
|
2969
|
-
resetRecomputations: () => void;
|
|
2970
|
-
dependencyRecomputations: () => number;
|
|
2971
|
-
resetDependencyRecomputations: () => void;
|
|
2972
|
-
} & {
|
|
2973
|
-
memoize: typeof import('reselect').weakMapMemoize;
|
|
2974
|
-
argsMemoize: typeof import('reselect').weakMapMemoize;
|
|
2975
|
-
};
|
|
2976
|
-
export declare const allColumnsForFilterReselect: ((state: Store) => {
|
|
2977
|
-
value: string;
|
|
2978
|
-
label: string;
|
|
2979
|
-
type: import('./types').TableColumnType;
|
|
2980
|
-
}[]) & {
|
|
1071
|
+
export declare const metaReselect: ((state: Store) => {
|
|
1072
|
+
zeroRows: boolean;
|
|
1073
|
+
zeroColumns: boolean;
|
|
1074
|
+
hasSearch: boolean;
|
|
1075
|
+
}) & {
|
|
2981
1076
|
clearCache: () => void;
|
|
2982
1077
|
resultsCount: () => number;
|
|
2983
1078
|
resetResultsCount: () => void;
|
|
2984
1079
|
} & {
|
|
2985
1080
|
resultFunc: (resultFuncArgs_0: {
|
|
2986
|
-
|
|
2987
|
-
|
|
2988
|
-
|
|
2989
|
-
|
|
2990
|
-
|
|
2991
|
-
|
|
2992
|
-
|
|
2993
|
-
style: CSSProperties;
|
|
2994
|
-
columns: import('./types').TableColumnDef<TableRowModel>[];
|
|
2995
|
-
};
|
|
2996
|
-
right: {
|
|
2997
|
-
gridAreas: import('./helpers/columns').GridAreaMap;
|
|
2998
|
-
style: CSSProperties;
|
|
2999
|
-
columns: import('./types').TableColumnDef<TableRowModel>[];
|
|
3000
|
-
};
|
|
3001
|
-
}) => {
|
|
3002
|
-
value: string;
|
|
3003
|
-
label: string;
|
|
3004
|
-
type: import('./types').TableColumnType;
|
|
3005
|
-
}[];
|
|
1081
|
+
rows: TableRowModel[];
|
|
1082
|
+
meta: Partial<Record<string, RowMeta>>;
|
|
1083
|
+
}, resultFuncArgs_1: TableColumnState[], resultFuncArgs_2: boolean, resultFuncArgs_3: string) => {
|
|
1084
|
+
zeroRows: boolean;
|
|
1085
|
+
zeroColumns: boolean;
|
|
1086
|
+
hasSearch: boolean;
|
|
1087
|
+
};
|
|
3006
1088
|
memoizedResultFunc: ((resultFuncArgs_0: {
|
|
3007
|
-
|
|
3008
|
-
|
|
3009
|
-
|
|
3010
|
-
|
|
3011
|
-
|
|
3012
|
-
|
|
3013
|
-
|
|
3014
|
-
style: CSSProperties;
|
|
3015
|
-
columns: import('./types').TableColumnDef<TableRowModel>[];
|
|
3016
|
-
};
|
|
3017
|
-
right: {
|
|
3018
|
-
gridAreas: import('./helpers/columns').GridAreaMap;
|
|
3019
|
-
style: CSSProperties;
|
|
3020
|
-
columns: import('./types').TableColumnDef<TableRowModel>[];
|
|
3021
|
-
};
|
|
3022
|
-
}) => {
|
|
3023
|
-
value: string;
|
|
3024
|
-
label: string;
|
|
3025
|
-
type: import('./types').TableColumnType;
|
|
3026
|
-
}[]) & {
|
|
1089
|
+
rows: TableRowModel[];
|
|
1090
|
+
meta: Partial<Record<string, RowMeta>>;
|
|
1091
|
+
}, resultFuncArgs_1: TableColumnState[], resultFuncArgs_2: boolean, resultFuncArgs_3: string) => {
|
|
1092
|
+
zeroRows: boolean;
|
|
1093
|
+
zeroColumns: boolean;
|
|
1094
|
+
hasSearch: boolean;
|
|
1095
|
+
}) & {
|
|
3027
1096
|
clearCache: () => void;
|
|
3028
1097
|
resultsCount: () => number;
|
|
3029
1098
|
resetResultsCount: () => void;
|
|
3030
1099
|
};
|
|
3031
1100
|
lastResult: () => {
|
|
3032
|
-
|
|
3033
|
-
|
|
3034
|
-
|
|
3035
|
-
}
|
|
1101
|
+
zeroRows: boolean;
|
|
1102
|
+
zeroColumns: boolean;
|
|
1103
|
+
hasSearch: boolean;
|
|
1104
|
+
};
|
|
3036
1105
|
dependencies: [((state: Store) => {
|
|
3037
|
-
|
|
3038
|
-
|
|
3039
|
-
style: CSSProperties;
|
|
3040
|
-
columns: import('./types').TableColumnDef<TableRowModel>[];
|
|
3041
|
-
};
|
|
3042
|
-
base: {
|
|
3043
|
-
gridAreas: import('./helpers/columns').GridAreaMap;
|
|
3044
|
-
style: CSSProperties;
|
|
3045
|
-
columns: import('./types').TableColumnDef<TableRowModel>[];
|
|
3046
|
-
};
|
|
3047
|
-
right: {
|
|
3048
|
-
gridAreas: import('./helpers/columns').GridAreaMap;
|
|
3049
|
-
style: CSSProperties;
|
|
3050
|
-
columns: import('./types').TableColumnDef<TableRowModel>[];
|
|
3051
|
-
};
|
|
1106
|
+
rows: TableRowModel[];
|
|
1107
|
+
meta: Partial<Record<string, RowMeta>>;
|
|
3052
1108
|
}) & {
|
|
3053
1109
|
clearCache: () => void;
|
|
3054
1110
|
resultsCount: () => number;
|
|
3055
1111
|
resetResultsCount: () => void;
|
|
3056
1112
|
} & {
|
|
3057
|
-
resultFunc: (resultFuncArgs_0: {
|
|
3058
|
-
|
|
3059
|
-
|
|
3060
|
-
right: TableColumnsProp;
|
|
3061
|
-
}, resultFuncArgs_1: number) => {
|
|
3062
|
-
left: {
|
|
3063
|
-
gridAreas: import('./helpers/columns').GridAreaMap;
|
|
3064
|
-
style: CSSProperties;
|
|
3065
|
-
columns: import('./types').TableColumnDef<TableRowModel>[];
|
|
3066
|
-
};
|
|
3067
|
-
base: {
|
|
3068
|
-
gridAreas: import('./helpers/columns').GridAreaMap;
|
|
3069
|
-
style: CSSProperties;
|
|
3070
|
-
columns: import('./types').TableColumnDef<TableRowModel>[];
|
|
3071
|
-
};
|
|
3072
|
-
right: {
|
|
3073
|
-
gridAreas: import('./helpers/columns').GridAreaMap;
|
|
3074
|
-
style: CSSProperties;
|
|
3075
|
-
columns: import('./types').TableColumnDef<TableRowModel>[];
|
|
3076
|
-
};
|
|
1113
|
+
resultFunc: (resultFuncArgs_0: TableRowModel[], resultFuncArgs_1: boolean, resultFuncArgs_2: string[], resultFuncArgs_3: number, resultFuncArgs_4: number) => {
|
|
1114
|
+
rows: TableRowModel[];
|
|
1115
|
+
meta: Partial<Record<string, RowMeta>>;
|
|
3077
1116
|
};
|
|
3078
|
-
memoizedResultFunc: ((resultFuncArgs_0: {
|
|
3079
|
-
|
|
3080
|
-
|
|
3081
|
-
right: TableColumnsProp;
|
|
3082
|
-
}, resultFuncArgs_1: number) => {
|
|
3083
|
-
left: {
|
|
3084
|
-
gridAreas: import('./helpers/columns').GridAreaMap;
|
|
3085
|
-
style: CSSProperties;
|
|
3086
|
-
columns: import('./types').TableColumnDef<TableRowModel>[];
|
|
3087
|
-
};
|
|
3088
|
-
base: {
|
|
3089
|
-
gridAreas: import('./helpers/columns').GridAreaMap;
|
|
3090
|
-
style: CSSProperties;
|
|
3091
|
-
columns: import('./types').TableColumnDef<TableRowModel>[];
|
|
3092
|
-
};
|
|
3093
|
-
right: {
|
|
3094
|
-
gridAreas: import('./helpers/columns').GridAreaMap;
|
|
3095
|
-
style: CSSProperties;
|
|
3096
|
-
columns: import('./types').TableColumnDef<TableRowModel>[];
|
|
3097
|
-
};
|
|
1117
|
+
memoizedResultFunc: ((resultFuncArgs_0: TableRowModel[], resultFuncArgs_1: boolean, resultFuncArgs_2: string[], resultFuncArgs_3: number, resultFuncArgs_4: number) => {
|
|
1118
|
+
rows: TableRowModel[];
|
|
1119
|
+
meta: Partial<Record<string, RowMeta>>;
|
|
3098
1120
|
}) & {
|
|
3099
1121
|
clearCache: () => void;
|
|
3100
1122
|
resultsCount: () => number;
|
|
3101
1123
|
resetResultsCount: () => void;
|
|
3102
1124
|
};
|
|
3103
1125
|
lastResult: () => {
|
|
3104
|
-
|
|
3105
|
-
|
|
3106
|
-
style: CSSProperties;
|
|
3107
|
-
columns: import('./types').TableColumnDef<TableRowModel>[];
|
|
3108
|
-
};
|
|
3109
|
-
base: {
|
|
3110
|
-
gridAreas: import('./helpers/columns').GridAreaMap;
|
|
3111
|
-
style: CSSProperties;
|
|
3112
|
-
columns: import('./types').TableColumnDef<TableRowModel>[];
|
|
3113
|
-
};
|
|
3114
|
-
right: {
|
|
3115
|
-
gridAreas: import('./helpers/columns').GridAreaMap;
|
|
3116
|
-
style: CSSProperties;
|
|
3117
|
-
columns: import('./types').TableColumnDef<TableRowModel>[];
|
|
3118
|
-
};
|
|
1126
|
+
rows: TableRowModel[];
|
|
1127
|
+
meta: Partial<Record<string, RowMeta>>;
|
|
3119
1128
|
};
|
|
3120
|
-
dependencies: [((state: Store) => {
|
|
3121
|
-
left: TableColumnsProp;
|
|
3122
|
-
base: TableColumnsProp;
|
|
3123
|
-
right: TableColumnsProp;
|
|
3124
|
-
}) & {
|
|
1129
|
+
dependencies: [((state: Store) => TableRowModel[]) & {
|
|
3125
1130
|
clearCache: () => void;
|
|
3126
1131
|
resultsCount: () => number;
|
|
3127
1132
|
resetResultsCount: () => void;
|
|
3128
1133
|
} & {
|
|
3129
|
-
resultFunc: (resultFuncArgs_0:
|
|
3130
|
-
|
|
3131
|
-
base: TableColumnsProp;
|
|
3132
|
-
right: TableColumnsProp;
|
|
3133
|
-
};
|
|
3134
|
-
memoizedResultFunc: ((resultFuncArgs_0: TableColumnsProp) => {
|
|
3135
|
-
left: TableColumnsProp;
|
|
3136
|
-
base: TableColumnsProp;
|
|
3137
|
-
right: TableColumnsProp;
|
|
3138
|
-
}) & {
|
|
1134
|
+
resultFunc: (resultFuncArgs_0: TableRowModel[], resultFuncArgs_1: boolean, resultFuncArgs_2: import('./types').TableSortModel | null) => TableRowModel[];
|
|
1135
|
+
memoizedResultFunc: ((resultFuncArgs_0: TableRowModel[], resultFuncArgs_1: boolean, resultFuncArgs_2: import('./types').TableSortModel | null) => TableRowModel[]) & {
|
|
3139
1136
|
clearCache: () => void;
|
|
3140
1137
|
resultsCount: () => number;
|
|
3141
1138
|
resetResultsCount: () => void;
|
|
3142
1139
|
};
|
|
3143
|
-
lastResult: () =>
|
|
3144
|
-
|
|
3145
|
-
base: TableColumnsProp;
|
|
3146
|
-
right: TableColumnsProp;
|
|
3147
|
-
};
|
|
3148
|
-
dependencies: [((state: Store) => TableColumnsProp) & {
|
|
1140
|
+
lastResult: () => TableRowModel[];
|
|
1141
|
+
dependencies: [((state: Store) => TableRowModel[]) & {
|
|
3149
1142
|
clearCache: () => void;
|
|
3150
1143
|
resultsCount: () => number;
|
|
3151
1144
|
resetResultsCount: () => void;
|
|
3152
1145
|
} & {
|
|
3153
|
-
resultFunc: (resultFuncArgs_0:
|
|
3154
|
-
|
|
1146
|
+
resultFunc: (resultFuncArgs_0: {
|
|
1147
|
+
topRows: TableRowModel[];
|
|
1148
|
+
bottomRows: TableRowModel[];
|
|
1149
|
+
baseRows: TableRowModel[];
|
|
1150
|
+
}, resultFuncArgs_1: string, resultFuncArgs_2: boolean) => TableRowModel[];
|
|
1151
|
+
memoizedResultFunc: ((resultFuncArgs_0: {
|
|
1152
|
+
topRows: TableRowModel[];
|
|
1153
|
+
bottomRows: TableRowModel[];
|
|
1154
|
+
baseRows: TableRowModel[];
|
|
1155
|
+
}, resultFuncArgs_1: string, resultFuncArgs_2: boolean) => TableRowModel[]) & {
|
|
3155
1156
|
clearCache: () => void;
|
|
3156
1157
|
resultsCount: () => number;
|
|
3157
1158
|
resetResultsCount: () => void;
|
|
3158
1159
|
};
|
|
3159
|
-
lastResult: () =>
|
|
3160
|
-
dependencies: [((state: Store) =>
|
|
1160
|
+
lastResult: () => TableRowModel[];
|
|
1161
|
+
dependencies: [((state: Store) => {
|
|
1162
|
+
topRows: TableRowModel[];
|
|
1163
|
+
bottomRows: TableRowModel[];
|
|
1164
|
+
baseRows: TableRowModel[];
|
|
1165
|
+
}) & {
|
|
3161
1166
|
clearCache: () => void;
|
|
3162
1167
|
resultsCount: () => number;
|
|
3163
1168
|
resetResultsCount: () => void;
|
|
3164
1169
|
} & {
|
|
3165
|
-
resultFunc: (resultFuncArgs_0:
|
|
3166
|
-
|
|
3167
|
-
|
|
3168
|
-
|
|
3169
|
-
downloadCSV: () => void;
|
|
3170
|
-
downloadExcel: () => void;
|
|
3171
|
-
setSelected: (selected: string[]) => void;
|
|
3172
|
-
toggleColumn: (v: string) => void;
|
|
3173
|
-
setVisibleColumns: (v: string[]) => void;
|
|
3174
|
-
setSearch: (v: string) => void;
|
|
3175
|
-
setPrevPage: () => void;
|
|
3176
|
-
setNextPage: () => void;
|
|
3177
|
-
setColumnWidth: (field: string, setWidth: number) => void;
|
|
3178
|
-
toggleRowExpand: (id: string) => void;
|
|
3179
|
-
setHeaderWidth: (id: string, width: number) => void;
|
|
3180
|
-
setRootRef: (rootRef: HTMLDivElement) => void;
|
|
3181
|
-
setScrollRef: (scrollRef: HTMLDivElement) => void;
|
|
3182
|
-
calculateColumnWidths: (clear?: boolean) => void;
|
|
3183
|
-
selectVisibleRows: () => void;
|
|
3184
|
-
unselectVisibleRows: () => void;
|
|
3185
|
-
unselectRow: (id: string) => void;
|
|
3186
|
-
selectRow: (id: string) => void;
|
|
3187
|
-
addFilterRow: (field?: string) => void;
|
|
3188
|
-
removeFilterRow: (id: string) => void;
|
|
3189
|
-
changeFilterRow: ({ id, ...newRow }: Pick<import('./store').TableFilterRow, "id"> & Partial<Omit<import('./store').TableFilterRow, "id">>) => void;
|
|
3190
|
-
setFilterCombiner: (combiner: "and" | "or") => void;
|
|
3191
|
-
clearFilter: () => void;
|
|
3192
|
-
setAutosize: () => void;
|
|
3193
|
-
removeAutosize: () => void;
|
|
3194
|
-
}) => TableColumnsProp<TableRowModel, TableColumnState>;
|
|
3195
|
-
memoizedResultFunc: ((resultFuncArgs_0: boolean, resultFuncArgs_1: string[], resultFuncArgs_2: boolean, resultFuncArgs_3: string[], resultFuncArgs_4: TableColumnsProp<TableRowModel, import('./types').TableColumnDef<TableRowModel>>, resultFuncArgs_5: Partial<Record<string, Partial<TableColumnState>>>, resultFuncArgs_6: {
|
|
3196
|
-
setPageSize: (v: number) => void;
|
|
3197
|
-
setPage: (v: number) => void;
|
|
3198
|
-
setSort: (v: import('./types').TableSortModel | null) => void;
|
|
3199
|
-
downloadCSV: () => void;
|
|
3200
|
-
downloadExcel: () => void;
|
|
3201
|
-
setSelected: (selected: string[]) => void;
|
|
3202
|
-
toggleColumn: (v: string) => void;
|
|
3203
|
-
setVisibleColumns: (v: string[]) => void;
|
|
3204
|
-
setSearch: (v: string) => void;
|
|
3205
|
-
setPrevPage: () => void;
|
|
3206
|
-
setNextPage: () => void;
|
|
3207
|
-
setColumnWidth: (field: string, setWidth: number) => void;
|
|
3208
|
-
toggleRowExpand: (id: string) => void;
|
|
3209
|
-
setHeaderWidth: (id: string, width: number) => void;
|
|
3210
|
-
setRootRef: (rootRef: HTMLDivElement) => void;
|
|
3211
|
-
setScrollRef: (scrollRef: HTMLDivElement) => void;
|
|
3212
|
-
calculateColumnWidths: (clear?: boolean) => void;
|
|
3213
|
-
selectVisibleRows: () => void;
|
|
3214
|
-
unselectVisibleRows: () => void;
|
|
3215
|
-
unselectRow: (id: string) => void;
|
|
3216
|
-
selectRow: (id: string) => void;
|
|
3217
|
-
addFilterRow: (field?: string) => void;
|
|
3218
|
-
removeFilterRow: (id: string) => void;
|
|
3219
|
-
changeFilterRow: ({ id, ...newRow }: Pick<import('./store').TableFilterRow, "id"> & Partial<Omit<import('./store').TableFilterRow, "id">>) => void;
|
|
3220
|
-
setFilterCombiner: (combiner: "and" | "or") => void;
|
|
3221
|
-
clearFilter: () => void;
|
|
3222
|
-
setAutosize: () => void;
|
|
3223
|
-
removeAutosize: () => void;
|
|
3224
|
-
}) => TableColumnsProp<TableRowModel, TableColumnState>) & {
|
|
3225
|
-
clearCache: () => void;
|
|
3226
|
-
resultsCount: () => number;
|
|
3227
|
-
resetResultsCount: () => void;
|
|
1170
|
+
resultFunc: (resultFuncArgs_0: TableRowModel[], resultFuncArgs_1: string[], resultFuncArgs_2: string[]) => {
|
|
1171
|
+
topRows: TableRowModel[];
|
|
1172
|
+
bottomRows: TableRowModel[];
|
|
1173
|
+
baseRows: TableRowModel[];
|
|
3228
1174
|
};
|
|
3229
|
-
|
|
3230
|
-
|
|
3231
|
-
|
|
3232
|
-
|
|
3233
|
-
|
|
3234
|
-
downloadCSV: () => void;
|
|
3235
|
-
downloadExcel: () => void;
|
|
3236
|
-
setSelected: (selected: string[]) => void;
|
|
3237
|
-
toggleColumn: (v: string) => void;
|
|
3238
|
-
setVisibleColumns: (v: string[]) => void;
|
|
3239
|
-
setSearch: (v: string) => void;
|
|
3240
|
-
setPrevPage: () => void;
|
|
3241
|
-
setNextPage: () => void;
|
|
3242
|
-
setColumnWidth: (field: string, setWidth: number) => void;
|
|
3243
|
-
toggleRowExpand: (id: string) => void;
|
|
3244
|
-
setHeaderWidth: (id: string, width: number) => void;
|
|
3245
|
-
setRootRef: (rootRef: HTMLDivElement) => void;
|
|
3246
|
-
setScrollRef: (scrollRef: HTMLDivElement) => void;
|
|
3247
|
-
calculateColumnWidths: (clear?: boolean) => void;
|
|
3248
|
-
selectVisibleRows: () => void;
|
|
3249
|
-
unselectVisibleRows: () => void;
|
|
3250
|
-
unselectRow: (id: string) => void;
|
|
3251
|
-
selectRow: (id: string) => void;
|
|
3252
|
-
addFilterRow: (field?: string) => void;
|
|
3253
|
-
removeFilterRow: (id: string) => void;
|
|
3254
|
-
changeFilterRow: ({ id, ...newRow }: Pick<import('./store').TableFilterRow, "id"> & Partial<Omit<import('./store').TableFilterRow, "id">>) => void;
|
|
3255
|
-
setFilterCombiner: (combiner: "and" | "or") => void;
|
|
3256
|
-
clearFilter: () => void;
|
|
3257
|
-
setAutosize: () => void;
|
|
3258
|
-
removeAutosize: () => void;
|
|
3259
|
-
}];
|
|
3260
|
-
recomputations: () => number;
|
|
3261
|
-
resetRecomputations: () => void;
|
|
3262
|
-
dependencyRecomputations: () => number;
|
|
3263
|
-
resetDependencyRecomputations: () => void;
|
|
3264
|
-
} & {
|
|
3265
|
-
memoize: typeof import('reselect').weakMapMemoize;
|
|
3266
|
-
argsMemoize: typeof import('reselect').weakMapMemoize;
|
|
3267
|
-
}];
|
|
3268
|
-
recomputations: () => number;
|
|
3269
|
-
resetRecomputations: () => void;
|
|
3270
|
-
dependencyRecomputations: () => number;
|
|
3271
|
-
resetDependencyRecomputations: () => void;
|
|
3272
|
-
} & {
|
|
3273
|
-
memoize: typeof import('reselect').weakMapMemoize;
|
|
3274
|
-
argsMemoize: typeof import('reselect').weakMapMemoize;
|
|
3275
|
-
}];
|
|
3276
|
-
recomputations: () => number;
|
|
3277
|
-
resetRecomputations: () => void;
|
|
3278
|
-
dependencyRecomputations: () => number;
|
|
3279
|
-
resetDependencyRecomputations: () => void;
|
|
3280
|
-
} & {
|
|
3281
|
-
memoize: typeof import('reselect').weakMapMemoize;
|
|
3282
|
-
argsMemoize: typeof import('reselect').weakMapMemoize;
|
|
3283
|
-
}, ((state: Store) => number) & {
|
|
3284
|
-
clearCache: () => void;
|
|
3285
|
-
resultsCount: () => number;
|
|
3286
|
-
resetResultsCount: () => void;
|
|
3287
|
-
} & {
|
|
3288
|
-
resultFunc: (resultFuncArgs_0: TableColumnsProp) => number;
|
|
3289
|
-
memoizedResultFunc: ((resultFuncArgs_0: TableColumnsProp) => number) & {
|
|
3290
|
-
clearCache: () => void;
|
|
3291
|
-
resultsCount: () => number;
|
|
3292
|
-
resetResultsCount: () => void;
|
|
3293
|
-
};
|
|
3294
|
-
lastResult: () => number;
|
|
3295
|
-
dependencies: [((state: Store) => TableColumnsProp) & {
|
|
3296
|
-
clearCache: () => void;
|
|
3297
|
-
resultsCount: () => number;
|
|
3298
|
-
resetResultsCount: () => void;
|
|
3299
|
-
} & {
|
|
3300
|
-
resultFunc: (resultFuncArgs_0: TableColumnsProp<TableRowModel, TableColumnState>) => TableColumnsProp;
|
|
3301
|
-
memoizedResultFunc: ((resultFuncArgs_0: TableColumnsProp<TableRowModel, TableColumnState>) => TableColumnsProp) & {
|
|
3302
|
-
clearCache: () => void;
|
|
3303
|
-
resultsCount: () => number;
|
|
3304
|
-
resetResultsCount: () => void;
|
|
3305
|
-
};
|
|
3306
|
-
lastResult: () => TableColumnsProp;
|
|
3307
|
-
dependencies: [((state: Store) => TableColumnsProp<TableRowModel, TableColumnState>) & {
|
|
3308
|
-
clearCache: () => void;
|
|
3309
|
-
resultsCount: () => number;
|
|
3310
|
-
resetResultsCount: () => void;
|
|
3311
|
-
} & {
|
|
3312
|
-
resultFunc: (resultFuncArgs_0: boolean, resultFuncArgs_1: string[], resultFuncArgs_2: boolean, resultFuncArgs_3: string[], resultFuncArgs_4: TableColumnsProp<TableRowModel, import('./types').TableColumnDef<TableRowModel>>, resultFuncArgs_5: Partial<Record<string, Partial<TableColumnState>>>, resultFuncArgs_6: {
|
|
3313
|
-
setPageSize: (v: number) => void;
|
|
3314
|
-
setPage: (v: number) => void;
|
|
3315
|
-
setSort: (v: import('./types').TableSortModel | null) => void;
|
|
3316
|
-
downloadCSV: () => void;
|
|
3317
|
-
downloadExcel: () => void;
|
|
3318
|
-
setSelected: (selected: string[]) => void;
|
|
3319
|
-
toggleColumn: (v: string) => void;
|
|
3320
|
-
setVisibleColumns: (v: string[]) => void;
|
|
3321
|
-
setSearch: (v: string) => void;
|
|
3322
|
-
setPrevPage: () => void;
|
|
3323
|
-
setNextPage: () => void;
|
|
3324
|
-
setColumnWidth: (field: string, setWidth: number) => void;
|
|
3325
|
-
toggleRowExpand: (id: string) => void;
|
|
3326
|
-
setHeaderWidth: (id: string, width: number) => void;
|
|
3327
|
-
setRootRef: (rootRef: HTMLDivElement) => void;
|
|
3328
|
-
setScrollRef: (scrollRef: HTMLDivElement) => void;
|
|
3329
|
-
calculateColumnWidths: (clear?: boolean) => void;
|
|
3330
|
-
selectVisibleRows: () => void;
|
|
3331
|
-
unselectVisibleRows: () => void;
|
|
3332
|
-
unselectRow: (id: string) => void;
|
|
3333
|
-
selectRow: (id: string) => void;
|
|
3334
|
-
addFilterRow: (field?: string) => void;
|
|
3335
|
-
removeFilterRow: (id: string) => void;
|
|
3336
|
-
changeFilterRow: ({ id, ...newRow }: Pick<import('./store').TableFilterRow, "id"> & Partial<Omit<import('./store').TableFilterRow, "id">>) => void;
|
|
3337
|
-
setFilterCombiner: (combiner: "and" | "or") => void;
|
|
3338
|
-
clearFilter: () => void;
|
|
3339
|
-
setAutosize: () => void;
|
|
3340
|
-
removeAutosize: () => void;
|
|
3341
|
-
}) => TableColumnsProp<TableRowModel, TableColumnState>;
|
|
3342
|
-
memoizedResultFunc: ((resultFuncArgs_0: boolean, resultFuncArgs_1: string[], resultFuncArgs_2: boolean, resultFuncArgs_3: string[], resultFuncArgs_4: TableColumnsProp<TableRowModel, import('./types').TableColumnDef<TableRowModel>>, resultFuncArgs_5: Partial<Record<string, Partial<TableColumnState>>>, resultFuncArgs_6: {
|
|
3343
|
-
setPageSize: (v: number) => void;
|
|
3344
|
-
setPage: (v: number) => void;
|
|
3345
|
-
setSort: (v: import('./types').TableSortModel | null) => void;
|
|
3346
|
-
downloadCSV: () => void;
|
|
3347
|
-
downloadExcel: () => void;
|
|
3348
|
-
setSelected: (selected: string[]) => void;
|
|
3349
|
-
toggleColumn: (v: string) => void;
|
|
3350
|
-
setVisibleColumns: (v: string[]) => void;
|
|
3351
|
-
setSearch: (v: string) => void;
|
|
3352
|
-
setPrevPage: () => void;
|
|
3353
|
-
setNextPage: () => void;
|
|
3354
|
-
setColumnWidth: (field: string, setWidth: number) => void;
|
|
3355
|
-
toggleRowExpand: (id: string) => void;
|
|
3356
|
-
setHeaderWidth: (id: string, width: number) => void;
|
|
3357
|
-
setRootRef: (rootRef: HTMLDivElement) => void;
|
|
3358
|
-
setScrollRef: (scrollRef: HTMLDivElement) => void;
|
|
3359
|
-
calculateColumnWidths: (clear?: boolean) => void;
|
|
3360
|
-
selectVisibleRows: () => void;
|
|
3361
|
-
unselectVisibleRows: () => void;
|
|
3362
|
-
unselectRow: (id: string) => void;
|
|
3363
|
-
selectRow: (id: string) => void;
|
|
3364
|
-
addFilterRow: (field?: string) => void;
|
|
3365
|
-
removeFilterRow: (id: string) => void;
|
|
3366
|
-
changeFilterRow: ({ id, ...newRow }: Pick<import('./store').TableFilterRow, "id"> & Partial<Omit<import('./store').TableFilterRow, "id">>) => void;
|
|
3367
|
-
setFilterCombiner: (combiner: "and" | "or") => void;
|
|
3368
|
-
clearFilter: () => void;
|
|
3369
|
-
setAutosize: () => void;
|
|
3370
|
-
removeAutosize: () => void;
|
|
3371
|
-
}) => TableColumnsProp<TableRowModel, TableColumnState>) & {
|
|
1175
|
+
memoizedResultFunc: ((resultFuncArgs_0: TableRowModel[], resultFuncArgs_1: string[], resultFuncArgs_2: string[]) => {
|
|
1176
|
+
topRows: TableRowModel[];
|
|
1177
|
+
bottomRows: TableRowModel[];
|
|
1178
|
+
baseRows: TableRowModel[];
|
|
1179
|
+
}) & {
|
|
3372
1180
|
clearCache: () => void;
|
|
3373
1181
|
resultsCount: () => number;
|
|
3374
1182
|
resetResultsCount: () => void;
|
|
3375
1183
|
};
|
|
3376
|
-
lastResult: () =>
|
|
3377
|
-
|
|
3378
|
-
|
|
3379
|
-
|
|
3380
|
-
|
|
3381
|
-
|
|
3382
|
-
downloadExcel: () => void;
|
|
3383
|
-
setSelected: (selected: string[]) => void;
|
|
3384
|
-
toggleColumn: (v: string) => void;
|
|
3385
|
-
setVisibleColumns: (v: string[]) => void;
|
|
3386
|
-
setSearch: (v: string) => void;
|
|
3387
|
-
setPrevPage: () => void;
|
|
3388
|
-
setNextPage: () => void;
|
|
3389
|
-
setColumnWidth: (field: string, setWidth: number) => void;
|
|
3390
|
-
toggleRowExpand: (id: string) => void;
|
|
3391
|
-
setHeaderWidth: (id: string, width: number) => void;
|
|
3392
|
-
setRootRef: (rootRef: HTMLDivElement) => void;
|
|
3393
|
-
setScrollRef: (scrollRef: HTMLDivElement) => void;
|
|
3394
|
-
calculateColumnWidths: (clear?: boolean) => void;
|
|
3395
|
-
selectVisibleRows: () => void;
|
|
3396
|
-
unselectVisibleRows: () => void;
|
|
3397
|
-
unselectRow: (id: string) => void;
|
|
3398
|
-
selectRow: (id: string) => void;
|
|
3399
|
-
addFilterRow: (field?: string) => void;
|
|
3400
|
-
removeFilterRow: (id: string) => void;
|
|
3401
|
-
changeFilterRow: ({ id, ...newRow }: Pick<import('./store').TableFilterRow, "id"> & Partial<Omit<import('./store').TableFilterRow, "id">>) => void;
|
|
3402
|
-
setFilterCombiner: (combiner: "and" | "or") => void;
|
|
3403
|
-
clearFilter: () => void;
|
|
3404
|
-
setAutosize: () => void;
|
|
3405
|
-
removeAutosize: () => void;
|
|
3406
|
-
}];
|
|
1184
|
+
lastResult: () => {
|
|
1185
|
+
topRows: TableRowModel[];
|
|
1186
|
+
bottomRows: TableRowModel[];
|
|
1187
|
+
baseRows: TableRowModel[];
|
|
1188
|
+
};
|
|
1189
|
+
dependencies: [(s: Store) => TableRowModel[], (s: Store) => string[], (s: Store) => string[]];
|
|
3407
1190
|
recomputations: () => number;
|
|
3408
1191
|
resetRecomputations: () => void;
|
|
3409
1192
|
dependencyRecomputations: () => number;
|
|
@@ -3411,7 +1194,7 @@ export declare const allColumnsForFilterReselect: ((state: Store) => {
|
|
|
3411
1194
|
} & {
|
|
3412
1195
|
memoize: typeof import('reselect').weakMapMemoize;
|
|
3413
1196
|
argsMemoize: typeof import('reselect').weakMapMemoize;
|
|
3414
|
-
}];
|
|
1197
|
+
}, (s: Store) => string, (s: Store) => boolean];
|
|
3415
1198
|
recomputations: () => number;
|
|
3416
1199
|
resetRecomputations: () => void;
|
|
3417
1200
|
dependencyRecomputations: () => number;
|
|
@@ -3419,7 +1202,128 @@ export declare const allColumnsForFilterReselect: ((state: Store) => {
|
|
|
3419
1202
|
} & {
|
|
3420
1203
|
memoize: typeof import('reselect').weakMapMemoize;
|
|
3421
1204
|
argsMemoize: typeof import('reselect').weakMapMemoize;
|
|
3422
|
-
}];
|
|
1205
|
+
}, (s: Store) => boolean, (s: Store) => import('./types').TableSortModel | null];
|
|
1206
|
+
recomputations: () => number;
|
|
1207
|
+
resetRecomputations: () => void;
|
|
1208
|
+
dependencyRecomputations: () => number;
|
|
1209
|
+
resetDependencyRecomputations: () => void;
|
|
1210
|
+
} & {
|
|
1211
|
+
memoize: typeof import('reselect').weakMapMemoize;
|
|
1212
|
+
argsMemoize: typeof import('reselect').weakMapMemoize;
|
|
1213
|
+
}, (s: Store) => boolean, (s: Store) => string[], (s: Store) => number, (s: Store) => number];
|
|
1214
|
+
recomputations: () => number;
|
|
1215
|
+
resetRecomputations: () => void;
|
|
1216
|
+
dependencyRecomputations: () => number;
|
|
1217
|
+
resetDependencyRecomputations: () => void;
|
|
1218
|
+
} & {
|
|
1219
|
+
memoize: typeof import('reselect').weakMapMemoize;
|
|
1220
|
+
argsMemoize: typeof import('reselect').weakMapMemoize;
|
|
1221
|
+
}, ((state: Store) => TableColumnState[]) & {
|
|
1222
|
+
clearCache: () => void;
|
|
1223
|
+
resultsCount: () => number;
|
|
1224
|
+
resetResultsCount: () => void;
|
|
1225
|
+
} & {
|
|
1226
|
+
resultFunc: (resultFuncArgs_0: TableColumnState[]) => TableColumnState[];
|
|
1227
|
+
memoizedResultFunc: ((resultFuncArgs_0: TableColumnState[]) => TableColumnState[]) & {
|
|
1228
|
+
clearCache: () => void;
|
|
1229
|
+
resultsCount: () => number;
|
|
1230
|
+
resetResultsCount: () => void;
|
|
1231
|
+
};
|
|
1232
|
+
lastResult: () => TableColumnState[];
|
|
1233
|
+
dependencies: [((state: Store) => TableColumnState[]) & {
|
|
1234
|
+
clearCache: () => void;
|
|
1235
|
+
resultsCount: () => number;
|
|
1236
|
+
resetResultsCount: () => void;
|
|
1237
|
+
} & {
|
|
1238
|
+
resultFunc: (resultFuncArgs_0: boolean, resultFuncArgs_1: string[], resultFuncArgs_2: boolean, resultFuncArgs_3: string[], resultFuncArgs_4: import('./types').TableColumnsProp<TableRowModel>, resultFuncArgs_5: Partial<Record<string, Partial<TableColumnState>>>, resultFuncArgs_6: {
|
|
1239
|
+
setPageSize: (v: number) => void;
|
|
1240
|
+
setPage: (v: number) => void;
|
|
1241
|
+
setSort: (v: import('./types').TableSortModel | null) => void;
|
|
1242
|
+
downloadCSV: () => void;
|
|
1243
|
+
downloadExcel: () => void;
|
|
1244
|
+
setSelected: (selected: string[]) => void;
|
|
1245
|
+
toggleColumn: (v: string) => void;
|
|
1246
|
+
setVisibleColumns: (v: string[]) => void;
|
|
1247
|
+
setSearch: (v: string) => void;
|
|
1248
|
+
setPrevPage: () => void;
|
|
1249
|
+
setNextPage: () => void;
|
|
1250
|
+
setColumnWidth: (field: string, setWidth: number) => void;
|
|
1251
|
+
toggleRowExpand: (id: string) => void;
|
|
1252
|
+
setRootRef: (rootRef: HTMLDivElement) => void;
|
|
1253
|
+
setScrollRef: (scrollRef: HTMLDivElement) => void;
|
|
1254
|
+
calculateColumnWidths: (clear?: boolean) => void;
|
|
1255
|
+
selectVisibleRows: () => void;
|
|
1256
|
+
unselectVisibleRows: () => void;
|
|
1257
|
+
unselectRow: (id: string) => void;
|
|
1258
|
+
selectRow: (id: string) => void;
|
|
1259
|
+
setAutosize: () => void;
|
|
1260
|
+
removeAutosize: () => void;
|
|
1261
|
+
setColumnsOrder: (columnsOrder: string[]) => void;
|
|
1262
|
+
setColumnOrder: (columnId: string, index: number) => void;
|
|
1263
|
+
moveColumnLeft: (columnId: string) => void;
|
|
1264
|
+
moveColumnRight: (columnId: string) => void;
|
|
1265
|
+
}, resultFuncArgs_7: string[]) => TableColumnState[];
|
|
1266
|
+
memoizedResultFunc: ((resultFuncArgs_0: boolean, resultFuncArgs_1: string[], resultFuncArgs_2: boolean, resultFuncArgs_3: string[], resultFuncArgs_4: import('./types').TableColumnsProp<TableRowModel>, resultFuncArgs_5: Partial<Record<string, Partial<TableColumnState>>>, resultFuncArgs_6: {
|
|
1267
|
+
setPageSize: (v: number) => void;
|
|
1268
|
+
setPage: (v: number) => void;
|
|
1269
|
+
setSort: (v: import('./types').TableSortModel | null) => void;
|
|
1270
|
+
downloadCSV: () => void;
|
|
1271
|
+
downloadExcel: () => void;
|
|
1272
|
+
setSelected: (selected: string[]) => void;
|
|
1273
|
+
toggleColumn: (v: string) => void;
|
|
1274
|
+
setVisibleColumns: (v: string[]) => void;
|
|
1275
|
+
setSearch: (v: string) => void;
|
|
1276
|
+
setPrevPage: () => void;
|
|
1277
|
+
setNextPage: () => void;
|
|
1278
|
+
setColumnWidth: (field: string, setWidth: number) => void;
|
|
1279
|
+
toggleRowExpand: (id: string) => void;
|
|
1280
|
+
setRootRef: (rootRef: HTMLDivElement) => void;
|
|
1281
|
+
setScrollRef: (scrollRef: HTMLDivElement) => void;
|
|
1282
|
+
calculateColumnWidths: (clear?: boolean) => void;
|
|
1283
|
+
selectVisibleRows: () => void;
|
|
1284
|
+
unselectVisibleRows: () => void;
|
|
1285
|
+
unselectRow: (id: string) => void;
|
|
1286
|
+
selectRow: (id: string) => void;
|
|
1287
|
+
setAutosize: () => void;
|
|
1288
|
+
removeAutosize: () => void;
|
|
1289
|
+
setColumnsOrder: (columnsOrder: string[]) => void;
|
|
1290
|
+
setColumnOrder: (columnId: string, index: number) => void;
|
|
1291
|
+
moveColumnLeft: (columnId: string) => void;
|
|
1292
|
+
moveColumnRight: (columnId: string) => void;
|
|
1293
|
+
}, resultFuncArgs_7: string[]) => TableColumnState[]) & {
|
|
1294
|
+
clearCache: () => void;
|
|
1295
|
+
resultsCount: () => number;
|
|
1296
|
+
resetResultsCount: () => void;
|
|
1297
|
+
};
|
|
1298
|
+
lastResult: () => TableColumnState[];
|
|
1299
|
+
dependencies: [(s: Store) => boolean, (s: Store) => string[], (s: Store) => boolean, (s: Store) => string[], (s: Store) => import('./types').TableColumnsProp<TableRowModel>, (s: Store) => Partial<Record<string, Partial<TableColumnState>>>, (s: Store) => {
|
|
1300
|
+
setPageSize: (v: number) => void;
|
|
1301
|
+
setPage: (v: number) => void;
|
|
1302
|
+
setSort: (v: import('./types').TableSortModel | null) => void;
|
|
1303
|
+
downloadCSV: () => void;
|
|
1304
|
+
downloadExcel: () => void;
|
|
1305
|
+
setSelected: (selected: string[]) => void;
|
|
1306
|
+
toggleColumn: (v: string) => void;
|
|
1307
|
+
setVisibleColumns: (v: string[]) => void;
|
|
1308
|
+
setSearch: (v: string) => void;
|
|
1309
|
+
setPrevPage: () => void;
|
|
1310
|
+
setNextPage: () => void;
|
|
1311
|
+
setColumnWidth: (field: string, setWidth: number) => void;
|
|
1312
|
+
toggleRowExpand: (id: string) => void;
|
|
1313
|
+
setRootRef: (rootRef: HTMLDivElement) => void;
|
|
1314
|
+
setScrollRef: (scrollRef: HTMLDivElement) => void;
|
|
1315
|
+
calculateColumnWidths: (clear?: boolean) => void;
|
|
1316
|
+
selectVisibleRows: () => void;
|
|
1317
|
+
unselectVisibleRows: () => void;
|
|
1318
|
+
unselectRow: (id: string) => void;
|
|
1319
|
+
selectRow: (id: string) => void;
|
|
1320
|
+
setAutosize: () => void;
|
|
1321
|
+
removeAutosize: () => void;
|
|
1322
|
+
setColumnsOrder: (columnsOrder: string[]) => void;
|
|
1323
|
+
setColumnOrder: (columnId: string, index: number) => void;
|
|
1324
|
+
moveColumnLeft: (columnId: string) => void;
|
|
1325
|
+
moveColumnRight: (columnId: string) => void;
|
|
1326
|
+
}, (s: Store) => string[]];
|
|
3423
1327
|
recomputations: () => number;
|
|
3424
1328
|
resetRecomputations: () => void;
|
|
3425
1329
|
dependencyRecomputations: () => number;
|
|
@@ -3435,7 +1339,7 @@ export declare const allColumnsForFilterReselect: ((state: Store) => {
|
|
|
3435
1339
|
} & {
|
|
3436
1340
|
memoize: typeof import('reselect').weakMapMemoize;
|
|
3437
1341
|
argsMemoize: typeof import('reselect').weakMapMemoize;
|
|
3438
|
-
}];
|
|
1342
|
+
}, (s: Store) => boolean, (s: Store) => string];
|
|
3439
1343
|
recomputations: () => number;
|
|
3440
1344
|
resetRecomputations: () => void;
|
|
3441
1345
|
dependencyRecomputations: () => number;
|
|
@@ -3515,76 +1419,50 @@ export declare const selectionReselect: ((state: Store) => {
|
|
|
3515
1419
|
resultsCount: () => number;
|
|
3516
1420
|
resetResultsCount: () => void;
|
|
3517
1421
|
} & {
|
|
3518
|
-
resultFunc: (resultFuncArgs_0:
|
|
3519
|
-
|
|
3520
|
-
|
|
3521
|
-
|
|
3522
|
-
|
|
3523
|
-
|
|
3524
|
-
|
|
3525
|
-
|
|
1422
|
+
resultFunc: (resultFuncArgs_0: {
|
|
1423
|
+
topRows: TableRowModel[];
|
|
1424
|
+
bottomRows: TableRowModel[];
|
|
1425
|
+
baseRows: TableRowModel[];
|
|
1426
|
+
}, resultFuncArgs_1: string, resultFuncArgs_2: boolean) => TableRowModel[];
|
|
1427
|
+
memoizedResultFunc: ((resultFuncArgs_0: {
|
|
1428
|
+
topRows: TableRowModel[];
|
|
1429
|
+
bottomRows: TableRowModel[];
|
|
1430
|
+
baseRows: TableRowModel[];
|
|
1431
|
+
}, resultFuncArgs_1: string, resultFuncArgs_2: boolean) => TableRowModel[]) & {
|
|
3526
1432
|
clearCache: () => void;
|
|
3527
1433
|
resultsCount: () => number;
|
|
3528
1434
|
resetResultsCount: () => void;
|
|
3529
1435
|
};
|
|
3530
1436
|
lastResult: () => TableRowModel[];
|
|
3531
|
-
dependencies: [((state: Store) =>
|
|
1437
|
+
dependencies: [((state: Store) => {
|
|
1438
|
+
topRows: TableRowModel[];
|
|
1439
|
+
bottomRows: TableRowModel[];
|
|
1440
|
+
baseRows: TableRowModel[];
|
|
1441
|
+
}) & {
|
|
3532
1442
|
clearCache: () => void;
|
|
3533
1443
|
resultsCount: () => number;
|
|
3534
1444
|
resetResultsCount: () => void;
|
|
3535
1445
|
} & {
|
|
3536
|
-
resultFunc: (resultFuncArgs_0: {
|
|
1446
|
+
resultFunc: (resultFuncArgs_0: TableRowModel[], resultFuncArgs_1: string[], resultFuncArgs_2: string[]) => {
|
|
3537
1447
|
topRows: TableRowModel[];
|
|
3538
1448
|
bottomRows: TableRowModel[];
|
|
3539
1449
|
baseRows: TableRowModel[];
|
|
3540
|
-
}
|
|
3541
|
-
memoizedResultFunc: ((resultFuncArgs_0: {
|
|
1450
|
+
};
|
|
1451
|
+
memoizedResultFunc: ((resultFuncArgs_0: TableRowModel[], resultFuncArgs_1: string[], resultFuncArgs_2: string[]) => {
|
|
3542
1452
|
topRows: TableRowModel[];
|
|
3543
1453
|
bottomRows: TableRowModel[];
|
|
3544
1454
|
baseRows: TableRowModel[];
|
|
3545
|
-
}
|
|
1455
|
+
}) & {
|
|
3546
1456
|
clearCache: () => void;
|
|
3547
1457
|
resultsCount: () => number;
|
|
3548
1458
|
resetResultsCount: () => void;
|
|
3549
1459
|
};
|
|
3550
|
-
lastResult: () =>
|
|
3551
|
-
dependencies: [((state: Store) => {
|
|
1460
|
+
lastResult: () => {
|
|
3552
1461
|
topRows: TableRowModel[];
|
|
3553
1462
|
bottomRows: TableRowModel[];
|
|
3554
1463
|
baseRows: TableRowModel[];
|
|
3555
|
-
}
|
|
3556
|
-
|
|
3557
|
-
resultsCount: () => number;
|
|
3558
|
-
resetResultsCount: () => void;
|
|
3559
|
-
} & {
|
|
3560
|
-
resultFunc: (resultFuncArgs_0: TableRowModel[], resultFuncArgs_1: string[], resultFuncArgs_2: string[]) => {
|
|
3561
|
-
topRows: TableRowModel[];
|
|
3562
|
-
bottomRows: TableRowModel[];
|
|
3563
|
-
baseRows: TableRowModel[];
|
|
3564
|
-
};
|
|
3565
|
-
memoizedResultFunc: ((resultFuncArgs_0: TableRowModel[], resultFuncArgs_1: string[], resultFuncArgs_2: string[]) => {
|
|
3566
|
-
topRows: TableRowModel[];
|
|
3567
|
-
bottomRows: TableRowModel[];
|
|
3568
|
-
baseRows: TableRowModel[];
|
|
3569
|
-
}) & {
|
|
3570
|
-
clearCache: () => void;
|
|
3571
|
-
resultsCount: () => number;
|
|
3572
|
-
resetResultsCount: () => void;
|
|
3573
|
-
};
|
|
3574
|
-
lastResult: () => {
|
|
3575
|
-
topRows: TableRowModel[];
|
|
3576
|
-
bottomRows: TableRowModel[];
|
|
3577
|
-
baseRows: TableRowModel[];
|
|
3578
|
-
};
|
|
3579
|
-
dependencies: [(s: Store) => TableRowModel[], (s: Store) => string[], (s: Store) => string[]];
|
|
3580
|
-
recomputations: () => number;
|
|
3581
|
-
resetRecomputations: () => void;
|
|
3582
|
-
dependencyRecomputations: () => number;
|
|
3583
|
-
resetDependencyRecomputations: () => void;
|
|
3584
|
-
} & {
|
|
3585
|
-
memoize: typeof import('reselect').weakMapMemoize;
|
|
3586
|
-
argsMemoize: typeof import('reselect').weakMapMemoize;
|
|
3587
|
-
}, (s: Store) => string, (s: Store) => boolean];
|
|
1464
|
+
};
|
|
1465
|
+
dependencies: [(s: Store) => TableRowModel[], (s: Store) => string[], (s: Store) => string[]];
|
|
3588
1466
|
recomputations: () => number;
|
|
3589
1467
|
resetRecomputations: () => void;
|
|
3590
1468
|
dependencyRecomputations: () => number;
|
|
@@ -3592,10 +1470,7 @@ export declare const selectionReselect: ((state: Store) => {
|
|
|
3592
1470
|
} & {
|
|
3593
1471
|
memoize: typeof import('reselect').weakMapMemoize;
|
|
3594
1472
|
argsMemoize: typeof import('reselect').weakMapMemoize;
|
|
3595
|
-
}, (s: Store) =>
|
|
3596
|
-
rows: import('./store').TableFilterRow[];
|
|
3597
|
-
combiner: "and" | "or";
|
|
3598
|
-
}];
|
|
1473
|
+
}, (s: Store) => string, (s: Store) => boolean];
|
|
3599
1474
|
recomputations: () => number;
|
|
3600
1475
|
resetRecomputations: () => void;
|
|
3601
1476
|
dependencyRecomputations: () => number;
|
|
@@ -3643,9 +1518,9 @@ export declare const aggregationReselect: ((state: Store) => {
|
|
|
3643
1518
|
rows: TableRowModel[];
|
|
3644
1519
|
meta: Partial<Record<string, RowMeta>>;
|
|
3645
1520
|
}, resultFuncArgs_1: {
|
|
3646
|
-
left:
|
|
3647
|
-
base:
|
|
3648
|
-
right:
|
|
1521
|
+
left: TableColumnState[];
|
|
1522
|
+
base: TableColumnState[];
|
|
1523
|
+
right: TableColumnState[];
|
|
3649
1524
|
}) => {
|
|
3650
1525
|
aggregatedRow: TableRowModel;
|
|
3651
1526
|
left: import('./types').TableColumnDef[];
|
|
@@ -3657,9 +1532,9 @@ export declare const aggregationReselect: ((state: Store) => {
|
|
|
3657
1532
|
rows: TableRowModel[];
|
|
3658
1533
|
meta: Partial<Record<string, RowMeta>>;
|
|
3659
1534
|
}, resultFuncArgs_1: {
|
|
3660
|
-
left:
|
|
3661
|
-
base:
|
|
3662
|
-
right:
|
|
1535
|
+
left: TableColumnState[];
|
|
1536
|
+
base: TableColumnState[];
|
|
1537
|
+
right: TableColumnState[];
|
|
3663
1538
|
}) => {
|
|
3664
1539
|
aggregatedRow: TableRowModel;
|
|
3665
1540
|
left: import('./types').TableColumnDef[];
|
|
@@ -3719,76 +1594,50 @@ export declare const aggregationReselect: ((state: Store) => {
|
|
|
3719
1594
|
resultsCount: () => number;
|
|
3720
1595
|
resetResultsCount: () => void;
|
|
3721
1596
|
} & {
|
|
3722
|
-
resultFunc: (resultFuncArgs_0:
|
|
3723
|
-
|
|
3724
|
-
|
|
3725
|
-
|
|
3726
|
-
|
|
3727
|
-
|
|
3728
|
-
|
|
3729
|
-
|
|
1597
|
+
resultFunc: (resultFuncArgs_0: {
|
|
1598
|
+
topRows: TableRowModel[];
|
|
1599
|
+
bottomRows: TableRowModel[];
|
|
1600
|
+
baseRows: TableRowModel[];
|
|
1601
|
+
}, resultFuncArgs_1: string, resultFuncArgs_2: boolean) => TableRowModel[];
|
|
1602
|
+
memoizedResultFunc: ((resultFuncArgs_0: {
|
|
1603
|
+
topRows: TableRowModel[];
|
|
1604
|
+
bottomRows: TableRowModel[];
|
|
1605
|
+
baseRows: TableRowModel[];
|
|
1606
|
+
}, resultFuncArgs_1: string, resultFuncArgs_2: boolean) => TableRowModel[]) & {
|
|
3730
1607
|
clearCache: () => void;
|
|
3731
1608
|
resultsCount: () => number;
|
|
3732
1609
|
resetResultsCount: () => void;
|
|
3733
1610
|
};
|
|
3734
1611
|
lastResult: () => TableRowModel[];
|
|
3735
|
-
dependencies: [((state: Store) =>
|
|
1612
|
+
dependencies: [((state: Store) => {
|
|
1613
|
+
topRows: TableRowModel[];
|
|
1614
|
+
bottomRows: TableRowModel[];
|
|
1615
|
+
baseRows: TableRowModel[];
|
|
1616
|
+
}) & {
|
|
3736
1617
|
clearCache: () => void;
|
|
3737
1618
|
resultsCount: () => number;
|
|
3738
1619
|
resetResultsCount: () => void;
|
|
3739
1620
|
} & {
|
|
3740
|
-
resultFunc: (resultFuncArgs_0: {
|
|
1621
|
+
resultFunc: (resultFuncArgs_0: TableRowModel[], resultFuncArgs_1: string[], resultFuncArgs_2: string[]) => {
|
|
3741
1622
|
topRows: TableRowModel[];
|
|
3742
1623
|
bottomRows: TableRowModel[];
|
|
3743
1624
|
baseRows: TableRowModel[];
|
|
3744
|
-
}
|
|
3745
|
-
memoizedResultFunc: ((resultFuncArgs_0: {
|
|
1625
|
+
};
|
|
1626
|
+
memoizedResultFunc: ((resultFuncArgs_0: TableRowModel[], resultFuncArgs_1: string[], resultFuncArgs_2: string[]) => {
|
|
3746
1627
|
topRows: TableRowModel[];
|
|
3747
1628
|
bottomRows: TableRowModel[];
|
|
3748
1629
|
baseRows: TableRowModel[];
|
|
3749
|
-
}
|
|
1630
|
+
}) & {
|
|
3750
1631
|
clearCache: () => void;
|
|
3751
1632
|
resultsCount: () => number;
|
|
3752
1633
|
resetResultsCount: () => void;
|
|
3753
1634
|
};
|
|
3754
|
-
lastResult: () =>
|
|
3755
|
-
dependencies: [((state: Store) => {
|
|
1635
|
+
lastResult: () => {
|
|
3756
1636
|
topRows: TableRowModel[];
|
|
3757
1637
|
bottomRows: TableRowModel[];
|
|
3758
1638
|
baseRows: TableRowModel[];
|
|
3759
|
-
}
|
|
3760
|
-
|
|
3761
|
-
resultsCount: () => number;
|
|
3762
|
-
resetResultsCount: () => void;
|
|
3763
|
-
} & {
|
|
3764
|
-
resultFunc: (resultFuncArgs_0: TableRowModel[], resultFuncArgs_1: string[], resultFuncArgs_2: string[]) => {
|
|
3765
|
-
topRows: TableRowModel[];
|
|
3766
|
-
bottomRows: TableRowModel[];
|
|
3767
|
-
baseRows: TableRowModel[];
|
|
3768
|
-
};
|
|
3769
|
-
memoizedResultFunc: ((resultFuncArgs_0: TableRowModel[], resultFuncArgs_1: string[], resultFuncArgs_2: string[]) => {
|
|
3770
|
-
topRows: TableRowModel[];
|
|
3771
|
-
bottomRows: TableRowModel[];
|
|
3772
|
-
baseRows: TableRowModel[];
|
|
3773
|
-
}) & {
|
|
3774
|
-
clearCache: () => void;
|
|
3775
|
-
resultsCount: () => number;
|
|
3776
|
-
resetResultsCount: () => void;
|
|
3777
|
-
};
|
|
3778
|
-
lastResult: () => {
|
|
3779
|
-
topRows: TableRowModel[];
|
|
3780
|
-
bottomRows: TableRowModel[];
|
|
3781
|
-
baseRows: TableRowModel[];
|
|
3782
|
-
};
|
|
3783
|
-
dependencies: [(s: Store) => TableRowModel[], (s: Store) => string[], (s: Store) => string[]];
|
|
3784
|
-
recomputations: () => number;
|
|
3785
|
-
resetRecomputations: () => void;
|
|
3786
|
-
dependencyRecomputations: () => number;
|
|
3787
|
-
resetDependencyRecomputations: () => void;
|
|
3788
|
-
} & {
|
|
3789
|
-
memoize: typeof import('reselect').weakMapMemoize;
|
|
3790
|
-
argsMemoize: typeof import('reselect').weakMapMemoize;
|
|
3791
|
-
}, (s: Store) => string, (s: Store) => boolean];
|
|
1639
|
+
};
|
|
1640
|
+
dependencies: [(s: Store) => TableRowModel[], (s: Store) => string[], (s: Store) => string[]];
|
|
3792
1641
|
recomputations: () => number;
|
|
3793
1642
|
resetRecomputations: () => void;
|
|
3794
1643
|
dependencyRecomputations: () => number;
|
|
@@ -3796,10 +1645,7 @@ export declare const aggregationReselect: ((state: Store) => {
|
|
|
3796
1645
|
} & {
|
|
3797
1646
|
memoize: typeof import('reselect').weakMapMemoize;
|
|
3798
1647
|
argsMemoize: typeof import('reselect').weakMapMemoize;
|
|
3799
|
-
}, (s: Store) =>
|
|
3800
|
-
rows: import('./store').TableFilterRow[];
|
|
3801
|
-
combiner: "and" | "or";
|
|
3802
|
-
}];
|
|
1648
|
+
}, (s: Store) => string, (s: Store) => boolean];
|
|
3803
1649
|
recomputations: () => number;
|
|
3804
1650
|
resetRecomputations: () => void;
|
|
3805
1651
|
dependencyRecomputations: () => number;
|
|
@@ -3824,189 +1670,139 @@ export declare const aggregationReselect: ((state: Store) => {
|
|
|
3824
1670
|
memoize: typeof import('reselect').weakMapMemoize;
|
|
3825
1671
|
argsMemoize: typeof import('reselect').weakMapMemoize;
|
|
3826
1672
|
}, ((state: Store) => {
|
|
3827
|
-
left:
|
|
3828
|
-
base:
|
|
3829
|
-
right:
|
|
1673
|
+
left: TableColumnState[];
|
|
1674
|
+
base: TableColumnState[];
|
|
1675
|
+
right: TableColumnState[];
|
|
3830
1676
|
}) & {
|
|
3831
1677
|
clearCache: () => void;
|
|
3832
1678
|
resultsCount: () => number;
|
|
3833
1679
|
resetResultsCount: () => void;
|
|
3834
1680
|
} & {
|
|
3835
|
-
resultFunc: (resultFuncArgs_0: {
|
|
3836
|
-
left:
|
|
3837
|
-
base:
|
|
3838
|
-
right:
|
|
3839
|
-
}) => {
|
|
3840
|
-
left: import('./types').TableColumnDef<TableRowModel>[];
|
|
3841
|
-
base: import('./types').TableColumnDef<TableRowModel>[];
|
|
3842
|
-
right: import('./types').TableColumnDef<TableRowModel>[];
|
|
1681
|
+
resultFunc: (resultFuncArgs_0: TableColumnState[]) => {
|
|
1682
|
+
left: TableColumnState[];
|
|
1683
|
+
base: TableColumnState[];
|
|
1684
|
+
right: TableColumnState[];
|
|
3843
1685
|
};
|
|
3844
|
-
memoizedResultFunc: ((resultFuncArgs_0: {
|
|
3845
|
-
left:
|
|
3846
|
-
base:
|
|
3847
|
-
right:
|
|
3848
|
-
}) => {
|
|
3849
|
-
left: import('./types').TableColumnDef<TableRowModel>[];
|
|
3850
|
-
base: import('./types').TableColumnDef<TableRowModel>[];
|
|
3851
|
-
right: import('./types').TableColumnDef<TableRowModel>[];
|
|
1686
|
+
memoizedResultFunc: ((resultFuncArgs_0: TableColumnState[]) => {
|
|
1687
|
+
left: TableColumnState[];
|
|
1688
|
+
base: TableColumnState[];
|
|
1689
|
+
right: TableColumnState[];
|
|
3852
1690
|
}) & {
|
|
3853
1691
|
clearCache: () => void;
|
|
3854
1692
|
resultsCount: () => number;
|
|
3855
1693
|
resetResultsCount: () => void;
|
|
3856
1694
|
};
|
|
3857
1695
|
lastResult: () => {
|
|
3858
|
-
left:
|
|
3859
|
-
base:
|
|
3860
|
-
right:
|
|
1696
|
+
left: TableColumnState[];
|
|
1697
|
+
base: TableColumnState[];
|
|
1698
|
+
right: TableColumnState[];
|
|
3861
1699
|
};
|
|
3862
|
-
dependencies: [((state: Store) => {
|
|
3863
|
-
left: TableColumnsProp;
|
|
3864
|
-
base: TableColumnsProp;
|
|
3865
|
-
right: TableColumnsProp;
|
|
3866
|
-
}) & {
|
|
1700
|
+
dependencies: [((state: Store) => TableColumnState[]) & {
|
|
3867
1701
|
clearCache: () => void;
|
|
3868
1702
|
resultsCount: () => number;
|
|
3869
1703
|
resetResultsCount: () => void;
|
|
3870
1704
|
} & {
|
|
3871
|
-
resultFunc: (resultFuncArgs_0:
|
|
3872
|
-
|
|
3873
|
-
base: TableColumnsProp;
|
|
3874
|
-
right: TableColumnsProp;
|
|
3875
|
-
};
|
|
3876
|
-
memoizedResultFunc: ((resultFuncArgs_0: TableColumnsProp) => {
|
|
3877
|
-
left: TableColumnsProp;
|
|
3878
|
-
base: TableColumnsProp;
|
|
3879
|
-
right: TableColumnsProp;
|
|
3880
|
-
}) & {
|
|
1705
|
+
resultFunc: (resultFuncArgs_0: TableColumnState[]) => TableColumnState[];
|
|
1706
|
+
memoizedResultFunc: ((resultFuncArgs_0: TableColumnState[]) => TableColumnState[]) & {
|
|
3881
1707
|
clearCache: () => void;
|
|
3882
1708
|
resultsCount: () => number;
|
|
3883
1709
|
resetResultsCount: () => void;
|
|
3884
1710
|
};
|
|
3885
|
-
lastResult: () =>
|
|
3886
|
-
|
|
3887
|
-
base: TableColumnsProp;
|
|
3888
|
-
right: TableColumnsProp;
|
|
3889
|
-
};
|
|
3890
|
-
dependencies: [((state: Store) => TableColumnsProp) & {
|
|
1711
|
+
lastResult: () => TableColumnState[];
|
|
1712
|
+
dependencies: [((state: Store) => TableColumnState[]) & {
|
|
3891
1713
|
clearCache: () => void;
|
|
3892
1714
|
resultsCount: () => number;
|
|
3893
1715
|
resetResultsCount: () => void;
|
|
3894
1716
|
} & {
|
|
3895
|
-
resultFunc: (resultFuncArgs_0: TableColumnsProp<TableRowModel, TableColumnState
|
|
3896
|
-
|
|
1717
|
+
resultFunc: (resultFuncArgs_0: boolean, resultFuncArgs_1: string[], resultFuncArgs_2: boolean, resultFuncArgs_3: string[], resultFuncArgs_4: import('./types').TableColumnsProp<TableRowModel>, resultFuncArgs_5: Partial<Record<string, Partial<TableColumnState>>>, resultFuncArgs_6: {
|
|
1718
|
+
setPageSize: (v: number) => void;
|
|
1719
|
+
setPage: (v: number) => void;
|
|
1720
|
+
setSort: (v: import('./types').TableSortModel | null) => void;
|
|
1721
|
+
downloadCSV: () => void;
|
|
1722
|
+
downloadExcel: () => void;
|
|
1723
|
+
setSelected: (selected: string[]) => void;
|
|
1724
|
+
toggleColumn: (v: string) => void;
|
|
1725
|
+
setVisibleColumns: (v: string[]) => void;
|
|
1726
|
+
setSearch: (v: string) => void;
|
|
1727
|
+
setPrevPage: () => void;
|
|
1728
|
+
setNextPage: () => void;
|
|
1729
|
+
setColumnWidth: (field: string, setWidth: number) => void;
|
|
1730
|
+
toggleRowExpand: (id: string) => void;
|
|
1731
|
+
setRootRef: (rootRef: HTMLDivElement) => void;
|
|
1732
|
+
setScrollRef: (scrollRef: HTMLDivElement) => void;
|
|
1733
|
+
calculateColumnWidths: (clear?: boolean) => void;
|
|
1734
|
+
selectVisibleRows: () => void;
|
|
1735
|
+
unselectVisibleRows: () => void;
|
|
1736
|
+
unselectRow: (id: string) => void;
|
|
1737
|
+
selectRow: (id: string) => void;
|
|
1738
|
+
setAutosize: () => void;
|
|
1739
|
+
removeAutosize: () => void;
|
|
1740
|
+
setColumnsOrder: (columnsOrder: string[]) => void;
|
|
1741
|
+
setColumnOrder: (columnId: string, index: number) => void;
|
|
1742
|
+
moveColumnLeft: (columnId: string) => void;
|
|
1743
|
+
moveColumnRight: (columnId: string) => void;
|
|
1744
|
+
}, resultFuncArgs_7: string[]) => TableColumnState[];
|
|
1745
|
+
memoizedResultFunc: ((resultFuncArgs_0: boolean, resultFuncArgs_1: string[], resultFuncArgs_2: boolean, resultFuncArgs_3: string[], resultFuncArgs_4: import('./types').TableColumnsProp<TableRowModel>, resultFuncArgs_5: Partial<Record<string, Partial<TableColumnState>>>, resultFuncArgs_6: {
|
|
1746
|
+
setPageSize: (v: number) => void;
|
|
1747
|
+
setPage: (v: number) => void;
|
|
1748
|
+
setSort: (v: import('./types').TableSortModel | null) => void;
|
|
1749
|
+
downloadCSV: () => void;
|
|
1750
|
+
downloadExcel: () => void;
|
|
1751
|
+
setSelected: (selected: string[]) => void;
|
|
1752
|
+
toggleColumn: (v: string) => void;
|
|
1753
|
+
setVisibleColumns: (v: string[]) => void;
|
|
1754
|
+
setSearch: (v: string) => void;
|
|
1755
|
+
setPrevPage: () => void;
|
|
1756
|
+
setNextPage: () => void;
|
|
1757
|
+
setColumnWidth: (field: string, setWidth: number) => void;
|
|
1758
|
+
toggleRowExpand: (id: string) => void;
|
|
1759
|
+
setRootRef: (rootRef: HTMLDivElement) => void;
|
|
1760
|
+
setScrollRef: (scrollRef: HTMLDivElement) => void;
|
|
1761
|
+
calculateColumnWidths: (clear?: boolean) => void;
|
|
1762
|
+
selectVisibleRows: () => void;
|
|
1763
|
+
unselectVisibleRows: () => void;
|
|
1764
|
+
unselectRow: (id: string) => void;
|
|
1765
|
+
selectRow: (id: string) => void;
|
|
1766
|
+
setAutosize: () => void;
|
|
1767
|
+
removeAutosize: () => void;
|
|
1768
|
+
setColumnsOrder: (columnsOrder: string[]) => void;
|
|
1769
|
+
setColumnOrder: (columnId: string, index: number) => void;
|
|
1770
|
+
moveColumnLeft: (columnId: string) => void;
|
|
1771
|
+
moveColumnRight: (columnId: string) => void;
|
|
1772
|
+
}, resultFuncArgs_7: string[]) => TableColumnState[]) & {
|
|
3897
1773
|
clearCache: () => void;
|
|
3898
1774
|
resultsCount: () => number;
|
|
3899
1775
|
resetResultsCount: () => void;
|
|
3900
1776
|
};
|
|
3901
|
-
lastResult: () =>
|
|
3902
|
-
dependencies: [((
|
|
3903
|
-
|
|
3904
|
-
|
|
3905
|
-
|
|
3906
|
-
|
|
3907
|
-
|
|
3908
|
-
|
|
3909
|
-
|
|
3910
|
-
|
|
3911
|
-
|
|
3912
|
-
|
|
3913
|
-
|
|
3914
|
-
|
|
3915
|
-
|
|
3916
|
-
|
|
3917
|
-
|
|
3918
|
-
|
|
3919
|
-
|
|
3920
|
-
|
|
3921
|
-
|
|
3922
|
-
|
|
3923
|
-
|
|
3924
|
-
|
|
3925
|
-
|
|
3926
|
-
|
|
3927
|
-
|
|
3928
|
-
|
|
3929
|
-
|
|
3930
|
-
removeFilterRow: (id: string) => void;
|
|
3931
|
-
changeFilterRow: ({ id, ...newRow }: Pick<import('./store').TableFilterRow, "id"> & Partial<Omit<import('./store').TableFilterRow, "id">>) => void;
|
|
3932
|
-
setFilterCombiner: (combiner: "and" | "or") => void;
|
|
3933
|
-
clearFilter: () => void;
|
|
3934
|
-
setAutosize: () => void;
|
|
3935
|
-
removeAutosize: () => void;
|
|
3936
|
-
}) => TableColumnsProp<TableRowModel, TableColumnState>;
|
|
3937
|
-
memoizedResultFunc: ((resultFuncArgs_0: boolean, resultFuncArgs_1: string[], resultFuncArgs_2: boolean, resultFuncArgs_3: string[], resultFuncArgs_4: TableColumnsProp<TableRowModel, import('./types').TableColumnDef<TableRowModel>>, resultFuncArgs_5: Partial<Record<string, Partial<TableColumnState>>>, resultFuncArgs_6: {
|
|
3938
|
-
setPageSize: (v: number) => void;
|
|
3939
|
-
setPage: (v: number) => void;
|
|
3940
|
-
setSort: (v: import('./types').TableSortModel | null) => void;
|
|
3941
|
-
downloadCSV: () => void;
|
|
3942
|
-
downloadExcel: () => void;
|
|
3943
|
-
setSelected: (selected: string[]) => void;
|
|
3944
|
-
toggleColumn: (v: string) => void;
|
|
3945
|
-
setVisibleColumns: (v: string[]) => void;
|
|
3946
|
-
setSearch: (v: string) => void;
|
|
3947
|
-
setPrevPage: () => void;
|
|
3948
|
-
setNextPage: () => void;
|
|
3949
|
-
setColumnWidth: (field: string, setWidth: number) => void;
|
|
3950
|
-
toggleRowExpand: (id: string) => void;
|
|
3951
|
-
setHeaderWidth: (id: string, width: number) => void;
|
|
3952
|
-
setRootRef: (rootRef: HTMLDivElement) => void;
|
|
3953
|
-
setScrollRef: (scrollRef: HTMLDivElement) => void;
|
|
3954
|
-
calculateColumnWidths: (clear?: boolean) => void;
|
|
3955
|
-
selectVisibleRows: () => void;
|
|
3956
|
-
unselectVisibleRows: () => void;
|
|
3957
|
-
unselectRow: (id: string) => void;
|
|
3958
|
-
selectRow: (id: string) => void;
|
|
3959
|
-
addFilterRow: (field?: string) => void;
|
|
3960
|
-
removeFilterRow: (id: string) => void;
|
|
3961
|
-
changeFilterRow: ({ id, ...newRow }: Pick<import('./store').TableFilterRow, "id"> & Partial<Omit<import('./store').TableFilterRow, "id">>) => void;
|
|
3962
|
-
setFilterCombiner: (combiner: "and" | "or") => void;
|
|
3963
|
-
clearFilter: () => void;
|
|
3964
|
-
setAutosize: () => void;
|
|
3965
|
-
removeAutosize: () => void;
|
|
3966
|
-
}) => TableColumnsProp<TableRowModel, TableColumnState>) & {
|
|
3967
|
-
clearCache: () => void;
|
|
3968
|
-
resultsCount: () => number;
|
|
3969
|
-
resetResultsCount: () => void;
|
|
3970
|
-
};
|
|
3971
|
-
lastResult: () => TableColumnsProp<TableRowModel, TableColumnState>;
|
|
3972
|
-
dependencies: [(s: Store) => boolean, (s: Store) => string[], (s: Store) => boolean, (s: Store) => string[], (s: Store) => TableColumnsProp<TableRowModel, import('./types').TableColumnDef<TableRowModel>>, (s: Store) => Partial<Record<string, Partial<TableColumnState>>>, (s: Store) => {
|
|
3973
|
-
setPageSize: (v: number) => void;
|
|
3974
|
-
setPage: (v: number) => void;
|
|
3975
|
-
setSort: (v: import('./types').TableSortModel | null) => void;
|
|
3976
|
-
downloadCSV: () => void;
|
|
3977
|
-
downloadExcel: () => void;
|
|
3978
|
-
setSelected: (selected: string[]) => void;
|
|
3979
|
-
toggleColumn: (v: string) => void;
|
|
3980
|
-
setVisibleColumns: (v: string[]) => void;
|
|
3981
|
-
setSearch: (v: string) => void;
|
|
3982
|
-
setPrevPage: () => void;
|
|
3983
|
-
setNextPage: () => void;
|
|
3984
|
-
setColumnWidth: (field: string, setWidth: number) => void;
|
|
3985
|
-
toggleRowExpand: (id: string) => void;
|
|
3986
|
-
setHeaderWidth: (id: string, width: number) => void;
|
|
3987
|
-
setRootRef: (rootRef: HTMLDivElement) => void;
|
|
3988
|
-
setScrollRef: (scrollRef: HTMLDivElement) => void;
|
|
3989
|
-
calculateColumnWidths: (clear?: boolean) => void;
|
|
3990
|
-
selectVisibleRows: () => void;
|
|
3991
|
-
unselectVisibleRows: () => void;
|
|
3992
|
-
unselectRow: (id: string) => void;
|
|
3993
|
-
selectRow: (id: string) => void;
|
|
3994
|
-
addFilterRow: (field?: string) => void;
|
|
3995
|
-
removeFilterRow: (id: string) => void;
|
|
3996
|
-
changeFilterRow: ({ id, ...newRow }: Pick<import('./store').TableFilterRow, "id"> & Partial<Omit<import('./store').TableFilterRow, "id">>) => void;
|
|
3997
|
-
setFilterCombiner: (combiner: "and" | "or") => void;
|
|
3998
|
-
clearFilter: () => void;
|
|
3999
|
-
setAutosize: () => void;
|
|
4000
|
-
removeAutosize: () => void;
|
|
4001
|
-
}];
|
|
4002
|
-
recomputations: () => number;
|
|
4003
|
-
resetRecomputations: () => void;
|
|
4004
|
-
dependencyRecomputations: () => number;
|
|
4005
|
-
resetDependencyRecomputations: () => void;
|
|
4006
|
-
} & {
|
|
4007
|
-
memoize: typeof import('reselect').weakMapMemoize;
|
|
4008
|
-
argsMemoize: typeof import('reselect').weakMapMemoize;
|
|
4009
|
-
}];
|
|
1777
|
+
lastResult: () => TableColumnState[];
|
|
1778
|
+
dependencies: [(s: Store) => boolean, (s: Store) => string[], (s: Store) => boolean, (s: Store) => string[], (s: Store) => import('./types').TableColumnsProp<TableRowModel>, (s: Store) => Partial<Record<string, Partial<TableColumnState>>>, (s: Store) => {
|
|
1779
|
+
setPageSize: (v: number) => void;
|
|
1780
|
+
setPage: (v: number) => void;
|
|
1781
|
+
setSort: (v: import('./types').TableSortModel | null) => void;
|
|
1782
|
+
downloadCSV: () => void;
|
|
1783
|
+
downloadExcel: () => void;
|
|
1784
|
+
setSelected: (selected: string[]) => void;
|
|
1785
|
+
toggleColumn: (v: string) => void;
|
|
1786
|
+
setVisibleColumns: (v: string[]) => void;
|
|
1787
|
+
setSearch: (v: string) => void;
|
|
1788
|
+
setPrevPage: () => void;
|
|
1789
|
+
setNextPage: () => void;
|
|
1790
|
+
setColumnWidth: (field: string, setWidth: number) => void;
|
|
1791
|
+
toggleRowExpand: (id: string) => void;
|
|
1792
|
+
setRootRef: (rootRef: HTMLDivElement) => void;
|
|
1793
|
+
setScrollRef: (scrollRef: HTMLDivElement) => void;
|
|
1794
|
+
calculateColumnWidths: (clear?: boolean) => void;
|
|
1795
|
+
selectVisibleRows: () => void;
|
|
1796
|
+
unselectVisibleRows: () => void;
|
|
1797
|
+
unselectRow: (id: string) => void;
|
|
1798
|
+
selectRow: (id: string) => void;
|
|
1799
|
+
setAutosize: () => void;
|
|
1800
|
+
removeAutosize: () => void;
|
|
1801
|
+
setColumnsOrder: (columnsOrder: string[]) => void;
|
|
1802
|
+
setColumnOrder: (columnId: string, index: number) => void;
|
|
1803
|
+
moveColumnLeft: (columnId: string) => void;
|
|
1804
|
+
moveColumnRight: (columnId: string) => void;
|
|
1805
|
+
}, (s: Store) => string[]];
|
|
4010
1806
|
recomputations: () => number;
|
|
4011
1807
|
resetRecomputations: () => void;
|
|
4012
1808
|
dependencyRecomputations: () => number;
|
|
@@ -4039,4 +1835,3 @@ export declare const aggregationReselect: ((state: Store) => {
|
|
|
4039
1835
|
memoize: typeof import('reselect').weakMapMemoize;
|
|
4040
1836
|
argsMemoize: typeof import('reselect').weakMapMemoize;
|
|
4041
1837
|
};
|
|
4042
|
-
export {};
|