@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/legacy/index.cjs
CHANGED
|
@@ -57890,6 +57890,7 @@ var ServerSideSearch = ({
|
|
|
57890
57890
|
const { updateServerSideDataSource } = useInternalTableContext();
|
|
57891
57891
|
const hasNoContent = useTableHasNoContent();
|
|
57892
57892
|
const I18n = coreReact.useI18nContext();
|
|
57893
|
+
const resolvedPlaceholder = placeholder || I18n.t("dataTable.search");
|
|
57893
57894
|
const debouncedSetSearchValue = React80__default.default.useCallback(
|
|
57894
57895
|
debounce5__default.default((value) => {
|
|
57895
57896
|
updateServerSideDataSource({ search: value });
|
|
@@ -57914,7 +57915,8 @@ var ServerSideSearch = ({
|
|
|
57914
57915
|
value: internalValue,
|
|
57915
57916
|
className: cx17("search", { "search--empty": !internalValue.length }),
|
|
57916
57917
|
onChange,
|
|
57917
|
-
placeholder:
|
|
57918
|
+
placeholder: resolvedPlaceholder,
|
|
57919
|
+
"aria-label": resolvedPlaceholder
|
|
57918
57920
|
}
|
|
57919
57921
|
));
|
|
57920
57922
|
};
|
|
@@ -57972,7 +57974,9 @@ var InternalTableContext = React80__default.default.createContext({
|
|
|
57972
57974
|
totalRowCount: 0,
|
|
57973
57975
|
setTotalRowCount: () => {
|
|
57974
57976
|
},
|
|
57975
|
-
hasDuplicateRowIds: false
|
|
57977
|
+
hasDuplicateRowIds: false,
|
|
57978
|
+
filtersPanelId: void 0,
|
|
57979
|
+
filtersBodyId: void 0
|
|
57976
57980
|
});
|
|
57977
57981
|
var useInternalTableContext = () => React80__default.default.useContext(InternalTableContext);
|
|
57978
57982
|
var prng = ulid$1.detectPrng(true);
|
|
@@ -103385,10 +103389,103 @@ function $8ae05eaa5c114e9c$export$7f54fc3180508a52(fn) {
|
|
|
103385
103389
|
return f === null || f === void 0 ? void 0 : f(...args);
|
|
103386
103390
|
}, []);
|
|
103387
103391
|
}
|
|
103392
|
+
var $b5e257d569688ac6$var$defaultContext = {
|
|
103393
|
+
prefix: String(Math.round(Math.random() * 1e10)),
|
|
103394
|
+
current: 0
|
|
103395
|
+
};
|
|
103396
|
+
var $b5e257d569688ac6$var$SSRContext = /* @__PURE__ */ (React80__default.default).createContext($b5e257d569688ac6$var$defaultContext);
|
|
103397
|
+
var $b5e257d569688ac6$var$IsSSRContext = /* @__PURE__ */ (React80__default.default).createContext(false);
|
|
103398
|
+
var $b5e257d569688ac6$var$canUseDOM = Boolean(typeof window !== "undefined" && window.document && window.document.createElement);
|
|
103399
|
+
var $b5e257d569688ac6$var$componentIds = /* @__PURE__ */ new WeakMap();
|
|
103400
|
+
function $b5e257d569688ac6$var$useCounter(isDisabled = false) {
|
|
103401
|
+
let ctx = (React80.useContext)($b5e257d569688ac6$var$SSRContext);
|
|
103402
|
+
let ref = (React80.useRef)(null);
|
|
103403
|
+
if (ref.current === null && !isDisabled) {
|
|
103404
|
+
var _React___SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED_ReactCurrentOwner, _React___SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;
|
|
103405
|
+
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;
|
|
103406
|
+
if (currentOwner) {
|
|
103407
|
+
let prevComponentValue = $b5e257d569688ac6$var$componentIds.get(currentOwner);
|
|
103408
|
+
if (prevComponentValue == null)
|
|
103409
|
+
$b5e257d569688ac6$var$componentIds.set(currentOwner, {
|
|
103410
|
+
id: ctx.current,
|
|
103411
|
+
state: currentOwner.memoizedState
|
|
103412
|
+
});
|
|
103413
|
+
else if (currentOwner.memoizedState !== prevComponentValue.state) {
|
|
103414
|
+
ctx.current = prevComponentValue.id;
|
|
103415
|
+
$b5e257d569688ac6$var$componentIds.delete(currentOwner);
|
|
103416
|
+
}
|
|
103417
|
+
}
|
|
103418
|
+
ref.current = ++ctx.current;
|
|
103419
|
+
}
|
|
103420
|
+
return ref.current;
|
|
103421
|
+
}
|
|
103422
|
+
function $b5e257d569688ac6$var$useLegacySSRSafeId(defaultId) {
|
|
103423
|
+
let ctx = (React80.useContext)($b5e257d569688ac6$var$SSRContext);
|
|
103424
|
+
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.");
|
|
103425
|
+
let counter2 = $b5e257d569688ac6$var$useCounter(!!defaultId);
|
|
103426
|
+
let prefix = ctx === $b5e257d569688ac6$var$defaultContext && process.env.NODE_ENV === "test" ? "react-aria" : `react-aria${ctx.prefix}`;
|
|
103427
|
+
return defaultId || `${prefix}-${counter2}`;
|
|
103428
|
+
}
|
|
103429
|
+
function $b5e257d569688ac6$var$useModernSSRSafeId(defaultId) {
|
|
103430
|
+
let id = (React80__default.default).useId();
|
|
103431
|
+
let [didSSR] = (React80.useState)($b5e257d569688ac6$export$535bd6ca7f90a273());
|
|
103432
|
+
let prefix = didSSR || process.env.NODE_ENV === "test" ? "react-aria" : `react-aria${$b5e257d569688ac6$var$defaultContext.prefix}`;
|
|
103433
|
+
return defaultId || `${prefix}-${id}`;
|
|
103434
|
+
}
|
|
103435
|
+
var $b5e257d569688ac6$export$619500959fc48b26 = typeof (React80__default.default)["useId"] === "function" ? $b5e257d569688ac6$var$useModernSSRSafeId : $b5e257d569688ac6$var$useLegacySSRSafeId;
|
|
103436
|
+
function $b5e257d569688ac6$var$getSnapshot() {
|
|
103437
|
+
return false;
|
|
103438
|
+
}
|
|
103439
|
+
function $b5e257d569688ac6$var$getServerSnapshot() {
|
|
103440
|
+
return true;
|
|
103441
|
+
}
|
|
103442
|
+
function $b5e257d569688ac6$var$subscribe(onStoreChange) {
|
|
103443
|
+
return () => {
|
|
103444
|
+
};
|
|
103445
|
+
}
|
|
103446
|
+
function $b5e257d569688ac6$export$535bd6ca7f90a273() {
|
|
103447
|
+
if (typeof (React80__default.default)["useSyncExternalStore"] === "function") return (React80__default.default)["useSyncExternalStore"]($b5e257d569688ac6$var$subscribe, $b5e257d569688ac6$var$getSnapshot, $b5e257d569688ac6$var$getServerSnapshot);
|
|
103448
|
+
return (React80.useContext)($b5e257d569688ac6$var$IsSSRContext);
|
|
103449
|
+
}
|
|
103450
|
+
|
|
103451
|
+
// ../../node_modules/@react-aria/utils/dist/useId.mjs
|
|
103452
|
+
var $bdb11010cef70236$var$canUseDOM = Boolean(typeof window !== "undefined" && window.document && window.document.createElement);
|
|
103388
103453
|
var $bdb11010cef70236$export$d41a04c74483c6ef = /* @__PURE__ */ new Map();
|
|
103389
|
-
|
|
103454
|
+
var $bdb11010cef70236$var$registry;
|
|
103455
|
+
if (typeof FinalizationRegistry !== "undefined") $bdb11010cef70236$var$registry = new FinalizationRegistry((heldValue) => {
|
|
103390
103456
|
$bdb11010cef70236$export$d41a04c74483c6ef.delete(heldValue);
|
|
103391
103457
|
});
|
|
103458
|
+
function $bdb11010cef70236$export$f680877a34711e37(defaultId) {
|
|
103459
|
+
let [value, setValue] = (React80.useState)(defaultId);
|
|
103460
|
+
let nextId = (React80.useRef)(null);
|
|
103461
|
+
let res = ($b5e257d569688ac6$export$619500959fc48b26)(value);
|
|
103462
|
+
let cleanupRef = (React80.useRef)(null);
|
|
103463
|
+
if ($bdb11010cef70236$var$registry) $bdb11010cef70236$var$registry.register(cleanupRef, res);
|
|
103464
|
+
if ($bdb11010cef70236$var$canUseDOM) {
|
|
103465
|
+
const cacheIdRef = $bdb11010cef70236$export$d41a04c74483c6ef.get(res);
|
|
103466
|
+
if (cacheIdRef && !cacheIdRef.includes(nextId)) cacheIdRef.push(nextId);
|
|
103467
|
+
else $bdb11010cef70236$export$d41a04c74483c6ef.set(res, [
|
|
103468
|
+
nextId
|
|
103469
|
+
]);
|
|
103470
|
+
}
|
|
103471
|
+
($f0a04ccd8dbdd83b$export$e5c5a5f917a5871c)(() => {
|
|
103472
|
+
let r2 = res;
|
|
103473
|
+
return () => {
|
|
103474
|
+
if ($bdb11010cef70236$var$registry) $bdb11010cef70236$var$registry.unregister(cleanupRef);
|
|
103475
|
+
$bdb11010cef70236$export$d41a04c74483c6ef.delete(r2);
|
|
103476
|
+
};
|
|
103477
|
+
}, [
|
|
103478
|
+
res
|
|
103479
|
+
]);
|
|
103480
|
+
(React80.useEffect)(() => {
|
|
103481
|
+
let newId = nextId.current;
|
|
103482
|
+
if (newId) setValue(newId);
|
|
103483
|
+
return () => {
|
|
103484
|
+
if (newId) nextId.current = null;
|
|
103485
|
+
};
|
|
103486
|
+
});
|
|
103487
|
+
return res;
|
|
103488
|
+
}
|
|
103392
103489
|
function $bdb11010cef70236$export$cd8c9cb68f842629(idA, idB) {
|
|
103393
103490
|
if (idA === idB) return idA;
|
|
103394
103491
|
let setIdsA = $bdb11010cef70236$export$d41a04c74483c6ef.get(idA);
|
|
@@ -105154,7 +105251,8 @@ var de_DE_default = {
|
|
|
105154
105251
|
exporting: "Wird exportiert\xA0\u2026",
|
|
105155
105252
|
filters: {
|
|
105156
105253
|
filters: "Filter",
|
|
105157
|
-
allFilters: "
|
|
105254
|
+
allFilters: "Alle Filter",
|
|
105255
|
+
moreFilters: "Weitere Filter",
|
|
105158
105256
|
clearAllFilters: "Alle Filter zur\xFCcksetzen",
|
|
105159
105257
|
close: "Schlie\xDFen",
|
|
105160
105258
|
removeFilterToken: "%{name} entfernen",
|
|
@@ -105173,6 +105271,7 @@ var de_DE_default = {
|
|
|
105173
105271
|
options: {
|
|
105174
105272
|
any_value: "Beliebiger Wert",
|
|
105175
105273
|
is_between: "Ist zwischen",
|
|
105274
|
+
is_equal_to: "Ist gleich",
|
|
105176
105275
|
greater_than: "Ist gr\xF6\xDFer als",
|
|
105177
105276
|
greater_than_equal_to: "Ist gr\xF6\xDFer als oder gleich",
|
|
105178
105277
|
less_than: "Ist kleiner als",
|
|
@@ -105251,7 +105350,7 @@ var de_DE_default = {
|
|
|
105251
105350
|
placeholder: "W\xE4hrung eingeben"
|
|
105252
105351
|
},
|
|
105253
105352
|
linkCell: {
|
|
105254
|
-
externalLabel: "
|
|
105353
|
+
externalLabel: "Externen Link \xF6ffnen"
|
|
105255
105354
|
},
|
|
105256
105355
|
numberCell: {
|
|
105257
105356
|
placeholder: "Nummer eingeben"
|
|
@@ -105333,7 +105432,8 @@ var en_AU_default = {
|
|
|
105333
105432
|
exporting: "Exporting...",
|
|
105334
105433
|
filters: {
|
|
105335
105434
|
filters: "Filters",
|
|
105336
|
-
allFilters: "All
|
|
105435
|
+
allFilters: "All filters",
|
|
105436
|
+
moreFilters: "More filters",
|
|
105337
105437
|
clearAllFilters: "Clear all filters",
|
|
105338
105438
|
close: "Close",
|
|
105339
105439
|
removeFilterToken: "Remove %{name}",
|
|
@@ -105352,6 +105452,7 @@ var en_AU_default = {
|
|
|
105352
105452
|
options: {
|
|
105353
105453
|
any_value: "Any value",
|
|
105354
105454
|
is_between: "Is between",
|
|
105455
|
+
is_equal_to: "Is equal to",
|
|
105355
105456
|
greater_than: "Is greater than",
|
|
105356
105457
|
greater_than_equal_to: "Is greater than or equal to",
|
|
105357
105458
|
less_than: "Is less than",
|
|
@@ -105512,7 +105613,8 @@ var en_CA_default = {
|
|
|
105512
105613
|
exporting: "Exporting...",
|
|
105513
105614
|
filters: {
|
|
105514
105615
|
filters: "Filters",
|
|
105515
|
-
allFilters: "All
|
|
105616
|
+
allFilters: "All filters",
|
|
105617
|
+
moreFilters: "More filters",
|
|
105516
105618
|
clearAllFilters: "Clear all filters",
|
|
105517
105619
|
close: "Close",
|
|
105518
105620
|
removeFilterToken: "Remove %{name}",
|
|
@@ -105531,6 +105633,7 @@ var en_CA_default = {
|
|
|
105531
105633
|
options: {
|
|
105532
105634
|
any_value: "Any value",
|
|
105533
105635
|
is_between: "Is between",
|
|
105636
|
+
is_equal_to: "Is equal to",
|
|
105534
105637
|
greater_than: "Is greater than",
|
|
105535
105638
|
greater_than_equal_to: "Is greater than or equal to",
|
|
105536
105639
|
less_than: "Is less than",
|
|
@@ -105691,7 +105794,8 @@ var en_GB_default = {
|
|
|
105691
105794
|
exporting: "Exporting...",
|
|
105692
105795
|
filters: {
|
|
105693
105796
|
filters: "Filters",
|
|
105694
|
-
allFilters: "All
|
|
105797
|
+
allFilters: "All filters",
|
|
105798
|
+
moreFilters: "More filters",
|
|
105695
105799
|
clearAllFilters: "Clear all filters",
|
|
105696
105800
|
close: "Close",
|
|
105697
105801
|
removeFilterToken: "Remove %{name}",
|
|
@@ -105710,6 +105814,7 @@ var en_GB_default = {
|
|
|
105710
105814
|
options: {
|
|
105711
105815
|
any_value: "Any value",
|
|
105712
105816
|
is_between: "Is between",
|
|
105817
|
+
is_equal_to: "Is equal to",
|
|
105713
105818
|
greater_than: "Is greater than",
|
|
105714
105819
|
greater_than_equal_to: "Is greater than or equal to",
|
|
105715
105820
|
less_than: "Is less than",
|
|
@@ -106051,7 +106156,8 @@ var es_ES_default = {
|
|
|
106051
106156
|
exporting: "Exportando...",
|
|
106052
106157
|
filters: {
|
|
106053
106158
|
filters: "Filtros",
|
|
106054
|
-
allFilters: "
|
|
106159
|
+
allFilters: "Todos los filtros",
|
|
106160
|
+
moreFilters: "M\xE1s filtros",
|
|
106055
106161
|
clearAllFilters: "Borrar todos los filtros",
|
|
106056
106162
|
close: "Cerrar",
|
|
106057
106163
|
removeFilterToken: "Eliminar %{name}",
|
|
@@ -106070,6 +106176,7 @@ var es_ES_default = {
|
|
|
106070
106176
|
options: {
|
|
106071
106177
|
any_value: "Cualquier valor",
|
|
106072
106178
|
is_between: "Est\xE1 entre",
|
|
106179
|
+
is_equal_to: "Es igual a",
|
|
106073
106180
|
greater_than: "Es mayor que",
|
|
106074
106181
|
greater_than_equal_to: "Es mayor o igual que",
|
|
106075
106182
|
less_than: "Es menor que",
|
|
@@ -106148,7 +106255,7 @@ var es_ES_default = {
|
|
|
106148
106255
|
placeholder: "Introducir moneda"
|
|
106149
106256
|
},
|
|
106150
106257
|
linkCell: {
|
|
106151
|
-
externalLabel: "
|
|
106258
|
+
externalLabel: "Abrir enlace externo"
|
|
106152
106259
|
},
|
|
106153
106260
|
numberCell: {
|
|
106154
106261
|
placeholder: "Introducir n\xFAmero"
|
|
@@ -106230,7 +106337,8 @@ var es_default = {
|
|
|
106230
106337
|
exporting: "Exportando...",
|
|
106231
106338
|
filters: {
|
|
106232
106339
|
filters: "Filtros",
|
|
106233
|
-
allFilters: "
|
|
106340
|
+
allFilters: "Todos los filtros",
|
|
106341
|
+
moreFilters: "M\xE1s filtros",
|
|
106234
106342
|
clearAllFilters: "Restablecer todos los filtros",
|
|
106235
106343
|
close: "Cerrar",
|
|
106236
106344
|
removeFilterToken: "Eliminar %{name}",
|
|
@@ -106249,6 +106357,7 @@ var es_default = {
|
|
|
106249
106357
|
options: {
|
|
106250
106358
|
any_value: "Cualquier valor",
|
|
106251
106359
|
is_between: "Est\xE1 entre",
|
|
106360
|
+
is_equal_to: "Es igual a",
|
|
106252
106361
|
greater_than: "Es mayor que",
|
|
106253
106362
|
greater_than_equal_to: "Es mayor o igual que",
|
|
106254
106363
|
less_than: "Es menor que",
|
|
@@ -106327,7 +106436,7 @@ var es_default = {
|
|
|
106327
106436
|
placeholder: "Ingresar moneda"
|
|
106328
106437
|
},
|
|
106329
106438
|
linkCell: {
|
|
106330
|
-
externalLabel: "
|
|
106439
|
+
externalLabel: "Abrir enlace externo"
|
|
106331
106440
|
},
|
|
106332
106441
|
numberCell: {
|
|
106333
106442
|
placeholder: "Ingresar n\xFAmero"
|
|
@@ -106409,7 +106518,8 @@ var fr_CA_default = {
|
|
|
106409
106518
|
exporting: "Exportation ...",
|
|
106410
106519
|
filters: {
|
|
106411
106520
|
filters: "Filtres",
|
|
106412
|
-
allFilters: "
|
|
106521
|
+
allFilters: "Tous les filtres",
|
|
106522
|
+
moreFilters: "Plus de filtres",
|
|
106413
106523
|
clearAllFilters: "Effacer tous les filtres",
|
|
106414
106524
|
close: "Fermer",
|
|
106415
106525
|
removeFilterToken: "Retirer %{name}",
|
|
@@ -106428,6 +106538,7 @@ var fr_CA_default = {
|
|
|
106428
106538
|
options: {
|
|
106429
106539
|
any_value: "N'importe quelle valeur",
|
|
106430
106540
|
is_between: "Est entre",
|
|
106541
|
+
is_equal_to: "Est \xE9gal \xE0",
|
|
106431
106542
|
greater_than: "Est sup\xE9rieur \xE0",
|
|
106432
106543
|
greater_than_equal_to: "Est sup\xE9rieur ou \xE9gal \xE0",
|
|
106433
106544
|
less_than: "Est inf\xE9rieur \xE0",
|
|
@@ -106506,7 +106617,7 @@ var fr_CA_default = {
|
|
|
106506
106617
|
placeholder: "Saisir la devise"
|
|
106507
106618
|
},
|
|
106508
106619
|
linkCell: {
|
|
106509
|
-
externalLabel: "
|
|
106620
|
+
externalLabel: "Lien externe ouvert"
|
|
106510
106621
|
},
|
|
106511
106622
|
numberCell: {
|
|
106512
106623
|
placeholder: "Saisir un num\xE9ro"
|
|
@@ -106588,7 +106699,8 @@ var fr_FR_default = {
|
|
|
106588
106699
|
exporting: "Exportation...",
|
|
106589
106700
|
filters: {
|
|
106590
106701
|
filters: "Filtres",
|
|
106591
|
-
allFilters: "
|
|
106702
|
+
allFilters: "Tous les filtres",
|
|
106703
|
+
moreFilters: "Plus de filtres",
|
|
106592
106704
|
clearAllFilters: "Effacer tous les filtres",
|
|
106593
106705
|
close: "Fermer",
|
|
106594
106706
|
removeFilterToken: "Retirer %{name}",
|
|
@@ -106607,6 +106719,7 @@ var fr_FR_default = {
|
|
|
106607
106719
|
options: {
|
|
106608
106720
|
any_value: "N'importe quelle valeur",
|
|
106609
106721
|
is_between: "Est comprise entre",
|
|
106722
|
+
is_equal_to: "Est \xE9gal \xE0",
|
|
106610
106723
|
greater_than: "Est sup\xE9rieure \xE0",
|
|
106611
106724
|
greater_than_equal_to: "Est sup\xE9rieure ou \xE9gale \xE0",
|
|
106612
106725
|
less_than: "Est inf\xE9rieure \xE0",
|
|
@@ -106670,8 +106783,8 @@ var fr_FR_default = {
|
|
|
106670
106783
|
},
|
|
106671
106784
|
rowGroupToggle: {
|
|
106672
106785
|
expandTierOne: "Ouvrez les premiers groupes du tableau.",
|
|
106673
|
-
expandAll: "
|
|
106674
|
-
collapseAll: "Fermer tous les groupes du tableau
|
|
106786
|
+
expandAll: "Ouvrir tous les groupes du tableau",
|
|
106787
|
+
collapseAll: "Fermer tous les groupes du tableau"
|
|
106675
106788
|
},
|
|
106676
106789
|
columnGroupToggle: {
|
|
106677
106790
|
collapse: "R\xE9duire le groupe de colonnes",
|
|
@@ -106685,7 +106798,7 @@ var fr_FR_default = {
|
|
|
106685
106798
|
placeholder: "Saisir la devise"
|
|
106686
106799
|
},
|
|
106687
106800
|
linkCell: {
|
|
106688
|
-
externalLabel: "
|
|
106801
|
+
externalLabel: "Ouvrir le lien externe"
|
|
106689
106802
|
},
|
|
106690
106803
|
numberCell: {
|
|
106691
106804
|
placeholder: "Saisir un num\xE9ro"
|
|
@@ -106767,7 +106880,8 @@ var is_IS_default = {
|
|
|
106767
106880
|
exporting: "Flytur \xFAt ...",
|
|
106768
106881
|
filters: {
|
|
106769
106882
|
filters: "S\xEDur",
|
|
106770
|
-
allFilters: "
|
|
106883
|
+
allFilters: "Allar s\xEDur",
|
|
106884
|
+
moreFilters: "Fleiri s\xEDur",
|
|
106771
106885
|
clearAllFilters: "Hreinsa allar s\xEDur",
|
|
106772
106886
|
close: "Loka\xF0u",
|
|
106773
106887
|
removeFilterToken: "Fjarl\xE6gja %{name}",
|
|
@@ -106786,6 +106900,7 @@ var is_IS_default = {
|
|
|
106786
106900
|
options: {
|
|
106787
106901
|
any_value: "Hva\xF0a gildi sem er",
|
|
106788
106902
|
is_between: "Er \xE1 milli",
|
|
106903
|
+
is_equal_to: "Er jafnt",
|
|
106789
106904
|
greater_than: "Er meiri en",
|
|
106790
106905
|
greater_than_equal_to: "Er st\xE6rra en e\xF0a jafnt",
|
|
106791
106906
|
less_than: "Er minna en",
|
|
@@ -106864,7 +106979,7 @@ var is_IS_default = {
|
|
|
106864
106979
|
placeholder: "Sl\xE1\xF0u inn gjaldmi\xF0il"
|
|
106865
106980
|
},
|
|
106866
106981
|
linkCell: {
|
|
106867
|
-
externalLabel: "
|
|
106982
|
+
externalLabel: "Opna utana\xF0komandi tengil"
|
|
106868
106983
|
},
|
|
106869
106984
|
numberCell: {
|
|
106870
106985
|
placeholder: "Sl\xE1\xF0u inn n\xFAmer"
|
|
@@ -106946,7 +107061,8 @@ var it_IT_default = {
|
|
|
106946
107061
|
exporting: "Esportazione in corso...",
|
|
106947
107062
|
filters: {
|
|
106948
107063
|
filters: "Filtri",
|
|
106949
|
-
allFilters: "
|
|
107064
|
+
allFilters: "Tutti i filtri",
|
|
107065
|
+
moreFilters: "Altri filtri",
|
|
106950
107066
|
clearAllFilters: "Cancella tutti i filtri",
|
|
106951
107067
|
close: "Chiudi",
|
|
106952
107068
|
removeFilterToken: "Rimuovi %{name}",
|
|
@@ -106965,6 +107081,7 @@ var it_IT_default = {
|
|
|
106965
107081
|
options: {
|
|
106966
107082
|
any_value: "Qualsiasi valore",
|
|
106967
107083
|
is_between: "\xC8 compreso tra",
|
|
107084
|
+
is_equal_to: "\xC8 uguale a",
|
|
106968
107085
|
greater_than: "\xC8 maggiore di",
|
|
106969
107086
|
greater_than_equal_to: "\xC8 maggiore o uguale a",
|
|
106970
107087
|
less_than: "\xC8 minore di",
|
|
@@ -107043,7 +107160,7 @@ var it_IT_default = {
|
|
|
107043
107160
|
placeholder: "Inserisci valuta"
|
|
107044
107161
|
},
|
|
107045
107162
|
linkCell: {
|
|
107046
|
-
externalLabel: "
|
|
107163
|
+
externalLabel: "Apri collegamento esterno"
|
|
107047
107164
|
},
|
|
107048
107165
|
numberCell: {
|
|
107049
107166
|
placeholder: "Inserisci numero"
|
|
@@ -107125,7 +107242,8 @@ var ja_JP_default = {
|
|
|
107125
107242
|
exporting: "\u30A8\u30AF\u30B9\u30DD\u30FC\u30C8\u4E2D...",
|
|
107126
107243
|
filters: {
|
|
107127
107244
|
filters: "\u30D5\u30A3\u30EB\u30BF",
|
|
107128
|
-
allFilters: "
|
|
107245
|
+
allFilters: "\u3059\u3079\u3066\u306E\u30D5\u30A3\u30EB\u30BF\u30FC",
|
|
107246
|
+
moreFilters: "\u305D\u306E\u4ED6\u306E\u30D5\u30A3\u30EB\u30BF",
|
|
107129
107247
|
clearAllFilters: "\u3059\u3079\u3066\u306E\u30D5\u30A3\u30EB\u30BF\u3092\u6D88\u53BB",
|
|
107130
107248
|
close: "\u7D42\u4E86",
|
|
107131
107249
|
removeFilterToken: "%{name}\u524A\u9664",
|
|
@@ -107144,6 +107262,7 @@ var ja_JP_default = {
|
|
|
107144
107262
|
options: {
|
|
107145
107263
|
any_value: "\u4EFB\u610F\u306E\u5024",
|
|
107146
107264
|
is_between: "\u9593\u306B\u3042\u308B",
|
|
107265
|
+
is_equal_to: "\u7B49\u3057\u3044",
|
|
107147
107266
|
greater_than: "\u3088\u308A\u5927\u304D\u3044",
|
|
107148
107267
|
greater_than_equal_to: "\u4EE5\u4E0A\u3067\u3042\u308B",
|
|
107149
107268
|
less_than: "\u672A\u6E80\u3067\u3042\u308B",
|
|
@@ -107222,7 +107341,7 @@ var ja_JP_default = {
|
|
|
107222
107341
|
placeholder: "\u901A\u8CA8\u3092\u5165\u529B"
|
|
107223
107342
|
},
|
|
107224
107343
|
linkCell: {
|
|
107225
|
-
externalLabel: "
|
|
107344
|
+
externalLabel: "\u5916\u90E8\u30EA\u30F3\u30AF\u3092\u958B\u304F"
|
|
107226
107345
|
},
|
|
107227
107346
|
numberCell: {
|
|
107228
107347
|
placeholder: "\u756A\u53F7\u3092\u5165\u529B"
|
|
@@ -107267,156 +107386,158 @@ var nb_NO_default = {
|
|
|
107267
107386
|
dataTable: {
|
|
107268
107387
|
emptyState: {
|
|
107269
107388
|
noFilteredResults: {
|
|
107270
|
-
description: "
|
|
107271
|
-
title: "Ingen
|
|
107272
|
-
itemsTitle: "
|
|
107389
|
+
description: "Sjekk stavem\xE5ten og filteralternativene dine, eller s\xF8k etter et annet n\xF8kkelord.",
|
|
107390
|
+
title: "Ingen elementer samsvarer med s\xF8ket ditt",
|
|
107391
|
+
itemsTitle: "Ingen %{itemsLabel} samsvarer med s\xF8ket ditt"
|
|
107273
107392
|
},
|
|
107274
107393
|
noResults: {
|
|
107275
|
-
description: "
|
|
107276
|
-
title: "
|
|
107277
|
-
itemsTitle: "
|
|
107278
|
-
tooltip: "
|
|
107279
|
-
searchTooltip: "
|
|
107394
|
+
description: "N\xE5r teamet ditt har opprettet disse elementene, kan du f\xE5 tilgang til dem her. ",
|
|
107395
|
+
title: "Det er ingen elementer \xE5 vise akkurat n\xE5",
|
|
107396
|
+
itemsTitle: "Det er ingen %{itemsLabel} \xE5 vise akkurat n\xE5",
|
|
107397
|
+
tooltip: "%{featureName} -knappen vil bli aktivert n\xE5r du legger til informasjon i %{tableName}",
|
|
107398
|
+
searchTooltip: "S\xF8k vil bli aktivert n\xE5r du legger til informasjon i %{tableName}",
|
|
107280
107399
|
featureFilter: "Filter",
|
|
107281
|
-
featureQuickFilter: "
|
|
107282
|
-
featureGroupBy: "
|
|
107283
|
-
featureConfigure: "
|
|
107284
|
-
tableNameFallback: "
|
|
107400
|
+
featureQuickFilter: "Hurtigfilter",
|
|
107401
|
+
featureGroupBy: "Grupper etter",
|
|
107402
|
+
featureConfigure: "Konfigurer",
|
|
107403
|
+
tableNameFallback: "bord"
|
|
107285
107404
|
}
|
|
107286
107405
|
},
|
|
107287
107406
|
bulkActions: {
|
|
107288
|
-
apply: "
|
|
107289
|
-
bulkEdit: "
|
|
107407
|
+
apply: "S\xF8k",
|
|
107408
|
+
bulkEdit: "Masseendring",
|
|
107290
107409
|
cancel: "Avbryt",
|
|
107291
|
-
editValues: "
|
|
107292
|
-
error: "
|
|
107293
|
-
placeholderForField: "
|
|
107294
|
-
selection: "%{count} %{number}
|
|
107410
|
+
editValues: "Rediger verdier",
|
|
107411
|
+
error: "Beklager, elementene kunne ikke oppdateres. Pr\xF8v igjen.",
|
|
107412
|
+
placeholderForField: "Skriv inn %{fieldName}",
|
|
107413
|
+
selection: "%{count} %{number} valgt",
|
|
107295
107414
|
selection_count: {
|
|
107296
|
-
zero: "%{count}
|
|
107297
|
-
one: "%{count}
|
|
107298
|
-
other: "%{count}
|
|
107415
|
+
zero: "%{count} elementer valgt",
|
|
107416
|
+
one: "%{count} element valgt",
|
|
107417
|
+
other: "%{count} elementer valgt"
|
|
107299
107418
|
},
|
|
107300
|
-
success: "
|
|
107301
|
-
one: "
|
|
107302
|
-
many: "
|
|
107419
|
+
success: "Elementene ble oppdatert.",
|
|
107420
|
+
one: "element",
|
|
107421
|
+
many: "gjenstander"
|
|
107303
107422
|
},
|
|
107304
|
-
exporting: "
|
|
107423
|
+
exporting: "Eksporterer...",
|
|
107305
107424
|
filters: {
|
|
107306
107425
|
filters: "Filtre",
|
|
107307
|
-
allFilters: "
|
|
107308
|
-
|
|
107309
|
-
|
|
107426
|
+
allFilters: "Alle filtre",
|
|
107427
|
+
moreFilters: "More Filters",
|
|
107428
|
+
clearAllFilters: "Fjern alle filtre",
|
|
107429
|
+
close: "Lukk",
|
|
107310
107430
|
removeFilterToken: "Fjern %{name}",
|
|
107311
107431
|
locationFilter: {
|
|
107312
107432
|
selectAll: "Velg alle",
|
|
107313
|
-
includeSublocations: "
|
|
107314
|
-
searchLocations: "
|
|
107315
|
-
locations: "
|
|
107433
|
+
includeSublocations: "Inkluder underlokasjoner",
|
|
107434
|
+
searchLocations: "S\xF8k etter steder",
|
|
107435
|
+
locations: "Steder"
|
|
107316
107436
|
},
|
|
107317
107437
|
numberFilter: {
|
|
107318
107438
|
labels: {
|
|
107319
|
-
and: "
|
|
107320
|
-
input_placeholder: "
|
|
107321
|
-
placeholder: "
|
|
107439
|
+
and: "og",
|
|
107440
|
+
input_placeholder: "Angi verdi",
|
|
107441
|
+
placeholder: "Velg et element"
|
|
107322
107442
|
},
|
|
107323
107443
|
options: {
|
|
107324
|
-
any_value: "
|
|
107325
|
-
is_between: "
|
|
107326
|
-
|
|
107327
|
-
|
|
107328
|
-
|
|
107329
|
-
|
|
107330
|
-
|
|
107444
|
+
any_value: "Enhver verdi",
|
|
107445
|
+
is_between: "Er mellom",
|
|
107446
|
+
is_equal_to: "Er lik",
|
|
107447
|
+
greater_than: "Er st\xF8rre enn",
|
|
107448
|
+
greater_than_equal_to: "Er st\xF8rre enn eller lik",
|
|
107449
|
+
less_than: "Er mindre enn",
|
|
107450
|
+
less_than_equal_to: "Er mindre enn eller lik",
|
|
107451
|
+
no_value: "Ingen verdi"
|
|
107331
107452
|
}
|
|
107332
107453
|
},
|
|
107333
107454
|
singleSelectFilter: {
|
|
107334
|
-
placeholder: "
|
|
107455
|
+
placeholder: "Velg en verdi"
|
|
107335
107456
|
},
|
|
107336
107457
|
multiSelectQuickFilter: {
|
|
107337
|
-
ariaLabel: "
|
|
107458
|
+
ariaLabel: "Hurtigfilter: Velg flere alternativer"
|
|
107338
107459
|
},
|
|
107339
107460
|
singleSelectQuickFilter: {
|
|
107340
|
-
ariaLabel: "
|
|
107461
|
+
ariaLabel: "Hurtigfilter: Velg et alternativ"
|
|
107341
107462
|
}
|
|
107342
107463
|
},
|
|
107343
107464
|
loading: {
|
|
107344
|
-
initial: "
|
|
107345
|
-
secondary: "
|
|
107465
|
+
initial: "Laster inn informasjon.",
|
|
107466
|
+
secondary: "Informasjon lastes, takk for t\xE5lmodigheten."
|
|
107346
107467
|
},
|
|
107347
107468
|
menuOptions: {
|
|
107348
107469
|
ariaMenuColumn: "Trykk p\xE5 Alt/Option og pil ned for \xE5 \xE5pne kolonnemenyen.",
|
|
107349
107470
|
sortMenuItem: {
|
|
107350
|
-
label: "
|
|
107351
|
-
sortAscItem: "
|
|
107352
|
-
sortDescItem: "
|
|
107353
|
-
sortResetItem: "
|
|
107354
|
-
sortAscending: "
|
|
107355
|
-
sortDescending: "
|
|
107356
|
-
sortCleared: "
|
|
107357
|
-
},
|
|
107358
|
-
expandAllGroups: "
|
|
107359
|
-
collapseAllGroups: "
|
|
107360
|
-
pinColumn: "
|
|
107361
|
-
pinLeft: "
|
|
107362
|
-
pinRight: "
|
|
107363
|
-
noPin: "
|
|
107364
|
-
autoSizeThisColumn: "
|
|
107365
|
-
autoSizeAllColumns: "
|
|
107366
|
-
hideColumn: "
|
|
107367
|
-
resetColumns: "
|
|
107368
|
-
unGroupBy: "
|
|
107369
|
-
groupBy: "
|
|
107471
|
+
label: "Sorter etter denne kolonnen",
|
|
107472
|
+
sortAscItem: "Sorter kolonne stigende",
|
|
107473
|
+
sortDescItem: "Sorter kolonne synkende",
|
|
107474
|
+
sortResetItem: "Kolonne ikke sortert",
|
|
107475
|
+
sortAscending: "sortert stigende",
|
|
107476
|
+
sortDescending: "sortert synkende",
|
|
107477
|
+
sortCleared: "Sortering fjernet"
|
|
107478
|
+
},
|
|
107479
|
+
expandAllGroups: "Utvid alle grupper",
|
|
107480
|
+
collapseAllGroups: "Skjul alle grupper",
|
|
107481
|
+
pinColumn: "Fest kolonne",
|
|
107482
|
+
pinLeft: "Fest til venstre",
|
|
107483
|
+
pinRight: "Fest til h\xF8yre",
|
|
107484
|
+
noPin: "Ingen PIN",
|
|
107485
|
+
autoSizeThisColumn: "Tilpass kolonnebredden automatisk",
|
|
107486
|
+
autoSizeAllColumns: "Tilpass alle kolonner automatisk",
|
|
107487
|
+
hideColumn: "Skjul kolonne",
|
|
107488
|
+
resetColumns: "Tilbakestill kolonner",
|
|
107489
|
+
unGroupBy: "Fjern gruppering etter {{label}}",
|
|
107490
|
+
groupBy: "Grupper etter {{label}}"
|
|
107370
107491
|
},
|
|
107371
|
-
grandTotals: "
|
|
107492
|
+
grandTotals: "Totale summer",
|
|
107372
107493
|
search: "S\xF8k",
|
|
107373
|
-
subtotals: "
|
|
107494
|
+
subtotals: "Delsummer",
|
|
107374
107495
|
tableSettings: {
|
|
107375
|
-
configureColumns: "
|
|
107376
|
-
resetToDefault: "
|
|
107377
|
-
rowHeight: "
|
|
107378
|
-
small: "
|
|
107379
|
-
medium: "
|
|
107380
|
-
large: "
|
|
107381
|
-
tableSettings: "
|
|
107382
|
-
groupBy: "
|
|
107496
|
+
configureColumns: "Konfigurer kolonner",
|
|
107497
|
+
resetToDefault: "Vis alle",
|
|
107498
|
+
rowHeight: "Radh\xF8yde",
|
|
107499
|
+
small: "Liten",
|
|
107500
|
+
medium: "Middels",
|
|
107501
|
+
large: "Stor",
|
|
107502
|
+
tableSettings: "Borddekking",
|
|
107503
|
+
groupBy: "Grupper etter:",
|
|
107383
107504
|
reset: "Tilbakestill",
|
|
107384
|
-
selectColumnGroup: "
|
|
107385
|
-
configure: "
|
|
107505
|
+
selectColumnGroup: "Velg en kolonne \xE5 gruppere",
|
|
107506
|
+
configure: "Konfigurer"
|
|
107386
107507
|
},
|
|
107387
107508
|
rowGroupToggle: {
|
|
107388
|
-
expandTierOne: "
|
|
107389
|
-
expandAll: "
|
|
107390
|
-
collapseAll: "
|
|
107509
|
+
expandTierOne: "\xC5pne de f\xF8rste gruppene i tabellen.",
|
|
107510
|
+
expandAll: "\xC5pne alle grupper i tabellen.",
|
|
107511
|
+
collapseAll: "Lukk alle grupper i tabellen."
|
|
107391
107512
|
},
|
|
107392
107513
|
columnGroupToggle: {
|
|
107393
|
-
collapse: "
|
|
107394
|
-
expand: "
|
|
107514
|
+
collapse: "Skjul kolonnegruppe",
|
|
107515
|
+
expand: "Utvid kolonnegruppe"
|
|
107395
107516
|
},
|
|
107396
107517
|
cells: {
|
|
107397
107518
|
textCell: {
|
|
107398
|
-
placeholder: "
|
|
107519
|
+
placeholder: "Skriv inn tekst"
|
|
107399
107520
|
},
|
|
107400
107521
|
currencyCell: {
|
|
107401
|
-
placeholder: "
|
|
107522
|
+
placeholder: "Angi valuta"
|
|
107402
107523
|
},
|
|
107403
107524
|
linkCell: {
|
|
107404
|
-
externalLabel: "
|
|
107525
|
+
externalLabel: "\xC5pne ekstern kobling"
|
|
107405
107526
|
},
|
|
107406
107527
|
numberCell: {
|
|
107407
|
-
placeholder: "
|
|
107528
|
+
placeholder: "Skriv inn nummer"
|
|
107408
107529
|
},
|
|
107409
107530
|
percentCell: {
|
|
107410
|
-
placeholder: "
|
|
107531
|
+
placeholder: "Skriv inn %"
|
|
107411
107532
|
},
|
|
107412
107533
|
pillCell: {
|
|
107413
|
-
placeholder: "
|
|
107534
|
+
placeholder: "Velg {{label}}"
|
|
107414
107535
|
},
|
|
107415
107536
|
selectCell: {
|
|
107416
|
-
placeholder: "
|
|
107537
|
+
placeholder: "Velg {{label}}"
|
|
107417
107538
|
},
|
|
107418
107539
|
multiSelectCell: {
|
|
107419
|
-
placeholder: "
|
|
107540
|
+
placeholder: "Velg verdier"
|
|
107420
107541
|
},
|
|
107421
107542
|
booleanCell: {
|
|
107422
107543
|
options: {
|
|
@@ -107427,16 +107548,16 @@ var nb_NO_default = {
|
|
|
107427
107548
|
},
|
|
107428
107549
|
filterRenders: {
|
|
107429
107550
|
dateFilter: {
|
|
107430
|
-
single: "
|
|
107431
|
-
range: "
|
|
107551
|
+
single: "Enslig",
|
|
107552
|
+
range: "Rekkevidde"
|
|
107432
107553
|
}
|
|
107433
107554
|
},
|
|
107434
107555
|
groupCell: {
|
|
107435
|
-
expand: "
|
|
107436
|
-
collapse: "
|
|
107556
|
+
expand: "Utvid gruppe",
|
|
107557
|
+
collapse: "Skjul gruppe"
|
|
107437
107558
|
},
|
|
107438
107559
|
rowCheckbox: {
|
|
107439
|
-
ariaLabel: "
|
|
107560
|
+
ariaLabel: "Velg rad"
|
|
107440
107561
|
}
|
|
107441
107562
|
}
|
|
107442
107563
|
};
|
|
@@ -107483,7 +107604,8 @@ var pl_PL_default = {
|
|
|
107483
107604
|
exporting: "Eksportowanie...",
|
|
107484
107605
|
filters: {
|
|
107485
107606
|
filters: "Filtry",
|
|
107486
|
-
allFilters: "
|
|
107607
|
+
allFilters: "Wszystkie filtry",
|
|
107608
|
+
moreFilters: "Wi\u0119cej filtr\xF3w",
|
|
107487
107609
|
clearAllFilters: "Wyczy\u015B\u0107 wszystkie filtry",
|
|
107488
107610
|
close: "Zamknij",
|
|
107489
107611
|
removeFilterToken: "Usu\u0144 %{name}",
|
|
@@ -107502,6 +107624,7 @@ var pl_PL_default = {
|
|
|
107502
107624
|
options: {
|
|
107503
107625
|
any_value: "Dowolna warto\u015B\u0107",
|
|
107504
107626
|
is_between: "jest pomi\u0119dzy",
|
|
107627
|
+
is_equal_to: "jest r\xF3wne",
|
|
107505
107628
|
greater_than: "jest wi\u0119ksze ni\u017C",
|
|
107506
107629
|
greater_than_equal_to: "jest wi\u0119ksze ni\u017C lub r\xF3wne",
|
|
107507
107630
|
less_than: "mniej ni\u017C",
|
|
@@ -107580,7 +107703,7 @@ var pl_PL_default = {
|
|
|
107580
107703
|
placeholder: "Wprowad\u017A walut\u0119"
|
|
107581
107704
|
},
|
|
107582
107705
|
linkCell: {
|
|
107583
|
-
externalLabel: "
|
|
107706
|
+
externalLabel: "Otw\xF3rz zewn\u0119trzne \u0142\u0105cze"
|
|
107584
107707
|
},
|
|
107585
107708
|
numberCell: {
|
|
107586
107709
|
placeholder: "Wprowad\u017A numer"
|
|
@@ -107843,7 +107966,8 @@ var pt_BR_default = {
|
|
|
107843
107966
|
exporting: "Exportando...",
|
|
107844
107967
|
filters: {
|
|
107845
107968
|
filters: "Filtros",
|
|
107846
|
-
allFilters: "
|
|
107969
|
+
allFilters: "Todos os Filtros",
|
|
107970
|
+
moreFilters: "Mais Filtros",
|
|
107847
107971
|
clearAllFilters: "Limpar Todos os Filtros",
|
|
107848
107972
|
close: "Fechar",
|
|
107849
107973
|
removeFilterToken: "Remover %{name}",
|
|
@@ -107862,6 +107986,7 @@ var pt_BR_default = {
|
|
|
107862
107986
|
options: {
|
|
107863
107987
|
any_value: "Qualquer Valor",
|
|
107864
107988
|
is_between: "Est\xE1 entre",
|
|
107989
|
+
is_equal_to: "\xC9 Igual a",
|
|
107865
107990
|
greater_than: "\xC9 Maior Que",
|
|
107866
107991
|
greater_than_equal_to: "\xC9 Maior Que ou Igual a",
|
|
107867
107992
|
less_than: "\xC9 Menor Que",
|
|
@@ -107940,7 +108065,7 @@ var pt_BR_default = {
|
|
|
107940
108065
|
placeholder: "Insira moeda"
|
|
107941
108066
|
},
|
|
107942
108067
|
linkCell: {
|
|
107943
|
-
externalLabel: "
|
|
108068
|
+
externalLabel: "Abrir link externo"
|
|
107944
108069
|
},
|
|
107945
108070
|
numberCell: {
|
|
107946
108071
|
placeholder: "Inserir n\xFAmeros"
|
|
@@ -107993,8 +108118,8 @@ var pt_PT_default = {
|
|
|
107993
108118
|
description: "Assim que a sua equipa criar estes itens, poder\xE1 aceder aos mesmos aqui. ",
|
|
107994
108119
|
title: "N\xE3o h\xE1 itens para apresentar neste momento",
|
|
107995
108120
|
itemsTitle: "N\xE3o h\xE1 %{itemsLabel} para apresentar neste momento",
|
|
107996
|
-
tooltip: "O bot\xE3o %{featureName} ser\xE1 ativado quando adicionar informa\xE7\xF5es
|
|
107997
|
-
searchTooltip: "A pesquisa ser\xE1 ativada quando adicionar informa\xE7\xF5es a %{tableName}",
|
|
108121
|
+
tooltip: "O bot\xE3o %{featureName} ser\xE1 ativado quando adicionar informa\xE7\xF5es a %{tableName}",
|
|
108122
|
+
searchTooltip: "A pesquisa ser\xE1 ativada quando adicionar informa\xE7\xF5es a: %{tableName}",
|
|
107998
108123
|
featureFilter: "Filtro",
|
|
107999
108124
|
featureQuickFilter: "Filtro r\xE1pido",
|
|
108000
108125
|
featureGroupBy: "Agrupar por",
|
|
@@ -108022,7 +108147,8 @@ var pt_PT_default = {
|
|
|
108022
108147
|
exporting: "A exportar...",
|
|
108023
108148
|
filters: {
|
|
108024
108149
|
filters: "Filtros",
|
|
108025
|
-
allFilters: "
|
|
108150
|
+
allFilters: "Todos os filtros",
|
|
108151
|
+
moreFilters: "Mais filtros",
|
|
108026
108152
|
clearAllFilters: "Apagar todos os filtros",
|
|
108027
108153
|
close: "Fechar",
|
|
108028
108154
|
removeFilterToken: "Remover %{name}",
|
|
@@ -108041,6 +108167,7 @@ var pt_PT_default = {
|
|
|
108041
108167
|
options: {
|
|
108042
108168
|
any_value: "Qualquer valor",
|
|
108043
108169
|
is_between: "Est\xE1 entre",
|
|
108170
|
+
is_equal_to: "\xC9 igual a",
|
|
108044
108171
|
greater_than: "\xC9 superior a",
|
|
108045
108172
|
greater_than_equal_to: "\xC9 igual ou superior a",
|
|
108046
108173
|
less_than: "\xC9 inferior a",
|
|
@@ -108093,8 +108220,8 @@ var pt_PT_default = {
|
|
|
108093
108220
|
configureColumns: "Configurar colunas",
|
|
108094
108221
|
resetToDefault: "Mostrar tudo",
|
|
108095
108222
|
rowHeight: "Altura da linha",
|
|
108096
|
-
small: "
|
|
108097
|
-
medium: "M\
|
|
108223
|
+
small: "Pequena",
|
|
108224
|
+
medium: "M\xE9dia",
|
|
108098
108225
|
large: "Grande",
|
|
108099
108226
|
tableSettings: "Defini\xE7\xF5es de tabela",
|
|
108100
108227
|
groupBy: "Agrupar por:",
|
|
@@ -108119,7 +108246,7 @@ var pt_PT_default = {
|
|
|
108119
108246
|
placeholder: "Introduzir moeda"
|
|
108120
108247
|
},
|
|
108121
108248
|
linkCell: {
|
|
108122
|
-
externalLabel: "
|
|
108249
|
+
externalLabel: "Abrir liga\xE7\xE3o externa"
|
|
108123
108250
|
},
|
|
108124
108251
|
numberCell: {
|
|
108125
108252
|
placeholder: "Introduzir n\xFAmero"
|
|
@@ -108201,7 +108328,8 @@ var th_TH_default = {
|
|
|
108201
108328
|
exporting: "\u0E01\u0E33\u0E25\u0E31\u0E07\u0E2A\u0E48\u0E07\u0E2D\u0E2D\u0E01...",
|
|
108202
108329
|
filters: {
|
|
108203
108330
|
filters: "\u0E15\u0E31\u0E27\u0E01\u0E23\u0E2D\u0E07",
|
|
108204
|
-
allFilters: "
|
|
108331
|
+
allFilters: "\u0E15\u0E31\u0E27\u0E01\u0E23\u0E2D\u0E07\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14",
|
|
108332
|
+
moreFilters: "\u0E15\u0E31\u0E27\u0E01\u0E23\u0E2D\u0E07\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E40\u0E15\u0E34\u0E21",
|
|
108205
108333
|
clearAllFilters: "\u0E25\u0E49\u0E32\u0E07\u0E15\u0E31\u0E27\u0E01\u0E23\u0E2D\u0E07\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14",
|
|
108206
108334
|
close: "\u0E1B\u0E34\u0E14",
|
|
108207
108335
|
removeFilterToken: "\u0E25\u0E1A %{name}",
|
|
@@ -108220,6 +108348,7 @@ var th_TH_default = {
|
|
|
108220
108348
|
options: {
|
|
108221
108349
|
any_value: "\u0E04\u0E48\u0E32\u0E43\u0E14\u0E01\u0E47\u0E44\u0E14\u0E49",
|
|
108222
108350
|
is_between: "\u0E2D\u0E22\u0E39\u0E48\u0E23\u0E30\u0E2B\u0E27\u0E48\u0E32\u0E07",
|
|
108351
|
+
is_equal_to: "\u0E40\u0E17\u0E48\u0E32\u0E01\u0E31\u0E1A",
|
|
108223
108352
|
greater_than: "\u0E21\u0E32\u0E01\u0E01\u0E27\u0E48\u0E32",
|
|
108224
108353
|
greater_than_equal_to: "\u0E21\u0E32\u0E01\u0E01\u0E27\u0E48\u0E32\u0E2B\u0E23\u0E37\u0E2D\u0E40\u0E17\u0E48\u0E32\u0E01\u0E31\u0E1A",
|
|
108225
108354
|
less_than: "\u0E19\u0E49\u0E2D\u0E22\u0E01\u0E27\u0E48\u0E32",
|
|
@@ -108298,7 +108427,7 @@ var th_TH_default = {
|
|
|
108298
108427
|
placeholder: "\u0E1B\u0E49\u0E2D\u0E19\u0E2A\u0E01\u0E38\u0E25\u0E40\u0E07\u0E34\u0E19"
|
|
108299
108428
|
},
|
|
108300
108429
|
linkCell: {
|
|
108301
|
-
externalLabel: "
|
|
108430
|
+
externalLabel: "\u0E40\u0E1B\u0E34\u0E14\u0E25\u0E34\u0E07\u0E01\u0E4C\u0E20\u0E32\u0E22\u0E19\u0E2D\u0E01"
|
|
108302
108431
|
},
|
|
108303
108432
|
numberCell: {
|
|
108304
108433
|
placeholder: "\u0E1B\u0E49\u0E2D\u0E19\u0E2B\u0E21\u0E32\u0E22\u0E40\u0E25\u0E02"
|
|
@@ -108380,7 +108509,8 @@ var zh_SG_default = {
|
|
|
108380
108509
|
exporting: "\u6B63\u5728\u5BFC\u51FA...",
|
|
108381
108510
|
filters: {
|
|
108382
108511
|
filters: "\u7B5B\u9009\u5668",
|
|
108383
|
-
allFilters: "
|
|
108512
|
+
allFilters: "\u6240\u6709\u7B5B\u9009\u5668",
|
|
108513
|
+
moreFilters: "\u66F4\u591A\u7B5B\u9009\u5668",
|
|
108384
108514
|
clearAllFilters: "\u6E05\u9664\u6240\u6709\u7B5B\u9009\u5668",
|
|
108385
108515
|
close: "\u5173\u95ED",
|
|
108386
108516
|
removeFilterToken: "\u79FB\u9664 %{name}",
|
|
@@ -108399,6 +108529,7 @@ var zh_SG_default = {
|
|
|
108399
108529
|
options: {
|
|
108400
108530
|
any_value: "\u4EFB\u610F\u503C",
|
|
108401
108531
|
is_between: "\u4ECB\u4E8E",
|
|
108532
|
+
is_equal_to: "\u7B49\u4E8E",
|
|
108402
108533
|
greater_than: "\u5927\u4E8E",
|
|
108403
108534
|
greater_than_equal_to: "\u5927\u4E8E\u6216\u7B49\u4E8E",
|
|
108404
108535
|
less_than: "\u5C0F\u4E8E",
|
|
@@ -108477,7 +108608,7 @@ var zh_SG_default = {
|
|
|
108477
108608
|
placeholder: "\u8F93\u5165\u8D27\u5E01"
|
|
108478
108609
|
},
|
|
108479
108610
|
linkCell: {
|
|
108480
|
-
externalLabel: "
|
|
108611
|
+
externalLabel: "\u6253\u5F00\u5916\u90E8\u94FE\u63A5"
|
|
108481
108612
|
},
|
|
108482
108613
|
numberCell: {
|
|
108483
108614
|
placeholder: "\u8F93\u5165\u6570\u5B57"
|
|
@@ -108559,7 +108690,8 @@ var zh_TW_default = {
|
|
|
108559
108690
|
exporting: "\u532F\u51FA\u4E2D\u2026\u2026",
|
|
108560
108691
|
filters: {
|
|
108561
108692
|
filters: "\u7BE9\u9078\u689D\u4EF6",
|
|
108562
|
-
allFilters: "
|
|
108693
|
+
allFilters: "\u6240\u6709\u7BE9\u9078\u689D\u4EF6",
|
|
108694
|
+
moreFilters: "\u66F4\u591A\u7BE9\u9078\u689D\u4EF6",
|
|
108563
108695
|
clearAllFilters: "\u6E05\u9664\u6240\u6709\u7BE9\u9078\u689D\u4EF6",
|
|
108564
108696
|
close: "\u95DC\u9589",
|
|
108565
108697
|
removeFilterToken: "\u79FB\u9664\u300C%{name}\u300D",
|
|
@@ -108578,6 +108710,7 @@ var zh_TW_default = {
|
|
|
108578
108710
|
options: {
|
|
108579
108711
|
any_value: "\u4EFB\u4F55\u503C",
|
|
108580
108712
|
is_between: "\u4ECB\u65BC",
|
|
108713
|
+
is_equal_to: "\u7B49\u65BC",
|
|
108581
108714
|
greater_than: "\u5927\u65BC",
|
|
108582
108715
|
greater_than_equal_to: "\u5927\u65BC\u6216\u7B49\u65BC",
|
|
108583
108716
|
less_than: "\u5C0F\u65BC",
|
|
@@ -108656,7 +108789,7 @@ var zh_TW_default = {
|
|
|
108656
108789
|
placeholder: "\u8F38\u5165\u8CA8\u5E63"
|
|
108657
108790
|
},
|
|
108658
108791
|
linkCell: {
|
|
108659
|
-
externalLabel: "
|
|
108792
|
+
externalLabel: "\u958B\u555F\u5916\u90E8\u9023\u7D50"
|
|
108660
108793
|
},
|
|
108661
108794
|
numberCell: {
|
|
108662
108795
|
placeholder: "\u8F38\u5165\u6578\u5B57"
|
|
@@ -109710,6 +109843,8 @@ var DataTable = ({
|
|
|
109710
109843
|
!initialTableConfig
|
|
109711
109844
|
);
|
|
109712
109845
|
const contextPanel = useContextPanel();
|
|
109846
|
+
const filtersPanelId = $bdb11010cef70236$export$f680877a34711e37();
|
|
109847
|
+
const filtersBodyId = $bdb11010cef70236$export$f680877a34711e37();
|
|
109713
109848
|
const clientI18n = coreReact.useI18nContext();
|
|
109714
109849
|
const isCDNEnabled = cdnTranslations.isCDNFeatureFlagEnabled(clientI18n, enableCDN);
|
|
109715
109850
|
const cdnTranslations$1 = cdnTranslations.useRequestTranslations(
|
|
@@ -109961,7 +110096,9 @@ var DataTable = ({
|
|
|
109961
110096
|
totalRowCount,
|
|
109962
110097
|
setTotalRowCount,
|
|
109963
110098
|
updateServerSideDataSource,
|
|
109964
|
-
hasDuplicateRowIds
|
|
110099
|
+
hasDuplicateRowIds,
|
|
110100
|
+
filtersPanelId,
|
|
110101
|
+
filtersBodyId
|
|
109965
110102
|
}
|
|
109966
110103
|
},
|
|
109967
110104
|
children
|
|
@@ -111309,7 +111446,7 @@ var BaseFiltersPanel = ({
|
|
|
111309
111446
|
...props
|
|
111310
111447
|
}) => {
|
|
111311
111448
|
const ref = React80__default.default.useRef(null);
|
|
111312
|
-
const { contextPanel } = useInternalTableContext();
|
|
111449
|
+
const { contextPanel, filtersBodyId, filtersPanelId } = useInternalTableContext();
|
|
111313
111450
|
const I18n = coreReact.useI18nContext();
|
|
111314
111451
|
const hidden = !contextPanel.isVisible || contextPanel.content !== "filters";
|
|
111315
111452
|
React80__default.default.useLayoutEffect(() => {
|
|
@@ -111326,6 +111463,7 @@ var BaseFiltersPanel = ({
|
|
|
111326
111463
|
"contextPanel--hidden": hidden
|
|
111327
111464
|
}),
|
|
111328
111465
|
"data-qa": "data-table-filters-context-panel",
|
|
111466
|
+
id: filtersPanelId,
|
|
111329
111467
|
...props
|
|
111330
111468
|
},
|
|
111331
111469
|
/* @__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(
|
|
@@ -111337,7 +111475,7 @@ var BaseFiltersPanel = ({
|
|
|
111337
111475
|
variant: "tertiary"
|
|
111338
111476
|
},
|
|
111339
111477
|
I18n.t("dataTable.filters.clearAllFilters")
|
|
111340
|
-
)), /* @__PURE__ */ React80__default.default.createElement(coreReact.Panel.Body, { className: cx20("contextPanelBody") }, /* @__PURE__ */ React80__default.default.createElement(coreReact.Panel.Section, null, children))))
|
|
111478
|
+
)), /* @__PURE__ */ React80__default.default.createElement(coreReact.Panel.Body, { id: filtersBodyId, className: cx20("contextPanelBody") }, /* @__PURE__ */ React80__default.default.createElement(coreReact.Panel.Section, null, children))))
|
|
111341
111479
|
);
|
|
111342
111480
|
};
|
|
111343
111481
|
function ClientSideFiltersPanel(props) {
|
|
@@ -112055,6 +112193,21 @@ var LocationQuickFilterRenderer_default = LocationQuickFilterRenderer;
|
|
|
112055
112193
|
var StyledFilterPresetPopoverContent = styled4__default.default(coreReact.Popover.Content)`
|
|
112056
112194
|
padding: ${coreReact.spacing.sm}px ${coreReact.spacing.lg}px;
|
|
112057
112195
|
`;
|
|
112196
|
+
var StyledClearButton = styled4__default.default(coreReact.Button)`
|
|
112197
|
+
position: absolute;
|
|
112198
|
+
right: ${coreReact.spacing.md + coreReact.spacing.lg}px;
|
|
112199
|
+
top: calc(36px / 2);
|
|
112200
|
+
transform: translateY(-50%);
|
|
112201
|
+
color: ${coreReact.colors.blue45};
|
|
112202
|
+
&:hover,
|
|
112203
|
+
&:focus {
|
|
112204
|
+
color: ${coreReact.colors.blue45};
|
|
112205
|
+
background: ${coreReact.colors.white};
|
|
112206
|
+
}
|
|
112207
|
+
`;
|
|
112208
|
+
var StyledTriggerContainerWrapper = styled4__default.default.div`
|
|
112209
|
+
position: relative;
|
|
112210
|
+
`;
|
|
112058
112211
|
var getValueLabel = (isValueEmpty, value, placeholder, filterName) => {
|
|
112059
112212
|
const prefixLabel = isValueEmpty ? placeholder || filterName : filterName;
|
|
112060
112213
|
const valueLabel = value ? `${prefixLabel ? ": " : ""}${value}` : "";
|
|
@@ -112076,7 +112229,7 @@ var getSuperSelectFilterPreset = (columnDefinition) => {
|
|
|
112076
112229
|
const ctx = coreReact.UNSAFE_useSuperSelectContext();
|
|
112077
112230
|
const I18n = coreReact.useI18nContext();
|
|
112078
112231
|
return /* @__PURE__ */ React80__default.default.createElement(
|
|
112079
|
-
|
|
112232
|
+
StyledClearButton,
|
|
112080
112233
|
{
|
|
112081
112234
|
...ctx.props.clear(),
|
|
112082
112235
|
"aria-label": I18n.t("dataTable.filters.removeFilterToken", {
|
|
@@ -112101,6 +112254,11 @@ var getSuperSelectFilterPreset = (columnDefinition) => {
|
|
|
112101
112254
|
filterName
|
|
112102
112255
|
)));
|
|
112103
112256
|
}),
|
|
112257
|
+
TriggerContainerWrapper: React80__default.default.forwardRef(
|
|
112258
|
+
(props, ref) => {
|
|
112259
|
+
return /* @__PURE__ */ React80__default.default.createElement(StyledTriggerContainerWrapper, { ref, ...props });
|
|
112260
|
+
}
|
|
112261
|
+
),
|
|
112104
112262
|
TriggerContainer: React80__default.default.forwardRef(
|
|
112105
112263
|
(props, ref) => {
|
|
112106
112264
|
const ctx = coreReact.UNSAFE_useSuperSelectContext();
|
|
@@ -112114,11 +112272,31 @@ var getSuperSelectFilterPreset = (columnDefinition) => {
|
|
|
112114
112272
|
}
|
|
112115
112273
|
);
|
|
112116
112274
|
}
|
|
112275
|
+
const {
|
|
112276
|
+
"aria-activedescendant": ariaActivedescendant,
|
|
112277
|
+
"aria-controls": ariaControls,
|
|
112278
|
+
"aria-expanded": ariaExpanded,
|
|
112279
|
+
"aria-haspopup": ariaHaspopup,
|
|
112280
|
+
"aria-label": ariaLabel,
|
|
112281
|
+
"aria-labelledby": ariaLabelledby,
|
|
112282
|
+
role,
|
|
112283
|
+
tabIndex
|
|
112284
|
+
} = ctx.props.multiInput();
|
|
112285
|
+
const a11yProps = {
|
|
112286
|
+
"aria-activedescendant": ariaActivedescendant,
|
|
112287
|
+
"aria-controls": ariaControls,
|
|
112288
|
+
"aria-expanded": ariaExpanded,
|
|
112289
|
+
"aria-haspopup": ariaHaspopup,
|
|
112290
|
+
"aria-label": ariaLabel,
|
|
112291
|
+
"aria-labelledby": ariaLabelledby,
|
|
112292
|
+
role,
|
|
112293
|
+
tabIndex
|
|
112294
|
+
};
|
|
112117
112295
|
return /* @__PURE__ */ React80__default.default.createElement(
|
|
112118
112296
|
coreReact.Popover,
|
|
112119
112297
|
{
|
|
112120
112298
|
placement: "top",
|
|
112121
|
-
trigger: ctx.state.value.length > 1 ? "hover" : "none",
|
|
112299
|
+
trigger: ctx.state.value.length > 1 ? ["hover", "focus"] : "none",
|
|
112122
112300
|
overlay: /* @__PURE__ */ React80__default.default.createElement(StyledFilterPresetPopoverContent, null, /* @__PURE__ */ React80__default.default.createElement(coreReact.Typography, null, ctx.state.value.map((v) => {
|
|
112123
112301
|
const option = ctx.state.options.find(
|
|
112124
112302
|
(option2) => ctx.option.value(option2) === v
|
|
@@ -112131,6 +112309,7 @@ var getSuperSelectFilterPreset = (columnDefinition) => {
|
|
|
112131
112309
|
{
|
|
112132
112310
|
$block: ctx.config.block,
|
|
112133
112311
|
...props,
|
|
112312
|
+
...a11yProps,
|
|
112134
112313
|
ref
|
|
112135
112314
|
}
|
|
112136
112315
|
)
|
|
@@ -112524,10 +112703,27 @@ var SingleSelectQuickFilterRenderer = (props) => {
|
|
|
112524
112703
|
return /* @__PURE__ */ React80__default.default.createElement(ClientSideSingleSelectQuickFilter, { ...props });
|
|
112525
112704
|
};
|
|
112526
112705
|
var SingleSelectQuickFilterRenderer_default = SingleSelectQuickFilterRenderer;
|
|
112706
|
+
var FOCUSABLE_SELECTOR2 = 'button:not([disabled]), input:not([disabled]), select:not([disabled]), textarea:not([disabled]), [tabindex]:not([tabindex="-1"])';
|
|
112527
112707
|
var FiltersPanelToggleButton = ({ hasDefinedFilters }) => {
|
|
112528
112708
|
const I18n = coreReact.useI18nContext();
|
|
112529
|
-
const { contextPanel } = useInternalTableContext();
|
|
112709
|
+
const { contextPanel, filtersBodyId, filtersPanelId } = useInternalTableContext();
|
|
112530
112710
|
const hasNoContent = useTableHasNoContent();
|
|
112711
|
+
const buttonRef = React80__default.default.useRef(null);
|
|
112712
|
+
const isFiltersOpen = contextPanel.content === "filters";
|
|
112713
|
+
const isMounted = React80__default.default.useRef(false);
|
|
112714
|
+
React80__default.default.useEffect(() => {
|
|
112715
|
+
var _a, _b;
|
|
112716
|
+
if (!isMounted.current) {
|
|
112717
|
+
isMounted.current = true;
|
|
112718
|
+
return;
|
|
112719
|
+
}
|
|
112720
|
+
if (isFiltersOpen) {
|
|
112721
|
+
const panel = filtersBodyId ? document.getElementById(filtersBodyId) : null;
|
|
112722
|
+
(_a = panel == null ? void 0 : panel.querySelector(FOCUSABLE_SELECTOR2)) == null ? void 0 : _a.focus();
|
|
112723
|
+
} else {
|
|
112724
|
+
(_b = buttonRef.current) == null ? void 0 : _b.focus();
|
|
112725
|
+
}
|
|
112726
|
+
}, [isFiltersOpen, filtersBodyId]);
|
|
112531
112727
|
if (!hasDefinedFilters) {
|
|
112532
112728
|
return null;
|
|
112533
112729
|
}
|
|
@@ -112540,17 +112736,20 @@ var FiltersPanelToggleButton = ({ hasDefinedFilters }) => {
|
|
|
112540
112736
|
/* @__PURE__ */ React80__default.default.createElement(
|
|
112541
112737
|
coreReact.ToggleButton,
|
|
112542
112738
|
{
|
|
112739
|
+
ref: buttonRef,
|
|
112543
112740
|
"data-qa": "data-table-show-filters-button",
|
|
112544
112741
|
disabled: hasNoContent,
|
|
112545
112742
|
icon: /* @__PURE__ */ React80__default.default.createElement(FilterIcon, null),
|
|
112743
|
+
"aria-expanded": isFiltersOpen,
|
|
112744
|
+
"aria-controls": filtersPanelId,
|
|
112546
112745
|
onClick: () => {
|
|
112547
|
-
if (
|
|
112548
|
-
contextPanel.hide();
|
|
112549
|
-
} else {
|
|
112746
|
+
if (!isFiltersOpen) {
|
|
112550
112747
|
contextPanel.show("filters");
|
|
112748
|
+
} else {
|
|
112749
|
+
contextPanel.hide();
|
|
112551
112750
|
}
|
|
112552
112751
|
},
|
|
112553
|
-
selected:
|
|
112752
|
+
selected: isFiltersOpen
|
|
112554
112753
|
},
|
|
112555
112754
|
I18n.t("dataTable.filters.allFilters")
|
|
112556
112755
|
)
|
|
@@ -112956,6 +113155,7 @@ var ClientSideSearch = ({
|
|
|
112956
113155
|
const { tableRef } = useInternalTableContext();
|
|
112957
113156
|
const hasNoContent = useTableHasNoContent();
|
|
112958
113157
|
const I18n = coreReact.useI18nContext();
|
|
113158
|
+
const resolvedPlaceholder = placeholder || I18n.t("dataTable.search");
|
|
112959
113159
|
const debouncedSetSearchValue = React80__default.default.useCallback(
|
|
112960
113160
|
debounce5__default.default((value) => {
|
|
112961
113161
|
var _a2;
|
|
@@ -112984,7 +113184,8 @@ var ClientSideSearch = ({
|
|
|
112984
113184
|
"search--empty": !internalValue.length
|
|
112985
113185
|
}),
|
|
112986
113186
|
onChange,
|
|
112987
|
-
placeholder:
|
|
113187
|
+
placeholder: resolvedPlaceholder,
|
|
113188
|
+
"aria-label": resolvedPlaceholder
|
|
112988
113189
|
}
|
|
112989
113190
|
));
|
|
112990
113191
|
};
|