@procore/data-table 14.45.0 → 14.46.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +13 -0
- package/dist/legacy/index.cjs +348 -147
- package/dist/legacy/index.d.cts +2 -0
- package/dist/legacy/index.d.ts +2 -0
- package/dist/legacy/index.js +348 -147
- package/dist/modern/index.cjs +347 -147
- package/dist/modern/index.d.cts +2 -0
- package/dist/modern/index.d.ts +2 -0
- package/dist/modern/index.js +347 -147
- package/package.json +3 -3
package/dist/modern/index.cjs
CHANGED
|
@@ -57785,6 +57785,7 @@ var ServerSideSearch = ({
|
|
|
57785
57785
|
const { updateServerSideDataSource } = useInternalTableContext();
|
|
57786
57786
|
const hasNoContent = useTableHasNoContent();
|
|
57787
57787
|
const I18n = coreReact.useI18nContext();
|
|
57788
|
+
const resolvedPlaceholder = placeholder || I18n.t("dataTable.search");
|
|
57788
57789
|
const debouncedSetSearchValue = React80__default.default.useCallback(
|
|
57789
57790
|
debounce5__default.default((value) => {
|
|
57790
57791
|
updateServerSideDataSource({ search: value });
|
|
@@ -57809,7 +57810,8 @@ var ServerSideSearch = ({
|
|
|
57809
57810
|
value: internalValue,
|
|
57810
57811
|
className: cx17("search", { "search--empty": !internalValue.length }),
|
|
57811
57812
|
onChange,
|
|
57812
|
-
placeholder:
|
|
57813
|
+
placeholder: resolvedPlaceholder,
|
|
57814
|
+
"aria-label": resolvedPlaceholder
|
|
57813
57815
|
}
|
|
57814
57816
|
));
|
|
57815
57817
|
};
|
|
@@ -57867,7 +57869,9 @@ var InternalTableContext = React80__default.default.createContext({
|
|
|
57867
57869
|
totalRowCount: 0,
|
|
57868
57870
|
setTotalRowCount: () => {
|
|
57869
57871
|
},
|
|
57870
|
-
hasDuplicateRowIds: false
|
|
57872
|
+
hasDuplicateRowIds: false,
|
|
57873
|
+
filtersPanelId: void 0,
|
|
57874
|
+
filtersBodyId: void 0
|
|
57871
57875
|
});
|
|
57872
57876
|
var useInternalTableContext = () => React80__default.default.useContext(InternalTableContext);
|
|
57873
57877
|
var prng = ulid$1.detectPrng(true);
|
|
@@ -103279,10 +103283,103 @@ function $8ae05eaa5c114e9c$export$7f54fc3180508a52(fn) {
|
|
|
103279
103283
|
return f === null || f === void 0 ? void 0 : f(...args);
|
|
103280
103284
|
}, []);
|
|
103281
103285
|
}
|
|
103286
|
+
var $b5e257d569688ac6$var$defaultContext = {
|
|
103287
|
+
prefix: String(Math.round(Math.random() * 1e10)),
|
|
103288
|
+
current: 0
|
|
103289
|
+
};
|
|
103290
|
+
var $b5e257d569688ac6$var$SSRContext = /* @__PURE__ */ (React80__default.default).createContext($b5e257d569688ac6$var$defaultContext);
|
|
103291
|
+
var $b5e257d569688ac6$var$IsSSRContext = /* @__PURE__ */ (React80__default.default).createContext(false);
|
|
103292
|
+
var $b5e257d569688ac6$var$canUseDOM = Boolean(typeof window !== "undefined" && window.document && window.document.createElement);
|
|
103293
|
+
var $b5e257d569688ac6$var$componentIds = /* @__PURE__ */ new WeakMap();
|
|
103294
|
+
function $b5e257d569688ac6$var$useCounter(isDisabled = false) {
|
|
103295
|
+
let ctx = (React80.useContext)($b5e257d569688ac6$var$SSRContext);
|
|
103296
|
+
let ref = (React80.useRef)(null);
|
|
103297
|
+
if (ref.current === null && !isDisabled) {
|
|
103298
|
+
var _React___SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED_ReactCurrentOwner, _React___SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;
|
|
103299
|
+
let currentOwner = (_React___SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED = (React80__default.default).__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED) === null || _React___SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED === void 0 ? void 0 : (_React___SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED_ReactCurrentOwner = _React___SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner) === null || _React___SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED_ReactCurrentOwner === void 0 ? void 0 : _React___SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED_ReactCurrentOwner.current;
|
|
103300
|
+
if (currentOwner) {
|
|
103301
|
+
let prevComponentValue = $b5e257d569688ac6$var$componentIds.get(currentOwner);
|
|
103302
|
+
if (prevComponentValue == null)
|
|
103303
|
+
$b5e257d569688ac6$var$componentIds.set(currentOwner, {
|
|
103304
|
+
id: ctx.current,
|
|
103305
|
+
state: currentOwner.memoizedState
|
|
103306
|
+
});
|
|
103307
|
+
else if (currentOwner.memoizedState !== prevComponentValue.state) {
|
|
103308
|
+
ctx.current = prevComponentValue.id;
|
|
103309
|
+
$b5e257d569688ac6$var$componentIds.delete(currentOwner);
|
|
103310
|
+
}
|
|
103311
|
+
}
|
|
103312
|
+
ref.current = ++ctx.current;
|
|
103313
|
+
}
|
|
103314
|
+
return ref.current;
|
|
103315
|
+
}
|
|
103316
|
+
function $b5e257d569688ac6$var$useLegacySSRSafeId(defaultId) {
|
|
103317
|
+
let ctx = (React80.useContext)($b5e257d569688ac6$var$SSRContext);
|
|
103318
|
+
if (ctx === $b5e257d569688ac6$var$defaultContext && !$b5e257d569688ac6$var$canUseDOM && process.env.NODE_ENV !== "production") console.warn("When server rendering, you must wrap your application in an <SSRProvider> to ensure consistent ids are generated between the client and server.");
|
|
103319
|
+
let counter2 = $b5e257d569688ac6$var$useCounter(!!defaultId);
|
|
103320
|
+
let prefix = ctx === $b5e257d569688ac6$var$defaultContext && process.env.NODE_ENV === "test" ? "react-aria" : `react-aria${ctx.prefix}`;
|
|
103321
|
+
return defaultId || `${prefix}-${counter2}`;
|
|
103322
|
+
}
|
|
103323
|
+
function $b5e257d569688ac6$var$useModernSSRSafeId(defaultId) {
|
|
103324
|
+
let id = (React80__default.default).useId();
|
|
103325
|
+
let [didSSR] = (React80.useState)($b5e257d569688ac6$export$535bd6ca7f90a273());
|
|
103326
|
+
let prefix = didSSR || process.env.NODE_ENV === "test" ? "react-aria" : `react-aria${$b5e257d569688ac6$var$defaultContext.prefix}`;
|
|
103327
|
+
return defaultId || `${prefix}-${id}`;
|
|
103328
|
+
}
|
|
103329
|
+
var $b5e257d569688ac6$export$619500959fc48b26 = typeof (React80__default.default)["useId"] === "function" ? $b5e257d569688ac6$var$useModernSSRSafeId : $b5e257d569688ac6$var$useLegacySSRSafeId;
|
|
103330
|
+
function $b5e257d569688ac6$var$getSnapshot() {
|
|
103331
|
+
return false;
|
|
103332
|
+
}
|
|
103333
|
+
function $b5e257d569688ac6$var$getServerSnapshot() {
|
|
103334
|
+
return true;
|
|
103335
|
+
}
|
|
103336
|
+
function $b5e257d569688ac6$var$subscribe(onStoreChange) {
|
|
103337
|
+
return () => {
|
|
103338
|
+
};
|
|
103339
|
+
}
|
|
103340
|
+
function $b5e257d569688ac6$export$535bd6ca7f90a273() {
|
|
103341
|
+
if (typeof (React80__default.default)["useSyncExternalStore"] === "function") return (React80__default.default)["useSyncExternalStore"]($b5e257d569688ac6$var$subscribe, $b5e257d569688ac6$var$getSnapshot, $b5e257d569688ac6$var$getServerSnapshot);
|
|
103342
|
+
return (React80.useContext)($b5e257d569688ac6$var$IsSSRContext);
|
|
103343
|
+
}
|
|
103344
|
+
|
|
103345
|
+
// ../../node_modules/@react-aria/utils/dist/useId.mjs
|
|
103346
|
+
var $bdb11010cef70236$var$canUseDOM = Boolean(typeof window !== "undefined" && window.document && window.document.createElement);
|
|
103282
103347
|
var $bdb11010cef70236$export$d41a04c74483c6ef = /* @__PURE__ */ new Map();
|
|
103283
|
-
|
|
103348
|
+
var $bdb11010cef70236$var$registry;
|
|
103349
|
+
if (typeof FinalizationRegistry !== "undefined") $bdb11010cef70236$var$registry = new FinalizationRegistry((heldValue) => {
|
|
103284
103350
|
$bdb11010cef70236$export$d41a04c74483c6ef.delete(heldValue);
|
|
103285
103351
|
});
|
|
103352
|
+
function $bdb11010cef70236$export$f680877a34711e37(defaultId) {
|
|
103353
|
+
let [value, setValue] = (React80.useState)(defaultId);
|
|
103354
|
+
let nextId = (React80.useRef)(null);
|
|
103355
|
+
let res = ($b5e257d569688ac6$export$619500959fc48b26)(value);
|
|
103356
|
+
let cleanupRef = (React80.useRef)(null);
|
|
103357
|
+
if ($bdb11010cef70236$var$registry) $bdb11010cef70236$var$registry.register(cleanupRef, res);
|
|
103358
|
+
if ($bdb11010cef70236$var$canUseDOM) {
|
|
103359
|
+
const cacheIdRef = $bdb11010cef70236$export$d41a04c74483c6ef.get(res);
|
|
103360
|
+
if (cacheIdRef && !cacheIdRef.includes(nextId)) cacheIdRef.push(nextId);
|
|
103361
|
+
else $bdb11010cef70236$export$d41a04c74483c6ef.set(res, [
|
|
103362
|
+
nextId
|
|
103363
|
+
]);
|
|
103364
|
+
}
|
|
103365
|
+
($f0a04ccd8dbdd83b$export$e5c5a5f917a5871c)(() => {
|
|
103366
|
+
let r2 = res;
|
|
103367
|
+
return () => {
|
|
103368
|
+
if ($bdb11010cef70236$var$registry) $bdb11010cef70236$var$registry.unregister(cleanupRef);
|
|
103369
|
+
$bdb11010cef70236$export$d41a04c74483c6ef.delete(r2);
|
|
103370
|
+
};
|
|
103371
|
+
}, [
|
|
103372
|
+
res
|
|
103373
|
+
]);
|
|
103374
|
+
(React80.useEffect)(() => {
|
|
103375
|
+
let newId = nextId.current;
|
|
103376
|
+
if (newId) setValue(newId);
|
|
103377
|
+
return () => {
|
|
103378
|
+
if (newId) nextId.current = null;
|
|
103379
|
+
};
|
|
103380
|
+
});
|
|
103381
|
+
return res;
|
|
103382
|
+
}
|
|
103286
103383
|
function $bdb11010cef70236$export$cd8c9cb68f842629(idA, idB) {
|
|
103287
103384
|
if (idA === idB) return idA;
|
|
103288
103385
|
let setIdsA = $bdb11010cef70236$export$d41a04c74483c6ef.get(idA);
|
|
@@ -105012,7 +105109,8 @@ var de_DE_default = {
|
|
|
105012
105109
|
exporting: "Wird exportiert\xA0\u2026",
|
|
105013
105110
|
filters: {
|
|
105014
105111
|
filters: "Filter",
|
|
105015
|
-
allFilters: "
|
|
105112
|
+
allFilters: "Alle Filter",
|
|
105113
|
+
moreFilters: "Weitere Filter",
|
|
105016
105114
|
clearAllFilters: "Alle Filter zur\xFCcksetzen",
|
|
105017
105115
|
close: "Schlie\xDFen",
|
|
105018
105116
|
removeFilterToken: "%{name} entfernen",
|
|
@@ -105031,6 +105129,7 @@ var de_DE_default = {
|
|
|
105031
105129
|
options: {
|
|
105032
105130
|
any_value: "Beliebiger Wert",
|
|
105033
105131
|
is_between: "Ist zwischen",
|
|
105132
|
+
is_equal_to: "Ist gleich",
|
|
105034
105133
|
greater_than: "Ist gr\xF6\xDFer als",
|
|
105035
105134
|
greater_than_equal_to: "Ist gr\xF6\xDFer als oder gleich",
|
|
105036
105135
|
less_than: "Ist kleiner als",
|
|
@@ -105109,7 +105208,7 @@ var de_DE_default = {
|
|
|
105109
105208
|
placeholder: "W\xE4hrung eingeben"
|
|
105110
105209
|
},
|
|
105111
105210
|
linkCell: {
|
|
105112
|
-
externalLabel: "
|
|
105211
|
+
externalLabel: "Externen Link \xF6ffnen"
|
|
105113
105212
|
},
|
|
105114
105213
|
numberCell: {
|
|
105115
105214
|
placeholder: "Nummer eingeben"
|
|
@@ -105191,7 +105290,8 @@ var en_AU_default = {
|
|
|
105191
105290
|
exporting: "Exporting...",
|
|
105192
105291
|
filters: {
|
|
105193
105292
|
filters: "Filters",
|
|
105194
|
-
allFilters: "All
|
|
105293
|
+
allFilters: "All filters",
|
|
105294
|
+
moreFilters: "More filters",
|
|
105195
105295
|
clearAllFilters: "Clear all filters",
|
|
105196
105296
|
close: "Close",
|
|
105197
105297
|
removeFilterToken: "Remove %{name}",
|
|
@@ -105210,6 +105310,7 @@ var en_AU_default = {
|
|
|
105210
105310
|
options: {
|
|
105211
105311
|
any_value: "Any value",
|
|
105212
105312
|
is_between: "Is between",
|
|
105313
|
+
is_equal_to: "Is equal to",
|
|
105213
105314
|
greater_than: "Is greater than",
|
|
105214
105315
|
greater_than_equal_to: "Is greater than or equal to",
|
|
105215
105316
|
less_than: "Is less than",
|
|
@@ -105370,7 +105471,8 @@ var en_CA_default = {
|
|
|
105370
105471
|
exporting: "Exporting...",
|
|
105371
105472
|
filters: {
|
|
105372
105473
|
filters: "Filters",
|
|
105373
|
-
allFilters: "All
|
|
105474
|
+
allFilters: "All filters",
|
|
105475
|
+
moreFilters: "More filters",
|
|
105374
105476
|
clearAllFilters: "Clear all filters",
|
|
105375
105477
|
close: "Close",
|
|
105376
105478
|
removeFilterToken: "Remove %{name}",
|
|
@@ -105389,6 +105491,7 @@ var en_CA_default = {
|
|
|
105389
105491
|
options: {
|
|
105390
105492
|
any_value: "Any value",
|
|
105391
105493
|
is_between: "Is between",
|
|
105494
|
+
is_equal_to: "Is equal to",
|
|
105392
105495
|
greater_than: "Is greater than",
|
|
105393
105496
|
greater_than_equal_to: "Is greater than or equal to",
|
|
105394
105497
|
less_than: "Is less than",
|
|
@@ -105549,7 +105652,8 @@ var en_GB_default = {
|
|
|
105549
105652
|
exporting: "Exporting...",
|
|
105550
105653
|
filters: {
|
|
105551
105654
|
filters: "Filters",
|
|
105552
|
-
allFilters: "All
|
|
105655
|
+
allFilters: "All filters",
|
|
105656
|
+
moreFilters: "More filters",
|
|
105553
105657
|
clearAllFilters: "Clear all filters",
|
|
105554
105658
|
close: "Close",
|
|
105555
105659
|
removeFilterToken: "Remove %{name}",
|
|
@@ -105568,6 +105672,7 @@ var en_GB_default = {
|
|
|
105568
105672
|
options: {
|
|
105569
105673
|
any_value: "Any value",
|
|
105570
105674
|
is_between: "Is between",
|
|
105675
|
+
is_equal_to: "Is equal to",
|
|
105571
105676
|
greater_than: "Is greater than",
|
|
105572
105677
|
greater_than_equal_to: "Is greater than or equal to",
|
|
105573
105678
|
less_than: "Is less than",
|
|
@@ -105909,7 +106014,8 @@ var es_ES_default = {
|
|
|
105909
106014
|
exporting: "Exportando...",
|
|
105910
106015
|
filters: {
|
|
105911
106016
|
filters: "Filtros",
|
|
105912
|
-
allFilters: "
|
|
106017
|
+
allFilters: "Todos los filtros",
|
|
106018
|
+
moreFilters: "M\xE1s filtros",
|
|
105913
106019
|
clearAllFilters: "Borrar todos los filtros",
|
|
105914
106020
|
close: "Cerrar",
|
|
105915
106021
|
removeFilterToken: "Eliminar %{name}",
|
|
@@ -105928,6 +106034,7 @@ var es_ES_default = {
|
|
|
105928
106034
|
options: {
|
|
105929
106035
|
any_value: "Cualquier valor",
|
|
105930
106036
|
is_between: "Est\xE1 entre",
|
|
106037
|
+
is_equal_to: "Es igual a",
|
|
105931
106038
|
greater_than: "Es mayor que",
|
|
105932
106039
|
greater_than_equal_to: "Es mayor o igual que",
|
|
105933
106040
|
less_than: "Es menor que",
|
|
@@ -106006,7 +106113,7 @@ var es_ES_default = {
|
|
|
106006
106113
|
placeholder: "Introducir moneda"
|
|
106007
106114
|
},
|
|
106008
106115
|
linkCell: {
|
|
106009
|
-
externalLabel: "
|
|
106116
|
+
externalLabel: "Abrir enlace externo"
|
|
106010
106117
|
},
|
|
106011
106118
|
numberCell: {
|
|
106012
106119
|
placeholder: "Introducir n\xFAmero"
|
|
@@ -106088,7 +106195,8 @@ var es_default = {
|
|
|
106088
106195
|
exporting: "Exportando...",
|
|
106089
106196
|
filters: {
|
|
106090
106197
|
filters: "Filtros",
|
|
106091
|
-
allFilters: "
|
|
106198
|
+
allFilters: "Todos los filtros",
|
|
106199
|
+
moreFilters: "M\xE1s filtros",
|
|
106092
106200
|
clearAllFilters: "Restablecer todos los filtros",
|
|
106093
106201
|
close: "Cerrar",
|
|
106094
106202
|
removeFilterToken: "Eliminar %{name}",
|
|
@@ -106107,6 +106215,7 @@ var es_default = {
|
|
|
106107
106215
|
options: {
|
|
106108
106216
|
any_value: "Cualquier valor",
|
|
106109
106217
|
is_between: "Est\xE1 entre",
|
|
106218
|
+
is_equal_to: "Es igual a",
|
|
106110
106219
|
greater_than: "Es mayor que",
|
|
106111
106220
|
greater_than_equal_to: "Es mayor o igual que",
|
|
106112
106221
|
less_than: "Es menor que",
|
|
@@ -106185,7 +106294,7 @@ var es_default = {
|
|
|
106185
106294
|
placeholder: "Ingresar moneda"
|
|
106186
106295
|
},
|
|
106187
106296
|
linkCell: {
|
|
106188
|
-
externalLabel: "
|
|
106297
|
+
externalLabel: "Abrir enlace externo"
|
|
106189
106298
|
},
|
|
106190
106299
|
numberCell: {
|
|
106191
106300
|
placeholder: "Ingresar n\xFAmero"
|
|
@@ -106267,7 +106376,8 @@ var fr_CA_default = {
|
|
|
106267
106376
|
exporting: "Exportation ...",
|
|
106268
106377
|
filters: {
|
|
106269
106378
|
filters: "Filtres",
|
|
106270
|
-
allFilters: "
|
|
106379
|
+
allFilters: "Tous les filtres",
|
|
106380
|
+
moreFilters: "Plus de filtres",
|
|
106271
106381
|
clearAllFilters: "Effacer tous les filtres",
|
|
106272
106382
|
close: "Fermer",
|
|
106273
106383
|
removeFilterToken: "Retirer %{name}",
|
|
@@ -106286,6 +106396,7 @@ var fr_CA_default = {
|
|
|
106286
106396
|
options: {
|
|
106287
106397
|
any_value: "N'importe quelle valeur",
|
|
106288
106398
|
is_between: "Est entre",
|
|
106399
|
+
is_equal_to: "Est \xE9gal \xE0",
|
|
106289
106400
|
greater_than: "Est sup\xE9rieur \xE0",
|
|
106290
106401
|
greater_than_equal_to: "Est sup\xE9rieur ou \xE9gal \xE0",
|
|
106291
106402
|
less_than: "Est inf\xE9rieur \xE0",
|
|
@@ -106364,7 +106475,7 @@ var fr_CA_default = {
|
|
|
106364
106475
|
placeholder: "Saisir la devise"
|
|
106365
106476
|
},
|
|
106366
106477
|
linkCell: {
|
|
106367
|
-
externalLabel: "
|
|
106478
|
+
externalLabel: "Lien externe ouvert"
|
|
106368
106479
|
},
|
|
106369
106480
|
numberCell: {
|
|
106370
106481
|
placeholder: "Saisir un num\xE9ro"
|
|
@@ -106446,7 +106557,8 @@ var fr_FR_default = {
|
|
|
106446
106557
|
exporting: "Exportation...",
|
|
106447
106558
|
filters: {
|
|
106448
106559
|
filters: "Filtres",
|
|
106449
|
-
allFilters: "
|
|
106560
|
+
allFilters: "Tous les filtres",
|
|
106561
|
+
moreFilters: "Plus de filtres",
|
|
106450
106562
|
clearAllFilters: "Effacer tous les filtres",
|
|
106451
106563
|
close: "Fermer",
|
|
106452
106564
|
removeFilterToken: "Retirer %{name}",
|
|
@@ -106465,6 +106577,7 @@ var fr_FR_default = {
|
|
|
106465
106577
|
options: {
|
|
106466
106578
|
any_value: "N'importe quelle valeur",
|
|
106467
106579
|
is_between: "Est comprise entre",
|
|
106580
|
+
is_equal_to: "Est \xE9gal \xE0",
|
|
106468
106581
|
greater_than: "Est sup\xE9rieure \xE0",
|
|
106469
106582
|
greater_than_equal_to: "Est sup\xE9rieure ou \xE9gale \xE0",
|
|
106470
106583
|
less_than: "Est inf\xE9rieure \xE0",
|
|
@@ -106528,8 +106641,8 @@ var fr_FR_default = {
|
|
|
106528
106641
|
},
|
|
106529
106642
|
rowGroupToggle: {
|
|
106530
106643
|
expandTierOne: "Ouvrez les premiers groupes du tableau.",
|
|
106531
|
-
expandAll: "
|
|
106532
|
-
collapseAll: "Fermer tous les groupes du tableau
|
|
106644
|
+
expandAll: "Ouvrir tous les groupes du tableau",
|
|
106645
|
+
collapseAll: "Fermer tous les groupes du tableau"
|
|
106533
106646
|
},
|
|
106534
106647
|
columnGroupToggle: {
|
|
106535
106648
|
collapse: "R\xE9duire le groupe de colonnes",
|
|
@@ -106543,7 +106656,7 @@ var fr_FR_default = {
|
|
|
106543
106656
|
placeholder: "Saisir la devise"
|
|
106544
106657
|
},
|
|
106545
106658
|
linkCell: {
|
|
106546
|
-
externalLabel: "
|
|
106659
|
+
externalLabel: "Ouvrir le lien externe"
|
|
106547
106660
|
},
|
|
106548
106661
|
numberCell: {
|
|
106549
106662
|
placeholder: "Saisir un num\xE9ro"
|
|
@@ -106625,7 +106738,8 @@ var is_IS_default = {
|
|
|
106625
106738
|
exporting: "Flytur \xFAt ...",
|
|
106626
106739
|
filters: {
|
|
106627
106740
|
filters: "S\xEDur",
|
|
106628
|
-
allFilters: "
|
|
106741
|
+
allFilters: "Allar s\xEDur",
|
|
106742
|
+
moreFilters: "Fleiri s\xEDur",
|
|
106629
106743
|
clearAllFilters: "Hreinsa allar s\xEDur",
|
|
106630
106744
|
close: "Loka\xF0u",
|
|
106631
106745
|
removeFilterToken: "Fjarl\xE6gja %{name}",
|
|
@@ -106644,6 +106758,7 @@ var is_IS_default = {
|
|
|
106644
106758
|
options: {
|
|
106645
106759
|
any_value: "Hva\xF0a gildi sem er",
|
|
106646
106760
|
is_between: "Er \xE1 milli",
|
|
106761
|
+
is_equal_to: "Er jafnt",
|
|
106647
106762
|
greater_than: "Er meiri en",
|
|
106648
106763
|
greater_than_equal_to: "Er st\xE6rra en e\xF0a jafnt",
|
|
106649
106764
|
less_than: "Er minna en",
|
|
@@ -106722,7 +106837,7 @@ var is_IS_default = {
|
|
|
106722
106837
|
placeholder: "Sl\xE1\xF0u inn gjaldmi\xF0il"
|
|
106723
106838
|
},
|
|
106724
106839
|
linkCell: {
|
|
106725
|
-
externalLabel: "
|
|
106840
|
+
externalLabel: "Opna utana\xF0komandi tengil"
|
|
106726
106841
|
},
|
|
106727
106842
|
numberCell: {
|
|
106728
106843
|
placeholder: "Sl\xE1\xF0u inn n\xFAmer"
|
|
@@ -106804,7 +106919,8 @@ var it_IT_default = {
|
|
|
106804
106919
|
exporting: "Esportazione in corso...",
|
|
106805
106920
|
filters: {
|
|
106806
106921
|
filters: "Filtri",
|
|
106807
|
-
allFilters: "
|
|
106922
|
+
allFilters: "Tutti i filtri",
|
|
106923
|
+
moreFilters: "Altri filtri",
|
|
106808
106924
|
clearAllFilters: "Cancella tutti i filtri",
|
|
106809
106925
|
close: "Chiudi",
|
|
106810
106926
|
removeFilterToken: "Rimuovi %{name}",
|
|
@@ -106823,6 +106939,7 @@ var it_IT_default = {
|
|
|
106823
106939
|
options: {
|
|
106824
106940
|
any_value: "Qualsiasi valore",
|
|
106825
106941
|
is_between: "\xC8 compreso tra",
|
|
106942
|
+
is_equal_to: "\xC8 uguale a",
|
|
106826
106943
|
greater_than: "\xC8 maggiore di",
|
|
106827
106944
|
greater_than_equal_to: "\xC8 maggiore o uguale a",
|
|
106828
106945
|
less_than: "\xC8 minore di",
|
|
@@ -106901,7 +107018,7 @@ var it_IT_default = {
|
|
|
106901
107018
|
placeholder: "Inserisci valuta"
|
|
106902
107019
|
},
|
|
106903
107020
|
linkCell: {
|
|
106904
|
-
externalLabel: "
|
|
107021
|
+
externalLabel: "Apri collegamento esterno"
|
|
106905
107022
|
},
|
|
106906
107023
|
numberCell: {
|
|
106907
107024
|
placeholder: "Inserisci numero"
|
|
@@ -106983,7 +107100,8 @@ var ja_JP_default = {
|
|
|
106983
107100
|
exporting: "\u30A8\u30AF\u30B9\u30DD\u30FC\u30C8\u4E2D...",
|
|
106984
107101
|
filters: {
|
|
106985
107102
|
filters: "\u30D5\u30A3\u30EB\u30BF",
|
|
106986
|
-
allFilters: "
|
|
107103
|
+
allFilters: "\u3059\u3079\u3066\u306E\u30D5\u30A3\u30EB\u30BF\u30FC",
|
|
107104
|
+
moreFilters: "\u305D\u306E\u4ED6\u306E\u30D5\u30A3\u30EB\u30BF",
|
|
106987
107105
|
clearAllFilters: "\u3059\u3079\u3066\u306E\u30D5\u30A3\u30EB\u30BF\u3092\u6D88\u53BB",
|
|
106988
107106
|
close: "\u7D42\u4E86",
|
|
106989
107107
|
removeFilterToken: "%{name}\u524A\u9664",
|
|
@@ -107002,6 +107120,7 @@ var ja_JP_default = {
|
|
|
107002
107120
|
options: {
|
|
107003
107121
|
any_value: "\u4EFB\u610F\u306E\u5024",
|
|
107004
107122
|
is_between: "\u9593\u306B\u3042\u308B",
|
|
107123
|
+
is_equal_to: "\u7B49\u3057\u3044",
|
|
107005
107124
|
greater_than: "\u3088\u308A\u5927\u304D\u3044",
|
|
107006
107125
|
greater_than_equal_to: "\u4EE5\u4E0A\u3067\u3042\u308B",
|
|
107007
107126
|
less_than: "\u672A\u6E80\u3067\u3042\u308B",
|
|
@@ -107080,7 +107199,7 @@ var ja_JP_default = {
|
|
|
107080
107199
|
placeholder: "\u901A\u8CA8\u3092\u5165\u529B"
|
|
107081
107200
|
},
|
|
107082
107201
|
linkCell: {
|
|
107083
|
-
externalLabel: "
|
|
107202
|
+
externalLabel: "\u5916\u90E8\u30EA\u30F3\u30AF\u3092\u958B\u304F"
|
|
107084
107203
|
},
|
|
107085
107204
|
numberCell: {
|
|
107086
107205
|
placeholder: "\u756A\u53F7\u3092\u5165\u529B"
|
|
@@ -107125,156 +107244,158 @@ var nb_NO_default = {
|
|
|
107125
107244
|
dataTable: {
|
|
107126
107245
|
emptyState: {
|
|
107127
107246
|
noFilteredResults: {
|
|
107128
|
-
description: "
|
|
107129
|
-
title: "Ingen
|
|
107130
|
-
itemsTitle: "
|
|
107247
|
+
description: "Sjekk stavem\xE5ten og filteralternativene dine, eller s\xF8k etter et annet n\xF8kkelord.",
|
|
107248
|
+
title: "Ingen elementer samsvarer med s\xF8ket ditt",
|
|
107249
|
+
itemsTitle: "Ingen %{itemsLabel} samsvarer med s\xF8ket ditt"
|
|
107131
107250
|
},
|
|
107132
107251
|
noResults: {
|
|
107133
|
-
description: "
|
|
107134
|
-
title: "
|
|
107135
|
-
itemsTitle: "
|
|
107136
|
-
tooltip: "
|
|
107137
|
-
searchTooltip: "
|
|
107252
|
+
description: "N\xE5r teamet ditt har opprettet disse elementene, kan du f\xE5 tilgang til dem her. ",
|
|
107253
|
+
title: "Det er ingen elementer \xE5 vise akkurat n\xE5",
|
|
107254
|
+
itemsTitle: "Det er ingen %{itemsLabel} \xE5 vise akkurat n\xE5",
|
|
107255
|
+
tooltip: "%{featureName} -knappen vil bli aktivert n\xE5r du legger til informasjon i %{tableName}",
|
|
107256
|
+
searchTooltip: "S\xF8k vil bli aktivert n\xE5r du legger til informasjon i %{tableName}",
|
|
107138
107257
|
featureFilter: "Filter",
|
|
107139
|
-
featureQuickFilter: "
|
|
107140
|
-
featureGroupBy: "
|
|
107141
|
-
featureConfigure: "
|
|
107142
|
-
tableNameFallback: "
|
|
107258
|
+
featureQuickFilter: "Hurtigfilter",
|
|
107259
|
+
featureGroupBy: "Grupper etter",
|
|
107260
|
+
featureConfigure: "Konfigurer",
|
|
107261
|
+
tableNameFallback: "bord"
|
|
107143
107262
|
}
|
|
107144
107263
|
},
|
|
107145
107264
|
bulkActions: {
|
|
107146
|
-
apply: "
|
|
107147
|
-
bulkEdit: "
|
|
107265
|
+
apply: "S\xF8k",
|
|
107266
|
+
bulkEdit: "Masseendring",
|
|
107148
107267
|
cancel: "Avbryt",
|
|
107149
|
-
editValues: "
|
|
107150
|
-
error: "
|
|
107151
|
-
placeholderForField: "
|
|
107152
|
-
selection: "%{count} %{number}
|
|
107268
|
+
editValues: "Rediger verdier",
|
|
107269
|
+
error: "Beklager, elementene kunne ikke oppdateres. Pr\xF8v igjen.",
|
|
107270
|
+
placeholderForField: "Skriv inn %{fieldName}",
|
|
107271
|
+
selection: "%{count} %{number} valgt",
|
|
107153
107272
|
selection_count: {
|
|
107154
|
-
zero: "%{count}
|
|
107155
|
-
one: "%{count}
|
|
107156
|
-
other: "%{count}
|
|
107273
|
+
zero: "%{count} elementer valgt",
|
|
107274
|
+
one: "%{count} element valgt",
|
|
107275
|
+
other: "%{count} elementer valgt"
|
|
107157
107276
|
},
|
|
107158
|
-
success: "
|
|
107159
|
-
one: "
|
|
107160
|
-
many: "
|
|
107277
|
+
success: "Elementene ble oppdatert.",
|
|
107278
|
+
one: "element",
|
|
107279
|
+
many: "gjenstander"
|
|
107161
107280
|
},
|
|
107162
|
-
exporting: "
|
|
107281
|
+
exporting: "Eksporterer...",
|
|
107163
107282
|
filters: {
|
|
107164
107283
|
filters: "Filtre",
|
|
107165
|
-
allFilters: "
|
|
107166
|
-
|
|
107167
|
-
|
|
107284
|
+
allFilters: "Alle filtre",
|
|
107285
|
+
moreFilters: "More Filters",
|
|
107286
|
+
clearAllFilters: "Fjern alle filtre",
|
|
107287
|
+
close: "Lukk",
|
|
107168
107288
|
removeFilterToken: "Fjern %{name}",
|
|
107169
107289
|
locationFilter: {
|
|
107170
107290
|
selectAll: "Velg alle",
|
|
107171
|
-
includeSublocations: "
|
|
107172
|
-
searchLocations: "
|
|
107173
|
-
locations: "
|
|
107291
|
+
includeSublocations: "Inkluder underlokasjoner",
|
|
107292
|
+
searchLocations: "S\xF8k etter steder",
|
|
107293
|
+
locations: "Steder"
|
|
107174
107294
|
},
|
|
107175
107295
|
numberFilter: {
|
|
107176
107296
|
labels: {
|
|
107177
|
-
and: "
|
|
107178
|
-
input_placeholder: "
|
|
107179
|
-
placeholder: "
|
|
107297
|
+
and: "og",
|
|
107298
|
+
input_placeholder: "Angi verdi",
|
|
107299
|
+
placeholder: "Velg et element"
|
|
107180
107300
|
},
|
|
107181
107301
|
options: {
|
|
107182
|
-
any_value: "
|
|
107183
|
-
is_between: "
|
|
107184
|
-
|
|
107185
|
-
|
|
107186
|
-
|
|
107187
|
-
|
|
107188
|
-
|
|
107302
|
+
any_value: "Enhver verdi",
|
|
107303
|
+
is_between: "Er mellom",
|
|
107304
|
+
is_equal_to: "Er lik",
|
|
107305
|
+
greater_than: "Er st\xF8rre enn",
|
|
107306
|
+
greater_than_equal_to: "Er st\xF8rre enn eller lik",
|
|
107307
|
+
less_than: "Er mindre enn",
|
|
107308
|
+
less_than_equal_to: "Er mindre enn eller lik",
|
|
107309
|
+
no_value: "Ingen verdi"
|
|
107189
107310
|
}
|
|
107190
107311
|
},
|
|
107191
107312
|
singleSelectFilter: {
|
|
107192
|
-
placeholder: "
|
|
107313
|
+
placeholder: "Velg en verdi"
|
|
107193
107314
|
},
|
|
107194
107315
|
multiSelectQuickFilter: {
|
|
107195
|
-
ariaLabel: "
|
|
107316
|
+
ariaLabel: "Hurtigfilter: Velg flere alternativer"
|
|
107196
107317
|
},
|
|
107197
107318
|
singleSelectQuickFilter: {
|
|
107198
|
-
ariaLabel: "
|
|
107319
|
+
ariaLabel: "Hurtigfilter: Velg et alternativ"
|
|
107199
107320
|
}
|
|
107200
107321
|
},
|
|
107201
107322
|
loading: {
|
|
107202
|
-
initial: "
|
|
107203
|
-
secondary: "
|
|
107323
|
+
initial: "Laster inn informasjon.",
|
|
107324
|
+
secondary: "Informasjon lastes, takk for t\xE5lmodigheten."
|
|
107204
107325
|
},
|
|
107205
107326
|
menuOptions: {
|
|
107206
107327
|
ariaMenuColumn: "Trykk p\xE5 Alt/Option og pil ned for \xE5 \xE5pne kolonnemenyen.",
|
|
107207
107328
|
sortMenuItem: {
|
|
107208
|
-
label: "
|
|
107209
|
-
sortAscItem: "
|
|
107210
|
-
sortDescItem: "
|
|
107211
|
-
sortResetItem: "
|
|
107212
|
-
sortAscending: "
|
|
107213
|
-
sortDescending: "
|
|
107214
|
-
sortCleared: "
|
|
107215
|
-
},
|
|
107216
|
-
expandAllGroups: "
|
|
107217
|
-
collapseAllGroups: "
|
|
107218
|
-
pinColumn: "
|
|
107219
|
-
pinLeft: "
|
|
107220
|
-
pinRight: "
|
|
107221
|
-
noPin: "
|
|
107222
|
-
autoSizeThisColumn: "
|
|
107223
|
-
autoSizeAllColumns: "
|
|
107224
|
-
hideColumn: "
|
|
107225
|
-
resetColumns: "
|
|
107226
|
-
unGroupBy: "
|
|
107227
|
-
groupBy: "
|
|
107329
|
+
label: "Sorter etter denne kolonnen",
|
|
107330
|
+
sortAscItem: "Sorter kolonne stigende",
|
|
107331
|
+
sortDescItem: "Sorter kolonne synkende",
|
|
107332
|
+
sortResetItem: "Kolonne ikke sortert",
|
|
107333
|
+
sortAscending: "sortert stigende",
|
|
107334
|
+
sortDescending: "sortert synkende",
|
|
107335
|
+
sortCleared: "Sortering fjernet"
|
|
107336
|
+
},
|
|
107337
|
+
expandAllGroups: "Utvid alle grupper",
|
|
107338
|
+
collapseAllGroups: "Skjul alle grupper",
|
|
107339
|
+
pinColumn: "Fest kolonne",
|
|
107340
|
+
pinLeft: "Fest til venstre",
|
|
107341
|
+
pinRight: "Fest til h\xF8yre",
|
|
107342
|
+
noPin: "Ingen PIN",
|
|
107343
|
+
autoSizeThisColumn: "Tilpass kolonnebredden automatisk",
|
|
107344
|
+
autoSizeAllColumns: "Tilpass alle kolonner automatisk",
|
|
107345
|
+
hideColumn: "Skjul kolonne",
|
|
107346
|
+
resetColumns: "Tilbakestill kolonner",
|
|
107347
|
+
unGroupBy: "Fjern gruppering etter {{label}}",
|
|
107348
|
+
groupBy: "Grupper etter {{label}}"
|
|
107228
107349
|
},
|
|
107229
|
-
grandTotals: "
|
|
107350
|
+
grandTotals: "Totale summer",
|
|
107230
107351
|
search: "S\xF8k",
|
|
107231
|
-
subtotals: "
|
|
107352
|
+
subtotals: "Delsummer",
|
|
107232
107353
|
tableSettings: {
|
|
107233
|
-
configureColumns: "
|
|
107234
|
-
resetToDefault: "
|
|
107235
|
-
rowHeight: "
|
|
107236
|
-
small: "
|
|
107237
|
-
medium: "
|
|
107238
|
-
large: "
|
|
107239
|
-
tableSettings: "
|
|
107240
|
-
groupBy: "
|
|
107354
|
+
configureColumns: "Konfigurer kolonner",
|
|
107355
|
+
resetToDefault: "Vis alle",
|
|
107356
|
+
rowHeight: "Radh\xF8yde",
|
|
107357
|
+
small: "Liten",
|
|
107358
|
+
medium: "Middels",
|
|
107359
|
+
large: "Stor",
|
|
107360
|
+
tableSettings: "Borddekking",
|
|
107361
|
+
groupBy: "Grupper etter:",
|
|
107241
107362
|
reset: "Tilbakestill",
|
|
107242
|
-
selectColumnGroup: "
|
|
107243
|
-
configure: "
|
|
107363
|
+
selectColumnGroup: "Velg en kolonne \xE5 gruppere",
|
|
107364
|
+
configure: "Konfigurer"
|
|
107244
107365
|
},
|
|
107245
107366
|
rowGroupToggle: {
|
|
107246
|
-
expandTierOne: "
|
|
107247
|
-
expandAll: "
|
|
107248
|
-
collapseAll: "
|
|
107367
|
+
expandTierOne: "\xC5pne de f\xF8rste gruppene i tabellen.",
|
|
107368
|
+
expandAll: "\xC5pne alle grupper i tabellen.",
|
|
107369
|
+
collapseAll: "Lukk alle grupper i tabellen."
|
|
107249
107370
|
},
|
|
107250
107371
|
columnGroupToggle: {
|
|
107251
|
-
collapse: "
|
|
107252
|
-
expand: "
|
|
107372
|
+
collapse: "Skjul kolonnegruppe",
|
|
107373
|
+
expand: "Utvid kolonnegruppe"
|
|
107253
107374
|
},
|
|
107254
107375
|
cells: {
|
|
107255
107376
|
textCell: {
|
|
107256
|
-
placeholder: "
|
|
107377
|
+
placeholder: "Skriv inn tekst"
|
|
107257
107378
|
},
|
|
107258
107379
|
currencyCell: {
|
|
107259
|
-
placeholder: "
|
|
107380
|
+
placeholder: "Angi valuta"
|
|
107260
107381
|
},
|
|
107261
107382
|
linkCell: {
|
|
107262
|
-
externalLabel: "
|
|
107383
|
+
externalLabel: "\xC5pne ekstern kobling"
|
|
107263
107384
|
},
|
|
107264
107385
|
numberCell: {
|
|
107265
|
-
placeholder: "
|
|
107386
|
+
placeholder: "Skriv inn nummer"
|
|
107266
107387
|
},
|
|
107267
107388
|
percentCell: {
|
|
107268
|
-
placeholder: "
|
|
107389
|
+
placeholder: "Skriv inn %"
|
|
107269
107390
|
},
|
|
107270
107391
|
pillCell: {
|
|
107271
|
-
placeholder: "
|
|
107392
|
+
placeholder: "Velg {{label}}"
|
|
107272
107393
|
},
|
|
107273
107394
|
selectCell: {
|
|
107274
|
-
placeholder: "
|
|
107395
|
+
placeholder: "Velg {{label}}"
|
|
107275
107396
|
},
|
|
107276
107397
|
multiSelectCell: {
|
|
107277
|
-
placeholder: "
|
|
107398
|
+
placeholder: "Velg verdier"
|
|
107278
107399
|
},
|
|
107279
107400
|
booleanCell: {
|
|
107280
107401
|
options: {
|
|
@@ -107285,16 +107406,16 @@ var nb_NO_default = {
|
|
|
107285
107406
|
},
|
|
107286
107407
|
filterRenders: {
|
|
107287
107408
|
dateFilter: {
|
|
107288
|
-
single: "
|
|
107289
|
-
range: "
|
|
107409
|
+
single: "Enslig",
|
|
107410
|
+
range: "Rekkevidde"
|
|
107290
107411
|
}
|
|
107291
107412
|
},
|
|
107292
107413
|
groupCell: {
|
|
107293
|
-
expand: "
|
|
107294
|
-
collapse: "
|
|
107414
|
+
expand: "Utvid gruppe",
|
|
107415
|
+
collapse: "Skjul gruppe"
|
|
107295
107416
|
},
|
|
107296
107417
|
rowCheckbox: {
|
|
107297
|
-
ariaLabel: "
|
|
107418
|
+
ariaLabel: "Velg rad"
|
|
107298
107419
|
}
|
|
107299
107420
|
}
|
|
107300
107421
|
};
|
|
@@ -107341,7 +107462,8 @@ var pl_PL_default = {
|
|
|
107341
107462
|
exporting: "Eksportowanie...",
|
|
107342
107463
|
filters: {
|
|
107343
107464
|
filters: "Filtry",
|
|
107344
|
-
allFilters: "
|
|
107465
|
+
allFilters: "Wszystkie filtry",
|
|
107466
|
+
moreFilters: "Wi\u0119cej filtr\xF3w",
|
|
107345
107467
|
clearAllFilters: "Wyczy\u015B\u0107 wszystkie filtry",
|
|
107346
107468
|
close: "Zamknij",
|
|
107347
107469
|
removeFilterToken: "Usu\u0144 %{name}",
|
|
@@ -107360,6 +107482,7 @@ var pl_PL_default = {
|
|
|
107360
107482
|
options: {
|
|
107361
107483
|
any_value: "Dowolna warto\u015B\u0107",
|
|
107362
107484
|
is_between: "jest pomi\u0119dzy",
|
|
107485
|
+
is_equal_to: "jest r\xF3wne",
|
|
107363
107486
|
greater_than: "jest wi\u0119ksze ni\u017C",
|
|
107364
107487
|
greater_than_equal_to: "jest wi\u0119ksze ni\u017C lub r\xF3wne",
|
|
107365
107488
|
less_than: "mniej ni\u017C",
|
|
@@ -107438,7 +107561,7 @@ var pl_PL_default = {
|
|
|
107438
107561
|
placeholder: "Wprowad\u017A walut\u0119"
|
|
107439
107562
|
},
|
|
107440
107563
|
linkCell: {
|
|
107441
|
-
externalLabel: "
|
|
107564
|
+
externalLabel: "Otw\xF3rz zewn\u0119trzne \u0142\u0105cze"
|
|
107442
107565
|
},
|
|
107443
107566
|
numberCell: {
|
|
107444
107567
|
placeholder: "Wprowad\u017A numer"
|
|
@@ -107701,7 +107824,8 @@ var pt_BR_default = {
|
|
|
107701
107824
|
exporting: "Exportando...",
|
|
107702
107825
|
filters: {
|
|
107703
107826
|
filters: "Filtros",
|
|
107704
|
-
allFilters: "
|
|
107827
|
+
allFilters: "Todos os Filtros",
|
|
107828
|
+
moreFilters: "Mais Filtros",
|
|
107705
107829
|
clearAllFilters: "Limpar Todos os Filtros",
|
|
107706
107830
|
close: "Fechar",
|
|
107707
107831
|
removeFilterToken: "Remover %{name}",
|
|
@@ -107720,6 +107844,7 @@ var pt_BR_default = {
|
|
|
107720
107844
|
options: {
|
|
107721
107845
|
any_value: "Qualquer Valor",
|
|
107722
107846
|
is_between: "Est\xE1 entre",
|
|
107847
|
+
is_equal_to: "\xC9 Igual a",
|
|
107723
107848
|
greater_than: "\xC9 Maior Que",
|
|
107724
107849
|
greater_than_equal_to: "\xC9 Maior Que ou Igual a",
|
|
107725
107850
|
less_than: "\xC9 Menor Que",
|
|
@@ -107798,7 +107923,7 @@ var pt_BR_default = {
|
|
|
107798
107923
|
placeholder: "Insira moeda"
|
|
107799
107924
|
},
|
|
107800
107925
|
linkCell: {
|
|
107801
|
-
externalLabel: "
|
|
107926
|
+
externalLabel: "Abrir link externo"
|
|
107802
107927
|
},
|
|
107803
107928
|
numberCell: {
|
|
107804
107929
|
placeholder: "Inserir n\xFAmeros"
|
|
@@ -107851,8 +107976,8 @@ var pt_PT_default = {
|
|
|
107851
107976
|
description: "Assim que a sua equipa criar estes itens, poder\xE1 aceder aos mesmos aqui. ",
|
|
107852
107977
|
title: "N\xE3o h\xE1 itens para apresentar neste momento",
|
|
107853
107978
|
itemsTitle: "N\xE3o h\xE1 %{itemsLabel} para apresentar neste momento",
|
|
107854
|
-
tooltip: "O bot\xE3o %{featureName} ser\xE1 ativado quando adicionar informa\xE7\xF5es
|
|
107855
|
-
searchTooltip: "A pesquisa ser\xE1 ativada quando adicionar informa\xE7\xF5es a %{tableName}",
|
|
107979
|
+
tooltip: "O bot\xE3o %{featureName} ser\xE1 ativado quando adicionar informa\xE7\xF5es a %{tableName}",
|
|
107980
|
+
searchTooltip: "A pesquisa ser\xE1 ativada quando adicionar informa\xE7\xF5es a: %{tableName}",
|
|
107856
107981
|
featureFilter: "Filtro",
|
|
107857
107982
|
featureQuickFilter: "Filtro r\xE1pido",
|
|
107858
107983
|
featureGroupBy: "Agrupar por",
|
|
@@ -107880,7 +108005,8 @@ var pt_PT_default = {
|
|
|
107880
108005
|
exporting: "A exportar...",
|
|
107881
108006
|
filters: {
|
|
107882
108007
|
filters: "Filtros",
|
|
107883
|
-
allFilters: "
|
|
108008
|
+
allFilters: "Todos os filtros",
|
|
108009
|
+
moreFilters: "Mais filtros",
|
|
107884
108010
|
clearAllFilters: "Apagar todos os filtros",
|
|
107885
108011
|
close: "Fechar",
|
|
107886
108012
|
removeFilterToken: "Remover %{name}",
|
|
@@ -107899,6 +108025,7 @@ var pt_PT_default = {
|
|
|
107899
108025
|
options: {
|
|
107900
108026
|
any_value: "Qualquer valor",
|
|
107901
108027
|
is_between: "Est\xE1 entre",
|
|
108028
|
+
is_equal_to: "\xC9 igual a",
|
|
107902
108029
|
greater_than: "\xC9 superior a",
|
|
107903
108030
|
greater_than_equal_to: "\xC9 igual ou superior a",
|
|
107904
108031
|
less_than: "\xC9 inferior a",
|
|
@@ -107951,8 +108078,8 @@ var pt_PT_default = {
|
|
|
107951
108078
|
configureColumns: "Configurar colunas",
|
|
107952
108079
|
resetToDefault: "Mostrar tudo",
|
|
107953
108080
|
rowHeight: "Altura da linha",
|
|
107954
|
-
small: "
|
|
107955
|
-
medium: "M\
|
|
108081
|
+
small: "Pequena",
|
|
108082
|
+
medium: "M\xE9dia",
|
|
107956
108083
|
large: "Grande",
|
|
107957
108084
|
tableSettings: "Defini\xE7\xF5es de tabela",
|
|
107958
108085
|
groupBy: "Agrupar por:",
|
|
@@ -107977,7 +108104,7 @@ var pt_PT_default = {
|
|
|
107977
108104
|
placeholder: "Introduzir moeda"
|
|
107978
108105
|
},
|
|
107979
108106
|
linkCell: {
|
|
107980
|
-
externalLabel: "
|
|
108107
|
+
externalLabel: "Abrir liga\xE7\xE3o externa"
|
|
107981
108108
|
},
|
|
107982
108109
|
numberCell: {
|
|
107983
108110
|
placeholder: "Introduzir n\xFAmero"
|
|
@@ -108059,7 +108186,8 @@ var th_TH_default = {
|
|
|
108059
108186
|
exporting: "\u0E01\u0E33\u0E25\u0E31\u0E07\u0E2A\u0E48\u0E07\u0E2D\u0E2D\u0E01...",
|
|
108060
108187
|
filters: {
|
|
108061
108188
|
filters: "\u0E15\u0E31\u0E27\u0E01\u0E23\u0E2D\u0E07",
|
|
108062
|
-
allFilters: "
|
|
108189
|
+
allFilters: "\u0E15\u0E31\u0E27\u0E01\u0E23\u0E2D\u0E07\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14",
|
|
108190
|
+
moreFilters: "\u0E15\u0E31\u0E27\u0E01\u0E23\u0E2D\u0E07\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E40\u0E15\u0E34\u0E21",
|
|
108063
108191
|
clearAllFilters: "\u0E25\u0E49\u0E32\u0E07\u0E15\u0E31\u0E27\u0E01\u0E23\u0E2D\u0E07\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14",
|
|
108064
108192
|
close: "\u0E1B\u0E34\u0E14",
|
|
108065
108193
|
removeFilterToken: "\u0E25\u0E1A %{name}",
|
|
@@ -108078,6 +108206,7 @@ var th_TH_default = {
|
|
|
108078
108206
|
options: {
|
|
108079
108207
|
any_value: "\u0E04\u0E48\u0E32\u0E43\u0E14\u0E01\u0E47\u0E44\u0E14\u0E49",
|
|
108080
108208
|
is_between: "\u0E2D\u0E22\u0E39\u0E48\u0E23\u0E30\u0E2B\u0E27\u0E48\u0E32\u0E07",
|
|
108209
|
+
is_equal_to: "\u0E40\u0E17\u0E48\u0E32\u0E01\u0E31\u0E1A",
|
|
108081
108210
|
greater_than: "\u0E21\u0E32\u0E01\u0E01\u0E27\u0E48\u0E32",
|
|
108082
108211
|
greater_than_equal_to: "\u0E21\u0E32\u0E01\u0E01\u0E27\u0E48\u0E32\u0E2B\u0E23\u0E37\u0E2D\u0E40\u0E17\u0E48\u0E32\u0E01\u0E31\u0E1A",
|
|
108083
108212
|
less_than: "\u0E19\u0E49\u0E2D\u0E22\u0E01\u0E27\u0E48\u0E32",
|
|
@@ -108156,7 +108285,7 @@ var th_TH_default = {
|
|
|
108156
108285
|
placeholder: "\u0E1B\u0E49\u0E2D\u0E19\u0E2A\u0E01\u0E38\u0E25\u0E40\u0E07\u0E34\u0E19"
|
|
108157
108286
|
},
|
|
108158
108287
|
linkCell: {
|
|
108159
|
-
externalLabel: "
|
|
108288
|
+
externalLabel: "\u0E40\u0E1B\u0E34\u0E14\u0E25\u0E34\u0E07\u0E01\u0E4C\u0E20\u0E32\u0E22\u0E19\u0E2D\u0E01"
|
|
108160
108289
|
},
|
|
108161
108290
|
numberCell: {
|
|
108162
108291
|
placeholder: "\u0E1B\u0E49\u0E2D\u0E19\u0E2B\u0E21\u0E32\u0E22\u0E40\u0E25\u0E02"
|
|
@@ -108238,7 +108367,8 @@ var zh_SG_default = {
|
|
|
108238
108367
|
exporting: "\u6B63\u5728\u5BFC\u51FA...",
|
|
108239
108368
|
filters: {
|
|
108240
108369
|
filters: "\u7B5B\u9009\u5668",
|
|
108241
|
-
allFilters: "
|
|
108370
|
+
allFilters: "\u6240\u6709\u7B5B\u9009\u5668",
|
|
108371
|
+
moreFilters: "\u66F4\u591A\u7B5B\u9009\u5668",
|
|
108242
108372
|
clearAllFilters: "\u6E05\u9664\u6240\u6709\u7B5B\u9009\u5668",
|
|
108243
108373
|
close: "\u5173\u95ED",
|
|
108244
108374
|
removeFilterToken: "\u79FB\u9664 %{name}",
|
|
@@ -108257,6 +108387,7 @@ var zh_SG_default = {
|
|
|
108257
108387
|
options: {
|
|
108258
108388
|
any_value: "\u4EFB\u610F\u503C",
|
|
108259
108389
|
is_between: "\u4ECB\u4E8E",
|
|
108390
|
+
is_equal_to: "\u7B49\u4E8E",
|
|
108260
108391
|
greater_than: "\u5927\u4E8E",
|
|
108261
108392
|
greater_than_equal_to: "\u5927\u4E8E\u6216\u7B49\u4E8E",
|
|
108262
108393
|
less_than: "\u5C0F\u4E8E",
|
|
@@ -108335,7 +108466,7 @@ var zh_SG_default = {
|
|
|
108335
108466
|
placeholder: "\u8F93\u5165\u8D27\u5E01"
|
|
108336
108467
|
},
|
|
108337
108468
|
linkCell: {
|
|
108338
|
-
externalLabel: "
|
|
108469
|
+
externalLabel: "\u6253\u5F00\u5916\u90E8\u94FE\u63A5"
|
|
108339
108470
|
},
|
|
108340
108471
|
numberCell: {
|
|
108341
108472
|
placeholder: "\u8F93\u5165\u6570\u5B57"
|
|
@@ -108417,7 +108548,8 @@ var zh_TW_default = {
|
|
|
108417
108548
|
exporting: "\u532F\u51FA\u4E2D\u2026\u2026",
|
|
108418
108549
|
filters: {
|
|
108419
108550
|
filters: "\u7BE9\u9078\u689D\u4EF6",
|
|
108420
|
-
allFilters: "
|
|
108551
|
+
allFilters: "\u6240\u6709\u7BE9\u9078\u689D\u4EF6",
|
|
108552
|
+
moreFilters: "\u66F4\u591A\u7BE9\u9078\u689D\u4EF6",
|
|
108421
108553
|
clearAllFilters: "\u6E05\u9664\u6240\u6709\u7BE9\u9078\u689D\u4EF6",
|
|
108422
108554
|
close: "\u95DC\u9589",
|
|
108423
108555
|
removeFilterToken: "\u79FB\u9664\u300C%{name}\u300D",
|
|
@@ -108436,6 +108568,7 @@ var zh_TW_default = {
|
|
|
108436
108568
|
options: {
|
|
108437
108569
|
any_value: "\u4EFB\u4F55\u503C",
|
|
108438
108570
|
is_between: "\u4ECB\u65BC",
|
|
108571
|
+
is_equal_to: "\u7B49\u65BC",
|
|
108439
108572
|
greater_than: "\u5927\u65BC",
|
|
108440
108573
|
greater_than_equal_to: "\u5927\u65BC\u6216\u7B49\u65BC",
|
|
108441
108574
|
less_than: "\u5C0F\u65BC",
|
|
@@ -108514,7 +108647,7 @@ var zh_TW_default = {
|
|
|
108514
108647
|
placeholder: "\u8F38\u5165\u8CA8\u5E63"
|
|
108515
108648
|
},
|
|
108516
108649
|
linkCell: {
|
|
108517
|
-
externalLabel: "
|
|
108650
|
+
externalLabel: "\u958B\u555F\u5916\u90E8\u9023\u7D50"
|
|
108518
108651
|
},
|
|
108519
108652
|
numberCell: {
|
|
108520
108653
|
placeholder: "\u8F38\u5165\u6578\u5B57"
|
|
@@ -109554,6 +109687,8 @@ var DataTable = ({
|
|
|
109554
109687
|
!initialTableConfig
|
|
109555
109688
|
);
|
|
109556
109689
|
const contextPanel = useContextPanel();
|
|
109690
|
+
const filtersPanelId = $bdb11010cef70236$export$f680877a34711e37();
|
|
109691
|
+
const filtersBodyId = $bdb11010cef70236$export$f680877a34711e37();
|
|
109557
109692
|
const clientI18n = coreReact.useI18nContext();
|
|
109558
109693
|
const isCDNEnabled = cdnTranslations.isCDNFeatureFlagEnabled(clientI18n, enableCDN);
|
|
109559
109694
|
const cdnTranslations$1 = cdnTranslations.useRequestTranslations(
|
|
@@ -109801,7 +109936,9 @@ var DataTable = ({
|
|
|
109801
109936
|
totalRowCount,
|
|
109802
109937
|
setTotalRowCount,
|
|
109803
109938
|
updateServerSideDataSource,
|
|
109804
|
-
hasDuplicateRowIds
|
|
109939
|
+
hasDuplicateRowIds,
|
|
109940
|
+
filtersPanelId,
|
|
109941
|
+
filtersBodyId
|
|
109805
109942
|
}
|
|
109806
109943
|
},
|
|
109807
109944
|
children
|
|
@@ -111115,7 +111252,7 @@ var BaseFiltersPanel = ({
|
|
|
111115
111252
|
...props
|
|
111116
111253
|
}) => {
|
|
111117
111254
|
const ref = React80__default.default.useRef(null);
|
|
111118
|
-
const { contextPanel } = useInternalTableContext();
|
|
111255
|
+
const { contextPanel, filtersBodyId, filtersPanelId } = useInternalTableContext();
|
|
111119
111256
|
const I18n = coreReact.useI18nContext();
|
|
111120
111257
|
const hidden = !contextPanel.isVisible || contextPanel.content !== "filters";
|
|
111121
111258
|
React80__default.default.useLayoutEffect(() => {
|
|
@@ -111132,6 +111269,7 @@ var BaseFiltersPanel = ({
|
|
|
111132
111269
|
"contextPanel--hidden": hidden
|
|
111133
111270
|
}),
|
|
111134
111271
|
"data-qa": "data-table-filters-context-panel",
|
|
111272
|
+
id: filtersPanelId,
|
|
111135
111273
|
...props
|
|
111136
111274
|
},
|
|
111137
111275
|
/* @__PURE__ */ React80__default.default.createElement(coreReact.Box, { className: cx20("contextPanelWrapper"), display: "flex-column" }, /* @__PURE__ */ React80__default.default.createElement(coreReact.Panel, null, /* @__PURE__ */ React80__default.default.createElement(coreReact.Panel.Header, { onClose: contextPanel.hide }, /* @__PURE__ */ React80__default.default.createElement(coreReact.Panel.Title, null, I18n.t("dataTable.filters.filters")), /* @__PURE__ */ React80__default.default.createElement(
|
|
@@ -111143,7 +111281,7 @@ var BaseFiltersPanel = ({
|
|
|
111143
111281
|
variant: "tertiary"
|
|
111144
111282
|
},
|
|
111145
111283
|
I18n.t("dataTable.filters.clearAllFilters")
|
|
111146
|
-
)), /* @__PURE__ */ React80__default.default.createElement(coreReact.Panel.Body, { className: cx20("contextPanelBody") }, /* @__PURE__ */ React80__default.default.createElement(coreReact.Panel.Section, null, children))))
|
|
111284
|
+
)), /* @__PURE__ */ React80__default.default.createElement(coreReact.Panel.Body, { id: filtersBodyId, className: cx20("contextPanelBody") }, /* @__PURE__ */ React80__default.default.createElement(coreReact.Panel.Section, null, children))))
|
|
111147
111285
|
);
|
|
111148
111286
|
};
|
|
111149
111287
|
function ClientSideFiltersPanel(props) {
|
|
@@ -111855,6 +111993,21 @@ var LocationQuickFilterRenderer_default = LocationQuickFilterRenderer;
|
|
|
111855
111993
|
var StyledFilterPresetPopoverContent = styled4__default.default(coreReact.Popover.Content)`
|
|
111856
111994
|
padding: ${coreReact.spacing.sm}px ${coreReact.spacing.lg}px;
|
|
111857
111995
|
`;
|
|
111996
|
+
var StyledClearButton = styled4__default.default(coreReact.Button)`
|
|
111997
|
+
position: absolute;
|
|
111998
|
+
right: ${coreReact.spacing.md + coreReact.spacing.lg}px;
|
|
111999
|
+
top: calc(36px / 2);
|
|
112000
|
+
transform: translateY(-50%);
|
|
112001
|
+
color: ${coreReact.colors.blue45};
|
|
112002
|
+
&:hover,
|
|
112003
|
+
&:focus {
|
|
112004
|
+
color: ${coreReact.colors.blue45};
|
|
112005
|
+
background: ${coreReact.colors.white};
|
|
112006
|
+
}
|
|
112007
|
+
`;
|
|
112008
|
+
var StyledTriggerContainerWrapper = styled4__default.default.div`
|
|
112009
|
+
position: relative;
|
|
112010
|
+
`;
|
|
111858
112011
|
var getValueLabel = (isValueEmpty, value, placeholder, filterName) => {
|
|
111859
112012
|
const prefixLabel = isValueEmpty ? placeholder || filterName : filterName;
|
|
111860
112013
|
const valueLabel = value ? `${prefixLabel ? ": " : ""}${value}` : "";
|
|
@@ -111874,7 +112027,7 @@ var getSuperSelectFilterPreset = (columnDefinition) => {
|
|
|
111874
112027
|
const ctx = coreReact.UNSAFE_useSuperSelectContext();
|
|
111875
112028
|
const I18n = coreReact.useI18nContext();
|
|
111876
112029
|
return /* @__PURE__ */ React80__default.default.createElement(
|
|
111877
|
-
|
|
112030
|
+
StyledClearButton,
|
|
111878
112031
|
{
|
|
111879
112032
|
...ctx.props.clear(),
|
|
111880
112033
|
"aria-label": I18n.t("dataTable.filters.removeFilterToken", {
|
|
@@ -111899,6 +112052,11 @@ var getSuperSelectFilterPreset = (columnDefinition) => {
|
|
|
111899
112052
|
filterName
|
|
111900
112053
|
)));
|
|
111901
112054
|
}),
|
|
112055
|
+
TriggerContainerWrapper: React80__default.default.forwardRef(
|
|
112056
|
+
(props, ref) => {
|
|
112057
|
+
return /* @__PURE__ */ React80__default.default.createElement(StyledTriggerContainerWrapper, { ref, ...props });
|
|
112058
|
+
}
|
|
112059
|
+
),
|
|
111902
112060
|
TriggerContainer: React80__default.default.forwardRef(
|
|
111903
112061
|
(props, ref) => {
|
|
111904
112062
|
const ctx = coreReact.UNSAFE_useSuperSelectContext();
|
|
@@ -111912,11 +112070,31 @@ var getSuperSelectFilterPreset = (columnDefinition) => {
|
|
|
111912
112070
|
}
|
|
111913
112071
|
);
|
|
111914
112072
|
}
|
|
112073
|
+
const {
|
|
112074
|
+
"aria-activedescendant": ariaActivedescendant,
|
|
112075
|
+
"aria-controls": ariaControls,
|
|
112076
|
+
"aria-expanded": ariaExpanded,
|
|
112077
|
+
"aria-haspopup": ariaHaspopup,
|
|
112078
|
+
"aria-label": ariaLabel,
|
|
112079
|
+
"aria-labelledby": ariaLabelledby,
|
|
112080
|
+
role,
|
|
112081
|
+
tabIndex
|
|
112082
|
+
} = ctx.props.multiInput();
|
|
112083
|
+
const a11yProps = {
|
|
112084
|
+
"aria-activedescendant": ariaActivedescendant,
|
|
112085
|
+
"aria-controls": ariaControls,
|
|
112086
|
+
"aria-expanded": ariaExpanded,
|
|
112087
|
+
"aria-haspopup": ariaHaspopup,
|
|
112088
|
+
"aria-label": ariaLabel,
|
|
112089
|
+
"aria-labelledby": ariaLabelledby,
|
|
112090
|
+
role,
|
|
112091
|
+
tabIndex
|
|
112092
|
+
};
|
|
111915
112093
|
return /* @__PURE__ */ React80__default.default.createElement(
|
|
111916
112094
|
coreReact.Popover,
|
|
111917
112095
|
{
|
|
111918
112096
|
placement: "top",
|
|
111919
|
-
trigger: ctx.state.value.length > 1 ? "hover" : "none",
|
|
112097
|
+
trigger: ctx.state.value.length > 1 ? ["hover", "focus"] : "none",
|
|
111920
112098
|
overlay: /* @__PURE__ */ React80__default.default.createElement(StyledFilterPresetPopoverContent, null, /* @__PURE__ */ React80__default.default.createElement(coreReact.Typography, null, ctx.state.value.map((v) => {
|
|
111921
112099
|
const option = ctx.state.options.find(
|
|
111922
112100
|
(option2) => ctx.option.value(option2) === v
|
|
@@ -111929,6 +112107,7 @@ var getSuperSelectFilterPreset = (columnDefinition) => {
|
|
|
111929
112107
|
{
|
|
111930
112108
|
$block: ctx.config.block,
|
|
111931
112109
|
...props,
|
|
112110
|
+
...a11yProps,
|
|
111932
112111
|
ref
|
|
111933
112112
|
}
|
|
111934
112113
|
)
|
|
@@ -112305,10 +112484,26 @@ var SingleSelectQuickFilterRenderer = (props) => {
|
|
|
112305
112484
|
return /* @__PURE__ */ React80__default.default.createElement(ClientSideSingleSelectQuickFilter, { ...props });
|
|
112306
112485
|
};
|
|
112307
112486
|
var SingleSelectQuickFilterRenderer_default = SingleSelectQuickFilterRenderer;
|
|
112487
|
+
var FOCUSABLE_SELECTOR2 = 'button:not([disabled]), input:not([disabled]), select:not([disabled]), textarea:not([disabled]), [tabindex]:not([tabindex="-1"])';
|
|
112308
112488
|
var FiltersPanelToggleButton = ({ hasDefinedFilters }) => {
|
|
112309
112489
|
const I18n = coreReact.useI18nContext();
|
|
112310
|
-
const { contextPanel } = useInternalTableContext();
|
|
112490
|
+
const { contextPanel, filtersBodyId, filtersPanelId } = useInternalTableContext();
|
|
112311
112491
|
const hasNoContent = useTableHasNoContent();
|
|
112492
|
+
const buttonRef = React80__default.default.useRef(null);
|
|
112493
|
+
const isFiltersOpen = contextPanel.content === "filters";
|
|
112494
|
+
const isMounted = React80__default.default.useRef(false);
|
|
112495
|
+
React80__default.default.useEffect(() => {
|
|
112496
|
+
if (!isMounted.current) {
|
|
112497
|
+
isMounted.current = true;
|
|
112498
|
+
return;
|
|
112499
|
+
}
|
|
112500
|
+
if (isFiltersOpen) {
|
|
112501
|
+
const panel = filtersBodyId ? document.getElementById(filtersBodyId) : null;
|
|
112502
|
+
panel?.querySelector(FOCUSABLE_SELECTOR2)?.focus();
|
|
112503
|
+
} else {
|
|
112504
|
+
buttonRef.current?.focus();
|
|
112505
|
+
}
|
|
112506
|
+
}, [isFiltersOpen, filtersBodyId]);
|
|
112312
112507
|
if (!hasDefinedFilters) {
|
|
112313
112508
|
return null;
|
|
112314
112509
|
}
|
|
@@ -112321,17 +112516,20 @@ var FiltersPanelToggleButton = ({ hasDefinedFilters }) => {
|
|
|
112321
112516
|
/* @__PURE__ */ React80__default.default.createElement(
|
|
112322
112517
|
coreReact.ToggleButton,
|
|
112323
112518
|
{
|
|
112519
|
+
ref: buttonRef,
|
|
112324
112520
|
"data-qa": "data-table-show-filters-button",
|
|
112325
112521
|
disabled: hasNoContent,
|
|
112326
112522
|
icon: /* @__PURE__ */ React80__default.default.createElement(FilterIcon, null),
|
|
112523
|
+
"aria-expanded": isFiltersOpen,
|
|
112524
|
+
"aria-controls": filtersPanelId,
|
|
112327
112525
|
onClick: () => {
|
|
112328
|
-
if (
|
|
112329
|
-
contextPanel.hide();
|
|
112330
|
-
} else {
|
|
112526
|
+
if (!isFiltersOpen) {
|
|
112331
112527
|
contextPanel.show("filters");
|
|
112528
|
+
} else {
|
|
112529
|
+
contextPanel.hide();
|
|
112332
112530
|
}
|
|
112333
112531
|
},
|
|
112334
|
-
selected:
|
|
112532
|
+
selected: isFiltersOpen
|
|
112335
112533
|
},
|
|
112336
112534
|
I18n.t("dataTable.filters.allFilters")
|
|
112337
112535
|
)
|
|
@@ -112722,6 +112920,7 @@ var ClientSideSearch = ({
|
|
|
112722
112920
|
const { tableRef } = useInternalTableContext();
|
|
112723
112921
|
const hasNoContent = useTableHasNoContent();
|
|
112724
112922
|
const I18n = coreReact.useI18nContext();
|
|
112923
|
+
const resolvedPlaceholder = placeholder || I18n.t("dataTable.search");
|
|
112725
112924
|
const debouncedSetSearchValue = React80__default.default.useCallback(
|
|
112726
112925
|
debounce5__default.default((value) => {
|
|
112727
112926
|
tableRef?.current?.setSearchValue(value);
|
|
@@ -112749,7 +112948,8 @@ var ClientSideSearch = ({
|
|
|
112749
112948
|
"search--empty": !internalValue.length
|
|
112750
112949
|
}),
|
|
112751
112950
|
onChange,
|
|
112752
|
-
placeholder:
|
|
112951
|
+
placeholder: resolvedPlaceholder,
|
|
112952
|
+
"aria-label": resolvedPlaceholder
|
|
112753
112953
|
}
|
|
112754
112954
|
));
|
|
112755
112955
|
};
|