@procore/data-table 14.45.0 → 14.46.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +13 -0
- package/dist/legacy/index.cjs +348 -147
- package/dist/legacy/index.d.cts +2 -0
- package/dist/legacy/index.d.ts +2 -0
- package/dist/legacy/index.js +348 -147
- package/dist/modern/index.cjs +347 -147
- package/dist/modern/index.d.cts +2 -0
- package/dist/modern/index.d.ts +2 -0
- package/dist/modern/index.js +347 -147
- package/package.json +3 -3
package/dist/modern/index.js
CHANGED
|
@@ -57772,6 +57772,7 @@ var ServerSideSearch = ({
|
|
|
57772
57772
|
const { updateServerSideDataSource } = useInternalTableContext();
|
|
57773
57773
|
const hasNoContent = useTableHasNoContent();
|
|
57774
57774
|
const I18n = useI18nContext();
|
|
57775
|
+
const resolvedPlaceholder = placeholder || I18n.t("dataTable.search");
|
|
57775
57776
|
const debouncedSetSearchValue = React80.useCallback(
|
|
57776
57777
|
debounce5((value) => {
|
|
57777
57778
|
updateServerSideDataSource({ search: value });
|
|
@@ -57796,7 +57797,8 @@ var ServerSideSearch = ({
|
|
|
57796
57797
|
value: internalValue,
|
|
57797
57798
|
className: cx17("search", { "search--empty": !internalValue.length }),
|
|
57798
57799
|
onChange,
|
|
57799
|
-
placeholder:
|
|
57800
|
+
placeholder: resolvedPlaceholder,
|
|
57801
|
+
"aria-label": resolvedPlaceholder
|
|
57800
57802
|
}
|
|
57801
57803
|
));
|
|
57802
57804
|
};
|
|
@@ -57854,7 +57856,9 @@ var InternalTableContext = React80.createContext({
|
|
|
57854
57856
|
totalRowCount: 0,
|
|
57855
57857
|
setTotalRowCount: () => {
|
|
57856
57858
|
},
|
|
57857
|
-
hasDuplicateRowIds: false
|
|
57859
|
+
hasDuplicateRowIds: false,
|
|
57860
|
+
filtersPanelId: void 0,
|
|
57861
|
+
filtersBodyId: void 0
|
|
57858
57862
|
});
|
|
57859
57863
|
var useInternalTableContext = () => React80.useContext(InternalTableContext);
|
|
57860
57864
|
var prng = detectPrng(true);
|
|
@@ -103266,10 +103270,103 @@ function $8ae05eaa5c114e9c$export$7f54fc3180508a52(fn) {
|
|
|
103266
103270
|
return f === null || f === void 0 ? void 0 : f(...args);
|
|
103267
103271
|
}, []);
|
|
103268
103272
|
}
|
|
103273
|
+
var $b5e257d569688ac6$var$defaultContext = {
|
|
103274
|
+
prefix: String(Math.round(Math.random() * 1e10)),
|
|
103275
|
+
current: 0
|
|
103276
|
+
};
|
|
103277
|
+
var $b5e257d569688ac6$var$SSRContext = /* @__PURE__ */ (React80).createContext($b5e257d569688ac6$var$defaultContext);
|
|
103278
|
+
var $b5e257d569688ac6$var$IsSSRContext = /* @__PURE__ */ (React80).createContext(false);
|
|
103279
|
+
var $b5e257d569688ac6$var$canUseDOM = Boolean(typeof window !== "undefined" && window.document && window.document.createElement);
|
|
103280
|
+
var $b5e257d569688ac6$var$componentIds = /* @__PURE__ */ new WeakMap();
|
|
103281
|
+
function $b5e257d569688ac6$var$useCounter(isDisabled = false) {
|
|
103282
|
+
let ctx = (useContext)($b5e257d569688ac6$var$SSRContext);
|
|
103283
|
+
let ref = (useRef)(null);
|
|
103284
|
+
if (ref.current === null && !isDisabled) {
|
|
103285
|
+
var _React___SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED_ReactCurrentOwner, _React___SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;
|
|
103286
|
+
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;
|
|
103287
|
+
if (currentOwner) {
|
|
103288
|
+
let prevComponentValue = $b5e257d569688ac6$var$componentIds.get(currentOwner);
|
|
103289
|
+
if (prevComponentValue == null)
|
|
103290
|
+
$b5e257d569688ac6$var$componentIds.set(currentOwner, {
|
|
103291
|
+
id: ctx.current,
|
|
103292
|
+
state: currentOwner.memoizedState
|
|
103293
|
+
});
|
|
103294
|
+
else if (currentOwner.memoizedState !== prevComponentValue.state) {
|
|
103295
|
+
ctx.current = prevComponentValue.id;
|
|
103296
|
+
$b5e257d569688ac6$var$componentIds.delete(currentOwner);
|
|
103297
|
+
}
|
|
103298
|
+
}
|
|
103299
|
+
ref.current = ++ctx.current;
|
|
103300
|
+
}
|
|
103301
|
+
return ref.current;
|
|
103302
|
+
}
|
|
103303
|
+
function $b5e257d569688ac6$var$useLegacySSRSafeId(defaultId) {
|
|
103304
|
+
let ctx = (useContext)($b5e257d569688ac6$var$SSRContext);
|
|
103305
|
+
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.");
|
|
103306
|
+
let counter2 = $b5e257d569688ac6$var$useCounter(!!defaultId);
|
|
103307
|
+
let prefix = ctx === $b5e257d569688ac6$var$defaultContext && process.env.NODE_ENV === "test" ? "react-aria" : `react-aria${ctx.prefix}`;
|
|
103308
|
+
return defaultId || `${prefix}-${counter2}`;
|
|
103309
|
+
}
|
|
103310
|
+
function $b5e257d569688ac6$var$useModernSSRSafeId(defaultId) {
|
|
103311
|
+
let id = (React80).useId();
|
|
103312
|
+
let [didSSR] = (useState)($b5e257d569688ac6$export$535bd6ca7f90a273());
|
|
103313
|
+
let prefix = didSSR || process.env.NODE_ENV === "test" ? "react-aria" : `react-aria${$b5e257d569688ac6$var$defaultContext.prefix}`;
|
|
103314
|
+
return defaultId || `${prefix}-${id}`;
|
|
103315
|
+
}
|
|
103316
|
+
var $b5e257d569688ac6$export$619500959fc48b26 = typeof (React80)["useId"] === "function" ? $b5e257d569688ac6$var$useModernSSRSafeId : $b5e257d569688ac6$var$useLegacySSRSafeId;
|
|
103317
|
+
function $b5e257d569688ac6$var$getSnapshot() {
|
|
103318
|
+
return false;
|
|
103319
|
+
}
|
|
103320
|
+
function $b5e257d569688ac6$var$getServerSnapshot() {
|
|
103321
|
+
return true;
|
|
103322
|
+
}
|
|
103323
|
+
function $b5e257d569688ac6$var$subscribe(onStoreChange) {
|
|
103324
|
+
return () => {
|
|
103325
|
+
};
|
|
103326
|
+
}
|
|
103327
|
+
function $b5e257d569688ac6$export$535bd6ca7f90a273() {
|
|
103328
|
+
if (typeof (React80)["useSyncExternalStore"] === "function") return (React80)["useSyncExternalStore"]($b5e257d569688ac6$var$subscribe, $b5e257d569688ac6$var$getSnapshot, $b5e257d569688ac6$var$getServerSnapshot);
|
|
103329
|
+
return (useContext)($b5e257d569688ac6$var$IsSSRContext);
|
|
103330
|
+
}
|
|
103331
|
+
|
|
103332
|
+
// ../../node_modules/@react-aria/utils/dist/useId.mjs
|
|
103333
|
+
var $bdb11010cef70236$var$canUseDOM = Boolean(typeof window !== "undefined" && window.document && window.document.createElement);
|
|
103269
103334
|
var $bdb11010cef70236$export$d41a04c74483c6ef = /* @__PURE__ */ new Map();
|
|
103270
|
-
|
|
103335
|
+
var $bdb11010cef70236$var$registry;
|
|
103336
|
+
if (typeof FinalizationRegistry !== "undefined") $bdb11010cef70236$var$registry = new FinalizationRegistry((heldValue) => {
|
|
103271
103337
|
$bdb11010cef70236$export$d41a04c74483c6ef.delete(heldValue);
|
|
103272
103338
|
});
|
|
103339
|
+
function $bdb11010cef70236$export$f680877a34711e37(defaultId) {
|
|
103340
|
+
let [value, setValue] = (useState)(defaultId);
|
|
103341
|
+
let nextId = (useRef)(null);
|
|
103342
|
+
let res = ($b5e257d569688ac6$export$619500959fc48b26)(value);
|
|
103343
|
+
let cleanupRef = (useRef)(null);
|
|
103344
|
+
if ($bdb11010cef70236$var$registry) $bdb11010cef70236$var$registry.register(cleanupRef, res);
|
|
103345
|
+
if ($bdb11010cef70236$var$canUseDOM) {
|
|
103346
|
+
const cacheIdRef = $bdb11010cef70236$export$d41a04c74483c6ef.get(res);
|
|
103347
|
+
if (cacheIdRef && !cacheIdRef.includes(nextId)) cacheIdRef.push(nextId);
|
|
103348
|
+
else $bdb11010cef70236$export$d41a04c74483c6ef.set(res, [
|
|
103349
|
+
nextId
|
|
103350
|
+
]);
|
|
103351
|
+
}
|
|
103352
|
+
($f0a04ccd8dbdd83b$export$e5c5a5f917a5871c)(() => {
|
|
103353
|
+
let r2 = res;
|
|
103354
|
+
return () => {
|
|
103355
|
+
if ($bdb11010cef70236$var$registry) $bdb11010cef70236$var$registry.unregister(cleanupRef);
|
|
103356
|
+
$bdb11010cef70236$export$d41a04c74483c6ef.delete(r2);
|
|
103357
|
+
};
|
|
103358
|
+
}, [
|
|
103359
|
+
res
|
|
103360
|
+
]);
|
|
103361
|
+
(useEffect)(() => {
|
|
103362
|
+
let newId = nextId.current;
|
|
103363
|
+
if (newId) setValue(newId);
|
|
103364
|
+
return () => {
|
|
103365
|
+
if (newId) nextId.current = null;
|
|
103366
|
+
};
|
|
103367
|
+
});
|
|
103368
|
+
return res;
|
|
103369
|
+
}
|
|
103273
103370
|
function $bdb11010cef70236$export$cd8c9cb68f842629(idA, idB) {
|
|
103274
103371
|
if (idA === idB) return idA;
|
|
103275
103372
|
let setIdsA = $bdb11010cef70236$export$d41a04c74483c6ef.get(idA);
|
|
@@ -104999,7 +105096,8 @@ var de_DE_default = {
|
|
|
104999
105096
|
exporting: "Wird exportiert\xA0\u2026",
|
|
105000
105097
|
filters: {
|
|
105001
105098
|
filters: "Filter",
|
|
105002
|
-
allFilters: "
|
|
105099
|
+
allFilters: "Alle Filter",
|
|
105100
|
+
moreFilters: "Weitere Filter",
|
|
105003
105101
|
clearAllFilters: "Alle Filter zur\xFCcksetzen",
|
|
105004
105102
|
close: "Schlie\xDFen",
|
|
105005
105103
|
removeFilterToken: "%{name} entfernen",
|
|
@@ -105018,6 +105116,7 @@ var de_DE_default = {
|
|
|
105018
105116
|
options: {
|
|
105019
105117
|
any_value: "Beliebiger Wert",
|
|
105020
105118
|
is_between: "Ist zwischen",
|
|
105119
|
+
is_equal_to: "Ist gleich",
|
|
105021
105120
|
greater_than: "Ist gr\xF6\xDFer als",
|
|
105022
105121
|
greater_than_equal_to: "Ist gr\xF6\xDFer als oder gleich",
|
|
105023
105122
|
less_than: "Ist kleiner als",
|
|
@@ -105096,7 +105195,7 @@ var de_DE_default = {
|
|
|
105096
105195
|
placeholder: "W\xE4hrung eingeben"
|
|
105097
105196
|
},
|
|
105098
105197
|
linkCell: {
|
|
105099
|
-
externalLabel: "
|
|
105198
|
+
externalLabel: "Externen Link \xF6ffnen"
|
|
105100
105199
|
},
|
|
105101
105200
|
numberCell: {
|
|
105102
105201
|
placeholder: "Nummer eingeben"
|
|
@@ -105178,7 +105277,8 @@ var en_AU_default = {
|
|
|
105178
105277
|
exporting: "Exporting...",
|
|
105179
105278
|
filters: {
|
|
105180
105279
|
filters: "Filters",
|
|
105181
|
-
allFilters: "All
|
|
105280
|
+
allFilters: "All filters",
|
|
105281
|
+
moreFilters: "More filters",
|
|
105182
105282
|
clearAllFilters: "Clear all filters",
|
|
105183
105283
|
close: "Close",
|
|
105184
105284
|
removeFilterToken: "Remove %{name}",
|
|
@@ -105197,6 +105297,7 @@ var en_AU_default = {
|
|
|
105197
105297
|
options: {
|
|
105198
105298
|
any_value: "Any value",
|
|
105199
105299
|
is_between: "Is between",
|
|
105300
|
+
is_equal_to: "Is equal to",
|
|
105200
105301
|
greater_than: "Is greater than",
|
|
105201
105302
|
greater_than_equal_to: "Is greater than or equal to",
|
|
105202
105303
|
less_than: "Is less than",
|
|
@@ -105357,7 +105458,8 @@ var en_CA_default = {
|
|
|
105357
105458
|
exporting: "Exporting...",
|
|
105358
105459
|
filters: {
|
|
105359
105460
|
filters: "Filters",
|
|
105360
|
-
allFilters: "All
|
|
105461
|
+
allFilters: "All filters",
|
|
105462
|
+
moreFilters: "More filters",
|
|
105361
105463
|
clearAllFilters: "Clear all filters",
|
|
105362
105464
|
close: "Close",
|
|
105363
105465
|
removeFilterToken: "Remove %{name}",
|
|
@@ -105376,6 +105478,7 @@ var en_CA_default = {
|
|
|
105376
105478
|
options: {
|
|
105377
105479
|
any_value: "Any value",
|
|
105378
105480
|
is_between: "Is between",
|
|
105481
|
+
is_equal_to: "Is equal to",
|
|
105379
105482
|
greater_than: "Is greater than",
|
|
105380
105483
|
greater_than_equal_to: "Is greater than or equal to",
|
|
105381
105484
|
less_than: "Is less than",
|
|
@@ -105536,7 +105639,8 @@ var en_GB_default = {
|
|
|
105536
105639
|
exporting: "Exporting...",
|
|
105537
105640
|
filters: {
|
|
105538
105641
|
filters: "Filters",
|
|
105539
|
-
allFilters: "All
|
|
105642
|
+
allFilters: "All filters",
|
|
105643
|
+
moreFilters: "More filters",
|
|
105540
105644
|
clearAllFilters: "Clear all filters",
|
|
105541
105645
|
close: "Close",
|
|
105542
105646
|
removeFilterToken: "Remove %{name}",
|
|
@@ -105555,6 +105659,7 @@ var en_GB_default = {
|
|
|
105555
105659
|
options: {
|
|
105556
105660
|
any_value: "Any value",
|
|
105557
105661
|
is_between: "Is between",
|
|
105662
|
+
is_equal_to: "Is equal to",
|
|
105558
105663
|
greater_than: "Is greater than",
|
|
105559
105664
|
greater_than_equal_to: "Is greater than or equal to",
|
|
105560
105665
|
less_than: "Is less than",
|
|
@@ -105896,7 +106001,8 @@ var es_ES_default = {
|
|
|
105896
106001
|
exporting: "Exportando...",
|
|
105897
106002
|
filters: {
|
|
105898
106003
|
filters: "Filtros",
|
|
105899
|
-
allFilters: "
|
|
106004
|
+
allFilters: "Todos los filtros",
|
|
106005
|
+
moreFilters: "M\xE1s filtros",
|
|
105900
106006
|
clearAllFilters: "Borrar todos los filtros",
|
|
105901
106007
|
close: "Cerrar",
|
|
105902
106008
|
removeFilterToken: "Eliminar %{name}",
|
|
@@ -105915,6 +106021,7 @@ var es_ES_default = {
|
|
|
105915
106021
|
options: {
|
|
105916
106022
|
any_value: "Cualquier valor",
|
|
105917
106023
|
is_between: "Est\xE1 entre",
|
|
106024
|
+
is_equal_to: "Es igual a",
|
|
105918
106025
|
greater_than: "Es mayor que",
|
|
105919
106026
|
greater_than_equal_to: "Es mayor o igual que",
|
|
105920
106027
|
less_than: "Es menor que",
|
|
@@ -105993,7 +106100,7 @@ var es_ES_default = {
|
|
|
105993
106100
|
placeholder: "Introducir moneda"
|
|
105994
106101
|
},
|
|
105995
106102
|
linkCell: {
|
|
105996
|
-
externalLabel: "
|
|
106103
|
+
externalLabel: "Abrir enlace externo"
|
|
105997
106104
|
},
|
|
105998
106105
|
numberCell: {
|
|
105999
106106
|
placeholder: "Introducir n\xFAmero"
|
|
@@ -106075,7 +106182,8 @@ var es_default = {
|
|
|
106075
106182
|
exporting: "Exportando...",
|
|
106076
106183
|
filters: {
|
|
106077
106184
|
filters: "Filtros",
|
|
106078
|
-
allFilters: "
|
|
106185
|
+
allFilters: "Todos los filtros",
|
|
106186
|
+
moreFilters: "M\xE1s filtros",
|
|
106079
106187
|
clearAllFilters: "Restablecer todos los filtros",
|
|
106080
106188
|
close: "Cerrar",
|
|
106081
106189
|
removeFilterToken: "Eliminar %{name}",
|
|
@@ -106094,6 +106202,7 @@ var es_default = {
|
|
|
106094
106202
|
options: {
|
|
106095
106203
|
any_value: "Cualquier valor",
|
|
106096
106204
|
is_between: "Est\xE1 entre",
|
|
106205
|
+
is_equal_to: "Es igual a",
|
|
106097
106206
|
greater_than: "Es mayor que",
|
|
106098
106207
|
greater_than_equal_to: "Es mayor o igual que",
|
|
106099
106208
|
less_than: "Es menor que",
|
|
@@ -106172,7 +106281,7 @@ var es_default = {
|
|
|
106172
106281
|
placeholder: "Ingresar moneda"
|
|
106173
106282
|
},
|
|
106174
106283
|
linkCell: {
|
|
106175
|
-
externalLabel: "
|
|
106284
|
+
externalLabel: "Abrir enlace externo"
|
|
106176
106285
|
},
|
|
106177
106286
|
numberCell: {
|
|
106178
106287
|
placeholder: "Ingresar n\xFAmero"
|
|
@@ -106254,7 +106363,8 @@ var fr_CA_default = {
|
|
|
106254
106363
|
exporting: "Exportation ...",
|
|
106255
106364
|
filters: {
|
|
106256
106365
|
filters: "Filtres",
|
|
106257
|
-
allFilters: "
|
|
106366
|
+
allFilters: "Tous les filtres",
|
|
106367
|
+
moreFilters: "Plus de filtres",
|
|
106258
106368
|
clearAllFilters: "Effacer tous les filtres",
|
|
106259
106369
|
close: "Fermer",
|
|
106260
106370
|
removeFilterToken: "Retirer %{name}",
|
|
@@ -106273,6 +106383,7 @@ var fr_CA_default = {
|
|
|
106273
106383
|
options: {
|
|
106274
106384
|
any_value: "N'importe quelle valeur",
|
|
106275
106385
|
is_between: "Est entre",
|
|
106386
|
+
is_equal_to: "Est \xE9gal \xE0",
|
|
106276
106387
|
greater_than: "Est sup\xE9rieur \xE0",
|
|
106277
106388
|
greater_than_equal_to: "Est sup\xE9rieur ou \xE9gal \xE0",
|
|
106278
106389
|
less_than: "Est inf\xE9rieur \xE0",
|
|
@@ -106351,7 +106462,7 @@ var fr_CA_default = {
|
|
|
106351
106462
|
placeholder: "Saisir la devise"
|
|
106352
106463
|
},
|
|
106353
106464
|
linkCell: {
|
|
106354
|
-
externalLabel: "
|
|
106465
|
+
externalLabel: "Lien externe ouvert"
|
|
106355
106466
|
},
|
|
106356
106467
|
numberCell: {
|
|
106357
106468
|
placeholder: "Saisir un num\xE9ro"
|
|
@@ -106433,7 +106544,8 @@ var fr_FR_default = {
|
|
|
106433
106544
|
exporting: "Exportation...",
|
|
106434
106545
|
filters: {
|
|
106435
106546
|
filters: "Filtres",
|
|
106436
|
-
allFilters: "
|
|
106547
|
+
allFilters: "Tous les filtres",
|
|
106548
|
+
moreFilters: "Plus de filtres",
|
|
106437
106549
|
clearAllFilters: "Effacer tous les filtres",
|
|
106438
106550
|
close: "Fermer",
|
|
106439
106551
|
removeFilterToken: "Retirer %{name}",
|
|
@@ -106452,6 +106564,7 @@ var fr_FR_default = {
|
|
|
106452
106564
|
options: {
|
|
106453
106565
|
any_value: "N'importe quelle valeur",
|
|
106454
106566
|
is_between: "Est comprise entre",
|
|
106567
|
+
is_equal_to: "Est \xE9gal \xE0",
|
|
106455
106568
|
greater_than: "Est sup\xE9rieure \xE0",
|
|
106456
106569
|
greater_than_equal_to: "Est sup\xE9rieure ou \xE9gale \xE0",
|
|
106457
106570
|
less_than: "Est inf\xE9rieure \xE0",
|
|
@@ -106515,8 +106628,8 @@ var fr_FR_default = {
|
|
|
106515
106628
|
},
|
|
106516
106629
|
rowGroupToggle: {
|
|
106517
106630
|
expandTierOne: "Ouvrez les premiers groupes du tableau.",
|
|
106518
|
-
expandAll: "
|
|
106519
|
-
collapseAll: "Fermer tous les groupes du tableau
|
|
106631
|
+
expandAll: "Ouvrir tous les groupes du tableau",
|
|
106632
|
+
collapseAll: "Fermer tous les groupes du tableau"
|
|
106520
106633
|
},
|
|
106521
106634
|
columnGroupToggle: {
|
|
106522
106635
|
collapse: "R\xE9duire le groupe de colonnes",
|
|
@@ -106530,7 +106643,7 @@ var fr_FR_default = {
|
|
|
106530
106643
|
placeholder: "Saisir la devise"
|
|
106531
106644
|
},
|
|
106532
106645
|
linkCell: {
|
|
106533
|
-
externalLabel: "
|
|
106646
|
+
externalLabel: "Ouvrir le lien externe"
|
|
106534
106647
|
},
|
|
106535
106648
|
numberCell: {
|
|
106536
106649
|
placeholder: "Saisir un num\xE9ro"
|
|
@@ -106612,7 +106725,8 @@ var is_IS_default = {
|
|
|
106612
106725
|
exporting: "Flytur \xFAt ...",
|
|
106613
106726
|
filters: {
|
|
106614
106727
|
filters: "S\xEDur",
|
|
106615
|
-
allFilters: "
|
|
106728
|
+
allFilters: "Allar s\xEDur",
|
|
106729
|
+
moreFilters: "Fleiri s\xEDur",
|
|
106616
106730
|
clearAllFilters: "Hreinsa allar s\xEDur",
|
|
106617
106731
|
close: "Loka\xF0u",
|
|
106618
106732
|
removeFilterToken: "Fjarl\xE6gja %{name}",
|
|
@@ -106631,6 +106745,7 @@ var is_IS_default = {
|
|
|
106631
106745
|
options: {
|
|
106632
106746
|
any_value: "Hva\xF0a gildi sem er",
|
|
106633
106747
|
is_between: "Er \xE1 milli",
|
|
106748
|
+
is_equal_to: "Er jafnt",
|
|
106634
106749
|
greater_than: "Er meiri en",
|
|
106635
106750
|
greater_than_equal_to: "Er st\xE6rra en e\xF0a jafnt",
|
|
106636
106751
|
less_than: "Er minna en",
|
|
@@ -106709,7 +106824,7 @@ var is_IS_default = {
|
|
|
106709
106824
|
placeholder: "Sl\xE1\xF0u inn gjaldmi\xF0il"
|
|
106710
106825
|
},
|
|
106711
106826
|
linkCell: {
|
|
106712
|
-
externalLabel: "
|
|
106827
|
+
externalLabel: "Opna utana\xF0komandi tengil"
|
|
106713
106828
|
},
|
|
106714
106829
|
numberCell: {
|
|
106715
106830
|
placeholder: "Sl\xE1\xF0u inn n\xFAmer"
|
|
@@ -106791,7 +106906,8 @@ var it_IT_default = {
|
|
|
106791
106906
|
exporting: "Esportazione in corso...",
|
|
106792
106907
|
filters: {
|
|
106793
106908
|
filters: "Filtri",
|
|
106794
|
-
allFilters: "
|
|
106909
|
+
allFilters: "Tutti i filtri",
|
|
106910
|
+
moreFilters: "Altri filtri",
|
|
106795
106911
|
clearAllFilters: "Cancella tutti i filtri",
|
|
106796
106912
|
close: "Chiudi",
|
|
106797
106913
|
removeFilterToken: "Rimuovi %{name}",
|
|
@@ -106810,6 +106926,7 @@ var it_IT_default = {
|
|
|
106810
106926
|
options: {
|
|
106811
106927
|
any_value: "Qualsiasi valore",
|
|
106812
106928
|
is_between: "\xC8 compreso tra",
|
|
106929
|
+
is_equal_to: "\xC8 uguale a",
|
|
106813
106930
|
greater_than: "\xC8 maggiore di",
|
|
106814
106931
|
greater_than_equal_to: "\xC8 maggiore o uguale a",
|
|
106815
106932
|
less_than: "\xC8 minore di",
|
|
@@ -106888,7 +107005,7 @@ var it_IT_default = {
|
|
|
106888
107005
|
placeholder: "Inserisci valuta"
|
|
106889
107006
|
},
|
|
106890
107007
|
linkCell: {
|
|
106891
|
-
externalLabel: "
|
|
107008
|
+
externalLabel: "Apri collegamento esterno"
|
|
106892
107009
|
},
|
|
106893
107010
|
numberCell: {
|
|
106894
107011
|
placeholder: "Inserisci numero"
|
|
@@ -106970,7 +107087,8 @@ var ja_JP_default = {
|
|
|
106970
107087
|
exporting: "\u30A8\u30AF\u30B9\u30DD\u30FC\u30C8\u4E2D...",
|
|
106971
107088
|
filters: {
|
|
106972
107089
|
filters: "\u30D5\u30A3\u30EB\u30BF",
|
|
106973
|
-
allFilters: "
|
|
107090
|
+
allFilters: "\u3059\u3079\u3066\u306E\u30D5\u30A3\u30EB\u30BF\u30FC",
|
|
107091
|
+
moreFilters: "\u305D\u306E\u4ED6\u306E\u30D5\u30A3\u30EB\u30BF",
|
|
106974
107092
|
clearAllFilters: "\u3059\u3079\u3066\u306E\u30D5\u30A3\u30EB\u30BF\u3092\u6D88\u53BB",
|
|
106975
107093
|
close: "\u7D42\u4E86",
|
|
106976
107094
|
removeFilterToken: "%{name}\u524A\u9664",
|
|
@@ -106989,6 +107107,7 @@ var ja_JP_default = {
|
|
|
106989
107107
|
options: {
|
|
106990
107108
|
any_value: "\u4EFB\u610F\u306E\u5024",
|
|
106991
107109
|
is_between: "\u9593\u306B\u3042\u308B",
|
|
107110
|
+
is_equal_to: "\u7B49\u3057\u3044",
|
|
106992
107111
|
greater_than: "\u3088\u308A\u5927\u304D\u3044",
|
|
106993
107112
|
greater_than_equal_to: "\u4EE5\u4E0A\u3067\u3042\u308B",
|
|
106994
107113
|
less_than: "\u672A\u6E80\u3067\u3042\u308B",
|
|
@@ -107067,7 +107186,7 @@ var ja_JP_default = {
|
|
|
107067
107186
|
placeholder: "\u901A\u8CA8\u3092\u5165\u529B"
|
|
107068
107187
|
},
|
|
107069
107188
|
linkCell: {
|
|
107070
|
-
externalLabel: "
|
|
107189
|
+
externalLabel: "\u5916\u90E8\u30EA\u30F3\u30AF\u3092\u958B\u304F"
|
|
107071
107190
|
},
|
|
107072
107191
|
numberCell: {
|
|
107073
107192
|
placeholder: "\u756A\u53F7\u3092\u5165\u529B"
|
|
@@ -107112,156 +107231,158 @@ var nb_NO_default = {
|
|
|
107112
107231
|
dataTable: {
|
|
107113
107232
|
emptyState: {
|
|
107114
107233
|
noFilteredResults: {
|
|
107115
|
-
description: "
|
|
107116
|
-
title: "Ingen
|
|
107117
|
-
itemsTitle: "
|
|
107234
|
+
description: "Sjekk stavem\xE5ten og filteralternativene dine, eller s\xF8k etter et annet n\xF8kkelord.",
|
|
107235
|
+
title: "Ingen elementer samsvarer med s\xF8ket ditt",
|
|
107236
|
+
itemsTitle: "Ingen %{itemsLabel} samsvarer med s\xF8ket ditt"
|
|
107118
107237
|
},
|
|
107119
107238
|
noResults: {
|
|
107120
|
-
description: "
|
|
107121
|
-
title: "
|
|
107122
|
-
itemsTitle: "
|
|
107123
|
-
tooltip: "
|
|
107124
|
-
searchTooltip: "
|
|
107239
|
+
description: "N\xE5r teamet ditt har opprettet disse elementene, kan du f\xE5 tilgang til dem her. ",
|
|
107240
|
+
title: "Det er ingen elementer \xE5 vise akkurat n\xE5",
|
|
107241
|
+
itemsTitle: "Det er ingen %{itemsLabel} \xE5 vise akkurat n\xE5",
|
|
107242
|
+
tooltip: "%{featureName} -knappen vil bli aktivert n\xE5r du legger til informasjon i %{tableName}",
|
|
107243
|
+
searchTooltip: "S\xF8k vil bli aktivert n\xE5r du legger til informasjon i %{tableName}",
|
|
107125
107244
|
featureFilter: "Filter",
|
|
107126
|
-
featureQuickFilter: "
|
|
107127
|
-
featureGroupBy: "
|
|
107128
|
-
featureConfigure: "
|
|
107129
|
-
tableNameFallback: "
|
|
107245
|
+
featureQuickFilter: "Hurtigfilter",
|
|
107246
|
+
featureGroupBy: "Grupper etter",
|
|
107247
|
+
featureConfigure: "Konfigurer",
|
|
107248
|
+
tableNameFallback: "bord"
|
|
107130
107249
|
}
|
|
107131
107250
|
},
|
|
107132
107251
|
bulkActions: {
|
|
107133
|
-
apply: "
|
|
107134
|
-
bulkEdit: "
|
|
107252
|
+
apply: "S\xF8k",
|
|
107253
|
+
bulkEdit: "Masseendring",
|
|
107135
107254
|
cancel: "Avbryt",
|
|
107136
|
-
editValues: "
|
|
107137
|
-
error: "
|
|
107138
|
-
placeholderForField: "
|
|
107139
|
-
selection: "%{count} %{number}
|
|
107255
|
+
editValues: "Rediger verdier",
|
|
107256
|
+
error: "Beklager, elementene kunne ikke oppdateres. Pr\xF8v igjen.",
|
|
107257
|
+
placeholderForField: "Skriv inn %{fieldName}",
|
|
107258
|
+
selection: "%{count} %{number} valgt",
|
|
107140
107259
|
selection_count: {
|
|
107141
|
-
zero: "%{count}
|
|
107142
|
-
one: "%{count}
|
|
107143
|
-
other: "%{count}
|
|
107260
|
+
zero: "%{count} elementer valgt",
|
|
107261
|
+
one: "%{count} element valgt",
|
|
107262
|
+
other: "%{count} elementer valgt"
|
|
107144
107263
|
},
|
|
107145
|
-
success: "
|
|
107146
|
-
one: "
|
|
107147
|
-
many: "
|
|
107264
|
+
success: "Elementene ble oppdatert.",
|
|
107265
|
+
one: "element",
|
|
107266
|
+
many: "gjenstander"
|
|
107148
107267
|
},
|
|
107149
|
-
exporting: "
|
|
107268
|
+
exporting: "Eksporterer...",
|
|
107150
107269
|
filters: {
|
|
107151
107270
|
filters: "Filtre",
|
|
107152
|
-
allFilters: "
|
|
107153
|
-
|
|
107154
|
-
|
|
107271
|
+
allFilters: "Alle filtre",
|
|
107272
|
+
moreFilters: "More Filters",
|
|
107273
|
+
clearAllFilters: "Fjern alle filtre",
|
|
107274
|
+
close: "Lukk",
|
|
107155
107275
|
removeFilterToken: "Fjern %{name}",
|
|
107156
107276
|
locationFilter: {
|
|
107157
107277
|
selectAll: "Velg alle",
|
|
107158
|
-
includeSublocations: "
|
|
107159
|
-
searchLocations: "
|
|
107160
|
-
locations: "
|
|
107278
|
+
includeSublocations: "Inkluder underlokasjoner",
|
|
107279
|
+
searchLocations: "S\xF8k etter steder",
|
|
107280
|
+
locations: "Steder"
|
|
107161
107281
|
},
|
|
107162
107282
|
numberFilter: {
|
|
107163
107283
|
labels: {
|
|
107164
|
-
and: "
|
|
107165
|
-
input_placeholder: "
|
|
107166
|
-
placeholder: "
|
|
107284
|
+
and: "og",
|
|
107285
|
+
input_placeholder: "Angi verdi",
|
|
107286
|
+
placeholder: "Velg et element"
|
|
107167
107287
|
},
|
|
107168
107288
|
options: {
|
|
107169
|
-
any_value: "
|
|
107170
|
-
is_between: "
|
|
107171
|
-
|
|
107172
|
-
|
|
107173
|
-
|
|
107174
|
-
|
|
107175
|
-
|
|
107289
|
+
any_value: "Enhver verdi",
|
|
107290
|
+
is_between: "Er mellom",
|
|
107291
|
+
is_equal_to: "Er lik",
|
|
107292
|
+
greater_than: "Er st\xF8rre enn",
|
|
107293
|
+
greater_than_equal_to: "Er st\xF8rre enn eller lik",
|
|
107294
|
+
less_than: "Er mindre enn",
|
|
107295
|
+
less_than_equal_to: "Er mindre enn eller lik",
|
|
107296
|
+
no_value: "Ingen verdi"
|
|
107176
107297
|
}
|
|
107177
107298
|
},
|
|
107178
107299
|
singleSelectFilter: {
|
|
107179
|
-
placeholder: "
|
|
107300
|
+
placeholder: "Velg en verdi"
|
|
107180
107301
|
},
|
|
107181
107302
|
multiSelectQuickFilter: {
|
|
107182
|
-
ariaLabel: "
|
|
107303
|
+
ariaLabel: "Hurtigfilter: Velg flere alternativer"
|
|
107183
107304
|
},
|
|
107184
107305
|
singleSelectQuickFilter: {
|
|
107185
|
-
ariaLabel: "
|
|
107306
|
+
ariaLabel: "Hurtigfilter: Velg et alternativ"
|
|
107186
107307
|
}
|
|
107187
107308
|
},
|
|
107188
107309
|
loading: {
|
|
107189
|
-
initial: "
|
|
107190
|
-
secondary: "
|
|
107310
|
+
initial: "Laster inn informasjon.",
|
|
107311
|
+
secondary: "Informasjon lastes, takk for t\xE5lmodigheten."
|
|
107191
107312
|
},
|
|
107192
107313
|
menuOptions: {
|
|
107193
107314
|
ariaMenuColumn: "Trykk p\xE5 Alt/Option og pil ned for \xE5 \xE5pne kolonnemenyen.",
|
|
107194
107315
|
sortMenuItem: {
|
|
107195
|
-
label: "
|
|
107196
|
-
sortAscItem: "
|
|
107197
|
-
sortDescItem: "
|
|
107198
|
-
sortResetItem: "
|
|
107199
|
-
sortAscending: "
|
|
107200
|
-
sortDescending: "
|
|
107201
|
-
sortCleared: "
|
|
107202
|
-
},
|
|
107203
|
-
expandAllGroups: "
|
|
107204
|
-
collapseAllGroups: "
|
|
107205
|
-
pinColumn: "
|
|
107206
|
-
pinLeft: "
|
|
107207
|
-
pinRight: "
|
|
107208
|
-
noPin: "
|
|
107209
|
-
autoSizeThisColumn: "
|
|
107210
|
-
autoSizeAllColumns: "
|
|
107211
|
-
hideColumn: "
|
|
107212
|
-
resetColumns: "
|
|
107213
|
-
unGroupBy: "
|
|
107214
|
-
groupBy: "
|
|
107316
|
+
label: "Sorter etter denne kolonnen",
|
|
107317
|
+
sortAscItem: "Sorter kolonne stigende",
|
|
107318
|
+
sortDescItem: "Sorter kolonne synkende",
|
|
107319
|
+
sortResetItem: "Kolonne ikke sortert",
|
|
107320
|
+
sortAscending: "sortert stigende",
|
|
107321
|
+
sortDescending: "sortert synkende",
|
|
107322
|
+
sortCleared: "Sortering fjernet"
|
|
107323
|
+
},
|
|
107324
|
+
expandAllGroups: "Utvid alle grupper",
|
|
107325
|
+
collapseAllGroups: "Skjul alle grupper",
|
|
107326
|
+
pinColumn: "Fest kolonne",
|
|
107327
|
+
pinLeft: "Fest til venstre",
|
|
107328
|
+
pinRight: "Fest til h\xF8yre",
|
|
107329
|
+
noPin: "Ingen PIN",
|
|
107330
|
+
autoSizeThisColumn: "Tilpass kolonnebredden automatisk",
|
|
107331
|
+
autoSizeAllColumns: "Tilpass alle kolonner automatisk",
|
|
107332
|
+
hideColumn: "Skjul kolonne",
|
|
107333
|
+
resetColumns: "Tilbakestill kolonner",
|
|
107334
|
+
unGroupBy: "Fjern gruppering etter {{label}}",
|
|
107335
|
+
groupBy: "Grupper etter {{label}}"
|
|
107215
107336
|
},
|
|
107216
|
-
grandTotals: "
|
|
107337
|
+
grandTotals: "Totale summer",
|
|
107217
107338
|
search: "S\xF8k",
|
|
107218
|
-
subtotals: "
|
|
107339
|
+
subtotals: "Delsummer",
|
|
107219
107340
|
tableSettings: {
|
|
107220
|
-
configureColumns: "
|
|
107221
|
-
resetToDefault: "
|
|
107222
|
-
rowHeight: "
|
|
107223
|
-
small: "
|
|
107224
|
-
medium: "
|
|
107225
|
-
large: "
|
|
107226
|
-
tableSettings: "
|
|
107227
|
-
groupBy: "
|
|
107341
|
+
configureColumns: "Konfigurer kolonner",
|
|
107342
|
+
resetToDefault: "Vis alle",
|
|
107343
|
+
rowHeight: "Radh\xF8yde",
|
|
107344
|
+
small: "Liten",
|
|
107345
|
+
medium: "Middels",
|
|
107346
|
+
large: "Stor",
|
|
107347
|
+
tableSettings: "Borddekking",
|
|
107348
|
+
groupBy: "Grupper etter:",
|
|
107228
107349
|
reset: "Tilbakestill",
|
|
107229
|
-
selectColumnGroup: "
|
|
107230
|
-
configure: "
|
|
107350
|
+
selectColumnGroup: "Velg en kolonne \xE5 gruppere",
|
|
107351
|
+
configure: "Konfigurer"
|
|
107231
107352
|
},
|
|
107232
107353
|
rowGroupToggle: {
|
|
107233
|
-
expandTierOne: "
|
|
107234
|
-
expandAll: "
|
|
107235
|
-
collapseAll: "
|
|
107354
|
+
expandTierOne: "\xC5pne de f\xF8rste gruppene i tabellen.",
|
|
107355
|
+
expandAll: "\xC5pne alle grupper i tabellen.",
|
|
107356
|
+
collapseAll: "Lukk alle grupper i tabellen."
|
|
107236
107357
|
},
|
|
107237
107358
|
columnGroupToggle: {
|
|
107238
|
-
collapse: "
|
|
107239
|
-
expand: "
|
|
107359
|
+
collapse: "Skjul kolonnegruppe",
|
|
107360
|
+
expand: "Utvid kolonnegruppe"
|
|
107240
107361
|
},
|
|
107241
107362
|
cells: {
|
|
107242
107363
|
textCell: {
|
|
107243
|
-
placeholder: "
|
|
107364
|
+
placeholder: "Skriv inn tekst"
|
|
107244
107365
|
},
|
|
107245
107366
|
currencyCell: {
|
|
107246
|
-
placeholder: "
|
|
107367
|
+
placeholder: "Angi valuta"
|
|
107247
107368
|
},
|
|
107248
107369
|
linkCell: {
|
|
107249
|
-
externalLabel: "
|
|
107370
|
+
externalLabel: "\xC5pne ekstern kobling"
|
|
107250
107371
|
},
|
|
107251
107372
|
numberCell: {
|
|
107252
|
-
placeholder: "
|
|
107373
|
+
placeholder: "Skriv inn nummer"
|
|
107253
107374
|
},
|
|
107254
107375
|
percentCell: {
|
|
107255
|
-
placeholder: "
|
|
107376
|
+
placeholder: "Skriv inn %"
|
|
107256
107377
|
},
|
|
107257
107378
|
pillCell: {
|
|
107258
|
-
placeholder: "
|
|
107379
|
+
placeholder: "Velg {{label}}"
|
|
107259
107380
|
},
|
|
107260
107381
|
selectCell: {
|
|
107261
|
-
placeholder: "
|
|
107382
|
+
placeholder: "Velg {{label}}"
|
|
107262
107383
|
},
|
|
107263
107384
|
multiSelectCell: {
|
|
107264
|
-
placeholder: "
|
|
107385
|
+
placeholder: "Velg verdier"
|
|
107265
107386
|
},
|
|
107266
107387
|
booleanCell: {
|
|
107267
107388
|
options: {
|
|
@@ -107272,16 +107393,16 @@ var nb_NO_default = {
|
|
|
107272
107393
|
},
|
|
107273
107394
|
filterRenders: {
|
|
107274
107395
|
dateFilter: {
|
|
107275
|
-
single: "
|
|
107276
|
-
range: "
|
|
107396
|
+
single: "Enslig",
|
|
107397
|
+
range: "Rekkevidde"
|
|
107277
107398
|
}
|
|
107278
107399
|
},
|
|
107279
107400
|
groupCell: {
|
|
107280
|
-
expand: "
|
|
107281
|
-
collapse: "
|
|
107401
|
+
expand: "Utvid gruppe",
|
|
107402
|
+
collapse: "Skjul gruppe"
|
|
107282
107403
|
},
|
|
107283
107404
|
rowCheckbox: {
|
|
107284
|
-
ariaLabel: "
|
|
107405
|
+
ariaLabel: "Velg rad"
|
|
107285
107406
|
}
|
|
107286
107407
|
}
|
|
107287
107408
|
};
|
|
@@ -107328,7 +107449,8 @@ var pl_PL_default = {
|
|
|
107328
107449
|
exporting: "Eksportowanie...",
|
|
107329
107450
|
filters: {
|
|
107330
107451
|
filters: "Filtry",
|
|
107331
|
-
allFilters: "
|
|
107452
|
+
allFilters: "Wszystkie filtry",
|
|
107453
|
+
moreFilters: "Wi\u0119cej filtr\xF3w",
|
|
107332
107454
|
clearAllFilters: "Wyczy\u015B\u0107 wszystkie filtry",
|
|
107333
107455
|
close: "Zamknij",
|
|
107334
107456
|
removeFilterToken: "Usu\u0144 %{name}",
|
|
@@ -107347,6 +107469,7 @@ var pl_PL_default = {
|
|
|
107347
107469
|
options: {
|
|
107348
107470
|
any_value: "Dowolna warto\u015B\u0107",
|
|
107349
107471
|
is_between: "jest pomi\u0119dzy",
|
|
107472
|
+
is_equal_to: "jest r\xF3wne",
|
|
107350
107473
|
greater_than: "jest wi\u0119ksze ni\u017C",
|
|
107351
107474
|
greater_than_equal_to: "jest wi\u0119ksze ni\u017C lub r\xF3wne",
|
|
107352
107475
|
less_than: "mniej ni\u017C",
|
|
@@ -107425,7 +107548,7 @@ var pl_PL_default = {
|
|
|
107425
107548
|
placeholder: "Wprowad\u017A walut\u0119"
|
|
107426
107549
|
},
|
|
107427
107550
|
linkCell: {
|
|
107428
|
-
externalLabel: "
|
|
107551
|
+
externalLabel: "Otw\xF3rz zewn\u0119trzne \u0142\u0105cze"
|
|
107429
107552
|
},
|
|
107430
107553
|
numberCell: {
|
|
107431
107554
|
placeholder: "Wprowad\u017A numer"
|
|
@@ -107688,7 +107811,8 @@ var pt_BR_default = {
|
|
|
107688
107811
|
exporting: "Exportando...",
|
|
107689
107812
|
filters: {
|
|
107690
107813
|
filters: "Filtros",
|
|
107691
|
-
allFilters: "
|
|
107814
|
+
allFilters: "Todos os Filtros",
|
|
107815
|
+
moreFilters: "Mais Filtros",
|
|
107692
107816
|
clearAllFilters: "Limpar Todos os Filtros",
|
|
107693
107817
|
close: "Fechar",
|
|
107694
107818
|
removeFilterToken: "Remover %{name}",
|
|
@@ -107707,6 +107831,7 @@ var pt_BR_default = {
|
|
|
107707
107831
|
options: {
|
|
107708
107832
|
any_value: "Qualquer Valor",
|
|
107709
107833
|
is_between: "Est\xE1 entre",
|
|
107834
|
+
is_equal_to: "\xC9 Igual a",
|
|
107710
107835
|
greater_than: "\xC9 Maior Que",
|
|
107711
107836
|
greater_than_equal_to: "\xC9 Maior Que ou Igual a",
|
|
107712
107837
|
less_than: "\xC9 Menor Que",
|
|
@@ -107785,7 +107910,7 @@ var pt_BR_default = {
|
|
|
107785
107910
|
placeholder: "Insira moeda"
|
|
107786
107911
|
},
|
|
107787
107912
|
linkCell: {
|
|
107788
|
-
externalLabel: "
|
|
107913
|
+
externalLabel: "Abrir link externo"
|
|
107789
107914
|
},
|
|
107790
107915
|
numberCell: {
|
|
107791
107916
|
placeholder: "Inserir n\xFAmeros"
|
|
@@ -107838,8 +107963,8 @@ var pt_PT_default = {
|
|
|
107838
107963
|
description: "Assim que a sua equipa criar estes itens, poder\xE1 aceder aos mesmos aqui. ",
|
|
107839
107964
|
title: "N\xE3o h\xE1 itens para apresentar neste momento",
|
|
107840
107965
|
itemsTitle: "N\xE3o h\xE1 %{itemsLabel} para apresentar neste momento",
|
|
107841
|
-
tooltip: "O bot\xE3o %{featureName} ser\xE1 ativado quando adicionar informa\xE7\xF5es
|
|
107842
|
-
searchTooltip: "A pesquisa ser\xE1 ativada quando adicionar informa\xE7\xF5es a %{tableName}",
|
|
107966
|
+
tooltip: "O bot\xE3o %{featureName} ser\xE1 ativado quando adicionar informa\xE7\xF5es a %{tableName}",
|
|
107967
|
+
searchTooltip: "A pesquisa ser\xE1 ativada quando adicionar informa\xE7\xF5es a: %{tableName}",
|
|
107843
107968
|
featureFilter: "Filtro",
|
|
107844
107969
|
featureQuickFilter: "Filtro r\xE1pido",
|
|
107845
107970
|
featureGroupBy: "Agrupar por",
|
|
@@ -107867,7 +107992,8 @@ var pt_PT_default = {
|
|
|
107867
107992
|
exporting: "A exportar...",
|
|
107868
107993
|
filters: {
|
|
107869
107994
|
filters: "Filtros",
|
|
107870
|
-
allFilters: "
|
|
107995
|
+
allFilters: "Todos os filtros",
|
|
107996
|
+
moreFilters: "Mais filtros",
|
|
107871
107997
|
clearAllFilters: "Apagar todos os filtros",
|
|
107872
107998
|
close: "Fechar",
|
|
107873
107999
|
removeFilterToken: "Remover %{name}",
|
|
@@ -107886,6 +108012,7 @@ var pt_PT_default = {
|
|
|
107886
108012
|
options: {
|
|
107887
108013
|
any_value: "Qualquer valor",
|
|
107888
108014
|
is_between: "Est\xE1 entre",
|
|
108015
|
+
is_equal_to: "\xC9 igual a",
|
|
107889
108016
|
greater_than: "\xC9 superior a",
|
|
107890
108017
|
greater_than_equal_to: "\xC9 igual ou superior a",
|
|
107891
108018
|
less_than: "\xC9 inferior a",
|
|
@@ -107938,8 +108065,8 @@ var pt_PT_default = {
|
|
|
107938
108065
|
configureColumns: "Configurar colunas",
|
|
107939
108066
|
resetToDefault: "Mostrar tudo",
|
|
107940
108067
|
rowHeight: "Altura da linha",
|
|
107941
|
-
small: "
|
|
107942
|
-
medium: "M\
|
|
108068
|
+
small: "Pequena",
|
|
108069
|
+
medium: "M\xE9dia",
|
|
107943
108070
|
large: "Grande",
|
|
107944
108071
|
tableSettings: "Defini\xE7\xF5es de tabela",
|
|
107945
108072
|
groupBy: "Agrupar por:",
|
|
@@ -107964,7 +108091,7 @@ var pt_PT_default = {
|
|
|
107964
108091
|
placeholder: "Introduzir moeda"
|
|
107965
108092
|
},
|
|
107966
108093
|
linkCell: {
|
|
107967
|
-
externalLabel: "
|
|
108094
|
+
externalLabel: "Abrir liga\xE7\xE3o externa"
|
|
107968
108095
|
},
|
|
107969
108096
|
numberCell: {
|
|
107970
108097
|
placeholder: "Introduzir n\xFAmero"
|
|
@@ -108046,7 +108173,8 @@ var th_TH_default = {
|
|
|
108046
108173
|
exporting: "\u0E01\u0E33\u0E25\u0E31\u0E07\u0E2A\u0E48\u0E07\u0E2D\u0E2D\u0E01...",
|
|
108047
108174
|
filters: {
|
|
108048
108175
|
filters: "\u0E15\u0E31\u0E27\u0E01\u0E23\u0E2D\u0E07",
|
|
108049
|
-
allFilters: "
|
|
108176
|
+
allFilters: "\u0E15\u0E31\u0E27\u0E01\u0E23\u0E2D\u0E07\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14",
|
|
108177
|
+
moreFilters: "\u0E15\u0E31\u0E27\u0E01\u0E23\u0E2D\u0E07\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E40\u0E15\u0E34\u0E21",
|
|
108050
108178
|
clearAllFilters: "\u0E25\u0E49\u0E32\u0E07\u0E15\u0E31\u0E27\u0E01\u0E23\u0E2D\u0E07\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14",
|
|
108051
108179
|
close: "\u0E1B\u0E34\u0E14",
|
|
108052
108180
|
removeFilterToken: "\u0E25\u0E1A %{name}",
|
|
@@ -108065,6 +108193,7 @@ var th_TH_default = {
|
|
|
108065
108193
|
options: {
|
|
108066
108194
|
any_value: "\u0E04\u0E48\u0E32\u0E43\u0E14\u0E01\u0E47\u0E44\u0E14\u0E49",
|
|
108067
108195
|
is_between: "\u0E2D\u0E22\u0E39\u0E48\u0E23\u0E30\u0E2B\u0E27\u0E48\u0E32\u0E07",
|
|
108196
|
+
is_equal_to: "\u0E40\u0E17\u0E48\u0E32\u0E01\u0E31\u0E1A",
|
|
108068
108197
|
greater_than: "\u0E21\u0E32\u0E01\u0E01\u0E27\u0E48\u0E32",
|
|
108069
108198
|
greater_than_equal_to: "\u0E21\u0E32\u0E01\u0E01\u0E27\u0E48\u0E32\u0E2B\u0E23\u0E37\u0E2D\u0E40\u0E17\u0E48\u0E32\u0E01\u0E31\u0E1A",
|
|
108070
108199
|
less_than: "\u0E19\u0E49\u0E2D\u0E22\u0E01\u0E27\u0E48\u0E32",
|
|
@@ -108143,7 +108272,7 @@ var th_TH_default = {
|
|
|
108143
108272
|
placeholder: "\u0E1B\u0E49\u0E2D\u0E19\u0E2A\u0E01\u0E38\u0E25\u0E40\u0E07\u0E34\u0E19"
|
|
108144
108273
|
},
|
|
108145
108274
|
linkCell: {
|
|
108146
|
-
externalLabel: "
|
|
108275
|
+
externalLabel: "\u0E40\u0E1B\u0E34\u0E14\u0E25\u0E34\u0E07\u0E01\u0E4C\u0E20\u0E32\u0E22\u0E19\u0E2D\u0E01"
|
|
108147
108276
|
},
|
|
108148
108277
|
numberCell: {
|
|
108149
108278
|
placeholder: "\u0E1B\u0E49\u0E2D\u0E19\u0E2B\u0E21\u0E32\u0E22\u0E40\u0E25\u0E02"
|
|
@@ -108225,7 +108354,8 @@ var zh_SG_default = {
|
|
|
108225
108354
|
exporting: "\u6B63\u5728\u5BFC\u51FA...",
|
|
108226
108355
|
filters: {
|
|
108227
108356
|
filters: "\u7B5B\u9009\u5668",
|
|
108228
|
-
allFilters: "
|
|
108357
|
+
allFilters: "\u6240\u6709\u7B5B\u9009\u5668",
|
|
108358
|
+
moreFilters: "\u66F4\u591A\u7B5B\u9009\u5668",
|
|
108229
108359
|
clearAllFilters: "\u6E05\u9664\u6240\u6709\u7B5B\u9009\u5668",
|
|
108230
108360
|
close: "\u5173\u95ED",
|
|
108231
108361
|
removeFilterToken: "\u79FB\u9664 %{name}",
|
|
@@ -108244,6 +108374,7 @@ var zh_SG_default = {
|
|
|
108244
108374
|
options: {
|
|
108245
108375
|
any_value: "\u4EFB\u610F\u503C",
|
|
108246
108376
|
is_between: "\u4ECB\u4E8E",
|
|
108377
|
+
is_equal_to: "\u7B49\u4E8E",
|
|
108247
108378
|
greater_than: "\u5927\u4E8E",
|
|
108248
108379
|
greater_than_equal_to: "\u5927\u4E8E\u6216\u7B49\u4E8E",
|
|
108249
108380
|
less_than: "\u5C0F\u4E8E",
|
|
@@ -108322,7 +108453,7 @@ var zh_SG_default = {
|
|
|
108322
108453
|
placeholder: "\u8F93\u5165\u8D27\u5E01"
|
|
108323
108454
|
},
|
|
108324
108455
|
linkCell: {
|
|
108325
|
-
externalLabel: "
|
|
108456
|
+
externalLabel: "\u6253\u5F00\u5916\u90E8\u94FE\u63A5"
|
|
108326
108457
|
},
|
|
108327
108458
|
numberCell: {
|
|
108328
108459
|
placeholder: "\u8F93\u5165\u6570\u5B57"
|
|
@@ -108404,7 +108535,8 @@ var zh_TW_default = {
|
|
|
108404
108535
|
exporting: "\u532F\u51FA\u4E2D\u2026\u2026",
|
|
108405
108536
|
filters: {
|
|
108406
108537
|
filters: "\u7BE9\u9078\u689D\u4EF6",
|
|
108407
|
-
allFilters: "
|
|
108538
|
+
allFilters: "\u6240\u6709\u7BE9\u9078\u689D\u4EF6",
|
|
108539
|
+
moreFilters: "\u66F4\u591A\u7BE9\u9078\u689D\u4EF6",
|
|
108408
108540
|
clearAllFilters: "\u6E05\u9664\u6240\u6709\u7BE9\u9078\u689D\u4EF6",
|
|
108409
108541
|
close: "\u95DC\u9589",
|
|
108410
108542
|
removeFilterToken: "\u79FB\u9664\u300C%{name}\u300D",
|
|
@@ -108423,6 +108555,7 @@ var zh_TW_default = {
|
|
|
108423
108555
|
options: {
|
|
108424
108556
|
any_value: "\u4EFB\u4F55\u503C",
|
|
108425
108557
|
is_between: "\u4ECB\u65BC",
|
|
108558
|
+
is_equal_to: "\u7B49\u65BC",
|
|
108426
108559
|
greater_than: "\u5927\u65BC",
|
|
108427
108560
|
greater_than_equal_to: "\u5927\u65BC\u6216\u7B49\u65BC",
|
|
108428
108561
|
less_than: "\u5C0F\u65BC",
|
|
@@ -108501,7 +108634,7 @@ var zh_TW_default = {
|
|
|
108501
108634
|
placeholder: "\u8F38\u5165\u8CA8\u5E63"
|
|
108502
108635
|
},
|
|
108503
108636
|
linkCell: {
|
|
108504
|
-
externalLabel: "
|
|
108637
|
+
externalLabel: "\u958B\u555F\u5916\u90E8\u9023\u7D50"
|
|
108505
108638
|
},
|
|
108506
108639
|
numberCell: {
|
|
108507
108640
|
placeholder: "\u8F38\u5165\u6578\u5B57"
|
|
@@ -109541,6 +109674,8 @@ var DataTable = ({
|
|
|
109541
109674
|
!initialTableConfig
|
|
109542
109675
|
);
|
|
109543
109676
|
const contextPanel = useContextPanel();
|
|
109677
|
+
const filtersPanelId = $bdb11010cef70236$export$f680877a34711e37();
|
|
109678
|
+
const filtersBodyId = $bdb11010cef70236$export$f680877a34711e37();
|
|
109544
109679
|
const clientI18n = useI18nContext();
|
|
109545
109680
|
const isCDNEnabled = isCDNFeatureFlagEnabled(clientI18n, enableCDN);
|
|
109546
109681
|
const cdnTranslations = useRequestTranslations(
|
|
@@ -109788,7 +109923,9 @@ var DataTable = ({
|
|
|
109788
109923
|
totalRowCount,
|
|
109789
109924
|
setTotalRowCount,
|
|
109790
109925
|
updateServerSideDataSource,
|
|
109791
|
-
hasDuplicateRowIds
|
|
109926
|
+
hasDuplicateRowIds,
|
|
109927
|
+
filtersPanelId,
|
|
109928
|
+
filtersBodyId
|
|
109792
109929
|
}
|
|
109793
109930
|
},
|
|
109794
109931
|
children
|
|
@@ -111102,7 +111239,7 @@ var BaseFiltersPanel = ({
|
|
|
111102
111239
|
...props
|
|
111103
111240
|
}) => {
|
|
111104
111241
|
const ref = React80.useRef(null);
|
|
111105
|
-
const { contextPanel } = useInternalTableContext();
|
|
111242
|
+
const { contextPanel, filtersBodyId, filtersPanelId } = useInternalTableContext();
|
|
111106
111243
|
const I18n = useI18nContext();
|
|
111107
111244
|
const hidden = !contextPanel.isVisible || contextPanel.content !== "filters";
|
|
111108
111245
|
React80.useLayoutEffect(() => {
|
|
@@ -111119,6 +111256,7 @@ var BaseFiltersPanel = ({
|
|
|
111119
111256
|
"contextPanel--hidden": hidden
|
|
111120
111257
|
}),
|
|
111121
111258
|
"data-qa": "data-table-filters-context-panel",
|
|
111259
|
+
id: filtersPanelId,
|
|
111122
111260
|
...props
|
|
111123
111261
|
},
|
|
111124
111262
|
/* @__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(
|
|
@@ -111130,7 +111268,7 @@ var BaseFiltersPanel = ({
|
|
|
111130
111268
|
variant: "tertiary"
|
|
111131
111269
|
},
|
|
111132
111270
|
I18n.t("dataTable.filters.clearAllFilters")
|
|
111133
|
-
)), /* @__PURE__ */ React80.createElement(Panel.Body, { className: cx20("contextPanelBody") }, /* @__PURE__ */ React80.createElement(Panel.Section, null, children))))
|
|
111271
|
+
)), /* @__PURE__ */ React80.createElement(Panel.Body, { id: filtersBodyId, className: cx20("contextPanelBody") }, /* @__PURE__ */ React80.createElement(Panel.Section, null, children))))
|
|
111134
111272
|
);
|
|
111135
111273
|
};
|
|
111136
111274
|
function ClientSideFiltersPanel(props) {
|
|
@@ -111842,6 +111980,21 @@ var LocationQuickFilterRenderer_default = LocationQuickFilterRenderer;
|
|
|
111842
111980
|
var StyledFilterPresetPopoverContent = styled4(Popover.Content)`
|
|
111843
111981
|
padding: ${spacing.sm}px ${spacing.lg}px;
|
|
111844
111982
|
`;
|
|
111983
|
+
var StyledClearButton = styled4(Button)`
|
|
111984
|
+
position: absolute;
|
|
111985
|
+
right: ${spacing.md + spacing.lg}px;
|
|
111986
|
+
top: calc(36px / 2);
|
|
111987
|
+
transform: translateY(-50%);
|
|
111988
|
+
color: ${colors.blue45};
|
|
111989
|
+
&:hover,
|
|
111990
|
+
&:focus {
|
|
111991
|
+
color: ${colors.blue45};
|
|
111992
|
+
background: ${colors.white};
|
|
111993
|
+
}
|
|
111994
|
+
`;
|
|
111995
|
+
var StyledTriggerContainerWrapper = styled4.div`
|
|
111996
|
+
position: relative;
|
|
111997
|
+
`;
|
|
111845
111998
|
var getValueLabel = (isValueEmpty, value, placeholder, filterName) => {
|
|
111846
111999
|
const prefixLabel = isValueEmpty ? placeholder || filterName : filterName;
|
|
111847
112000
|
const valueLabel = value ? `${prefixLabel ? ": " : ""}${value}` : "";
|
|
@@ -111861,7 +112014,7 @@ var getSuperSelectFilterPreset = (columnDefinition) => {
|
|
|
111861
112014
|
const ctx = UNSAFE_useSuperSelectContext();
|
|
111862
112015
|
const I18n = useI18nContext();
|
|
111863
112016
|
return /* @__PURE__ */ React80.createElement(
|
|
111864
|
-
|
|
112017
|
+
StyledClearButton,
|
|
111865
112018
|
{
|
|
111866
112019
|
...ctx.props.clear(),
|
|
111867
112020
|
"aria-label": I18n.t("dataTable.filters.removeFilterToken", {
|
|
@@ -111886,6 +112039,11 @@ var getSuperSelectFilterPreset = (columnDefinition) => {
|
|
|
111886
112039
|
filterName
|
|
111887
112040
|
)));
|
|
111888
112041
|
}),
|
|
112042
|
+
TriggerContainerWrapper: React80.forwardRef(
|
|
112043
|
+
(props, ref) => {
|
|
112044
|
+
return /* @__PURE__ */ React80.createElement(StyledTriggerContainerWrapper, { ref, ...props });
|
|
112045
|
+
}
|
|
112046
|
+
),
|
|
111889
112047
|
TriggerContainer: React80.forwardRef(
|
|
111890
112048
|
(props, ref) => {
|
|
111891
112049
|
const ctx = UNSAFE_useSuperSelectContext();
|
|
@@ -111899,11 +112057,31 @@ var getSuperSelectFilterPreset = (columnDefinition) => {
|
|
|
111899
112057
|
}
|
|
111900
112058
|
);
|
|
111901
112059
|
}
|
|
112060
|
+
const {
|
|
112061
|
+
"aria-activedescendant": ariaActivedescendant,
|
|
112062
|
+
"aria-controls": ariaControls,
|
|
112063
|
+
"aria-expanded": ariaExpanded,
|
|
112064
|
+
"aria-haspopup": ariaHaspopup,
|
|
112065
|
+
"aria-label": ariaLabel,
|
|
112066
|
+
"aria-labelledby": ariaLabelledby,
|
|
112067
|
+
role,
|
|
112068
|
+
tabIndex
|
|
112069
|
+
} = ctx.props.multiInput();
|
|
112070
|
+
const a11yProps = {
|
|
112071
|
+
"aria-activedescendant": ariaActivedescendant,
|
|
112072
|
+
"aria-controls": ariaControls,
|
|
112073
|
+
"aria-expanded": ariaExpanded,
|
|
112074
|
+
"aria-haspopup": ariaHaspopup,
|
|
112075
|
+
"aria-label": ariaLabel,
|
|
112076
|
+
"aria-labelledby": ariaLabelledby,
|
|
112077
|
+
role,
|
|
112078
|
+
tabIndex
|
|
112079
|
+
};
|
|
111902
112080
|
return /* @__PURE__ */ React80.createElement(
|
|
111903
112081
|
Popover,
|
|
111904
112082
|
{
|
|
111905
112083
|
placement: "top",
|
|
111906
|
-
trigger: ctx.state.value.length > 1 ? "hover" : "none",
|
|
112084
|
+
trigger: ctx.state.value.length > 1 ? ["hover", "focus"] : "none",
|
|
111907
112085
|
overlay: /* @__PURE__ */ React80.createElement(StyledFilterPresetPopoverContent, null, /* @__PURE__ */ React80.createElement(Typography, null, ctx.state.value.map((v) => {
|
|
111908
112086
|
const option = ctx.state.options.find(
|
|
111909
112087
|
(option2) => ctx.option.value(option2) === v
|
|
@@ -111916,6 +112094,7 @@ var getSuperSelectFilterPreset = (columnDefinition) => {
|
|
|
111916
112094
|
{
|
|
111917
112095
|
$block: ctx.config.block,
|
|
111918
112096
|
...props,
|
|
112097
|
+
...a11yProps,
|
|
111919
112098
|
ref
|
|
111920
112099
|
}
|
|
111921
112100
|
)
|
|
@@ -112292,10 +112471,26 @@ var SingleSelectQuickFilterRenderer = (props) => {
|
|
|
112292
112471
|
return /* @__PURE__ */ React80.createElement(ClientSideSingleSelectQuickFilter, { ...props });
|
|
112293
112472
|
};
|
|
112294
112473
|
var SingleSelectQuickFilterRenderer_default = SingleSelectQuickFilterRenderer;
|
|
112474
|
+
var FOCUSABLE_SELECTOR2 = 'button:not([disabled]), input:not([disabled]), select:not([disabled]), textarea:not([disabled]), [tabindex]:not([tabindex="-1"])';
|
|
112295
112475
|
var FiltersPanelToggleButton = ({ hasDefinedFilters }) => {
|
|
112296
112476
|
const I18n = useI18nContext();
|
|
112297
|
-
const { contextPanel } = useInternalTableContext();
|
|
112477
|
+
const { contextPanel, filtersBodyId, filtersPanelId } = useInternalTableContext();
|
|
112298
112478
|
const hasNoContent = useTableHasNoContent();
|
|
112479
|
+
const buttonRef = React80.useRef(null);
|
|
112480
|
+
const isFiltersOpen = contextPanel.content === "filters";
|
|
112481
|
+
const isMounted = React80.useRef(false);
|
|
112482
|
+
React80.useEffect(() => {
|
|
112483
|
+
if (!isMounted.current) {
|
|
112484
|
+
isMounted.current = true;
|
|
112485
|
+
return;
|
|
112486
|
+
}
|
|
112487
|
+
if (isFiltersOpen) {
|
|
112488
|
+
const panel = filtersBodyId ? document.getElementById(filtersBodyId) : null;
|
|
112489
|
+
panel?.querySelector(FOCUSABLE_SELECTOR2)?.focus();
|
|
112490
|
+
} else {
|
|
112491
|
+
buttonRef.current?.focus();
|
|
112492
|
+
}
|
|
112493
|
+
}, [isFiltersOpen, filtersBodyId]);
|
|
112299
112494
|
if (!hasDefinedFilters) {
|
|
112300
112495
|
return null;
|
|
112301
112496
|
}
|
|
@@ -112308,17 +112503,20 @@ var FiltersPanelToggleButton = ({ hasDefinedFilters }) => {
|
|
|
112308
112503
|
/* @__PURE__ */ React80.createElement(
|
|
112309
112504
|
ToggleButton,
|
|
112310
112505
|
{
|
|
112506
|
+
ref: buttonRef,
|
|
112311
112507
|
"data-qa": "data-table-show-filters-button",
|
|
112312
112508
|
disabled: hasNoContent,
|
|
112313
112509
|
icon: /* @__PURE__ */ React80.createElement(FilterIcon, null),
|
|
112510
|
+
"aria-expanded": isFiltersOpen,
|
|
112511
|
+
"aria-controls": filtersPanelId,
|
|
112314
112512
|
onClick: () => {
|
|
112315
|
-
if (
|
|
112316
|
-
contextPanel.hide();
|
|
112317
|
-
} else {
|
|
112513
|
+
if (!isFiltersOpen) {
|
|
112318
112514
|
contextPanel.show("filters");
|
|
112515
|
+
} else {
|
|
112516
|
+
contextPanel.hide();
|
|
112319
112517
|
}
|
|
112320
112518
|
},
|
|
112321
|
-
selected:
|
|
112519
|
+
selected: isFiltersOpen
|
|
112322
112520
|
},
|
|
112323
112521
|
I18n.t("dataTable.filters.allFilters")
|
|
112324
112522
|
)
|
|
@@ -112709,6 +112907,7 @@ var ClientSideSearch = ({
|
|
|
112709
112907
|
const { tableRef } = useInternalTableContext();
|
|
112710
112908
|
const hasNoContent = useTableHasNoContent();
|
|
112711
112909
|
const I18n = useI18nContext();
|
|
112910
|
+
const resolvedPlaceholder = placeholder || I18n.t("dataTable.search");
|
|
112712
112911
|
const debouncedSetSearchValue = React80.useCallback(
|
|
112713
112912
|
debounce5((value) => {
|
|
112714
112913
|
tableRef?.current?.setSearchValue(value);
|
|
@@ -112736,7 +112935,8 @@ var ClientSideSearch = ({
|
|
|
112736
112935
|
"search--empty": !internalValue.length
|
|
112737
112936
|
}),
|
|
112738
112937
|
onChange,
|
|
112739
|
-
placeholder:
|
|
112938
|
+
placeholder: resolvedPlaceholder,
|
|
112939
|
+
"aria-label": resolvedPlaceholder
|
|
112740
112940
|
}
|
|
112741
112941
|
));
|
|
112742
112942
|
};
|