@economic/taco 2.55.1-footer.0 → 2.56.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/taco.cjs +147 -48
- package/dist/taco.cjs.map +1 -1
- package/dist/taco.d.ts +1 -0
- package/dist/taco.js +147 -48
- package/dist/taco.js.map +1 -1
- package/package.json +2 -2
package/dist/taco.d.ts
CHANGED
@@ -3105,6 +3105,7 @@ export declare type TableCommonProps<TType = unknown> = TableFeatureProps<TType>
|
|
3105
3105
|
defaultRowGroupColumnId?: keyof TType;
|
3106
3106
|
defaultSettings?: TableSettings;
|
3107
3107
|
emptyState?: TableEmptyStateRenderer;
|
3108
|
+
enableLocalKeyboardShortcuts?: boolean;
|
3108
3109
|
preset?: TablePreset;
|
3109
3110
|
rowActions?: TableRowActionRenderer<TType>[];
|
3110
3111
|
rowActionsForGroup?: TableRowActionGroupRenderer<TType>[];
|
package/dist/taco.js
CHANGED
@@ -31994,10 +31994,9 @@ function useTableDataLoader(fetchPage, fetchAll, options = { pageSize: DEFAULT_P
|
|
31994
31994
|
const _lastUsedSearch = React__default.useRef();
|
31995
31995
|
const _lastUsedHiddenColumns = React__default.useRef([]);
|
31996
31996
|
const _lastUsedPageIndex = React__default.useRef();
|
31997
|
-
const _forceReset = React__default.useRef(false);
|
31998
31997
|
const loadPage = async (pageIndex, sorting, filters, hiddenColumns) => {
|
31999
31998
|
let reset = false;
|
32000
|
-
if (
|
31999
|
+
if (JSON.stringify(sorting) !== JSON.stringify(_lastUsedSorting.current) || JSON.stringify(filters) !== JSON.stringify(_lastUsedFilters.current)) {
|
32001
32000
|
_pendingPageRequests.current = {};
|
32002
32001
|
reset = true;
|
32003
32002
|
}
|
@@ -32006,7 +32005,6 @@ function useTableDataLoader(fetchPage, fetchAll, options = { pageSize: DEFAULT_P
|
|
32006
32005
|
} else {
|
32007
32006
|
_pendingPageRequests.current[pageIndex] = true;
|
32008
32007
|
}
|
32009
|
-
_forceReset.current = false;
|
32010
32008
|
_lastUsedPageIndex.current = pageIndex;
|
32011
32009
|
_lastUsedSorting.current = sorting;
|
32012
32010
|
_lastUsedFilters.current = filters;
|
@@ -32050,12 +32048,41 @@ function useTableDataLoader(fetchPage, fetchAll, options = { pageSize: DEFAULT_P
|
|
32050
32048
|
} catch {
|
32051
32049
|
}
|
32052
32050
|
};
|
32051
|
+
const reloadCurrentPages = async (pageIndex, sorting, filters, hiddenColumns) => {
|
32052
|
+
_lastUsedPageIndex.current;
|
32053
|
+
const pageIndexes = pageIndex === 0 ? [0, 1] : [pageIndex - 1, pageIndex];
|
32054
|
+
if (length.current !== void 0) {
|
32055
|
+
const pageCount = Math.ceil(length.current / pageSize);
|
32056
|
+
if (pageIndex + 1 < pageCount) {
|
32057
|
+
pageIndexes.push(pageIndex + 1);
|
32058
|
+
}
|
32059
|
+
}
|
32060
|
+
_pendingPageRequests.current = pageIndexes.reduce((accum, index2) => ({ ...accum, [index2]: true }), {});
|
32061
|
+
_lastUsedPageIndex.current = pageIndex;
|
32062
|
+
_lastUsedSorting.current = sorting;
|
32063
|
+
_lastUsedFilters.current = filters;
|
32064
|
+
_lastUsedHiddenColumns.current = hiddenColumns;
|
32065
|
+
try {
|
32066
|
+
const responses = await Promise.all(
|
32067
|
+
pageIndexes.map((pageIndex2) => fetchPage(pageIndex2, pageSize, sorting, filters, hiddenColumns))
|
32068
|
+
);
|
32069
|
+
length.current = responses[0].length;
|
32070
|
+
const nextData = Array(length.current).fill(void 0);
|
32071
|
+
responses.forEach((response, index2) => {
|
32072
|
+
const startIndex = pageIndexes[index2] * pageSize;
|
32073
|
+
nextData.splice(startIndex, pageSize, ...response.data);
|
32074
|
+
});
|
32075
|
+
setData(nextData);
|
32076
|
+
} catch {
|
32077
|
+
} finally {
|
32078
|
+
_pendingPageRequests.current = {};
|
32079
|
+
}
|
32080
|
+
};
|
32053
32081
|
const invalidate = async () => {
|
32054
|
-
_forceReset.current = true;
|
32055
32082
|
if (_lastUsedSearch.current) {
|
32056
32083
|
return loadAll(_lastUsedSorting.current, _lastUsedFilters.current, _lastUsedHiddenColumns.current);
|
32057
32084
|
} else {
|
32058
|
-
return
|
32085
|
+
return reloadCurrentPages(
|
32059
32086
|
_lastUsedPageIndex.current ?? 0,
|
32060
32087
|
_lastUsedSorting.current,
|
32061
32088
|
_lastUsedFilters.current,
|
@@ -32067,7 +32094,12 @@ function useTableDataLoader(fetchPage, fetchAll, options = { pageSize: DEFAULT_P
|
|
32067
32094
|
if (_lastUsedSearch.current) {
|
32068
32095
|
return loadAll(sorting, _lastUsedFilters.current, _lastUsedHiddenColumns.current);
|
32069
32096
|
} else {
|
32070
|
-
return
|
32097
|
+
return reloadCurrentPages(
|
32098
|
+
_lastUsedPageIndex.current ?? 0,
|
32099
|
+
sorting,
|
32100
|
+
_lastUsedFilters.current,
|
32101
|
+
_lastUsedHiddenColumns.current
|
32102
|
+
);
|
32071
32103
|
}
|
32072
32104
|
};
|
32073
32105
|
const handleFilter = async (filters) => {
|
@@ -32361,9 +32393,10 @@ function useTableSettingsListener(table, onChangeSettings) {
|
|
32361
32393
|
state.sorting
|
32362
32394
|
]);
|
32363
32395
|
}
|
32364
|
-
function useTableShortcutsListener(table, shortcuts) {
|
32396
|
+
function useTableShortcutsListener(table, tableRef, shortcuts, localShortcuts = false) {
|
32365
32397
|
const meta = table.options.meta;
|
32366
32398
|
const rows = table.getRowModel().rows;
|
32399
|
+
const listenerTarget = localShortcuts ? tableRef.current : document;
|
32367
32400
|
React__default.useEffect(() => {
|
32368
32401
|
const shortcutKeys = Object.keys(shortcuts ?? {});
|
32369
32402
|
const globalHandlers = [];
|
@@ -32396,18 +32429,38 @@ function useTableShortcutsListener(table, shortcuts) {
|
|
32396
32429
|
});
|
32397
32430
|
}
|
32398
32431
|
globalHandlers.forEach((handler) => {
|
32399
|
-
|
32432
|
+
listenerTarget == null ? void 0 : listenerTarget.addEventListener("keydown", handler);
|
32400
32433
|
});
|
32401
32434
|
return () => {
|
32402
32435
|
globalHandlers.forEach((handler) => {
|
32403
|
-
|
32436
|
+
listenerTarget == null ? void 0 : listenerTarget.removeEventListener("keydown", handler);
|
32404
32437
|
});
|
32405
32438
|
};
|
32406
32439
|
}, [shortcuts, meta.rowActive.rowActiveIndex, rows.length]);
|
32407
32440
|
}
|
32441
|
+
function useLazyDebouncedEffect(effect, deps, ms = 200) {
|
32442
|
+
const readyRef = React__default.useRef(false);
|
32443
|
+
const timeoutRef = React__default.useRef();
|
32444
|
+
React__default.useEffect(() => {
|
32445
|
+
if (readyRef.current) {
|
32446
|
+
timeoutRef.current = setTimeout(effect, ms);
|
32447
|
+
} else {
|
32448
|
+
readyRef.current = true;
|
32449
|
+
}
|
32450
|
+
return () => {
|
32451
|
+
clearTimeout(timeoutRef.current);
|
32452
|
+
};
|
32453
|
+
}, deps);
|
32454
|
+
React__default.useEffect(
|
32455
|
+
() => () => {
|
32456
|
+
readyRef.current = false;
|
32457
|
+
},
|
32458
|
+
[]
|
32459
|
+
);
|
32460
|
+
}
|
32408
32461
|
function useTableSortingListener$1(table, onSort) {
|
32409
32462
|
const sorting = table.getState().sorting;
|
32410
|
-
|
32463
|
+
useLazyDebouncedEffect(() => {
|
32411
32464
|
if (table.options.enableSorting && typeof onSort === "function") {
|
32412
32465
|
onSort(sorting);
|
32413
32466
|
if (table.options.enableRowSelection) {
|
@@ -32425,6 +32478,9 @@ function useTableServerLoadingListener(table, loadPage) {
|
|
32425
32478
|
const hiddenColumns = getHiddenColumns(table.getState().columnVisibility);
|
32426
32479
|
const search = meta.search.enableGlobalFilter ? table.getState().globalFilter : void 0;
|
32427
32480
|
loadPage(0, sorting, columnFilters, hiddenColumns, search);
|
32481
|
+
if (meta.server._experimentalDataLoader2) {
|
32482
|
+
loadPage(1, sorting, columnFilters, hiddenColumns, search);
|
32483
|
+
}
|
32428
32484
|
}
|
32429
32485
|
}, []);
|
32430
32486
|
}
|
@@ -32444,7 +32500,7 @@ function useTableRowDrop(isEnabled = false, onRowDrop) {
|
|
32444
32500
|
};
|
32445
32501
|
}
|
32446
32502
|
const DEFAULT_EMPTY_ARRAY = [];
|
32447
|
-
function useTableManager(props, meta, internalColumns) {
|
32503
|
+
function useTableManager(props, ref, meta, internalColumns) {
|
32448
32504
|
var _a;
|
32449
32505
|
const localization = useLocalization();
|
32450
32506
|
const safeId = props.id.replace(".", "_");
|
@@ -32543,7 +32599,7 @@ function useTableManager(props, meta, internalColumns) {
|
|
32543
32599
|
useTableSearchListener(instance);
|
32544
32600
|
useTableServerLoadingListener(instance, server.loadPage);
|
32545
32601
|
useTableSettingsListener(instance, setSettings);
|
32546
|
-
useTableShortcutsListener(instance, props.shortcuts);
|
32602
|
+
useTableShortcutsListener(instance, ref, props.shortcuts, props.enableLocalKeyboardShortcuts);
|
32547
32603
|
useTableSortingListener$1(instance, props.onChangeSort);
|
32548
32604
|
return {
|
32549
32605
|
id: safeId,
|
@@ -32733,9 +32789,10 @@ function getCellWidthPadding(fontSize) {
|
|
32733
32789
|
return "16px";
|
32734
32790
|
}
|
32735
32791
|
}
|
32736
|
-
function useTableGlobalShortcuts(table, tableRef, scrollToIndex) {
|
32792
|
+
function useTableGlobalShortcuts(table, tableRef, scrollToIndex, localShortcuts = false) {
|
32737
32793
|
const tableMeta = table.options.meta;
|
32738
32794
|
const rows = table.getRowModel().rows;
|
32795
|
+
const listenerTarget = localShortcuts ? tableRef.current : document;
|
32739
32796
|
React__default.useEffect(
|
32740
32797
|
() => {
|
32741
32798
|
const handleKeyDown = (event) => {
|
@@ -32750,9 +32807,9 @@ function useTableGlobalShortcuts(table, tableRef, scrollToIndex) {
|
|
32750
32807
|
tableMeta.rowClick.handleKeyDown(event, (_a = rows[tableMeta.rowActive.rowActiveIndex]) == null ? void 0 : _a.original);
|
32751
32808
|
}
|
32752
32809
|
};
|
32753
|
-
|
32810
|
+
listenerTarget == null ? void 0 : listenerTarget.addEventListener("keydown", handleKeyDown);
|
32754
32811
|
return () => {
|
32755
|
-
|
32812
|
+
listenerTarget == null ? void 0 : listenerTarget.removeEventListener("keydown", handleKeyDown);
|
32756
32813
|
};
|
32757
32814
|
},
|
32758
32815
|
// scrollToIndex function changes when row count changes, so it is important to update handlers
|
@@ -33596,7 +33653,7 @@ function RowWithServerLoading(props) {
|
|
33596
33653
|
}
|
33597
33654
|
const Skeleton = React__default.forwardRef(function Skeleton2(props, ref) {
|
33598
33655
|
const { cellsCount, index: index2 } = props;
|
33599
|
-
return /* @__PURE__ */ React__default.createElement("tr", { "data-row-index": index2, ref }, Array(cellsCount).fill(null).map((_, index22) => /* @__PURE__ */ React__default.createElement("td", { key: index22 }, /* @__PURE__ */ React__default.createElement("span", { className: "bg-grey-100 text-grey-700 h-4 w-full text-center text-xs" }))));
|
33656
|
+
return /* @__PURE__ */ React__default.createElement("tr", { "data-row-index": index2, "data-row-id": index2, ref }, Array(cellsCount).fill(null).map((_, index22) => /* @__PURE__ */ React__default.createElement("td", { key: index22 }, /* @__PURE__ */ React__default.createElement("span", { className: "bg-grey-100 text-grey-700 h-4 w-full text-center text-xs" }))));
|
33600
33657
|
});
|
33601
33658
|
function getScrollPaddingEndOffset(table) {
|
33602
33659
|
const tableMeta = table.options.meta;
|
@@ -34058,7 +34115,7 @@ const INTERNAL_RENDERERS = {
|
|
34058
34115
|
};
|
34059
34116
|
function useTable$1(props, externalRef, renderers, meta, options) {
|
34060
34117
|
const ref = useMergedRef(externalRef);
|
34061
|
-
const manager = useTableManager(props, meta, INTERNAL_RENDERERS);
|
34118
|
+
const manager = useTableManager(props, ref, meta, INTERNAL_RENDERERS);
|
34062
34119
|
const renderer2 = useTableRenderer(
|
34063
34120
|
renderers,
|
34064
34121
|
manager.instance,
|
@@ -34068,7 +34125,7 @@ function useTable$1(props, externalRef, renderers, meta, options) {
|
|
34068
34125
|
options
|
34069
34126
|
);
|
34070
34127
|
const { style, stylesheet } = useTableStyle(manager.id, manager.instance);
|
34071
|
-
useTableGlobalShortcuts(manager.instance, ref, renderer2.scrollToIndex);
|
34128
|
+
useTableGlobalShortcuts(manager.instance, ref, renderer2.scrollToIndex, props.enableLocalKeyboardShortcuts);
|
34072
34129
|
useTableRef(manager.instance, ref);
|
34073
34130
|
useTableRowActiveListener(manager.instance, ref);
|
34074
34131
|
return {
|
@@ -83989,43 +84046,57 @@ Navigation24.Link = Link3;
|
|
83989
84046
|
Navigation24.Section = Section;
|
83990
84047
|
Navigation24.Content = Content;
|
83991
84048
|
const DATASET_SIZE_MULTIPLIER = 15;
|
84049
|
+
function getDataKey(sorting, filters, hiddenColumns, search) {
|
84050
|
+
return [JSON.stringify(sorting), JSON.stringify(filters), JSON.stringify(hiddenColumns), JSON.stringify(search)].join("_");
|
84051
|
+
}
|
83992
84052
|
function useTableDataLoader2(fetchPage, fetchAll, options = { pageSize: DEFAULT_PAGE_SIZE$1 }) {
|
83993
84053
|
const { pageSize } = options;
|
83994
84054
|
const DATASET_SIZE = DATASET_SIZE_MULTIPLIER * pageSize;
|
83995
84055
|
const length = React__default.useRef(0);
|
83996
84056
|
const [data, setData] = React__default.useState({ rows: [], pages: [], cache: {}, lastFetchedPage: void 0 });
|
83997
84057
|
const _pendingPageRequests = React__default.useRef({});
|
83998
|
-
const _lastRequestId = React__default.useRef();
|
83999
84058
|
const _lastUsedSorting = React__default.useRef([]);
|
84000
84059
|
const _lastUsedFilters = React__default.useRef([]);
|
84001
|
-
const _lastUsedSearch = React__default.useRef();
|
84002
84060
|
const _lastUsedHiddenColumns = React__default.useRef([]);
|
84003
|
-
|
84004
|
-
|
84005
|
-
|
84006
|
-
|
84007
|
-
|
84008
|
-
|
84009
|
-
|
84061
|
+
const _lastUsedSearch = React__default.useRef();
|
84062
|
+
async function loadPage(pageIndex, sorting, filters, hiddenColumns, search) {
|
84063
|
+
const hasDataChanged = JSON.stringify(sorting) !== JSON.stringify(_lastUsedSorting.current) || JSON.stringify(filters) !== JSON.stringify(_lastUsedFilters.current) || JSON.stringify(hiddenColumns) !== JSON.stringify(_lastUsedHiddenColumns.current) || search !== _lastUsedSearch.current;
|
84064
|
+
if (hasDataChanged) {
|
84065
|
+
_lastUsedSorting.current = sorting;
|
84066
|
+
_lastUsedFilters.current = filters;
|
84067
|
+
_lastUsedSearch.current = search;
|
84068
|
+
_lastUsedHiddenColumns.current = hiddenColumns;
|
84069
|
+
_pendingPageRequests.current = {};
|
84070
|
+
} else {
|
84071
|
+
if (_pendingPageRequests.current[pageIndex]) {
|
84072
|
+
return;
|
84073
|
+
}
|
84074
|
+
if (data.cache[pageIndex] && data.cache[pageIndex][0]) {
|
84075
|
+
return;
|
84076
|
+
}
|
84010
84077
|
}
|
84011
|
-
const
|
84012
|
-
_pendingPageRequests.current[pageIndex] =
|
84078
|
+
const dataKey = getDataKey(sorting, filters, hiddenColumns, search);
|
84079
|
+
_pendingPageRequests.current[pageIndex] = dataKey;
|
84013
84080
|
try {
|
84014
|
-
_lastRequestId.current = requestId;
|
84015
84081
|
const response = await fetchPage(pageIndex, pageSize, sorting, filters, hiddenColumns, search);
|
84082
|
+
if (dataKey !== _pendingPageRequests.current[pageIndex]) {
|
84083
|
+
return;
|
84084
|
+
}
|
84016
84085
|
length.current = response.length;
|
84017
84086
|
setData((currentData) => {
|
84018
|
-
if (_lastRequestId.current !== requestId) {
|
84019
|
-
return currentData;
|
84020
|
-
}
|
84021
84087
|
const direction = getDirection(pageIndex, currentData.pages);
|
84022
|
-
const nextPages = getPages(
|
84088
|
+
const nextPages = getPages(
|
84089
|
+
pageIndex,
|
84090
|
+
currentData.lastFetchedPage,
|
84091
|
+
hasDataChanged ? [] : currentData.pages,
|
84092
|
+
direction
|
84093
|
+
);
|
84023
84094
|
_lastUsedSorting.current = sorting;
|
84024
84095
|
_lastUsedFilters.current = filters;
|
84025
84096
|
_lastUsedSearch.current = search;
|
84026
84097
|
_lastUsedHiddenColumns.current = hiddenColumns;
|
84027
84098
|
let nextCache;
|
84028
|
-
if (
|
84099
|
+
if (hasDataChanged || !direction) {
|
84029
84100
|
nextCache = nextPages.reduce((acc, p2) => ({ ...acc, [p2]: Array(pageSize).fill(void 0) }), {});
|
84030
84101
|
} else {
|
84031
84102
|
nextCache = { ...currentData.cache };
|
@@ -84044,7 +84115,9 @@ function useTableDataLoader2(fetchPage, fetchAll, options = { pageSize: DEFAULT_
|
|
84044
84115
|
lastFetchedPage: pageIndex
|
84045
84116
|
};
|
84046
84117
|
});
|
84047
|
-
|
84118
|
+
requestAnimationFrame(() => {
|
84119
|
+
delete _pendingPageRequests.current[pageIndex];
|
84120
|
+
});
|
84048
84121
|
} catch {
|
84049
84122
|
}
|
84050
84123
|
}
|
@@ -84075,35 +84148,61 @@ function useTableDataLoader2(fetchPage, fetchAll, options = { pageSize: DEFAULT_
|
|
84075
84148
|
_pendingPageRequests.current = {};
|
84076
84149
|
}
|
84077
84150
|
};
|
84151
|
+
async function reloadCurrentPages(currentPageIndex, sorting, filters, hiddenColumns, search) {
|
84152
|
+
const index2 = data.pages.indexOf(currentPageIndex);
|
84153
|
+
const pageIndexes = [data.pages[index2 - 1], currentPageIndex, data.pages[index2 + 1]].filter((x3) => x3 !== void 0);
|
84154
|
+
const dataKey = getDataKey(sorting, filters, hiddenColumns, search);
|
84155
|
+
_pendingPageRequests.current = pageIndexes.reduce((accum, index22) => ({ ...accum, [index22]: dataKey }), {});
|
84156
|
+
try {
|
84157
|
+
const responses = await Promise.all(
|
84158
|
+
pageIndexes.map((pageIndex) => fetchPage(pageIndex, pageSize, sorting, filters, hiddenColumns, search))
|
84159
|
+
);
|
84160
|
+
length.current = responses[0].length;
|
84161
|
+
const nextPages = pageIndexes;
|
84162
|
+
_lastUsedSorting.current = sorting;
|
84163
|
+
_lastUsedFilters.current = filters;
|
84164
|
+
_lastUsedSearch.current = search;
|
84165
|
+
_lastUsedHiddenColumns.current = hiddenColumns;
|
84166
|
+
const nextCache = nextPages.reduce(
|
84167
|
+
(acc, p2, index22) => ({ ...acc, [p2]: responses[index22].data }),
|
84168
|
+
{}
|
84169
|
+
);
|
84170
|
+
const rows = Object.values(nextCache).reduce((acc, p2) => acc.concat(p2), []);
|
84171
|
+
setData({
|
84172
|
+
cache: nextCache,
|
84173
|
+
pages: nextPages,
|
84174
|
+
rows,
|
84175
|
+
lastFetchedPage: pageIndexes[pageIndexes.length - 1]
|
84176
|
+
});
|
84177
|
+
requestAnimationFrame(() => {
|
84178
|
+
_pendingPageRequests.current = {};
|
84179
|
+
});
|
84180
|
+
} catch {
|
84181
|
+
}
|
84182
|
+
}
|
84078
84183
|
const invalidate = async () => {
|
84079
|
-
|
84080
|
-
return loadPage(
|
84184
|
+
return reloadCurrentPages(
|
84081
84185
|
getCurrentPage(data.pages),
|
84082
84186
|
_lastUsedSorting.current,
|
84083
84187
|
_lastUsedFilters.current,
|
84084
84188
|
_lastUsedHiddenColumns.current,
|
84085
|
-
_lastUsedSearch.current
|
84086
|
-
true
|
84189
|
+
_lastUsedSearch.current
|
84087
84190
|
);
|
84088
84191
|
};
|
84089
84192
|
const handleSort = async (sorting) => {
|
84090
|
-
|
84091
|
-
return loadPage(
|
84193
|
+
return reloadCurrentPages(
|
84092
84194
|
getCurrentPage(data.pages),
|
84093
84195
|
sorting,
|
84094
84196
|
_lastUsedFilters.current,
|
84095
84197
|
_lastUsedHiddenColumns.current,
|
84096
|
-
_lastUsedSearch.current
|
84097
|
-
true
|
84198
|
+
_lastUsedSearch.current
|
84098
84199
|
);
|
84099
84200
|
};
|
84100
84201
|
const handleFilter = async (filters, hiddenColumns) => {
|
84101
|
-
|
84102
|
-
return loadPage(0, _lastUsedSorting.current, filters, hiddenColumns, _lastUsedSearch.current, true);
|
84202
|
+
return loadPage(0, _lastUsedSorting.current, filters, hiddenColumns, _lastUsedSearch.current);
|
84103
84203
|
};
|
84104
84204
|
const handleSearch = async (search, hiddenColumns) => {
|
84105
|
-
|
84106
|
-
return loadPage(0, _lastUsedSorting.current, _lastUsedFilters.current, hiddenColumns, search, true);
|
84205
|
+
return loadPage(0, _lastUsedSorting.current, _lastUsedFilters.current, hiddenColumns, search);
|
84107
84206
|
};
|
84108
84207
|
return [
|
84109
84208
|
{
|