@procore/data-table 14.44.0 → 14.45.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +17 -0
- package/dist/legacy/index.cjs +234 -98
- package/dist/legacy/index.js +234 -98
- package/dist/modern/index.cjs +233 -98
- package/dist/modern/index.js +233 -98
- package/package.json +2 -2
package/dist/modern/index.js
CHANGED
|
@@ -8038,10 +8038,10 @@ var Renderer = ({
|
|
|
8038
8038
|
if (rowPinned) {
|
|
8039
8039
|
return null;
|
|
8040
8040
|
}
|
|
8041
|
-
return /* @__PURE__ */ React80.createElement(FlexList, { justifyContent: "center", alignItems: "center", size: "xs" }, buttons.map((
|
|
8042
|
-
|
|
8041
|
+
return /* @__PURE__ */ React80.createElement(FlexList, { justifyContent: "center", alignItems: "center", size: "xs" }, buttons.map((Button7) => /* @__PURE__ */ React80.createElement(
|
|
8042
|
+
Button7,
|
|
8043
8043
|
{
|
|
8044
|
-
key:
|
|
8044
|
+
key: Button7.displayName,
|
|
8045
8045
|
columnDefinition,
|
|
8046
8046
|
rowPinned,
|
|
8047
8047
|
...props,
|
|
@@ -8382,7 +8382,6 @@ var OptionalDateTimeProvider = ({ timeZone, children }) => {
|
|
|
8382
8382
|
var DateFilterOverlay = React80.forwardRef(
|
|
8383
8383
|
// eslint-disable-next-line complexity
|
|
8384
8384
|
({
|
|
8385
|
-
dateInputSegmentRef,
|
|
8386
8385
|
displayDate,
|
|
8387
8386
|
monthRef,
|
|
8388
8387
|
onSelect,
|
|
@@ -8407,46 +8406,64 @@ var DateFilterOverlay = React80.forwardRef(
|
|
|
8407
8406
|
}
|
|
8408
8407
|
}
|
|
8409
8408
|
const { hide } = UNSAFE_useOverlayTriggerContext();
|
|
8409
|
+
const onBlur = (e) => {
|
|
8410
|
+
const currentTarget = e.currentTarget;
|
|
8411
|
+
requestAnimationFrame(() => {
|
|
8412
|
+
const activeElement = document.activeElement;
|
|
8413
|
+
if (currentTarget.contains(activeElement) || monthRef.current?.contains(activeElement) || yearRef.current?.contains(activeElement)) {
|
|
8414
|
+
return;
|
|
8415
|
+
}
|
|
8416
|
+
hide(e);
|
|
8417
|
+
});
|
|
8418
|
+
};
|
|
8410
8419
|
function calendarOnSelect(day2) {
|
|
8411
|
-
dateInputSegmentRef?.current && dateInputSegmentRef.current.focus();
|
|
8412
8420
|
setDisplayDate(day2);
|
|
8413
8421
|
onSelect(day2);
|
|
8414
8422
|
hide({});
|
|
8415
8423
|
}
|
|
8416
|
-
return /* @__PURE__ */ React80.createElement(
|
|
8417
|
-
|
|
8424
|
+
return /* @__PURE__ */ React80.createElement(
|
|
8425
|
+
Card,
|
|
8418
8426
|
{
|
|
8419
|
-
|
|
8420
|
-
|
|
8427
|
+
"data-qa": "data-table-date-filter-calendar",
|
|
8428
|
+
ref,
|
|
8429
|
+
onBlur,
|
|
8430
|
+
...props
|
|
8421
8431
|
},
|
|
8422
|
-
/* @__PURE__ */ React80.createElement(
|
|
8423
|
-
SegmentedController
|
|
8432
|
+
/* @__PURE__ */ React80.createElement(Flex, { direction: "column" }, selectionType === "either" && /* @__PURE__ */ React80.createElement(Box, { padding: "md", style: { width: "100%" } }, /* @__PURE__ */ React80.createElement(
|
|
8433
|
+
SegmentedController,
|
|
8424
8434
|
{
|
|
8425
|
-
|
|
8426
|
-
|
|
8435
|
+
block: true,
|
|
8436
|
+
"data-qa": "data-table-date-filter-selection-control"
|
|
8427
8437
|
},
|
|
8428
|
-
|
|
8429
|
-
|
|
8430
|
-
|
|
8431
|
-
|
|
8438
|
+
/* @__PURE__ */ React80.createElement(
|
|
8439
|
+
SegmentedController.Segment,
|
|
8440
|
+
{
|
|
8441
|
+
active: selectedValue.type === "single",
|
|
8442
|
+
onClick: () => setSelectionType("single")
|
|
8443
|
+
},
|
|
8444
|
+
I18n.t("dataTable.filterRenders.dateFilter.single")
|
|
8445
|
+
),
|
|
8446
|
+
/* @__PURE__ */ React80.createElement(
|
|
8447
|
+
SegmentedController.Segment,
|
|
8448
|
+
{
|
|
8449
|
+
active: selectedValue.type === "range",
|
|
8450
|
+
onClick: () => setSelectionType("range")
|
|
8451
|
+
},
|
|
8452
|
+
I18n.t("dataTable.filterRenders.dateFilter.range")
|
|
8453
|
+
)
|
|
8454
|
+
)), /* @__PURE__ */ React80.createElement(
|
|
8455
|
+
Calendar,
|
|
8432
8456
|
{
|
|
8433
|
-
|
|
8434
|
-
|
|
8435
|
-
|
|
8436
|
-
|
|
8437
|
-
|
|
8438
|
-
|
|
8439
|
-
|
|
8440
|
-
|
|
8441
|
-
|
|
8442
|
-
|
|
8443
|
-
onNavigate: setDisplayDate,
|
|
8444
|
-
onSelect: calendarOnSelect,
|
|
8445
|
-
selectedEnd: calendarEnd ?? void 0,
|
|
8446
|
-
selectedStart: calendarStart ?? void 0,
|
|
8447
|
-
yearRef
|
|
8448
|
-
}
|
|
8449
|
-
)));
|
|
8457
|
+
displayDate,
|
|
8458
|
+
monthRef,
|
|
8459
|
+
onNavigate: setDisplayDate,
|
|
8460
|
+
onSelect: calendarOnSelect,
|
|
8461
|
+
selectedEnd: calendarEnd ?? void 0,
|
|
8462
|
+
selectedStart: calendarStart ?? void 0,
|
|
8463
|
+
yearRef
|
|
8464
|
+
}
|
|
8465
|
+
))
|
|
8466
|
+
);
|
|
8450
8467
|
}
|
|
8451
8468
|
);
|
|
8452
8469
|
var DateFilterSelect = React80.forwardRef(
|
|
@@ -8474,16 +8491,13 @@ var DateFilterSelect = React80.forwardRef(
|
|
|
8474
8491
|
setDisplayed2(end);
|
|
8475
8492
|
}
|
|
8476
8493
|
}, [position, selectedValue]);
|
|
8477
|
-
const segmentRefs = {
|
|
8478
|
-
segmentThree: React80.useRef(null)
|
|
8479
|
-
};
|
|
8480
8494
|
const clearRef = React80.useRef(null);
|
|
8481
8495
|
const monthRef = React80.useRef(null);
|
|
8482
8496
|
const yearRef = React80.useRef(null);
|
|
8497
|
+
const hideKeys = ["Escape", "Esc"];
|
|
8483
8498
|
const overlay = /* @__PURE__ */ React80.createElement(
|
|
8484
8499
|
DateFilterOverlay,
|
|
8485
8500
|
{
|
|
8486
|
-
dateInputSegmentRef: segmentRefs.segmentThree,
|
|
8487
8501
|
displayDate: displayed,
|
|
8488
8502
|
monthRef,
|
|
8489
8503
|
onSelect: (date) => {
|
|
@@ -8510,13 +8524,18 @@ var DateFilterSelect = React80.forwardRef(
|
|
|
8510
8524
|
clickOutsideIgnoreRefs: [monthRef, yearRef],
|
|
8511
8525
|
overlay,
|
|
8512
8526
|
placement: getPlacement(selectedValue.type, position),
|
|
8513
|
-
ref
|
|
8527
|
+
ref,
|
|
8528
|
+
autoFocus: true,
|
|
8529
|
+
showKeys: [],
|
|
8530
|
+
hideKeys: {
|
|
8531
|
+
overlay: hideKeys,
|
|
8532
|
+
target: hideKeys
|
|
8533
|
+
}
|
|
8514
8534
|
},
|
|
8515
8535
|
/* @__PURE__ */ React80.createElement(
|
|
8516
8536
|
DateInput,
|
|
8517
8537
|
{
|
|
8518
8538
|
"data-qa": `data-table-date-filter-input-${position}`,
|
|
8519
|
-
segmentRefs,
|
|
8520
8539
|
onChangeSegment: (type, value) => {
|
|
8521
8540
|
if (value === -1) {
|
|
8522
8541
|
return;
|
|
@@ -52346,6 +52365,7 @@ var InternalLinkCellRenderer = ({
|
|
|
52346
52365
|
isExternalLink,
|
|
52347
52366
|
getURL
|
|
52348
52367
|
}) => {
|
|
52368
|
+
const I18n = useI18nContext();
|
|
52349
52369
|
const [isLinkWidthBelowMin, setIsLinkWidthBelowMin] = useState(false);
|
|
52350
52370
|
const linkRef = useRef(null);
|
|
52351
52371
|
const internalValue = value ? columnDefinition.getStringFormattedValue?.(value) : "";
|
|
@@ -52373,23 +52393,27 @@ var InternalLinkCellRenderer = ({
|
|
|
52373
52393
|
"extendClickableArea--rowHeightSm": rowHeight === rowSize.sm
|
|
52374
52394
|
}) : "";
|
|
52375
52395
|
if (isExternalLink && value && URL) {
|
|
52376
|
-
return /* @__PURE__ */ React80.createElement(
|
|
52377
|
-
|
|
52396
|
+
return /* @__PURE__ */ React80.createElement(Typography, { ...typographyProps, className }, /* @__PURE__ */ React80.createElement(
|
|
52397
|
+
Link,
|
|
52378
52398
|
{
|
|
52379
|
-
|
|
52380
|
-
|
|
52381
|
-
|
|
52399
|
+
href: URL,
|
|
52400
|
+
target: "_blank",
|
|
52401
|
+
rel: "noopener noreferrer",
|
|
52402
|
+
className: extendClickableAreaClassNames,
|
|
52403
|
+
style: { display: "flex", alignItems: "center", gap: "5px" },
|
|
52404
|
+
ref: linkRef
|
|
52382
52405
|
},
|
|
52383
52406
|
internalValue,
|
|
52384
52407
|
/* @__PURE__ */ React80.createElement(
|
|
52385
52408
|
ExternalLink,
|
|
52386
52409
|
{
|
|
52387
|
-
|
|
52388
|
-
|
|
52389
|
-
|
|
52410
|
+
role: "img",
|
|
52411
|
+
"aria-hidden": false,
|
|
52412
|
+
"aria-label": I18n.t("dataTable.cells.linkCell.externalLabel"),
|
|
52413
|
+
size: "sm"
|
|
52390
52414
|
}
|
|
52391
52415
|
)
|
|
52392
|
-
);
|
|
52416
|
+
));
|
|
52393
52417
|
}
|
|
52394
52418
|
return URL ? /* @__PURE__ */ React80.createElement(Typography, { ...typographyProps, className }, /* @__PURE__ */ React80.createElement(Link, { href: URL, className: extendClickableAreaClassNames, ref: linkRef }, internalValue)) : /* @__PURE__ */ React80.createElement(Typography, { ...typographyProps }, internalValue);
|
|
52395
52419
|
};
|
|
@@ -54405,7 +54429,10 @@ function ServerSideNumberFilterRenderer({
|
|
|
54405
54429
|
value: localFilter.value ?? "",
|
|
54406
54430
|
onChange: handleLowerLimitChange
|
|
54407
54431
|
}
|
|
54408
|
-
), /* @__PURE__ */ React80.createElement(Typography, { style: { padding: "0 8px" } }, I18n.t("labels.and", {
|
|
54432
|
+
), /* @__PURE__ */ React80.createElement(Typography, { style: { padding: "0 8px" } }, I18n.t("labels.and", {
|
|
54433
|
+
defaultValue: "and",
|
|
54434
|
+
scope: "dataTable.filters.numberFilter"
|
|
54435
|
+
})), /* @__PURE__ */ React80.createElement(
|
|
54409
54436
|
Input,
|
|
54410
54437
|
{
|
|
54411
54438
|
type: "number",
|
|
@@ -104972,9 +104999,10 @@ var de_DE_default = {
|
|
|
104972
104999
|
exporting: "Wird exportiert\xA0\u2026",
|
|
104973
105000
|
filters: {
|
|
104974
105001
|
filters: "Filter",
|
|
104975
|
-
|
|
105002
|
+
allFilters: "All Filters",
|
|
104976
105003
|
clearAllFilters: "Alle Filter zur\xFCcksetzen",
|
|
104977
105004
|
close: "Schlie\xDFen",
|
|
105005
|
+
removeFilterToken: "%{name} entfernen",
|
|
104978
105006
|
locationFilter: {
|
|
104979
105007
|
selectAll: "Alle ausw\xE4hlen",
|
|
104980
105008
|
includeSublocations: "Teilstandorte einschlie\xDFen",
|
|
@@ -105012,6 +105040,7 @@ var de_DE_default = {
|
|
|
105012
105040
|
secondary: "Informationen werden geladen, vielen Dank f\xFCr Ihre Geduld."
|
|
105013
105041
|
},
|
|
105014
105042
|
menuOptions: {
|
|
105043
|
+
ariaMenuColumn: "Dr\xFCcken Sie Alt/Option+Nach unten, um das Spaltenmen\xFC zu \xF6ffnen.",
|
|
105015
105044
|
sortMenuItem: {
|
|
105016
105045
|
label: "Nach dieser Spalte sortieren",
|
|
105017
105046
|
sortAscItem: "Spalte aufsteigend sortieren",
|
|
@@ -105066,6 +105095,9 @@ var de_DE_default = {
|
|
|
105066
105095
|
currencyCell: {
|
|
105067
105096
|
placeholder: "W\xE4hrung eingeben"
|
|
105068
105097
|
},
|
|
105098
|
+
linkCell: {
|
|
105099
|
+
externalLabel: "Open external link"
|
|
105100
|
+
},
|
|
105069
105101
|
numberCell: {
|
|
105070
105102
|
placeholder: "Nummer eingeben"
|
|
105071
105103
|
},
|
|
@@ -105146,9 +105178,10 @@ var en_AU_default = {
|
|
|
105146
105178
|
exporting: "Exporting...",
|
|
105147
105179
|
filters: {
|
|
105148
105180
|
filters: "Filters",
|
|
105149
|
-
|
|
105181
|
+
allFilters: "All Filters",
|
|
105150
105182
|
clearAllFilters: "Clear all filters",
|
|
105151
105183
|
close: "Close",
|
|
105184
|
+
removeFilterToken: "Remove %{name}",
|
|
105152
105185
|
locationFilter: {
|
|
105153
105186
|
selectAll: "Select all",
|
|
105154
105187
|
includeSublocations: "Include sub-locations",
|
|
@@ -105186,6 +105219,7 @@ var en_AU_default = {
|
|
|
105186
105219
|
secondary: "Information loading, thanks for your patience."
|
|
105187
105220
|
},
|
|
105188
105221
|
menuOptions: {
|
|
105222
|
+
ariaMenuColumn: "Press Alt/Option+Down to open column menu.",
|
|
105189
105223
|
sortMenuItem: {
|
|
105190
105224
|
label: "Sort by this column",
|
|
105191
105225
|
sortAscItem: "Sort column ascending",
|
|
@@ -105240,6 +105274,9 @@ var en_AU_default = {
|
|
|
105240
105274
|
currencyCell: {
|
|
105241
105275
|
placeholder: "Enter currency"
|
|
105242
105276
|
},
|
|
105277
|
+
linkCell: {
|
|
105278
|
+
externalLabel: "Open external link"
|
|
105279
|
+
},
|
|
105243
105280
|
numberCell: {
|
|
105244
105281
|
placeholder: "Enter number"
|
|
105245
105282
|
},
|
|
@@ -105320,9 +105357,10 @@ var en_CA_default = {
|
|
|
105320
105357
|
exporting: "Exporting...",
|
|
105321
105358
|
filters: {
|
|
105322
105359
|
filters: "Filters",
|
|
105323
|
-
|
|
105360
|
+
allFilters: "All Filters",
|
|
105324
105361
|
clearAllFilters: "Clear all filters",
|
|
105325
105362
|
close: "Close",
|
|
105363
|
+
removeFilterToken: "Remove %{name}",
|
|
105326
105364
|
locationFilter: {
|
|
105327
105365
|
selectAll: "Select all",
|
|
105328
105366
|
includeSublocations: "Include sub-locations",
|
|
@@ -105360,6 +105398,7 @@ var en_CA_default = {
|
|
|
105360
105398
|
secondary: "Information loading, thanks for your patience."
|
|
105361
105399
|
},
|
|
105362
105400
|
menuOptions: {
|
|
105401
|
+
ariaMenuColumn: "Press Alt/Option+Down to open column menu.",
|
|
105363
105402
|
sortMenuItem: {
|
|
105364
105403
|
label: "Sort by this column",
|
|
105365
105404
|
sortAscItem: "Sort column ascending",
|
|
@@ -105414,6 +105453,9 @@ var en_CA_default = {
|
|
|
105414
105453
|
currencyCell: {
|
|
105415
105454
|
placeholder: "Enter currency"
|
|
105416
105455
|
},
|
|
105456
|
+
linkCell: {
|
|
105457
|
+
externalLabel: "Open external link"
|
|
105458
|
+
},
|
|
105417
105459
|
numberCell: {
|
|
105418
105460
|
placeholder: "Enter number"
|
|
105419
105461
|
},
|
|
@@ -105494,9 +105536,10 @@ var en_GB_default = {
|
|
|
105494
105536
|
exporting: "Exporting...",
|
|
105495
105537
|
filters: {
|
|
105496
105538
|
filters: "Filters",
|
|
105497
|
-
|
|
105539
|
+
allFilters: "All Filters",
|
|
105498
105540
|
clearAllFilters: "Clear all filters",
|
|
105499
105541
|
close: "Close",
|
|
105542
|
+
removeFilterToken: "Remove %{name}",
|
|
105500
105543
|
locationFilter: {
|
|
105501
105544
|
selectAll: "Select all",
|
|
105502
105545
|
includeSublocations: "Include sub-locations",
|
|
@@ -105534,6 +105577,7 @@ var en_GB_default = {
|
|
|
105534
105577
|
secondary: "Information loading, thanks for your patience."
|
|
105535
105578
|
},
|
|
105536
105579
|
menuOptions: {
|
|
105580
|
+
ariaMenuColumn: "Press Alt/Option+Down to open column menu.",
|
|
105537
105581
|
sortMenuItem: {
|
|
105538
105582
|
label: "Sort by this column",
|
|
105539
105583
|
sortAscItem: "Sort column ascending",
|
|
@@ -105588,6 +105632,9 @@ var en_GB_default = {
|
|
|
105588
105632
|
currencyCell: {
|
|
105589
105633
|
placeholder: "Enter currency"
|
|
105590
105634
|
},
|
|
105635
|
+
linkCell: {
|
|
105636
|
+
externalLabel: "Open external link"
|
|
105637
|
+
},
|
|
105591
105638
|
numberCell: {
|
|
105592
105639
|
placeholder: "Enter number"
|
|
105593
105640
|
},
|
|
@@ -105668,6 +105715,7 @@ var en_default = {
|
|
|
105668
105715
|
exporting: "Exporting...",
|
|
105669
105716
|
filters: {
|
|
105670
105717
|
filters: "Filters",
|
|
105718
|
+
allFilters: "All Filters",
|
|
105671
105719
|
moreFilters: "More Filters",
|
|
105672
105720
|
clearAllFilters: "Clear All Filters",
|
|
105673
105721
|
close: "Close",
|
|
@@ -105687,6 +105735,7 @@ var en_default = {
|
|
|
105687
105735
|
options: {
|
|
105688
105736
|
any_value: "Any Value",
|
|
105689
105737
|
is_between: "Is Between",
|
|
105738
|
+
is_equal_to: "Is Equal To",
|
|
105690
105739
|
greater_than: "Is Greater Than",
|
|
105691
105740
|
greater_than_equal_to: "Is Greater Than or Equal To",
|
|
105692
105741
|
less_than: "Is Less Than",
|
|
@@ -105764,6 +105813,9 @@ var en_default = {
|
|
|
105764
105813
|
currencyCell: {
|
|
105765
105814
|
placeholder: "Enter currency"
|
|
105766
105815
|
},
|
|
105816
|
+
linkCell: {
|
|
105817
|
+
externalLabel: "Open external link"
|
|
105818
|
+
},
|
|
105767
105819
|
numberCell: {
|
|
105768
105820
|
placeholder: "Enter number"
|
|
105769
105821
|
},
|
|
@@ -105844,9 +105896,10 @@ var es_ES_default = {
|
|
|
105844
105896
|
exporting: "Exportando...",
|
|
105845
105897
|
filters: {
|
|
105846
105898
|
filters: "Filtros",
|
|
105847
|
-
|
|
105899
|
+
allFilters: "All Filters",
|
|
105848
105900
|
clearAllFilters: "Borrar todos los filtros",
|
|
105849
105901
|
close: "Cerrar",
|
|
105902
|
+
removeFilterToken: "Eliminar %{name}",
|
|
105850
105903
|
locationFilter: {
|
|
105851
105904
|
selectAll: "Seleccionar todo",
|
|
105852
105905
|
includeSublocations: "Incluir sububicaciones",
|
|
@@ -105884,6 +105937,7 @@ var es_ES_default = {
|
|
|
105884
105937
|
secondary: "Cargando informaci\xF3n; gracias por su paciencia."
|
|
105885
105938
|
},
|
|
105886
105939
|
menuOptions: {
|
|
105940
|
+
ariaMenuColumn: "Pulse Alt/Opci\xF3n\xA0+\xA0flecha hacia abajo para abrir el men\xFA de la columna.",
|
|
105887
105941
|
sortMenuItem: {
|
|
105888
105942
|
label: "Ordenar por esta columna",
|
|
105889
105943
|
sortAscItem: "Ordenar columna en ascendente",
|
|
@@ -105938,6 +105992,9 @@ var es_ES_default = {
|
|
|
105938
105992
|
currencyCell: {
|
|
105939
105993
|
placeholder: "Introducir moneda"
|
|
105940
105994
|
},
|
|
105995
|
+
linkCell: {
|
|
105996
|
+
externalLabel: "Open external link"
|
|
105997
|
+
},
|
|
105941
105998
|
numberCell: {
|
|
105942
105999
|
placeholder: "Introducir n\xFAmero"
|
|
105943
106000
|
},
|
|
@@ -106018,9 +106075,10 @@ var es_default = {
|
|
|
106018
106075
|
exporting: "Exportando...",
|
|
106019
106076
|
filters: {
|
|
106020
106077
|
filters: "Filtros",
|
|
106021
|
-
|
|
106078
|
+
allFilters: "All Filters",
|
|
106022
106079
|
clearAllFilters: "Restablecer todos los filtros",
|
|
106023
106080
|
close: "Cerrar",
|
|
106081
|
+
removeFilterToken: "Eliminar %{name}",
|
|
106024
106082
|
locationFilter: {
|
|
106025
106083
|
selectAll: "Seleccionar todo",
|
|
106026
106084
|
includeSublocations: "Incluir sububicaciones",
|
|
@@ -106058,6 +106116,7 @@ var es_default = {
|
|
|
106058
106116
|
secondary: "Cargando informaci\xF3n. Gracias por su paciencia."
|
|
106059
106117
|
},
|
|
106060
106118
|
menuOptions: {
|
|
106119
|
+
ariaMenuColumn: "Pulse Alt/Opci\xF3n + Flecha hacia abajo para abrir el men\xFA de columnas.",
|
|
106061
106120
|
sortMenuItem: {
|
|
106062
106121
|
label: "Ordenar por esta columna",
|
|
106063
106122
|
sortAscItem: "Ordenar columna - Ascendente",
|
|
@@ -106112,6 +106171,9 @@ var es_default = {
|
|
|
106112
106171
|
currencyCell: {
|
|
106113
106172
|
placeholder: "Ingresar moneda"
|
|
106114
106173
|
},
|
|
106174
|
+
linkCell: {
|
|
106175
|
+
externalLabel: "Open external link"
|
|
106176
|
+
},
|
|
106115
106177
|
numberCell: {
|
|
106116
106178
|
placeholder: "Ingresar n\xFAmero"
|
|
106117
106179
|
},
|
|
@@ -106164,7 +106226,7 @@ var fr_CA_default = {
|
|
|
106164
106226
|
title: "Il n'y a aucun item \xE0 afficher pour le moment",
|
|
106165
106227
|
itemsTitle: "Il n'y a pas de %{itemsLabel} \xE0 afficher pour le moment",
|
|
106166
106228
|
tooltip: "Le bouton %{featureName} sera activ\xE9 une fois que vous aurez ajout\xE9 des informations au %{tableName}",
|
|
106167
|
-
searchTooltip: "La recherche sera activ\xE9e une fois que vous aurez ajout\xE9
|
|
106229
|
+
searchTooltip: "La recherche sera activ\xE9e une fois que vous aurez ajout\xE9 des informations au %{tableName}",
|
|
106168
106230
|
featureFilter: "Filtre",
|
|
106169
106231
|
featureQuickFilter: "Filtre rapide",
|
|
106170
106232
|
featureGroupBy: "Regrouper par",
|
|
@@ -106192,9 +106254,10 @@ var fr_CA_default = {
|
|
|
106192
106254
|
exporting: "Exportation ...",
|
|
106193
106255
|
filters: {
|
|
106194
106256
|
filters: "Filtres",
|
|
106195
|
-
|
|
106257
|
+
allFilters: "All Filters",
|
|
106196
106258
|
clearAllFilters: "Effacer tous les filtres",
|
|
106197
106259
|
close: "Fermer",
|
|
106260
|
+
removeFilterToken: "Retirer %{name}",
|
|
106198
106261
|
locationFilter: {
|
|
106199
106262
|
selectAll: "S\xE9lectionner tout",
|
|
106200
106263
|
includeSublocations: "Inclure les sous-lieux",
|
|
@@ -106232,6 +106295,7 @@ var fr_CA_default = {
|
|
|
106232
106295
|
secondary: "Chargement des informations, merci pour votre patience."
|
|
106233
106296
|
},
|
|
106234
106297
|
menuOptions: {
|
|
106298
|
+
ariaMenuColumn: "Appuyez sur Alt/Option\xA0+ Bas pour ouvrir le menu de la colonne.",
|
|
106235
106299
|
sortMenuItem: {
|
|
106236
106300
|
label: "Trier cette colonne",
|
|
106237
106301
|
sortAscItem: "Trier la colonne par ordre croissant",
|
|
@@ -106286,6 +106350,9 @@ var fr_CA_default = {
|
|
|
106286
106350
|
currencyCell: {
|
|
106287
106351
|
placeholder: "Saisir la devise"
|
|
106288
106352
|
},
|
|
106353
|
+
linkCell: {
|
|
106354
|
+
externalLabel: "Open external link"
|
|
106355
|
+
},
|
|
106289
106356
|
numberCell: {
|
|
106290
106357
|
placeholder: "Saisir un num\xE9ro"
|
|
106291
106358
|
},
|
|
@@ -106366,9 +106433,10 @@ var fr_FR_default = {
|
|
|
106366
106433
|
exporting: "Exportation...",
|
|
106367
106434
|
filters: {
|
|
106368
106435
|
filters: "Filtres",
|
|
106369
|
-
|
|
106436
|
+
allFilters: "All Filters",
|
|
106370
106437
|
clearAllFilters: "Effacer tous les filtres",
|
|
106371
106438
|
close: "Fermer",
|
|
106439
|
+
removeFilterToken: "Retirer %{name}",
|
|
106372
106440
|
locationFilter: {
|
|
106373
106441
|
selectAll: "S\xE9lectionner tout",
|
|
106374
106442
|
includeSublocations: "Inclure les sous-lieux",
|
|
@@ -106406,6 +106474,7 @@ var fr_FR_default = {
|
|
|
106406
106474
|
secondary: "Chargement des informations. Merci pour votre patience."
|
|
106407
106475
|
},
|
|
106408
106476
|
menuOptions: {
|
|
106477
|
+
ariaMenuColumn: "Appuyez sur Alt/Option + la fl\xE8che vers le bas pour ouvrir le menu de la colonne.",
|
|
106409
106478
|
sortMenuItem: {
|
|
106410
106479
|
label: "Trier cette colonne",
|
|
106411
106480
|
sortAscItem: "Trier la colonne par ordre croissant",
|
|
@@ -106460,6 +106529,9 @@ var fr_FR_default = {
|
|
|
106460
106529
|
currencyCell: {
|
|
106461
106530
|
placeholder: "Saisir la devise"
|
|
106462
106531
|
},
|
|
106532
|
+
linkCell: {
|
|
106533
|
+
externalLabel: "Open external link"
|
|
106534
|
+
},
|
|
106463
106535
|
numberCell: {
|
|
106464
106536
|
placeholder: "Saisir un num\xE9ro"
|
|
106465
106537
|
},
|
|
@@ -106540,9 +106612,10 @@ var is_IS_default = {
|
|
|
106540
106612
|
exporting: "Flytur \xFAt ...",
|
|
106541
106613
|
filters: {
|
|
106542
106614
|
filters: "S\xEDur",
|
|
106543
|
-
|
|
106615
|
+
allFilters: "All Filters",
|
|
106544
106616
|
clearAllFilters: "Hreinsa allar s\xEDur",
|
|
106545
106617
|
close: "Loka\xF0u",
|
|
106618
|
+
removeFilterToken: "Fjarl\xE6gja %{name}",
|
|
106546
106619
|
locationFilter: {
|
|
106547
106620
|
selectAll: "Velja allt",
|
|
106548
106621
|
includeSublocations: "L\xE1ttu undirlokanir fylgja me\xF0",
|
|
@@ -106580,6 +106653,7 @@ var is_IS_default = {
|
|
|
106580
106653
|
secondary: "Hle\xF0sla uppl\xFDsinga, takk fyrir \xFEolinm\xE6\xF0ina."
|
|
106581
106654
|
},
|
|
106582
106655
|
menuOptions: {
|
|
106656
|
+
ariaMenuColumn: "\xDDttu \xE1 Alt/Option+Down til a\xF0 opna d\xE1lkavalmyndina.",
|
|
106583
106657
|
sortMenuItem: {
|
|
106584
106658
|
label: "Ra\xF0a eftir \xFEessum d\xE1lki",
|
|
106585
106659
|
sortAscItem: "Ra\xF0a d\xE1lki h\xE6kkandi",
|
|
@@ -106634,6 +106708,9 @@ var is_IS_default = {
|
|
|
106634
106708
|
currencyCell: {
|
|
106635
106709
|
placeholder: "Sl\xE1\xF0u inn gjaldmi\xF0il"
|
|
106636
106710
|
},
|
|
106711
|
+
linkCell: {
|
|
106712
|
+
externalLabel: "Open external link"
|
|
106713
|
+
},
|
|
106637
106714
|
numberCell: {
|
|
106638
106715
|
placeholder: "Sl\xE1\xF0u inn n\xFAmer"
|
|
106639
106716
|
},
|
|
@@ -106714,9 +106791,10 @@ var it_IT_default = {
|
|
|
106714
106791
|
exporting: "Esportazione in corso...",
|
|
106715
106792
|
filters: {
|
|
106716
106793
|
filters: "Filtri",
|
|
106717
|
-
|
|
106794
|
+
allFilters: "All Filters",
|
|
106718
106795
|
clearAllFilters: "Cancella tutti i filtri",
|
|
106719
106796
|
close: "Chiudi",
|
|
106797
|
+
removeFilterToken: "Rimuovi %{name}",
|
|
106720
106798
|
locationFilter: {
|
|
106721
106799
|
selectAll: "Seleziona tutto",
|
|
106722
106800
|
includeSublocations: "Includi posizioni secondarie",
|
|
@@ -106754,6 +106832,7 @@ var it_IT_default = {
|
|
|
106754
106832
|
secondary: "Caricamento delle informazioni in corso, grazie per la pazienza."
|
|
106755
106833
|
},
|
|
106756
106834
|
menuOptions: {
|
|
106835
|
+
ariaMenuColumn: "Premere Alt/Opzione+Freccia gi\xF9 per aprire il menu a colonna.",
|
|
106757
106836
|
sortMenuItem: {
|
|
106758
106837
|
label: "Ordina per questa colonna",
|
|
106759
106838
|
sortAscItem: "Ordina colonna (crescente)",
|
|
@@ -106808,6 +106887,9 @@ var it_IT_default = {
|
|
|
106808
106887
|
currencyCell: {
|
|
106809
106888
|
placeholder: "Inserisci valuta"
|
|
106810
106889
|
},
|
|
106890
|
+
linkCell: {
|
|
106891
|
+
externalLabel: "Open external link"
|
|
106892
|
+
},
|
|
106811
106893
|
numberCell: {
|
|
106812
106894
|
placeholder: "Inserisci numero"
|
|
106813
106895
|
},
|
|
@@ -106888,9 +106970,10 @@ var ja_JP_default = {
|
|
|
106888
106970
|
exporting: "\u30A8\u30AF\u30B9\u30DD\u30FC\u30C8\u4E2D...",
|
|
106889
106971
|
filters: {
|
|
106890
106972
|
filters: "\u30D5\u30A3\u30EB\u30BF",
|
|
106891
|
-
|
|
106973
|
+
allFilters: "All Filters",
|
|
106892
106974
|
clearAllFilters: "\u3059\u3079\u3066\u306E\u30D5\u30A3\u30EB\u30BF\u3092\u6D88\u53BB",
|
|
106893
106975
|
close: "\u7D42\u4E86",
|
|
106976
|
+
removeFilterToken: "%{name}\u524A\u9664",
|
|
106894
106977
|
locationFilter: {
|
|
106895
106978
|
selectAll: "\u3059\u3079\u3066\u9078\u629E",
|
|
106896
106979
|
includeSublocations: "\u30B5\u30D6\u30ED\u30B1\u30FC\u30B7\u30E7\u30F3\u3092\u542B\u3081\u308B",
|
|
@@ -106928,6 +107011,7 @@ var ja_JP_default = {
|
|
|
106928
107011
|
secondary: "\u60C5\u5831\u3092\u8AAD\u307F\u8FBC\u3093\u3067\u3044\u307E\u3059\u3002\u3057\u3070\u3089\u304F\u304A\u5F85\u3061\u304F\u3060\u3055\u3044\u3002"
|
|
106929
107012
|
},
|
|
106930
107013
|
menuOptions: {
|
|
107014
|
+
ariaMenuColumn: "Alt/Option\u30AD\u30FC\u3092\u62BC\u3057\u306A\u304C\u3089\u4E0B\u77E2\u5370\u30AD\u30FC\u3092\u62BC\u3059\u3068\u3001\u5217\u30E1\u30CB\u30E5\u30FC\u304C\u958B\u304D\u307E\u3059\u3002",
|
|
106931
107015
|
sortMenuItem: {
|
|
106932
107016
|
label: "\u3053\u306E\u5217\u3067\u4E26\u3079\u66FF\u3048\u308B",
|
|
106933
107017
|
sortAscItem: "\u5217\u3092\u6607\u9806\u306B\u4E26\u3079\u66FF\u3048\u308B",
|
|
@@ -106982,6 +107066,9 @@ var ja_JP_default = {
|
|
|
106982
107066
|
currencyCell: {
|
|
106983
107067
|
placeholder: "\u901A\u8CA8\u3092\u5165\u529B"
|
|
106984
107068
|
},
|
|
107069
|
+
linkCell: {
|
|
107070
|
+
externalLabel: "Open external link"
|
|
107071
|
+
},
|
|
106985
107072
|
numberCell: {
|
|
106986
107073
|
placeholder: "\u756A\u53F7\u3092\u5165\u529B"
|
|
106987
107074
|
},
|
|
@@ -107026,7 +107113,7 @@ var nb_NO_default = {
|
|
|
107026
107113
|
emptyState: {
|
|
107027
107114
|
noFilteredResults: {
|
|
107028
107115
|
description: "Check your spelling and filter options, or search for a different keyword.",
|
|
107029
|
-
title: "
|
|
107116
|
+
title: "Ingen enheter samsvarer med s\xF8ket ditt",
|
|
107030
107117
|
itemsTitle: "No %{itemsLabel} Match Your Search"
|
|
107031
107118
|
},
|
|
107032
107119
|
noResults: {
|
|
@@ -107045,7 +107132,7 @@ var nb_NO_default = {
|
|
|
107045
107132
|
bulkActions: {
|
|
107046
107133
|
apply: "Apply",
|
|
107047
107134
|
bulkEdit: "Bulk Edit",
|
|
107048
|
-
cancel: "
|
|
107135
|
+
cancel: "Avbryt",
|
|
107049
107136
|
editValues: "Edit Values",
|
|
107050
107137
|
error: "Sorry, the items couldn't be updated. Try again.",
|
|
107051
107138
|
placeholderForField: "Enter %{fieldName}",
|
|
@@ -107057,23 +107144,24 @@ var nb_NO_default = {
|
|
|
107057
107144
|
},
|
|
107058
107145
|
success: "The items were successfully updated.",
|
|
107059
107146
|
one: "item",
|
|
107060
|
-
many: "
|
|
107147
|
+
many: "Enheter"
|
|
107061
107148
|
},
|
|
107062
107149
|
exporting: "Exporting...",
|
|
107063
107150
|
filters: {
|
|
107064
|
-
filters: "
|
|
107065
|
-
|
|
107151
|
+
filters: "Filtre",
|
|
107152
|
+
allFilters: "All Filters",
|
|
107066
107153
|
clearAllFilters: "Clear All Filters",
|
|
107067
107154
|
close: "Close",
|
|
107155
|
+
removeFilterToken: "Fjern %{name}",
|
|
107068
107156
|
locationFilter: {
|
|
107069
|
-
selectAll: "
|
|
107157
|
+
selectAll: "Velg alle",
|
|
107070
107158
|
includeSublocations: "Include sublocations",
|
|
107071
107159
|
searchLocations: "Search locations",
|
|
107072
107160
|
locations: "Locations"
|
|
107073
107161
|
},
|
|
107074
107162
|
numberFilter: {
|
|
107075
107163
|
labels: {
|
|
107076
|
-
and: "
|
|
107164
|
+
and: "OG",
|
|
107077
107165
|
input_placeholder: "Enter Value",
|
|
107078
107166
|
placeholder: "Select an item"
|
|
107079
107167
|
},
|
|
@@ -107102,11 +107190,15 @@ var nb_NO_default = {
|
|
|
107102
107190
|
secondary: "Information loading, thanks for your patience."
|
|
107103
107191
|
},
|
|
107104
107192
|
menuOptions: {
|
|
107193
|
+
ariaMenuColumn: "Trykk p\xE5 Alt/Option og pil ned for \xE5 \xE5pne kolonnemenyen.",
|
|
107105
107194
|
sortMenuItem: {
|
|
107106
107195
|
label: "Sort By This Column",
|
|
107107
107196
|
sortAscItem: "Sort Column Ascending",
|
|
107108
107197
|
sortDescItem: "Sort Column Descending",
|
|
107109
|
-
sortResetItem: "Column Not Sorted"
|
|
107198
|
+
sortResetItem: "Column Not Sorted",
|
|
107199
|
+
sortAscending: "sorted ascending",
|
|
107200
|
+
sortDescending: "sorted descending",
|
|
107201
|
+
sortCleared: "Sorting cleared"
|
|
107110
107202
|
},
|
|
107111
107203
|
expandAllGroups: "Expand All Groups",
|
|
107112
107204
|
collapseAllGroups: "Collapse All Groups",
|
|
@@ -107122,7 +107214,7 @@ var nb_NO_default = {
|
|
|
107122
107214
|
groupBy: "Group by {{label}}"
|
|
107123
107215
|
},
|
|
107124
107216
|
grandTotals: "Grand Totals",
|
|
107125
|
-
search: "
|
|
107217
|
+
search: "S\xF8k",
|
|
107126
107218
|
subtotals: "Subtotals",
|
|
107127
107219
|
tableSettings: {
|
|
107128
107220
|
configureColumns: "Configure Columns",
|
|
@@ -107133,7 +107225,7 @@ var nb_NO_default = {
|
|
|
107133
107225
|
large: "Large",
|
|
107134
107226
|
tableSettings: "Table Settings",
|
|
107135
107227
|
groupBy: "Group by:",
|
|
107136
|
-
reset: "
|
|
107228
|
+
reset: "Tilbakestill",
|
|
107137
107229
|
selectColumnGroup: "Select a column to group",
|
|
107138
107230
|
configure: "Configure"
|
|
107139
107231
|
},
|
|
@@ -107153,6 +107245,9 @@ var nb_NO_default = {
|
|
|
107153
107245
|
currencyCell: {
|
|
107154
107246
|
placeholder: "Enter currency"
|
|
107155
107247
|
},
|
|
107248
|
+
linkCell: {
|
|
107249
|
+
externalLabel: "Open external link"
|
|
107250
|
+
},
|
|
107156
107251
|
numberCell: {
|
|
107157
107252
|
placeholder: "Enter number"
|
|
107158
107253
|
},
|
|
@@ -107170,8 +107265,8 @@ var nb_NO_default = {
|
|
|
107170
107265
|
},
|
|
107171
107266
|
booleanCell: {
|
|
107172
107267
|
options: {
|
|
107173
|
-
yes: "
|
|
107174
|
-
no: "
|
|
107268
|
+
yes: "Ja",
|
|
107269
|
+
no: "Nei"
|
|
107175
107270
|
}
|
|
107176
107271
|
}
|
|
107177
107272
|
},
|
|
@@ -107233,9 +107328,10 @@ var pl_PL_default = {
|
|
|
107233
107328
|
exporting: "Eksportowanie...",
|
|
107234
107329
|
filters: {
|
|
107235
107330
|
filters: "Filtry",
|
|
107236
|
-
|
|
107331
|
+
allFilters: "All Filters",
|
|
107237
107332
|
clearAllFilters: "Wyczy\u015B\u0107 wszystkie filtry",
|
|
107238
107333
|
close: "Zamknij",
|
|
107334
|
+
removeFilterToken: "Usu\u0144 %{name}",
|
|
107239
107335
|
locationFilter: {
|
|
107240
107336
|
selectAll: "Zaznacz wszystkie",
|
|
107241
107337
|
includeSublocations: "Uwzgl\u0119dnij lokalizacje podrz\u0119dne",
|
|
@@ -107273,6 +107369,7 @@ var pl_PL_default = {
|
|
|
107273
107369
|
secondary: "Trwa \u0142adowanie informacji. Prosimy o cierpliwo\u015B\u0107."
|
|
107274
107370
|
},
|
|
107275
107371
|
menuOptions: {
|
|
107372
|
+
ariaMenuColumn: "Naci\u015Bnij klawisze Alt/Option + strza\u0142ka w d\xF3\u0142, aby otworzy\u0107 menu kolumny.",
|
|
107276
107373
|
sortMenuItem: {
|
|
107277
107374
|
label: "Sortuj wed\u0142ug tej kolumny",
|
|
107278
107375
|
sortAscItem: "Sortuj kolumny rosn\u0105co",
|
|
@@ -107327,6 +107424,9 @@ var pl_PL_default = {
|
|
|
107327
107424
|
currencyCell: {
|
|
107328
107425
|
placeholder: "Wprowad\u017A walut\u0119"
|
|
107329
107426
|
},
|
|
107427
|
+
linkCell: {
|
|
107428
|
+
externalLabel: "Open external link"
|
|
107429
|
+
},
|
|
107330
107430
|
numberCell: {
|
|
107331
107431
|
placeholder: "Wprowad\u017A numer"
|
|
107332
107432
|
},
|
|
@@ -107407,6 +107507,7 @@ var pseudo_default = {
|
|
|
107407
107507
|
exporting: "[\u1E16\u1E16\u1E16\u1E8B\u01A5\u01FF\u0159\u0167\u012B\u019E\u0260.....]",
|
|
107408
107508
|
filters: {
|
|
107409
107509
|
filters: "[\u0191\u0191\u012B\u0140\u0167\u1E17\u0159\u015F\u015F]",
|
|
107510
|
+
allFilters: "[\u0226\u0226\u0226\u0140\u0140 \xB7 \u0191\u012B\u0140\u0167\u1E17\u0159\u015F\u015F\u015F]",
|
|
107410
107511
|
moreFilters: "[\u1E3E\u1E3E\u1E3E\u01FF\u0159\u1E17 \xB7 \u0191\u012B\u0140\u0167\u1E17\u0159\u015F\u015F\u015F]",
|
|
107411
107512
|
clearAllFilters: "[\u0187\u0187\u0187\u0187\u0140\u1E17\u0227\u0159 \xB7 \u0226\u0140\u0140 \xB7 \u0191\u012B\u0140\u0167\u1E17\u0159\u015F\u015F\u015F\u015F]",
|
|
107412
107513
|
close: "[\u0187\u0140\u01FF\u015F\u1E17]",
|
|
@@ -107426,6 +107527,7 @@ var pseudo_default = {
|
|
|
107426
107527
|
options: {
|
|
107427
107528
|
any_value: "[\u0226\u0226\u019E\u1E8F \xB7 \u1E7C\u0227\u0140\u016D\u1E17\u1E17]",
|
|
107428
107529
|
is_between: "[\u012A\u012A\u015F \xB7 \u0181\u1E17\u0167\u1E87\u1E17\u1E17\u019E\u019E]",
|
|
107530
|
+
is_equal_to: "[\u012A\u012A\u012A\u015F \xB7 \u1E16\u024B\u016D\u0227\u0140 \xB7 \u0166\u01FF\u01FF\u01FF]",
|
|
107429
107531
|
greater_than: "[\u012A\u012A\u012A\u015F \xB7 \u0193\u0159\u1E17\u0227\u0167\u1E17\u0159 \xB7 \u0166\u0127\u0227\u019E\u019E\u019E]",
|
|
107430
107532
|
greater_than_equal_to: "[\u012A\u012A\u012A\u012A\u012A\u012A\u015F \xB7 \u0193\u0159\u1E17\u0227\u0167\u1E17\u0159 \xB7 \u0166\u0127\u0227\u019E \xB7 \u01FF\u0159 \xB7 \u1E16\u024B\u016D\u0227\u0140 \xB7 \u0166\u01FF\u01FF\u01FF\u01FF\u01FF\u01FF]",
|
|
107431
107533
|
less_than: "[\u012A\u012A\u012A\u015F \xB7 \u013F\u1E17\u015F\u015F \xB7 \u0166\u0127\u0227\u019E\u019E\u019E]",
|
|
@@ -107503,6 +107605,9 @@ var pseudo_default = {
|
|
|
107503
107605
|
currencyCell: {
|
|
107504
107606
|
placeholder: "[\u1E16\u1E16\u1E16\u019E\u0167\u1E17\u0159 \xB7 \u0188\u016D\u0159\u0159\u1E17\u019E\u0188\u1E8F\u1E8F\u1E8F]"
|
|
107505
107607
|
},
|
|
107608
|
+
linkCell: {
|
|
107609
|
+
externalLabel: "[\u01FE\u01FE\u01FE\u01FE\u01A5\u1E17\u019E \xB7 \u1E17\u1E8B\u0167\u1E17\u0159\u019E\u0227\u0140 \xB7 \u0140\u012B\u019E\u0137\u0137\u0137\u0137]"
|
|
107610
|
+
},
|
|
107506
107611
|
numberCell: {
|
|
107507
107612
|
placeholder: "[\u1E16\u1E16\u1E16\u019E\u0167\u1E17\u0159 \xB7 \u019E\u016D\u1E3F\u0180\u1E17\u0159\u0159\u0159]"
|
|
107508
107613
|
},
|
|
@@ -107583,9 +107688,10 @@ var pt_BR_default = {
|
|
|
107583
107688
|
exporting: "Exportando...",
|
|
107584
107689
|
filters: {
|
|
107585
107690
|
filters: "Filtros",
|
|
107586
|
-
|
|
107691
|
+
allFilters: "All Filters",
|
|
107587
107692
|
clearAllFilters: "Limpar Todos os Filtros",
|
|
107588
107693
|
close: "Fechar",
|
|
107694
|
+
removeFilterToken: "Remover %{name}",
|
|
107589
107695
|
locationFilter: {
|
|
107590
107696
|
selectAll: "Selecionar tudo",
|
|
107591
107697
|
includeSublocations: "Incluir Sublocais",
|
|
@@ -107623,6 +107729,7 @@ var pt_BR_default = {
|
|
|
107623
107729
|
secondary: "As informa\xE7\xF5es est\xE3o carregando, obrigado pela paci\xEAncia."
|
|
107624
107730
|
},
|
|
107625
107731
|
menuOptions: {
|
|
107732
|
+
ariaMenuColumn: "Pressione Alt/Option + Seta para baixo para abrir o menu de colunas.",
|
|
107626
107733
|
sortMenuItem: {
|
|
107627
107734
|
label: "Classificar por Esta Coluna",
|
|
107628
107735
|
sortAscItem: "Classificar Coluna em Ordem Crescente",
|
|
@@ -107677,6 +107784,9 @@ var pt_BR_default = {
|
|
|
107677
107784
|
currencyCell: {
|
|
107678
107785
|
placeholder: "Insira moeda"
|
|
107679
107786
|
},
|
|
107787
|
+
linkCell: {
|
|
107788
|
+
externalLabel: "Open external link"
|
|
107789
|
+
},
|
|
107680
107790
|
numberCell: {
|
|
107681
107791
|
placeholder: "Inserir n\xFAmeros"
|
|
107682
107792
|
},
|
|
@@ -107729,7 +107839,7 @@ var pt_PT_default = {
|
|
|
107729
107839
|
title: "N\xE3o h\xE1 itens para apresentar neste momento",
|
|
107730
107840
|
itemsTitle: "N\xE3o h\xE1 %{itemsLabel} para apresentar neste momento",
|
|
107731
107841
|
tooltip: "O bot\xE3o %{featureName} ser\xE1 ativado quando adicionar informa\xE7\xF5es \xE0 tabela %{tableName}",
|
|
107732
|
-
searchTooltip: "A pesquisa ser\xE1 ativada quando adicionar informa\xE7\xF5es
|
|
107842
|
+
searchTooltip: "A pesquisa ser\xE1 ativada quando adicionar informa\xE7\xF5es a %{tableName}",
|
|
107733
107843
|
featureFilter: "Filtro",
|
|
107734
107844
|
featureQuickFilter: "Filtro r\xE1pido",
|
|
107735
107845
|
featureGroupBy: "Agrupar por",
|
|
@@ -107757,9 +107867,10 @@ var pt_PT_default = {
|
|
|
107757
107867
|
exporting: "A exportar...",
|
|
107758
107868
|
filters: {
|
|
107759
107869
|
filters: "Filtros",
|
|
107760
|
-
|
|
107870
|
+
allFilters: "All Filters",
|
|
107761
107871
|
clearAllFilters: "Apagar todos os filtros",
|
|
107762
107872
|
close: "Fechar",
|
|
107873
|
+
removeFilterToken: "Remover %{name}",
|
|
107763
107874
|
locationFilter: {
|
|
107764
107875
|
selectAll: "Selecionar tudo",
|
|
107765
107876
|
includeSublocations: "Incluir locais secund\xE1rios",
|
|
@@ -107797,6 +107908,7 @@ var pt_PT_default = {
|
|
|
107797
107908
|
secondary: "A carregar informa\xE7\xF5es. Agradecemos a sua paci\xEAncia."
|
|
107798
107909
|
},
|
|
107799
107910
|
menuOptions: {
|
|
107911
|
+
ariaMenuColumn: "Pressionar Alt/Op\xE7\xE3o + Seta para baixo para abrir o menu da coluna.",
|
|
107800
107912
|
sortMenuItem: {
|
|
107801
107913
|
label: "Ordenar por esta coluna",
|
|
107802
107914
|
sortAscItem: "Ordenar coluna por ordem ascendente",
|
|
@@ -107851,6 +107963,9 @@ var pt_PT_default = {
|
|
|
107851
107963
|
currencyCell: {
|
|
107852
107964
|
placeholder: "Introduzir moeda"
|
|
107853
107965
|
},
|
|
107966
|
+
linkCell: {
|
|
107967
|
+
externalLabel: "Open external link"
|
|
107968
|
+
},
|
|
107854
107969
|
numberCell: {
|
|
107855
107970
|
placeholder: "Introduzir n\xFAmero"
|
|
107856
107971
|
},
|
|
@@ -107931,9 +108046,10 @@ var th_TH_default = {
|
|
|
107931
108046
|
exporting: "\u0E01\u0E33\u0E25\u0E31\u0E07\u0E2A\u0E48\u0E07\u0E2D\u0E2D\u0E01...",
|
|
107932
108047
|
filters: {
|
|
107933
108048
|
filters: "\u0E15\u0E31\u0E27\u0E01\u0E23\u0E2D\u0E07",
|
|
107934
|
-
|
|
108049
|
+
allFilters: "All Filters",
|
|
107935
108050
|
clearAllFilters: "\u0E25\u0E49\u0E32\u0E07\u0E15\u0E31\u0E27\u0E01\u0E23\u0E2D\u0E07\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14",
|
|
107936
108051
|
close: "\u0E1B\u0E34\u0E14",
|
|
108052
|
+
removeFilterToken: "\u0E25\u0E1A %{name}",
|
|
107937
108053
|
locationFilter: {
|
|
107938
108054
|
selectAll: "\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14",
|
|
107939
108055
|
includeSublocations: "\u0E23\u0E27\u0E21\u0E15\u0E33\u0E41\u0E2B\u0E19\u0E48\u0E07\u0E22\u0E48\u0E2D\u0E22",
|
|
@@ -107971,6 +108087,7 @@ var th_TH_default = {
|
|
|
107971
108087
|
secondary: "\u0E01\u0E33\u0E25\u0E31\u0E07\u0E42\u0E2B\u0E25\u0E14\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25 \u0E02\u0E2D\u0E1A\u0E04\u0E38\u0E13\u0E17\u0E35\u0E48\u0E2D\u0E14\u0E17\u0E19\u0E23\u0E2D"
|
|
107972
108088
|
},
|
|
107973
108089
|
menuOptions: {
|
|
108090
|
+
ariaMenuColumn: "\u0E01\u0E14\u0E1B\u0E38\u0E48\u0E21 Alt/Option+Down \u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E40\u0E1B\u0E34\u0E14\u0E40\u0E21\u0E19\u0E39\u0E04\u0E2D\u0E25\u0E31\u0E21\u0E19\u0E4C",
|
|
107974
108091
|
sortMenuItem: {
|
|
107975
108092
|
label: "\u0E08\u0E31\u0E14\u0E40\u0E23\u0E35\u0E22\u0E07\u0E15\u0E32\u0E21\u0E04\u0E2D\u0E25\u0E31\u0E21\u0E19\u0E4C\u0E19\u0E35\u0E49",
|
|
107976
108093
|
sortAscItem: "\u0E08\u0E31\u0E14\u0E40\u0E23\u0E35\u0E22\u0E07\u0E04\u0E2D\u0E25\u0E31\u0E21\u0E19\u0E4C\u0E08\u0E32\u0E01\u0E19\u0E49\u0E2D\u0E22\u0E44\u0E1B\u0E21\u0E32\u0E01",
|
|
@@ -108025,6 +108142,9 @@ var th_TH_default = {
|
|
|
108025
108142
|
currencyCell: {
|
|
108026
108143
|
placeholder: "\u0E1B\u0E49\u0E2D\u0E19\u0E2A\u0E01\u0E38\u0E25\u0E40\u0E07\u0E34\u0E19"
|
|
108027
108144
|
},
|
|
108145
|
+
linkCell: {
|
|
108146
|
+
externalLabel: "Open external link"
|
|
108147
|
+
},
|
|
108028
108148
|
numberCell: {
|
|
108029
108149
|
placeholder: "\u0E1B\u0E49\u0E2D\u0E19\u0E2B\u0E21\u0E32\u0E22\u0E40\u0E25\u0E02"
|
|
108030
108150
|
},
|
|
@@ -108105,9 +108225,10 @@ var zh_SG_default = {
|
|
|
108105
108225
|
exporting: "\u6B63\u5728\u5BFC\u51FA...",
|
|
108106
108226
|
filters: {
|
|
108107
108227
|
filters: "\u7B5B\u9009\u5668",
|
|
108108
|
-
|
|
108228
|
+
allFilters: "All Filters",
|
|
108109
108229
|
clearAllFilters: "\u6E05\u9664\u6240\u6709\u7B5B\u9009\u5668",
|
|
108110
108230
|
close: "\u5173\u95ED",
|
|
108231
|
+
removeFilterToken: "\u79FB\u9664 %{name}",
|
|
108111
108232
|
locationFilter: {
|
|
108112
108233
|
selectAll: "\u5168\u9009",
|
|
108113
108234
|
includeSublocations: "\u5305\u62EC\u5B50\u5730\u70B9",
|
|
@@ -108145,6 +108266,7 @@ var zh_SG_default = {
|
|
|
108145
108266
|
secondary: "\u4FE1\u606F\u52A0\u8F7D\u4E2D\uFF0C\u8BF7\u7A0D\u7B49\u7247\u523B\u3002"
|
|
108146
108267
|
},
|
|
108147
108268
|
menuOptions: {
|
|
108269
|
+
ariaMenuColumn: "\u6309\u201CAlt/Option + \u5411\u4E0B\u7BAD\u5934\u952E\u201D\u6253\u5F00\u5217\u83DC\u5355\u3002",
|
|
108148
108270
|
sortMenuItem: {
|
|
108149
108271
|
label: "\u6309\u6B64\u5217\u6392\u5E8F",
|
|
108150
108272
|
sortAscItem: "\u6309\u5347\u5E8F\u5BF9\u5217\u6392\u5E8F",
|
|
@@ -108199,6 +108321,9 @@ var zh_SG_default = {
|
|
|
108199
108321
|
currencyCell: {
|
|
108200
108322
|
placeholder: "\u8F93\u5165\u8D27\u5E01"
|
|
108201
108323
|
},
|
|
108324
|
+
linkCell: {
|
|
108325
|
+
externalLabel: "Open external link"
|
|
108326
|
+
},
|
|
108202
108327
|
numberCell: {
|
|
108203
108328
|
placeholder: "\u8F93\u5165\u6570\u5B57"
|
|
108204
108329
|
},
|
|
@@ -108279,9 +108404,10 @@ var zh_TW_default = {
|
|
|
108279
108404
|
exporting: "\u532F\u51FA\u4E2D\u2026\u2026",
|
|
108280
108405
|
filters: {
|
|
108281
108406
|
filters: "\u7BE9\u9078\u689D\u4EF6",
|
|
108282
|
-
|
|
108407
|
+
allFilters: "All Filters",
|
|
108283
108408
|
clearAllFilters: "\u6E05\u9664\u6240\u6709\u7BE9\u9078\u689D\u4EF6",
|
|
108284
108409
|
close: "\u95DC\u9589",
|
|
108410
|
+
removeFilterToken: "\u79FB\u9664\u300C%{name}\u300D",
|
|
108285
108411
|
locationFilter: {
|
|
108286
108412
|
selectAll: "\u5168\u90E8\u9078\u53D6",
|
|
108287
108413
|
includeSublocations: "\u5305\u62EC\u5B50\u4F4D\u7F6E",
|
|
@@ -108319,6 +108445,7 @@ var zh_TW_default = {
|
|
|
108319
108445
|
secondary: "\u6B63\u5728\u8F09\u5165\u8CC7\u8A0A\uFF0C\u611F\u8B1D\u60A8\u7684\u8010\u5FC3\u7B49\u5019\u3002"
|
|
108320
108446
|
},
|
|
108321
108447
|
menuOptions: {
|
|
108448
|
+
ariaMenuColumn: "\u6309\u4E0B Alt/Option+Down \u958B\u555F\u6B04\u4F4D\u9078\u55AE\u3002",
|
|
108322
108449
|
sortMenuItem: {
|
|
108323
108450
|
label: "\u4F9D\u6B64\u6B04\u4F4D\u6392\u5E8F",
|
|
108324
108451
|
sortAscItem: "\u905E\u589E\u6392\u5E8F\u6B04\u4F4D",
|
|
@@ -108373,6 +108500,9 @@ var zh_TW_default = {
|
|
|
108373
108500
|
currencyCell: {
|
|
108374
108501
|
placeholder: "\u8F38\u5165\u8CA8\u5E63"
|
|
108375
108502
|
},
|
|
108503
|
+
linkCell: {
|
|
108504
|
+
externalLabel: "Open external link"
|
|
108505
|
+
},
|
|
108376
108506
|
numberCell: {
|
|
108377
108507
|
placeholder: "\u8F38\u5165\u6578\u5B57"
|
|
108378
108508
|
},
|
|
@@ -111727,6 +111857,23 @@ var getSuperSelectFilterPreset = (columnDefinition) => {
|
|
|
111727
111857
|
} : void 0;
|
|
111728
111858
|
return {
|
|
111729
111859
|
components: {
|
|
111860
|
+
Clear: () => {
|
|
111861
|
+
const ctx = UNSAFE_useSuperSelectContext();
|
|
111862
|
+
const I18n = useI18nContext();
|
|
111863
|
+
return /* @__PURE__ */ React80.createElement(
|
|
111864
|
+
Button,
|
|
111865
|
+
{
|
|
111866
|
+
...ctx.props.clear(),
|
|
111867
|
+
"aria-label": I18n.t("dataTable.filters.removeFilterToken", {
|
|
111868
|
+
name: filterName
|
|
111869
|
+
}),
|
|
111870
|
+
size: "sm",
|
|
111871
|
+
variant: "tertiary",
|
|
111872
|
+
disabled: ctx.config.disabled,
|
|
111873
|
+
icon: /* @__PURE__ */ React80.createElement(Clear, null)
|
|
111874
|
+
}
|
|
111875
|
+
);
|
|
111876
|
+
},
|
|
111730
111877
|
Label: React80.forwardRef(() => {
|
|
111731
111878
|
const ctx = UNSAFE_useSuperSelectContext();
|
|
111732
111879
|
const isValueEmpty = ["", null, void 0].includes(
|
|
@@ -112145,7 +112292,7 @@ var SingleSelectQuickFilterRenderer = (props) => {
|
|
|
112145
112292
|
return /* @__PURE__ */ React80.createElement(ClientSideSingleSelectQuickFilter, { ...props });
|
|
112146
112293
|
};
|
|
112147
112294
|
var SingleSelectQuickFilterRenderer_default = SingleSelectQuickFilterRenderer;
|
|
112148
|
-
var FiltersPanelToggleButton = ({
|
|
112295
|
+
var FiltersPanelToggleButton = ({ hasDefinedFilters }) => {
|
|
112149
112296
|
const I18n = useI18nContext();
|
|
112150
112297
|
const { contextPanel } = useInternalTableContext();
|
|
112151
112298
|
const hasNoContent = useTableHasNoContent();
|
|
@@ -112173,34 +112320,22 @@ var FiltersPanelToggleButton = ({ hasSelectedFilters, hasDefinedFilters }) => {
|
|
|
112173
112320
|
},
|
|
112174
112321
|
selected: contextPanel.content === "filters"
|
|
112175
112322
|
},
|
|
112176
|
-
|
|
112323
|
+
I18n.t("dataTable.filters.allFilters")
|
|
112177
112324
|
)
|
|
112178
112325
|
);
|
|
112179
112326
|
};
|
|
112180
112327
|
var ServerSideFiltersPanelToggleButton = () => {
|
|
112181
112328
|
const {
|
|
112182
|
-
filterStorage: { hasDefinedFilters
|
|
112329
|
+
filterStorage: { hasDefinedFilters }
|
|
112183
112330
|
} = useInternalTableContext();
|
|
112184
|
-
return /* @__PURE__ */ React80.createElement(
|
|
112185
|
-
FiltersPanelToggleButton,
|
|
112186
|
-
{
|
|
112187
|
-
hasDefinedFilters,
|
|
112188
|
-
hasSelectedFilters
|
|
112189
|
-
}
|
|
112190
|
-
);
|
|
112331
|
+
return /* @__PURE__ */ React80.createElement(FiltersPanelToggleButton, { hasDefinedFilters });
|
|
112191
112332
|
};
|
|
112192
112333
|
var ClientSideFiltersPanelToggleButton = () => {
|
|
112193
112334
|
const { filterState } = useInternalTableContext();
|
|
112194
|
-
const activeFilters = React80.useMemo(() => {
|
|
112195
|
-
return filterState.allAvailableFilters.filter(({ instance }) => {
|
|
112196
|
-
return instance.isFilterActive();
|
|
112197
|
-
});
|
|
112198
|
-
}, [filterState.allAvailableFilters]);
|
|
112199
112335
|
return /* @__PURE__ */ React80.createElement(
|
|
112200
112336
|
FiltersPanelToggleButton,
|
|
112201
112337
|
{
|
|
112202
|
-
hasDefinedFilters: filterState.allAvailableFilters.length > 0
|
|
112203
|
-
hasSelectedFilters: activeFilters.length > 0
|
|
112338
|
+
hasDefinedFilters: filterState.allAvailableFilters.length > 0
|
|
112204
112339
|
}
|
|
112205
112340
|
);
|
|
112206
112341
|
};
|