@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.js
CHANGED
|
@@ -57877,6 +57877,7 @@ var ServerSideSearch = ({
|
|
|
57877
57877
|
const { updateServerSideDataSource } = useInternalTableContext();
|
|
57878
57878
|
const hasNoContent = useTableHasNoContent();
|
|
57879
57879
|
const I18n = useI18nContext();
|
|
57880
|
+
const resolvedPlaceholder = placeholder || I18n.t("dataTable.search");
|
|
57880
57881
|
const debouncedSetSearchValue = React80.useCallback(
|
|
57881
57882
|
debounce5((value) => {
|
|
57882
57883
|
updateServerSideDataSource({ search: value });
|
|
@@ -57901,7 +57902,8 @@ var ServerSideSearch = ({
|
|
|
57901
57902
|
value: internalValue,
|
|
57902
57903
|
className: cx17("search", { "search--empty": !internalValue.length }),
|
|
57903
57904
|
onChange,
|
|
57904
|
-
placeholder:
|
|
57905
|
+
placeholder: resolvedPlaceholder,
|
|
57906
|
+
"aria-label": resolvedPlaceholder
|
|
57905
57907
|
}
|
|
57906
57908
|
));
|
|
57907
57909
|
};
|
|
@@ -57959,7 +57961,9 @@ var InternalTableContext = React80.createContext({
|
|
|
57959
57961
|
totalRowCount: 0,
|
|
57960
57962
|
setTotalRowCount: () => {
|
|
57961
57963
|
},
|
|
57962
|
-
hasDuplicateRowIds: false
|
|
57964
|
+
hasDuplicateRowIds: false,
|
|
57965
|
+
filtersPanelId: void 0,
|
|
57966
|
+
filtersBodyId: void 0
|
|
57963
57967
|
});
|
|
57964
57968
|
var useInternalTableContext = () => React80.useContext(InternalTableContext);
|
|
57965
57969
|
var prng = detectPrng(true);
|
|
@@ -103372,10 +103376,103 @@ function $8ae05eaa5c114e9c$export$7f54fc3180508a52(fn) {
|
|
|
103372
103376
|
return f === null || f === void 0 ? void 0 : f(...args);
|
|
103373
103377
|
}, []);
|
|
103374
103378
|
}
|
|
103379
|
+
var $b5e257d569688ac6$var$defaultContext = {
|
|
103380
|
+
prefix: String(Math.round(Math.random() * 1e10)),
|
|
103381
|
+
current: 0
|
|
103382
|
+
};
|
|
103383
|
+
var $b5e257d569688ac6$var$SSRContext = /* @__PURE__ */ (React80).createContext($b5e257d569688ac6$var$defaultContext);
|
|
103384
|
+
var $b5e257d569688ac6$var$IsSSRContext = /* @__PURE__ */ (React80).createContext(false);
|
|
103385
|
+
var $b5e257d569688ac6$var$canUseDOM = Boolean(typeof window !== "undefined" && window.document && window.document.createElement);
|
|
103386
|
+
var $b5e257d569688ac6$var$componentIds = /* @__PURE__ */ new WeakMap();
|
|
103387
|
+
function $b5e257d569688ac6$var$useCounter(isDisabled = false) {
|
|
103388
|
+
let ctx = (useContext)($b5e257d569688ac6$var$SSRContext);
|
|
103389
|
+
let ref = (useRef)(null);
|
|
103390
|
+
if (ref.current === null && !isDisabled) {
|
|
103391
|
+
var _React___SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED_ReactCurrentOwner, _React___SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;
|
|
103392
|
+
let currentOwner = (_React___SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED = (React80).__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;
|
|
103393
|
+
if (currentOwner) {
|
|
103394
|
+
let prevComponentValue = $b5e257d569688ac6$var$componentIds.get(currentOwner);
|
|
103395
|
+
if (prevComponentValue == null)
|
|
103396
|
+
$b5e257d569688ac6$var$componentIds.set(currentOwner, {
|
|
103397
|
+
id: ctx.current,
|
|
103398
|
+
state: currentOwner.memoizedState
|
|
103399
|
+
});
|
|
103400
|
+
else if (currentOwner.memoizedState !== prevComponentValue.state) {
|
|
103401
|
+
ctx.current = prevComponentValue.id;
|
|
103402
|
+
$b5e257d569688ac6$var$componentIds.delete(currentOwner);
|
|
103403
|
+
}
|
|
103404
|
+
}
|
|
103405
|
+
ref.current = ++ctx.current;
|
|
103406
|
+
}
|
|
103407
|
+
return ref.current;
|
|
103408
|
+
}
|
|
103409
|
+
function $b5e257d569688ac6$var$useLegacySSRSafeId(defaultId) {
|
|
103410
|
+
let ctx = (useContext)($b5e257d569688ac6$var$SSRContext);
|
|
103411
|
+
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.");
|
|
103412
|
+
let counter2 = $b5e257d569688ac6$var$useCounter(!!defaultId);
|
|
103413
|
+
let prefix = ctx === $b5e257d569688ac6$var$defaultContext && process.env.NODE_ENV === "test" ? "react-aria" : `react-aria${ctx.prefix}`;
|
|
103414
|
+
return defaultId || `${prefix}-${counter2}`;
|
|
103415
|
+
}
|
|
103416
|
+
function $b5e257d569688ac6$var$useModernSSRSafeId(defaultId) {
|
|
103417
|
+
let id = (React80).useId();
|
|
103418
|
+
let [didSSR] = (useState)($b5e257d569688ac6$export$535bd6ca7f90a273());
|
|
103419
|
+
let prefix = didSSR || process.env.NODE_ENV === "test" ? "react-aria" : `react-aria${$b5e257d569688ac6$var$defaultContext.prefix}`;
|
|
103420
|
+
return defaultId || `${prefix}-${id}`;
|
|
103421
|
+
}
|
|
103422
|
+
var $b5e257d569688ac6$export$619500959fc48b26 = typeof (React80)["useId"] === "function" ? $b5e257d569688ac6$var$useModernSSRSafeId : $b5e257d569688ac6$var$useLegacySSRSafeId;
|
|
103423
|
+
function $b5e257d569688ac6$var$getSnapshot() {
|
|
103424
|
+
return false;
|
|
103425
|
+
}
|
|
103426
|
+
function $b5e257d569688ac6$var$getServerSnapshot() {
|
|
103427
|
+
return true;
|
|
103428
|
+
}
|
|
103429
|
+
function $b5e257d569688ac6$var$subscribe(onStoreChange) {
|
|
103430
|
+
return () => {
|
|
103431
|
+
};
|
|
103432
|
+
}
|
|
103433
|
+
function $b5e257d569688ac6$export$535bd6ca7f90a273() {
|
|
103434
|
+
if (typeof (React80)["useSyncExternalStore"] === "function") return (React80)["useSyncExternalStore"]($b5e257d569688ac6$var$subscribe, $b5e257d569688ac6$var$getSnapshot, $b5e257d569688ac6$var$getServerSnapshot);
|
|
103435
|
+
return (useContext)($b5e257d569688ac6$var$IsSSRContext);
|
|
103436
|
+
}
|
|
103437
|
+
|
|
103438
|
+
// ../../node_modules/@react-aria/utils/dist/useId.mjs
|
|
103439
|
+
var $bdb11010cef70236$var$canUseDOM = Boolean(typeof window !== "undefined" && window.document && window.document.createElement);
|
|
103375
103440
|
var $bdb11010cef70236$export$d41a04c74483c6ef = /* @__PURE__ */ new Map();
|
|
103376
|
-
|
|
103441
|
+
var $bdb11010cef70236$var$registry;
|
|
103442
|
+
if (typeof FinalizationRegistry !== "undefined") $bdb11010cef70236$var$registry = new FinalizationRegistry((heldValue) => {
|
|
103377
103443
|
$bdb11010cef70236$export$d41a04c74483c6ef.delete(heldValue);
|
|
103378
103444
|
});
|
|
103445
|
+
function $bdb11010cef70236$export$f680877a34711e37(defaultId) {
|
|
103446
|
+
let [value, setValue] = (useState)(defaultId);
|
|
103447
|
+
let nextId = (useRef)(null);
|
|
103448
|
+
let res = ($b5e257d569688ac6$export$619500959fc48b26)(value);
|
|
103449
|
+
let cleanupRef = (useRef)(null);
|
|
103450
|
+
if ($bdb11010cef70236$var$registry) $bdb11010cef70236$var$registry.register(cleanupRef, res);
|
|
103451
|
+
if ($bdb11010cef70236$var$canUseDOM) {
|
|
103452
|
+
const cacheIdRef = $bdb11010cef70236$export$d41a04c74483c6ef.get(res);
|
|
103453
|
+
if (cacheIdRef && !cacheIdRef.includes(nextId)) cacheIdRef.push(nextId);
|
|
103454
|
+
else $bdb11010cef70236$export$d41a04c74483c6ef.set(res, [
|
|
103455
|
+
nextId
|
|
103456
|
+
]);
|
|
103457
|
+
}
|
|
103458
|
+
($f0a04ccd8dbdd83b$export$e5c5a5f917a5871c)(() => {
|
|
103459
|
+
let r2 = res;
|
|
103460
|
+
return () => {
|
|
103461
|
+
if ($bdb11010cef70236$var$registry) $bdb11010cef70236$var$registry.unregister(cleanupRef);
|
|
103462
|
+
$bdb11010cef70236$export$d41a04c74483c6ef.delete(r2);
|
|
103463
|
+
};
|
|
103464
|
+
}, [
|
|
103465
|
+
res
|
|
103466
|
+
]);
|
|
103467
|
+
(useEffect)(() => {
|
|
103468
|
+
let newId = nextId.current;
|
|
103469
|
+
if (newId) setValue(newId);
|
|
103470
|
+
return () => {
|
|
103471
|
+
if (newId) nextId.current = null;
|
|
103472
|
+
};
|
|
103473
|
+
});
|
|
103474
|
+
return res;
|
|
103475
|
+
}
|
|
103379
103476
|
function $bdb11010cef70236$export$cd8c9cb68f842629(idA, idB) {
|
|
103380
103477
|
if (idA === idB) return idA;
|
|
103381
103478
|
let setIdsA = $bdb11010cef70236$export$d41a04c74483c6ef.get(idA);
|
|
@@ -105141,7 +105238,8 @@ var de_DE_default = {
|
|
|
105141
105238
|
exporting: "Wird exportiert\xA0\u2026",
|
|
105142
105239
|
filters: {
|
|
105143
105240
|
filters: "Filter",
|
|
105144
|
-
allFilters: "
|
|
105241
|
+
allFilters: "Alle Filter",
|
|
105242
|
+
moreFilters: "Weitere Filter",
|
|
105145
105243
|
clearAllFilters: "Alle Filter zur\xFCcksetzen",
|
|
105146
105244
|
close: "Schlie\xDFen",
|
|
105147
105245
|
removeFilterToken: "%{name} entfernen",
|
|
@@ -105160,6 +105258,7 @@ var de_DE_default = {
|
|
|
105160
105258
|
options: {
|
|
105161
105259
|
any_value: "Beliebiger Wert",
|
|
105162
105260
|
is_between: "Ist zwischen",
|
|
105261
|
+
is_equal_to: "Ist gleich",
|
|
105163
105262
|
greater_than: "Ist gr\xF6\xDFer als",
|
|
105164
105263
|
greater_than_equal_to: "Ist gr\xF6\xDFer als oder gleich",
|
|
105165
105264
|
less_than: "Ist kleiner als",
|
|
@@ -105238,7 +105337,7 @@ var de_DE_default = {
|
|
|
105238
105337
|
placeholder: "W\xE4hrung eingeben"
|
|
105239
105338
|
},
|
|
105240
105339
|
linkCell: {
|
|
105241
|
-
externalLabel: "
|
|
105340
|
+
externalLabel: "Externen Link \xF6ffnen"
|
|
105242
105341
|
},
|
|
105243
105342
|
numberCell: {
|
|
105244
105343
|
placeholder: "Nummer eingeben"
|
|
@@ -105320,7 +105419,8 @@ var en_AU_default = {
|
|
|
105320
105419
|
exporting: "Exporting...",
|
|
105321
105420
|
filters: {
|
|
105322
105421
|
filters: "Filters",
|
|
105323
|
-
allFilters: "All
|
|
105422
|
+
allFilters: "All filters",
|
|
105423
|
+
moreFilters: "More filters",
|
|
105324
105424
|
clearAllFilters: "Clear all filters",
|
|
105325
105425
|
close: "Close",
|
|
105326
105426
|
removeFilterToken: "Remove %{name}",
|
|
@@ -105339,6 +105439,7 @@ var en_AU_default = {
|
|
|
105339
105439
|
options: {
|
|
105340
105440
|
any_value: "Any value",
|
|
105341
105441
|
is_between: "Is between",
|
|
105442
|
+
is_equal_to: "Is equal to",
|
|
105342
105443
|
greater_than: "Is greater than",
|
|
105343
105444
|
greater_than_equal_to: "Is greater than or equal to",
|
|
105344
105445
|
less_than: "Is less than",
|
|
@@ -105499,7 +105600,8 @@ var en_CA_default = {
|
|
|
105499
105600
|
exporting: "Exporting...",
|
|
105500
105601
|
filters: {
|
|
105501
105602
|
filters: "Filters",
|
|
105502
|
-
allFilters: "All
|
|
105603
|
+
allFilters: "All filters",
|
|
105604
|
+
moreFilters: "More filters",
|
|
105503
105605
|
clearAllFilters: "Clear all filters",
|
|
105504
105606
|
close: "Close",
|
|
105505
105607
|
removeFilterToken: "Remove %{name}",
|
|
@@ -105518,6 +105620,7 @@ var en_CA_default = {
|
|
|
105518
105620
|
options: {
|
|
105519
105621
|
any_value: "Any value",
|
|
105520
105622
|
is_between: "Is between",
|
|
105623
|
+
is_equal_to: "Is equal to",
|
|
105521
105624
|
greater_than: "Is greater than",
|
|
105522
105625
|
greater_than_equal_to: "Is greater than or equal to",
|
|
105523
105626
|
less_than: "Is less than",
|
|
@@ -105678,7 +105781,8 @@ var en_GB_default = {
|
|
|
105678
105781
|
exporting: "Exporting...",
|
|
105679
105782
|
filters: {
|
|
105680
105783
|
filters: "Filters",
|
|
105681
|
-
allFilters: "All
|
|
105784
|
+
allFilters: "All filters",
|
|
105785
|
+
moreFilters: "More filters",
|
|
105682
105786
|
clearAllFilters: "Clear all filters",
|
|
105683
105787
|
close: "Close",
|
|
105684
105788
|
removeFilterToken: "Remove %{name}",
|
|
@@ -105697,6 +105801,7 @@ var en_GB_default = {
|
|
|
105697
105801
|
options: {
|
|
105698
105802
|
any_value: "Any value",
|
|
105699
105803
|
is_between: "Is between",
|
|
105804
|
+
is_equal_to: "Is equal to",
|
|
105700
105805
|
greater_than: "Is greater than",
|
|
105701
105806
|
greater_than_equal_to: "Is greater than or equal to",
|
|
105702
105807
|
less_than: "Is less than",
|
|
@@ -106038,7 +106143,8 @@ var es_ES_default = {
|
|
|
106038
106143
|
exporting: "Exportando...",
|
|
106039
106144
|
filters: {
|
|
106040
106145
|
filters: "Filtros",
|
|
106041
|
-
allFilters: "
|
|
106146
|
+
allFilters: "Todos los filtros",
|
|
106147
|
+
moreFilters: "M\xE1s filtros",
|
|
106042
106148
|
clearAllFilters: "Borrar todos los filtros",
|
|
106043
106149
|
close: "Cerrar",
|
|
106044
106150
|
removeFilterToken: "Eliminar %{name}",
|
|
@@ -106057,6 +106163,7 @@ var es_ES_default = {
|
|
|
106057
106163
|
options: {
|
|
106058
106164
|
any_value: "Cualquier valor",
|
|
106059
106165
|
is_between: "Est\xE1 entre",
|
|
106166
|
+
is_equal_to: "Es igual a",
|
|
106060
106167
|
greater_than: "Es mayor que",
|
|
106061
106168
|
greater_than_equal_to: "Es mayor o igual que",
|
|
106062
106169
|
less_than: "Es menor que",
|
|
@@ -106135,7 +106242,7 @@ var es_ES_default = {
|
|
|
106135
106242
|
placeholder: "Introducir moneda"
|
|
106136
106243
|
},
|
|
106137
106244
|
linkCell: {
|
|
106138
|
-
externalLabel: "
|
|
106245
|
+
externalLabel: "Abrir enlace externo"
|
|
106139
106246
|
},
|
|
106140
106247
|
numberCell: {
|
|
106141
106248
|
placeholder: "Introducir n\xFAmero"
|
|
@@ -106217,7 +106324,8 @@ var es_default = {
|
|
|
106217
106324
|
exporting: "Exportando...",
|
|
106218
106325
|
filters: {
|
|
106219
106326
|
filters: "Filtros",
|
|
106220
|
-
allFilters: "
|
|
106327
|
+
allFilters: "Todos los filtros",
|
|
106328
|
+
moreFilters: "M\xE1s filtros",
|
|
106221
106329
|
clearAllFilters: "Restablecer todos los filtros",
|
|
106222
106330
|
close: "Cerrar",
|
|
106223
106331
|
removeFilterToken: "Eliminar %{name}",
|
|
@@ -106236,6 +106344,7 @@ var es_default = {
|
|
|
106236
106344
|
options: {
|
|
106237
106345
|
any_value: "Cualquier valor",
|
|
106238
106346
|
is_between: "Est\xE1 entre",
|
|
106347
|
+
is_equal_to: "Es igual a",
|
|
106239
106348
|
greater_than: "Es mayor que",
|
|
106240
106349
|
greater_than_equal_to: "Es mayor o igual que",
|
|
106241
106350
|
less_than: "Es menor que",
|
|
@@ -106314,7 +106423,7 @@ var es_default = {
|
|
|
106314
106423
|
placeholder: "Ingresar moneda"
|
|
106315
106424
|
},
|
|
106316
106425
|
linkCell: {
|
|
106317
|
-
externalLabel: "
|
|
106426
|
+
externalLabel: "Abrir enlace externo"
|
|
106318
106427
|
},
|
|
106319
106428
|
numberCell: {
|
|
106320
106429
|
placeholder: "Ingresar n\xFAmero"
|
|
@@ -106396,7 +106505,8 @@ var fr_CA_default = {
|
|
|
106396
106505
|
exporting: "Exportation ...",
|
|
106397
106506
|
filters: {
|
|
106398
106507
|
filters: "Filtres",
|
|
106399
|
-
allFilters: "
|
|
106508
|
+
allFilters: "Tous les filtres",
|
|
106509
|
+
moreFilters: "Plus de filtres",
|
|
106400
106510
|
clearAllFilters: "Effacer tous les filtres",
|
|
106401
106511
|
close: "Fermer",
|
|
106402
106512
|
removeFilterToken: "Retirer %{name}",
|
|
@@ -106415,6 +106525,7 @@ var fr_CA_default = {
|
|
|
106415
106525
|
options: {
|
|
106416
106526
|
any_value: "N'importe quelle valeur",
|
|
106417
106527
|
is_between: "Est entre",
|
|
106528
|
+
is_equal_to: "Est \xE9gal \xE0",
|
|
106418
106529
|
greater_than: "Est sup\xE9rieur \xE0",
|
|
106419
106530
|
greater_than_equal_to: "Est sup\xE9rieur ou \xE9gal \xE0",
|
|
106420
106531
|
less_than: "Est inf\xE9rieur \xE0",
|
|
@@ -106493,7 +106604,7 @@ var fr_CA_default = {
|
|
|
106493
106604
|
placeholder: "Saisir la devise"
|
|
106494
106605
|
},
|
|
106495
106606
|
linkCell: {
|
|
106496
|
-
externalLabel: "
|
|
106607
|
+
externalLabel: "Lien externe ouvert"
|
|
106497
106608
|
},
|
|
106498
106609
|
numberCell: {
|
|
106499
106610
|
placeholder: "Saisir un num\xE9ro"
|
|
@@ -106575,7 +106686,8 @@ var fr_FR_default = {
|
|
|
106575
106686
|
exporting: "Exportation...",
|
|
106576
106687
|
filters: {
|
|
106577
106688
|
filters: "Filtres",
|
|
106578
|
-
allFilters: "
|
|
106689
|
+
allFilters: "Tous les filtres",
|
|
106690
|
+
moreFilters: "Plus de filtres",
|
|
106579
106691
|
clearAllFilters: "Effacer tous les filtres",
|
|
106580
106692
|
close: "Fermer",
|
|
106581
106693
|
removeFilterToken: "Retirer %{name}",
|
|
@@ -106594,6 +106706,7 @@ var fr_FR_default = {
|
|
|
106594
106706
|
options: {
|
|
106595
106707
|
any_value: "N'importe quelle valeur",
|
|
106596
106708
|
is_between: "Est comprise entre",
|
|
106709
|
+
is_equal_to: "Est \xE9gal \xE0",
|
|
106597
106710
|
greater_than: "Est sup\xE9rieure \xE0",
|
|
106598
106711
|
greater_than_equal_to: "Est sup\xE9rieure ou \xE9gale \xE0",
|
|
106599
106712
|
less_than: "Est inf\xE9rieure \xE0",
|
|
@@ -106657,8 +106770,8 @@ var fr_FR_default = {
|
|
|
106657
106770
|
},
|
|
106658
106771
|
rowGroupToggle: {
|
|
106659
106772
|
expandTierOne: "Ouvrez les premiers groupes du tableau.",
|
|
106660
|
-
expandAll: "
|
|
106661
|
-
collapseAll: "Fermer tous les groupes du tableau
|
|
106773
|
+
expandAll: "Ouvrir tous les groupes du tableau",
|
|
106774
|
+
collapseAll: "Fermer tous les groupes du tableau"
|
|
106662
106775
|
},
|
|
106663
106776
|
columnGroupToggle: {
|
|
106664
106777
|
collapse: "R\xE9duire le groupe de colonnes",
|
|
@@ -106672,7 +106785,7 @@ var fr_FR_default = {
|
|
|
106672
106785
|
placeholder: "Saisir la devise"
|
|
106673
106786
|
},
|
|
106674
106787
|
linkCell: {
|
|
106675
|
-
externalLabel: "
|
|
106788
|
+
externalLabel: "Ouvrir le lien externe"
|
|
106676
106789
|
},
|
|
106677
106790
|
numberCell: {
|
|
106678
106791
|
placeholder: "Saisir un num\xE9ro"
|
|
@@ -106754,7 +106867,8 @@ var is_IS_default = {
|
|
|
106754
106867
|
exporting: "Flytur \xFAt ...",
|
|
106755
106868
|
filters: {
|
|
106756
106869
|
filters: "S\xEDur",
|
|
106757
|
-
allFilters: "
|
|
106870
|
+
allFilters: "Allar s\xEDur",
|
|
106871
|
+
moreFilters: "Fleiri s\xEDur",
|
|
106758
106872
|
clearAllFilters: "Hreinsa allar s\xEDur",
|
|
106759
106873
|
close: "Loka\xF0u",
|
|
106760
106874
|
removeFilterToken: "Fjarl\xE6gja %{name}",
|
|
@@ -106773,6 +106887,7 @@ var is_IS_default = {
|
|
|
106773
106887
|
options: {
|
|
106774
106888
|
any_value: "Hva\xF0a gildi sem er",
|
|
106775
106889
|
is_between: "Er \xE1 milli",
|
|
106890
|
+
is_equal_to: "Er jafnt",
|
|
106776
106891
|
greater_than: "Er meiri en",
|
|
106777
106892
|
greater_than_equal_to: "Er st\xE6rra en e\xF0a jafnt",
|
|
106778
106893
|
less_than: "Er minna en",
|
|
@@ -106851,7 +106966,7 @@ var is_IS_default = {
|
|
|
106851
106966
|
placeholder: "Sl\xE1\xF0u inn gjaldmi\xF0il"
|
|
106852
106967
|
},
|
|
106853
106968
|
linkCell: {
|
|
106854
|
-
externalLabel: "
|
|
106969
|
+
externalLabel: "Opna utana\xF0komandi tengil"
|
|
106855
106970
|
},
|
|
106856
106971
|
numberCell: {
|
|
106857
106972
|
placeholder: "Sl\xE1\xF0u inn n\xFAmer"
|
|
@@ -106933,7 +107048,8 @@ var it_IT_default = {
|
|
|
106933
107048
|
exporting: "Esportazione in corso...",
|
|
106934
107049
|
filters: {
|
|
106935
107050
|
filters: "Filtri",
|
|
106936
|
-
allFilters: "
|
|
107051
|
+
allFilters: "Tutti i filtri",
|
|
107052
|
+
moreFilters: "Altri filtri",
|
|
106937
107053
|
clearAllFilters: "Cancella tutti i filtri",
|
|
106938
107054
|
close: "Chiudi",
|
|
106939
107055
|
removeFilterToken: "Rimuovi %{name}",
|
|
@@ -106952,6 +107068,7 @@ var it_IT_default = {
|
|
|
106952
107068
|
options: {
|
|
106953
107069
|
any_value: "Qualsiasi valore",
|
|
106954
107070
|
is_between: "\xC8 compreso tra",
|
|
107071
|
+
is_equal_to: "\xC8 uguale a",
|
|
106955
107072
|
greater_than: "\xC8 maggiore di",
|
|
106956
107073
|
greater_than_equal_to: "\xC8 maggiore o uguale a",
|
|
106957
107074
|
less_than: "\xC8 minore di",
|
|
@@ -107030,7 +107147,7 @@ var it_IT_default = {
|
|
|
107030
107147
|
placeholder: "Inserisci valuta"
|
|
107031
107148
|
},
|
|
107032
107149
|
linkCell: {
|
|
107033
|
-
externalLabel: "
|
|
107150
|
+
externalLabel: "Apri collegamento esterno"
|
|
107034
107151
|
},
|
|
107035
107152
|
numberCell: {
|
|
107036
107153
|
placeholder: "Inserisci numero"
|
|
@@ -107112,7 +107229,8 @@ var ja_JP_default = {
|
|
|
107112
107229
|
exporting: "\u30A8\u30AF\u30B9\u30DD\u30FC\u30C8\u4E2D...",
|
|
107113
107230
|
filters: {
|
|
107114
107231
|
filters: "\u30D5\u30A3\u30EB\u30BF",
|
|
107115
|
-
allFilters: "
|
|
107232
|
+
allFilters: "\u3059\u3079\u3066\u306E\u30D5\u30A3\u30EB\u30BF\u30FC",
|
|
107233
|
+
moreFilters: "\u305D\u306E\u4ED6\u306E\u30D5\u30A3\u30EB\u30BF",
|
|
107116
107234
|
clearAllFilters: "\u3059\u3079\u3066\u306E\u30D5\u30A3\u30EB\u30BF\u3092\u6D88\u53BB",
|
|
107117
107235
|
close: "\u7D42\u4E86",
|
|
107118
107236
|
removeFilterToken: "%{name}\u524A\u9664",
|
|
@@ -107131,6 +107249,7 @@ var ja_JP_default = {
|
|
|
107131
107249
|
options: {
|
|
107132
107250
|
any_value: "\u4EFB\u610F\u306E\u5024",
|
|
107133
107251
|
is_between: "\u9593\u306B\u3042\u308B",
|
|
107252
|
+
is_equal_to: "\u7B49\u3057\u3044",
|
|
107134
107253
|
greater_than: "\u3088\u308A\u5927\u304D\u3044",
|
|
107135
107254
|
greater_than_equal_to: "\u4EE5\u4E0A\u3067\u3042\u308B",
|
|
107136
107255
|
less_than: "\u672A\u6E80\u3067\u3042\u308B",
|
|
@@ -107209,7 +107328,7 @@ var ja_JP_default = {
|
|
|
107209
107328
|
placeholder: "\u901A\u8CA8\u3092\u5165\u529B"
|
|
107210
107329
|
},
|
|
107211
107330
|
linkCell: {
|
|
107212
|
-
externalLabel: "
|
|
107331
|
+
externalLabel: "\u5916\u90E8\u30EA\u30F3\u30AF\u3092\u958B\u304F"
|
|
107213
107332
|
},
|
|
107214
107333
|
numberCell: {
|
|
107215
107334
|
placeholder: "\u756A\u53F7\u3092\u5165\u529B"
|
|
@@ -107254,156 +107373,158 @@ var nb_NO_default = {
|
|
|
107254
107373
|
dataTable: {
|
|
107255
107374
|
emptyState: {
|
|
107256
107375
|
noFilteredResults: {
|
|
107257
|
-
description: "
|
|
107258
|
-
title: "Ingen
|
|
107259
|
-
itemsTitle: "
|
|
107376
|
+
description: "Sjekk stavem\xE5ten og filteralternativene dine, eller s\xF8k etter et annet n\xF8kkelord.",
|
|
107377
|
+
title: "Ingen elementer samsvarer med s\xF8ket ditt",
|
|
107378
|
+
itemsTitle: "Ingen %{itemsLabel} samsvarer med s\xF8ket ditt"
|
|
107260
107379
|
},
|
|
107261
107380
|
noResults: {
|
|
107262
|
-
description: "
|
|
107263
|
-
title: "
|
|
107264
|
-
itemsTitle: "
|
|
107265
|
-
tooltip: "
|
|
107266
|
-
searchTooltip: "
|
|
107381
|
+
description: "N\xE5r teamet ditt har opprettet disse elementene, kan du f\xE5 tilgang til dem her. ",
|
|
107382
|
+
title: "Det er ingen elementer \xE5 vise akkurat n\xE5",
|
|
107383
|
+
itemsTitle: "Det er ingen %{itemsLabel} \xE5 vise akkurat n\xE5",
|
|
107384
|
+
tooltip: "%{featureName} -knappen vil bli aktivert n\xE5r du legger til informasjon i %{tableName}",
|
|
107385
|
+
searchTooltip: "S\xF8k vil bli aktivert n\xE5r du legger til informasjon i %{tableName}",
|
|
107267
107386
|
featureFilter: "Filter",
|
|
107268
|
-
featureQuickFilter: "
|
|
107269
|
-
featureGroupBy: "
|
|
107270
|
-
featureConfigure: "
|
|
107271
|
-
tableNameFallback: "
|
|
107387
|
+
featureQuickFilter: "Hurtigfilter",
|
|
107388
|
+
featureGroupBy: "Grupper etter",
|
|
107389
|
+
featureConfigure: "Konfigurer",
|
|
107390
|
+
tableNameFallback: "bord"
|
|
107272
107391
|
}
|
|
107273
107392
|
},
|
|
107274
107393
|
bulkActions: {
|
|
107275
|
-
apply: "
|
|
107276
|
-
bulkEdit: "
|
|
107394
|
+
apply: "S\xF8k",
|
|
107395
|
+
bulkEdit: "Masseendring",
|
|
107277
107396
|
cancel: "Avbryt",
|
|
107278
|
-
editValues: "
|
|
107279
|
-
error: "
|
|
107280
|
-
placeholderForField: "
|
|
107281
|
-
selection: "%{count} %{number}
|
|
107397
|
+
editValues: "Rediger verdier",
|
|
107398
|
+
error: "Beklager, elementene kunne ikke oppdateres. Pr\xF8v igjen.",
|
|
107399
|
+
placeholderForField: "Skriv inn %{fieldName}",
|
|
107400
|
+
selection: "%{count} %{number} valgt",
|
|
107282
107401
|
selection_count: {
|
|
107283
|
-
zero: "%{count}
|
|
107284
|
-
one: "%{count}
|
|
107285
|
-
other: "%{count}
|
|
107402
|
+
zero: "%{count} elementer valgt",
|
|
107403
|
+
one: "%{count} element valgt",
|
|
107404
|
+
other: "%{count} elementer valgt"
|
|
107286
107405
|
},
|
|
107287
|
-
success: "
|
|
107288
|
-
one: "
|
|
107289
|
-
many: "
|
|
107406
|
+
success: "Elementene ble oppdatert.",
|
|
107407
|
+
one: "element",
|
|
107408
|
+
many: "gjenstander"
|
|
107290
107409
|
},
|
|
107291
|
-
exporting: "
|
|
107410
|
+
exporting: "Eksporterer...",
|
|
107292
107411
|
filters: {
|
|
107293
107412
|
filters: "Filtre",
|
|
107294
|
-
allFilters: "
|
|
107295
|
-
|
|
107296
|
-
|
|
107413
|
+
allFilters: "Alle filtre",
|
|
107414
|
+
moreFilters: "More Filters",
|
|
107415
|
+
clearAllFilters: "Fjern alle filtre",
|
|
107416
|
+
close: "Lukk",
|
|
107297
107417
|
removeFilterToken: "Fjern %{name}",
|
|
107298
107418
|
locationFilter: {
|
|
107299
107419
|
selectAll: "Velg alle",
|
|
107300
|
-
includeSublocations: "
|
|
107301
|
-
searchLocations: "
|
|
107302
|
-
locations: "
|
|
107420
|
+
includeSublocations: "Inkluder underlokasjoner",
|
|
107421
|
+
searchLocations: "S\xF8k etter steder",
|
|
107422
|
+
locations: "Steder"
|
|
107303
107423
|
},
|
|
107304
107424
|
numberFilter: {
|
|
107305
107425
|
labels: {
|
|
107306
|
-
and: "
|
|
107307
|
-
input_placeholder: "
|
|
107308
|
-
placeholder: "
|
|
107426
|
+
and: "og",
|
|
107427
|
+
input_placeholder: "Angi verdi",
|
|
107428
|
+
placeholder: "Velg et element"
|
|
107309
107429
|
},
|
|
107310
107430
|
options: {
|
|
107311
|
-
any_value: "
|
|
107312
|
-
is_between: "
|
|
107313
|
-
|
|
107314
|
-
|
|
107315
|
-
|
|
107316
|
-
|
|
107317
|
-
|
|
107431
|
+
any_value: "Enhver verdi",
|
|
107432
|
+
is_between: "Er mellom",
|
|
107433
|
+
is_equal_to: "Er lik",
|
|
107434
|
+
greater_than: "Er st\xF8rre enn",
|
|
107435
|
+
greater_than_equal_to: "Er st\xF8rre enn eller lik",
|
|
107436
|
+
less_than: "Er mindre enn",
|
|
107437
|
+
less_than_equal_to: "Er mindre enn eller lik",
|
|
107438
|
+
no_value: "Ingen verdi"
|
|
107318
107439
|
}
|
|
107319
107440
|
},
|
|
107320
107441
|
singleSelectFilter: {
|
|
107321
|
-
placeholder: "
|
|
107442
|
+
placeholder: "Velg en verdi"
|
|
107322
107443
|
},
|
|
107323
107444
|
multiSelectQuickFilter: {
|
|
107324
|
-
ariaLabel: "
|
|
107445
|
+
ariaLabel: "Hurtigfilter: Velg flere alternativer"
|
|
107325
107446
|
},
|
|
107326
107447
|
singleSelectQuickFilter: {
|
|
107327
|
-
ariaLabel: "
|
|
107448
|
+
ariaLabel: "Hurtigfilter: Velg et alternativ"
|
|
107328
107449
|
}
|
|
107329
107450
|
},
|
|
107330
107451
|
loading: {
|
|
107331
|
-
initial: "
|
|
107332
|
-
secondary: "
|
|
107452
|
+
initial: "Laster inn informasjon.",
|
|
107453
|
+
secondary: "Informasjon lastes, takk for t\xE5lmodigheten."
|
|
107333
107454
|
},
|
|
107334
107455
|
menuOptions: {
|
|
107335
107456
|
ariaMenuColumn: "Trykk p\xE5 Alt/Option og pil ned for \xE5 \xE5pne kolonnemenyen.",
|
|
107336
107457
|
sortMenuItem: {
|
|
107337
|
-
label: "
|
|
107338
|
-
sortAscItem: "
|
|
107339
|
-
sortDescItem: "
|
|
107340
|
-
sortResetItem: "
|
|
107341
|
-
sortAscending: "
|
|
107342
|
-
sortDescending: "
|
|
107343
|
-
sortCleared: "
|
|
107344
|
-
},
|
|
107345
|
-
expandAllGroups: "
|
|
107346
|
-
collapseAllGroups: "
|
|
107347
|
-
pinColumn: "
|
|
107348
|
-
pinLeft: "
|
|
107349
|
-
pinRight: "
|
|
107350
|
-
noPin: "
|
|
107351
|
-
autoSizeThisColumn: "
|
|
107352
|
-
autoSizeAllColumns: "
|
|
107353
|
-
hideColumn: "
|
|
107354
|
-
resetColumns: "
|
|
107355
|
-
unGroupBy: "
|
|
107356
|
-
groupBy: "
|
|
107458
|
+
label: "Sorter etter denne kolonnen",
|
|
107459
|
+
sortAscItem: "Sorter kolonne stigende",
|
|
107460
|
+
sortDescItem: "Sorter kolonne synkende",
|
|
107461
|
+
sortResetItem: "Kolonne ikke sortert",
|
|
107462
|
+
sortAscending: "sortert stigende",
|
|
107463
|
+
sortDescending: "sortert synkende",
|
|
107464
|
+
sortCleared: "Sortering fjernet"
|
|
107465
|
+
},
|
|
107466
|
+
expandAllGroups: "Utvid alle grupper",
|
|
107467
|
+
collapseAllGroups: "Skjul alle grupper",
|
|
107468
|
+
pinColumn: "Fest kolonne",
|
|
107469
|
+
pinLeft: "Fest til venstre",
|
|
107470
|
+
pinRight: "Fest til h\xF8yre",
|
|
107471
|
+
noPin: "Ingen PIN",
|
|
107472
|
+
autoSizeThisColumn: "Tilpass kolonnebredden automatisk",
|
|
107473
|
+
autoSizeAllColumns: "Tilpass alle kolonner automatisk",
|
|
107474
|
+
hideColumn: "Skjul kolonne",
|
|
107475
|
+
resetColumns: "Tilbakestill kolonner",
|
|
107476
|
+
unGroupBy: "Fjern gruppering etter {{label}}",
|
|
107477
|
+
groupBy: "Grupper etter {{label}}"
|
|
107357
107478
|
},
|
|
107358
|
-
grandTotals: "
|
|
107479
|
+
grandTotals: "Totale summer",
|
|
107359
107480
|
search: "S\xF8k",
|
|
107360
|
-
subtotals: "
|
|
107481
|
+
subtotals: "Delsummer",
|
|
107361
107482
|
tableSettings: {
|
|
107362
|
-
configureColumns: "
|
|
107363
|
-
resetToDefault: "
|
|
107364
|
-
rowHeight: "
|
|
107365
|
-
small: "
|
|
107366
|
-
medium: "
|
|
107367
|
-
large: "
|
|
107368
|
-
tableSettings: "
|
|
107369
|
-
groupBy: "
|
|
107483
|
+
configureColumns: "Konfigurer kolonner",
|
|
107484
|
+
resetToDefault: "Vis alle",
|
|
107485
|
+
rowHeight: "Radh\xF8yde",
|
|
107486
|
+
small: "Liten",
|
|
107487
|
+
medium: "Middels",
|
|
107488
|
+
large: "Stor",
|
|
107489
|
+
tableSettings: "Borddekking",
|
|
107490
|
+
groupBy: "Grupper etter:",
|
|
107370
107491
|
reset: "Tilbakestill",
|
|
107371
|
-
selectColumnGroup: "
|
|
107372
|
-
configure: "
|
|
107492
|
+
selectColumnGroup: "Velg en kolonne \xE5 gruppere",
|
|
107493
|
+
configure: "Konfigurer"
|
|
107373
107494
|
},
|
|
107374
107495
|
rowGroupToggle: {
|
|
107375
|
-
expandTierOne: "
|
|
107376
|
-
expandAll: "
|
|
107377
|
-
collapseAll: "
|
|
107496
|
+
expandTierOne: "\xC5pne de f\xF8rste gruppene i tabellen.",
|
|
107497
|
+
expandAll: "\xC5pne alle grupper i tabellen.",
|
|
107498
|
+
collapseAll: "Lukk alle grupper i tabellen."
|
|
107378
107499
|
},
|
|
107379
107500
|
columnGroupToggle: {
|
|
107380
|
-
collapse: "
|
|
107381
|
-
expand: "
|
|
107501
|
+
collapse: "Skjul kolonnegruppe",
|
|
107502
|
+
expand: "Utvid kolonnegruppe"
|
|
107382
107503
|
},
|
|
107383
107504
|
cells: {
|
|
107384
107505
|
textCell: {
|
|
107385
|
-
placeholder: "
|
|
107506
|
+
placeholder: "Skriv inn tekst"
|
|
107386
107507
|
},
|
|
107387
107508
|
currencyCell: {
|
|
107388
|
-
placeholder: "
|
|
107509
|
+
placeholder: "Angi valuta"
|
|
107389
107510
|
},
|
|
107390
107511
|
linkCell: {
|
|
107391
|
-
externalLabel: "
|
|
107512
|
+
externalLabel: "\xC5pne ekstern kobling"
|
|
107392
107513
|
},
|
|
107393
107514
|
numberCell: {
|
|
107394
|
-
placeholder: "
|
|
107515
|
+
placeholder: "Skriv inn nummer"
|
|
107395
107516
|
},
|
|
107396
107517
|
percentCell: {
|
|
107397
|
-
placeholder: "
|
|
107518
|
+
placeholder: "Skriv inn %"
|
|
107398
107519
|
},
|
|
107399
107520
|
pillCell: {
|
|
107400
|
-
placeholder: "
|
|
107521
|
+
placeholder: "Velg {{label}}"
|
|
107401
107522
|
},
|
|
107402
107523
|
selectCell: {
|
|
107403
|
-
placeholder: "
|
|
107524
|
+
placeholder: "Velg {{label}}"
|
|
107404
107525
|
},
|
|
107405
107526
|
multiSelectCell: {
|
|
107406
|
-
placeholder: "
|
|
107527
|
+
placeholder: "Velg verdier"
|
|
107407
107528
|
},
|
|
107408
107529
|
booleanCell: {
|
|
107409
107530
|
options: {
|
|
@@ -107414,16 +107535,16 @@ var nb_NO_default = {
|
|
|
107414
107535
|
},
|
|
107415
107536
|
filterRenders: {
|
|
107416
107537
|
dateFilter: {
|
|
107417
|
-
single: "
|
|
107418
|
-
range: "
|
|
107538
|
+
single: "Enslig",
|
|
107539
|
+
range: "Rekkevidde"
|
|
107419
107540
|
}
|
|
107420
107541
|
},
|
|
107421
107542
|
groupCell: {
|
|
107422
|
-
expand: "
|
|
107423
|
-
collapse: "
|
|
107543
|
+
expand: "Utvid gruppe",
|
|
107544
|
+
collapse: "Skjul gruppe"
|
|
107424
107545
|
},
|
|
107425
107546
|
rowCheckbox: {
|
|
107426
|
-
ariaLabel: "
|
|
107547
|
+
ariaLabel: "Velg rad"
|
|
107427
107548
|
}
|
|
107428
107549
|
}
|
|
107429
107550
|
};
|
|
@@ -107470,7 +107591,8 @@ var pl_PL_default = {
|
|
|
107470
107591
|
exporting: "Eksportowanie...",
|
|
107471
107592
|
filters: {
|
|
107472
107593
|
filters: "Filtry",
|
|
107473
|
-
allFilters: "
|
|
107594
|
+
allFilters: "Wszystkie filtry",
|
|
107595
|
+
moreFilters: "Wi\u0119cej filtr\xF3w",
|
|
107474
107596
|
clearAllFilters: "Wyczy\u015B\u0107 wszystkie filtry",
|
|
107475
107597
|
close: "Zamknij",
|
|
107476
107598
|
removeFilterToken: "Usu\u0144 %{name}",
|
|
@@ -107489,6 +107611,7 @@ var pl_PL_default = {
|
|
|
107489
107611
|
options: {
|
|
107490
107612
|
any_value: "Dowolna warto\u015B\u0107",
|
|
107491
107613
|
is_between: "jest pomi\u0119dzy",
|
|
107614
|
+
is_equal_to: "jest r\xF3wne",
|
|
107492
107615
|
greater_than: "jest wi\u0119ksze ni\u017C",
|
|
107493
107616
|
greater_than_equal_to: "jest wi\u0119ksze ni\u017C lub r\xF3wne",
|
|
107494
107617
|
less_than: "mniej ni\u017C",
|
|
@@ -107567,7 +107690,7 @@ var pl_PL_default = {
|
|
|
107567
107690
|
placeholder: "Wprowad\u017A walut\u0119"
|
|
107568
107691
|
},
|
|
107569
107692
|
linkCell: {
|
|
107570
|
-
externalLabel: "
|
|
107693
|
+
externalLabel: "Otw\xF3rz zewn\u0119trzne \u0142\u0105cze"
|
|
107571
107694
|
},
|
|
107572
107695
|
numberCell: {
|
|
107573
107696
|
placeholder: "Wprowad\u017A numer"
|
|
@@ -107830,7 +107953,8 @@ var pt_BR_default = {
|
|
|
107830
107953
|
exporting: "Exportando...",
|
|
107831
107954
|
filters: {
|
|
107832
107955
|
filters: "Filtros",
|
|
107833
|
-
allFilters: "
|
|
107956
|
+
allFilters: "Todos os Filtros",
|
|
107957
|
+
moreFilters: "Mais Filtros",
|
|
107834
107958
|
clearAllFilters: "Limpar Todos os Filtros",
|
|
107835
107959
|
close: "Fechar",
|
|
107836
107960
|
removeFilterToken: "Remover %{name}",
|
|
@@ -107849,6 +107973,7 @@ var pt_BR_default = {
|
|
|
107849
107973
|
options: {
|
|
107850
107974
|
any_value: "Qualquer Valor",
|
|
107851
107975
|
is_between: "Est\xE1 entre",
|
|
107976
|
+
is_equal_to: "\xC9 Igual a",
|
|
107852
107977
|
greater_than: "\xC9 Maior Que",
|
|
107853
107978
|
greater_than_equal_to: "\xC9 Maior Que ou Igual a",
|
|
107854
107979
|
less_than: "\xC9 Menor Que",
|
|
@@ -107927,7 +108052,7 @@ var pt_BR_default = {
|
|
|
107927
108052
|
placeholder: "Insira moeda"
|
|
107928
108053
|
},
|
|
107929
108054
|
linkCell: {
|
|
107930
|
-
externalLabel: "
|
|
108055
|
+
externalLabel: "Abrir link externo"
|
|
107931
108056
|
},
|
|
107932
108057
|
numberCell: {
|
|
107933
108058
|
placeholder: "Inserir n\xFAmeros"
|
|
@@ -107980,8 +108105,8 @@ var pt_PT_default = {
|
|
|
107980
108105
|
description: "Assim que a sua equipa criar estes itens, poder\xE1 aceder aos mesmos aqui. ",
|
|
107981
108106
|
title: "N\xE3o h\xE1 itens para apresentar neste momento",
|
|
107982
108107
|
itemsTitle: "N\xE3o h\xE1 %{itemsLabel} para apresentar neste momento",
|
|
107983
|
-
tooltip: "O bot\xE3o %{featureName} ser\xE1 ativado quando adicionar informa\xE7\xF5es
|
|
107984
|
-
searchTooltip: "A pesquisa ser\xE1 ativada quando adicionar informa\xE7\xF5es a %{tableName}",
|
|
108108
|
+
tooltip: "O bot\xE3o %{featureName} ser\xE1 ativado quando adicionar informa\xE7\xF5es a %{tableName}",
|
|
108109
|
+
searchTooltip: "A pesquisa ser\xE1 ativada quando adicionar informa\xE7\xF5es a: %{tableName}",
|
|
107985
108110
|
featureFilter: "Filtro",
|
|
107986
108111
|
featureQuickFilter: "Filtro r\xE1pido",
|
|
107987
108112
|
featureGroupBy: "Agrupar por",
|
|
@@ -108009,7 +108134,8 @@ var pt_PT_default = {
|
|
|
108009
108134
|
exporting: "A exportar...",
|
|
108010
108135
|
filters: {
|
|
108011
108136
|
filters: "Filtros",
|
|
108012
|
-
allFilters: "
|
|
108137
|
+
allFilters: "Todos os filtros",
|
|
108138
|
+
moreFilters: "Mais filtros",
|
|
108013
108139
|
clearAllFilters: "Apagar todos os filtros",
|
|
108014
108140
|
close: "Fechar",
|
|
108015
108141
|
removeFilterToken: "Remover %{name}",
|
|
@@ -108028,6 +108154,7 @@ var pt_PT_default = {
|
|
|
108028
108154
|
options: {
|
|
108029
108155
|
any_value: "Qualquer valor",
|
|
108030
108156
|
is_between: "Est\xE1 entre",
|
|
108157
|
+
is_equal_to: "\xC9 igual a",
|
|
108031
108158
|
greater_than: "\xC9 superior a",
|
|
108032
108159
|
greater_than_equal_to: "\xC9 igual ou superior a",
|
|
108033
108160
|
less_than: "\xC9 inferior a",
|
|
@@ -108080,8 +108207,8 @@ var pt_PT_default = {
|
|
|
108080
108207
|
configureColumns: "Configurar colunas",
|
|
108081
108208
|
resetToDefault: "Mostrar tudo",
|
|
108082
108209
|
rowHeight: "Altura da linha",
|
|
108083
|
-
small: "
|
|
108084
|
-
medium: "M\
|
|
108210
|
+
small: "Pequena",
|
|
108211
|
+
medium: "M\xE9dia",
|
|
108085
108212
|
large: "Grande",
|
|
108086
108213
|
tableSettings: "Defini\xE7\xF5es de tabela",
|
|
108087
108214
|
groupBy: "Agrupar por:",
|
|
@@ -108106,7 +108233,7 @@ var pt_PT_default = {
|
|
|
108106
108233
|
placeholder: "Introduzir moeda"
|
|
108107
108234
|
},
|
|
108108
108235
|
linkCell: {
|
|
108109
|
-
externalLabel: "
|
|
108236
|
+
externalLabel: "Abrir liga\xE7\xE3o externa"
|
|
108110
108237
|
},
|
|
108111
108238
|
numberCell: {
|
|
108112
108239
|
placeholder: "Introduzir n\xFAmero"
|
|
@@ -108188,7 +108315,8 @@ var th_TH_default = {
|
|
|
108188
108315
|
exporting: "\u0E01\u0E33\u0E25\u0E31\u0E07\u0E2A\u0E48\u0E07\u0E2D\u0E2D\u0E01...",
|
|
108189
108316
|
filters: {
|
|
108190
108317
|
filters: "\u0E15\u0E31\u0E27\u0E01\u0E23\u0E2D\u0E07",
|
|
108191
|
-
allFilters: "
|
|
108318
|
+
allFilters: "\u0E15\u0E31\u0E27\u0E01\u0E23\u0E2D\u0E07\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14",
|
|
108319
|
+
moreFilters: "\u0E15\u0E31\u0E27\u0E01\u0E23\u0E2D\u0E07\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E40\u0E15\u0E34\u0E21",
|
|
108192
108320
|
clearAllFilters: "\u0E25\u0E49\u0E32\u0E07\u0E15\u0E31\u0E27\u0E01\u0E23\u0E2D\u0E07\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14",
|
|
108193
108321
|
close: "\u0E1B\u0E34\u0E14",
|
|
108194
108322
|
removeFilterToken: "\u0E25\u0E1A %{name}",
|
|
@@ -108207,6 +108335,7 @@ var th_TH_default = {
|
|
|
108207
108335
|
options: {
|
|
108208
108336
|
any_value: "\u0E04\u0E48\u0E32\u0E43\u0E14\u0E01\u0E47\u0E44\u0E14\u0E49",
|
|
108209
108337
|
is_between: "\u0E2D\u0E22\u0E39\u0E48\u0E23\u0E30\u0E2B\u0E27\u0E48\u0E32\u0E07",
|
|
108338
|
+
is_equal_to: "\u0E40\u0E17\u0E48\u0E32\u0E01\u0E31\u0E1A",
|
|
108210
108339
|
greater_than: "\u0E21\u0E32\u0E01\u0E01\u0E27\u0E48\u0E32",
|
|
108211
108340
|
greater_than_equal_to: "\u0E21\u0E32\u0E01\u0E01\u0E27\u0E48\u0E32\u0E2B\u0E23\u0E37\u0E2D\u0E40\u0E17\u0E48\u0E32\u0E01\u0E31\u0E1A",
|
|
108212
108341
|
less_than: "\u0E19\u0E49\u0E2D\u0E22\u0E01\u0E27\u0E48\u0E32",
|
|
@@ -108285,7 +108414,7 @@ var th_TH_default = {
|
|
|
108285
108414
|
placeholder: "\u0E1B\u0E49\u0E2D\u0E19\u0E2A\u0E01\u0E38\u0E25\u0E40\u0E07\u0E34\u0E19"
|
|
108286
108415
|
},
|
|
108287
108416
|
linkCell: {
|
|
108288
|
-
externalLabel: "
|
|
108417
|
+
externalLabel: "\u0E40\u0E1B\u0E34\u0E14\u0E25\u0E34\u0E07\u0E01\u0E4C\u0E20\u0E32\u0E22\u0E19\u0E2D\u0E01"
|
|
108289
108418
|
},
|
|
108290
108419
|
numberCell: {
|
|
108291
108420
|
placeholder: "\u0E1B\u0E49\u0E2D\u0E19\u0E2B\u0E21\u0E32\u0E22\u0E40\u0E25\u0E02"
|
|
@@ -108367,7 +108496,8 @@ var zh_SG_default = {
|
|
|
108367
108496
|
exporting: "\u6B63\u5728\u5BFC\u51FA...",
|
|
108368
108497
|
filters: {
|
|
108369
108498
|
filters: "\u7B5B\u9009\u5668",
|
|
108370
|
-
allFilters: "
|
|
108499
|
+
allFilters: "\u6240\u6709\u7B5B\u9009\u5668",
|
|
108500
|
+
moreFilters: "\u66F4\u591A\u7B5B\u9009\u5668",
|
|
108371
108501
|
clearAllFilters: "\u6E05\u9664\u6240\u6709\u7B5B\u9009\u5668",
|
|
108372
108502
|
close: "\u5173\u95ED",
|
|
108373
108503
|
removeFilterToken: "\u79FB\u9664 %{name}",
|
|
@@ -108386,6 +108516,7 @@ var zh_SG_default = {
|
|
|
108386
108516
|
options: {
|
|
108387
108517
|
any_value: "\u4EFB\u610F\u503C",
|
|
108388
108518
|
is_between: "\u4ECB\u4E8E",
|
|
108519
|
+
is_equal_to: "\u7B49\u4E8E",
|
|
108389
108520
|
greater_than: "\u5927\u4E8E",
|
|
108390
108521
|
greater_than_equal_to: "\u5927\u4E8E\u6216\u7B49\u4E8E",
|
|
108391
108522
|
less_than: "\u5C0F\u4E8E",
|
|
@@ -108464,7 +108595,7 @@ var zh_SG_default = {
|
|
|
108464
108595
|
placeholder: "\u8F93\u5165\u8D27\u5E01"
|
|
108465
108596
|
},
|
|
108466
108597
|
linkCell: {
|
|
108467
|
-
externalLabel: "
|
|
108598
|
+
externalLabel: "\u6253\u5F00\u5916\u90E8\u94FE\u63A5"
|
|
108468
108599
|
},
|
|
108469
108600
|
numberCell: {
|
|
108470
108601
|
placeholder: "\u8F93\u5165\u6570\u5B57"
|
|
@@ -108546,7 +108677,8 @@ var zh_TW_default = {
|
|
|
108546
108677
|
exporting: "\u532F\u51FA\u4E2D\u2026\u2026",
|
|
108547
108678
|
filters: {
|
|
108548
108679
|
filters: "\u7BE9\u9078\u689D\u4EF6",
|
|
108549
|
-
allFilters: "
|
|
108680
|
+
allFilters: "\u6240\u6709\u7BE9\u9078\u689D\u4EF6",
|
|
108681
|
+
moreFilters: "\u66F4\u591A\u7BE9\u9078\u689D\u4EF6",
|
|
108550
108682
|
clearAllFilters: "\u6E05\u9664\u6240\u6709\u7BE9\u9078\u689D\u4EF6",
|
|
108551
108683
|
close: "\u95DC\u9589",
|
|
108552
108684
|
removeFilterToken: "\u79FB\u9664\u300C%{name}\u300D",
|
|
@@ -108565,6 +108697,7 @@ var zh_TW_default = {
|
|
|
108565
108697
|
options: {
|
|
108566
108698
|
any_value: "\u4EFB\u4F55\u503C",
|
|
108567
108699
|
is_between: "\u4ECB\u65BC",
|
|
108700
|
+
is_equal_to: "\u7B49\u65BC",
|
|
108568
108701
|
greater_than: "\u5927\u65BC",
|
|
108569
108702
|
greater_than_equal_to: "\u5927\u65BC\u6216\u7B49\u65BC",
|
|
108570
108703
|
less_than: "\u5C0F\u65BC",
|
|
@@ -108643,7 +108776,7 @@ var zh_TW_default = {
|
|
|
108643
108776
|
placeholder: "\u8F38\u5165\u8CA8\u5E63"
|
|
108644
108777
|
},
|
|
108645
108778
|
linkCell: {
|
|
108646
|
-
externalLabel: "
|
|
108779
|
+
externalLabel: "\u958B\u555F\u5916\u90E8\u9023\u7D50"
|
|
108647
108780
|
},
|
|
108648
108781
|
numberCell: {
|
|
108649
108782
|
placeholder: "\u8F38\u5165\u6578\u5B57"
|
|
@@ -109697,6 +109830,8 @@ var DataTable = ({
|
|
|
109697
109830
|
!initialTableConfig
|
|
109698
109831
|
);
|
|
109699
109832
|
const contextPanel = useContextPanel();
|
|
109833
|
+
const filtersPanelId = $bdb11010cef70236$export$f680877a34711e37();
|
|
109834
|
+
const filtersBodyId = $bdb11010cef70236$export$f680877a34711e37();
|
|
109700
109835
|
const clientI18n = useI18nContext();
|
|
109701
109836
|
const isCDNEnabled = isCDNFeatureFlagEnabled(clientI18n, enableCDN);
|
|
109702
109837
|
const cdnTranslations = useRequestTranslations(
|
|
@@ -109948,7 +110083,9 @@ var DataTable = ({
|
|
|
109948
110083
|
totalRowCount,
|
|
109949
110084
|
setTotalRowCount,
|
|
109950
110085
|
updateServerSideDataSource,
|
|
109951
|
-
hasDuplicateRowIds
|
|
110086
|
+
hasDuplicateRowIds,
|
|
110087
|
+
filtersPanelId,
|
|
110088
|
+
filtersBodyId
|
|
109952
110089
|
}
|
|
109953
110090
|
},
|
|
109954
110091
|
children
|
|
@@ -111296,7 +111433,7 @@ var BaseFiltersPanel = ({
|
|
|
111296
111433
|
...props
|
|
111297
111434
|
}) => {
|
|
111298
111435
|
const ref = React80.useRef(null);
|
|
111299
|
-
const { contextPanel } = useInternalTableContext();
|
|
111436
|
+
const { contextPanel, filtersBodyId, filtersPanelId } = useInternalTableContext();
|
|
111300
111437
|
const I18n = useI18nContext();
|
|
111301
111438
|
const hidden = !contextPanel.isVisible || contextPanel.content !== "filters";
|
|
111302
111439
|
React80.useLayoutEffect(() => {
|
|
@@ -111313,6 +111450,7 @@ var BaseFiltersPanel = ({
|
|
|
111313
111450
|
"contextPanel--hidden": hidden
|
|
111314
111451
|
}),
|
|
111315
111452
|
"data-qa": "data-table-filters-context-panel",
|
|
111453
|
+
id: filtersPanelId,
|
|
111316
111454
|
...props
|
|
111317
111455
|
},
|
|
111318
111456
|
/* @__PURE__ */ React80.createElement(Box, { className: cx20("contextPanelWrapper"), display: "flex-column" }, /* @__PURE__ */ React80.createElement(Panel, null, /* @__PURE__ */ React80.createElement(Panel.Header, { onClose: contextPanel.hide }, /* @__PURE__ */ React80.createElement(Panel.Title, null, I18n.t("dataTable.filters.filters")), /* @__PURE__ */ React80.createElement(
|
|
@@ -111324,7 +111462,7 @@ var BaseFiltersPanel = ({
|
|
|
111324
111462
|
variant: "tertiary"
|
|
111325
111463
|
},
|
|
111326
111464
|
I18n.t("dataTable.filters.clearAllFilters")
|
|
111327
|
-
)), /* @__PURE__ */ React80.createElement(Panel.Body, { className: cx20("contextPanelBody") }, /* @__PURE__ */ React80.createElement(Panel.Section, null, children))))
|
|
111465
|
+
)), /* @__PURE__ */ React80.createElement(Panel.Body, { id: filtersBodyId, className: cx20("contextPanelBody") }, /* @__PURE__ */ React80.createElement(Panel.Section, null, children))))
|
|
111328
111466
|
);
|
|
111329
111467
|
};
|
|
111330
111468
|
function ClientSideFiltersPanel(props) {
|
|
@@ -112042,6 +112180,21 @@ var LocationQuickFilterRenderer_default = LocationQuickFilterRenderer;
|
|
|
112042
112180
|
var StyledFilterPresetPopoverContent = styled4(Popover.Content)`
|
|
112043
112181
|
padding: ${spacing.sm}px ${spacing.lg}px;
|
|
112044
112182
|
`;
|
|
112183
|
+
var StyledClearButton = styled4(Button)`
|
|
112184
|
+
position: absolute;
|
|
112185
|
+
right: ${spacing.md + spacing.lg}px;
|
|
112186
|
+
top: calc(36px / 2);
|
|
112187
|
+
transform: translateY(-50%);
|
|
112188
|
+
color: ${colors.blue45};
|
|
112189
|
+
&:hover,
|
|
112190
|
+
&:focus {
|
|
112191
|
+
color: ${colors.blue45};
|
|
112192
|
+
background: ${colors.white};
|
|
112193
|
+
}
|
|
112194
|
+
`;
|
|
112195
|
+
var StyledTriggerContainerWrapper = styled4.div`
|
|
112196
|
+
position: relative;
|
|
112197
|
+
`;
|
|
112045
112198
|
var getValueLabel = (isValueEmpty, value, placeholder, filterName) => {
|
|
112046
112199
|
const prefixLabel = isValueEmpty ? placeholder || filterName : filterName;
|
|
112047
112200
|
const valueLabel = value ? `${prefixLabel ? ": " : ""}${value}` : "";
|
|
@@ -112063,7 +112216,7 @@ var getSuperSelectFilterPreset = (columnDefinition) => {
|
|
|
112063
112216
|
const ctx = UNSAFE_useSuperSelectContext();
|
|
112064
112217
|
const I18n = useI18nContext();
|
|
112065
112218
|
return /* @__PURE__ */ React80.createElement(
|
|
112066
|
-
|
|
112219
|
+
StyledClearButton,
|
|
112067
112220
|
{
|
|
112068
112221
|
...ctx.props.clear(),
|
|
112069
112222
|
"aria-label": I18n.t("dataTable.filters.removeFilterToken", {
|
|
@@ -112088,6 +112241,11 @@ var getSuperSelectFilterPreset = (columnDefinition) => {
|
|
|
112088
112241
|
filterName
|
|
112089
112242
|
)));
|
|
112090
112243
|
}),
|
|
112244
|
+
TriggerContainerWrapper: React80.forwardRef(
|
|
112245
|
+
(props, ref) => {
|
|
112246
|
+
return /* @__PURE__ */ React80.createElement(StyledTriggerContainerWrapper, { ref, ...props });
|
|
112247
|
+
}
|
|
112248
|
+
),
|
|
112091
112249
|
TriggerContainer: React80.forwardRef(
|
|
112092
112250
|
(props, ref) => {
|
|
112093
112251
|
const ctx = UNSAFE_useSuperSelectContext();
|
|
@@ -112101,11 +112259,31 @@ var getSuperSelectFilterPreset = (columnDefinition) => {
|
|
|
112101
112259
|
}
|
|
112102
112260
|
);
|
|
112103
112261
|
}
|
|
112262
|
+
const {
|
|
112263
|
+
"aria-activedescendant": ariaActivedescendant,
|
|
112264
|
+
"aria-controls": ariaControls,
|
|
112265
|
+
"aria-expanded": ariaExpanded,
|
|
112266
|
+
"aria-haspopup": ariaHaspopup,
|
|
112267
|
+
"aria-label": ariaLabel,
|
|
112268
|
+
"aria-labelledby": ariaLabelledby,
|
|
112269
|
+
role,
|
|
112270
|
+
tabIndex
|
|
112271
|
+
} = ctx.props.multiInput();
|
|
112272
|
+
const a11yProps = {
|
|
112273
|
+
"aria-activedescendant": ariaActivedescendant,
|
|
112274
|
+
"aria-controls": ariaControls,
|
|
112275
|
+
"aria-expanded": ariaExpanded,
|
|
112276
|
+
"aria-haspopup": ariaHaspopup,
|
|
112277
|
+
"aria-label": ariaLabel,
|
|
112278
|
+
"aria-labelledby": ariaLabelledby,
|
|
112279
|
+
role,
|
|
112280
|
+
tabIndex
|
|
112281
|
+
};
|
|
112104
112282
|
return /* @__PURE__ */ React80.createElement(
|
|
112105
112283
|
Popover,
|
|
112106
112284
|
{
|
|
112107
112285
|
placement: "top",
|
|
112108
|
-
trigger: ctx.state.value.length > 1 ? "hover" : "none",
|
|
112286
|
+
trigger: ctx.state.value.length > 1 ? ["hover", "focus"] : "none",
|
|
112109
112287
|
overlay: /* @__PURE__ */ React80.createElement(StyledFilterPresetPopoverContent, null, /* @__PURE__ */ React80.createElement(Typography, null, ctx.state.value.map((v) => {
|
|
112110
112288
|
const option = ctx.state.options.find(
|
|
112111
112289
|
(option2) => ctx.option.value(option2) === v
|
|
@@ -112118,6 +112296,7 @@ var getSuperSelectFilterPreset = (columnDefinition) => {
|
|
|
112118
112296
|
{
|
|
112119
112297
|
$block: ctx.config.block,
|
|
112120
112298
|
...props,
|
|
112299
|
+
...a11yProps,
|
|
112121
112300
|
ref
|
|
112122
112301
|
}
|
|
112123
112302
|
)
|
|
@@ -112511,10 +112690,27 @@ var SingleSelectQuickFilterRenderer = (props) => {
|
|
|
112511
112690
|
return /* @__PURE__ */ React80.createElement(ClientSideSingleSelectQuickFilter, { ...props });
|
|
112512
112691
|
};
|
|
112513
112692
|
var SingleSelectQuickFilterRenderer_default = SingleSelectQuickFilterRenderer;
|
|
112693
|
+
var FOCUSABLE_SELECTOR2 = 'button:not([disabled]), input:not([disabled]), select:not([disabled]), textarea:not([disabled]), [tabindex]:not([tabindex="-1"])';
|
|
112514
112694
|
var FiltersPanelToggleButton = ({ hasDefinedFilters }) => {
|
|
112515
112695
|
const I18n = useI18nContext();
|
|
112516
|
-
const { contextPanel } = useInternalTableContext();
|
|
112696
|
+
const { contextPanel, filtersBodyId, filtersPanelId } = useInternalTableContext();
|
|
112517
112697
|
const hasNoContent = useTableHasNoContent();
|
|
112698
|
+
const buttonRef = React80.useRef(null);
|
|
112699
|
+
const isFiltersOpen = contextPanel.content === "filters";
|
|
112700
|
+
const isMounted = React80.useRef(false);
|
|
112701
|
+
React80.useEffect(() => {
|
|
112702
|
+
var _a, _b;
|
|
112703
|
+
if (!isMounted.current) {
|
|
112704
|
+
isMounted.current = true;
|
|
112705
|
+
return;
|
|
112706
|
+
}
|
|
112707
|
+
if (isFiltersOpen) {
|
|
112708
|
+
const panel = filtersBodyId ? document.getElementById(filtersBodyId) : null;
|
|
112709
|
+
(_a = panel == null ? void 0 : panel.querySelector(FOCUSABLE_SELECTOR2)) == null ? void 0 : _a.focus();
|
|
112710
|
+
} else {
|
|
112711
|
+
(_b = buttonRef.current) == null ? void 0 : _b.focus();
|
|
112712
|
+
}
|
|
112713
|
+
}, [isFiltersOpen, filtersBodyId]);
|
|
112518
112714
|
if (!hasDefinedFilters) {
|
|
112519
112715
|
return null;
|
|
112520
112716
|
}
|
|
@@ -112527,17 +112723,20 @@ var FiltersPanelToggleButton = ({ hasDefinedFilters }) => {
|
|
|
112527
112723
|
/* @__PURE__ */ React80.createElement(
|
|
112528
112724
|
ToggleButton,
|
|
112529
112725
|
{
|
|
112726
|
+
ref: buttonRef,
|
|
112530
112727
|
"data-qa": "data-table-show-filters-button",
|
|
112531
112728
|
disabled: hasNoContent,
|
|
112532
112729
|
icon: /* @__PURE__ */ React80.createElement(FilterIcon, null),
|
|
112730
|
+
"aria-expanded": isFiltersOpen,
|
|
112731
|
+
"aria-controls": filtersPanelId,
|
|
112533
112732
|
onClick: () => {
|
|
112534
|
-
if (
|
|
112535
|
-
contextPanel.hide();
|
|
112536
|
-
} else {
|
|
112733
|
+
if (!isFiltersOpen) {
|
|
112537
112734
|
contextPanel.show("filters");
|
|
112735
|
+
} else {
|
|
112736
|
+
contextPanel.hide();
|
|
112538
112737
|
}
|
|
112539
112738
|
},
|
|
112540
|
-
selected:
|
|
112739
|
+
selected: isFiltersOpen
|
|
112541
112740
|
},
|
|
112542
112741
|
I18n.t("dataTable.filters.allFilters")
|
|
112543
112742
|
)
|
|
@@ -112943,6 +113142,7 @@ var ClientSideSearch = ({
|
|
|
112943
113142
|
const { tableRef } = useInternalTableContext();
|
|
112944
113143
|
const hasNoContent = useTableHasNoContent();
|
|
112945
113144
|
const I18n = useI18nContext();
|
|
113145
|
+
const resolvedPlaceholder = placeholder || I18n.t("dataTable.search");
|
|
112946
113146
|
const debouncedSetSearchValue = React80.useCallback(
|
|
112947
113147
|
debounce5((value) => {
|
|
112948
113148
|
var _a2;
|
|
@@ -112971,7 +113171,8 @@ var ClientSideSearch = ({
|
|
|
112971
113171
|
"search--empty": !internalValue.length
|
|
112972
113172
|
}),
|
|
112973
113173
|
onChange,
|
|
112974
|
-
placeholder:
|
|
113174
|
+
placeholder: resolvedPlaceholder,
|
|
113175
|
+
"aria-label": resolvedPlaceholder
|
|
112975
113176
|
}
|
|
112976
113177
|
));
|
|
112977
113178
|
};
|