@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/legacy/index.js
CHANGED
|
@@ -8040,10 +8040,10 @@ var Renderer = ({
|
|
|
8040
8040
|
if (rowPinned) {
|
|
8041
8041
|
return null;
|
|
8042
8042
|
}
|
|
8043
|
-
return /* @__PURE__ */ React80.createElement(FlexList, { justifyContent: "center", alignItems: "center", size: "xs" }, buttons.map((
|
|
8044
|
-
|
|
8043
|
+
return /* @__PURE__ */ React80.createElement(FlexList, { justifyContent: "center", alignItems: "center", size: "xs" }, buttons.map((Button7) => /* @__PURE__ */ React80.createElement(
|
|
8044
|
+
Button7,
|
|
8045
8045
|
{
|
|
8046
|
-
key:
|
|
8046
|
+
key: Button7.displayName,
|
|
8047
8047
|
columnDefinition,
|
|
8048
8048
|
rowPinned,
|
|
8049
8049
|
...props,
|
|
@@ -8385,7 +8385,6 @@ var OptionalDateTimeProvider = ({ timeZone, children }) => {
|
|
|
8385
8385
|
var DateFilterOverlay = React80.forwardRef(
|
|
8386
8386
|
// eslint-disable-next-line complexity
|
|
8387
8387
|
({
|
|
8388
|
-
dateInputSegmentRef,
|
|
8389
8388
|
displayDate,
|
|
8390
8389
|
monthRef,
|
|
8391
8390
|
onSelect,
|
|
@@ -8410,46 +8409,65 @@ var DateFilterOverlay = React80.forwardRef(
|
|
|
8410
8409
|
}
|
|
8411
8410
|
}
|
|
8412
8411
|
const { hide } = UNSAFE_useOverlayTriggerContext();
|
|
8412
|
+
const onBlur = (e) => {
|
|
8413
|
+
const currentTarget = e.currentTarget;
|
|
8414
|
+
requestAnimationFrame(() => {
|
|
8415
|
+
var _a, _b;
|
|
8416
|
+
const activeElement = document.activeElement;
|
|
8417
|
+
if (currentTarget.contains(activeElement) || ((_a = monthRef.current) == null ? void 0 : _a.contains(activeElement)) || ((_b = yearRef.current) == null ? void 0 : _b.contains(activeElement))) {
|
|
8418
|
+
return;
|
|
8419
|
+
}
|
|
8420
|
+
hide(e);
|
|
8421
|
+
});
|
|
8422
|
+
};
|
|
8413
8423
|
function calendarOnSelect(day2) {
|
|
8414
|
-
(dateInputSegmentRef == null ? void 0 : dateInputSegmentRef.current) && dateInputSegmentRef.current.focus();
|
|
8415
8424
|
setDisplayDate(day2);
|
|
8416
8425
|
onSelect(day2);
|
|
8417
8426
|
hide({});
|
|
8418
8427
|
}
|
|
8419
|
-
return /* @__PURE__ */ React80.createElement(
|
|
8420
|
-
|
|
8428
|
+
return /* @__PURE__ */ React80.createElement(
|
|
8429
|
+
Card,
|
|
8421
8430
|
{
|
|
8422
|
-
|
|
8423
|
-
|
|
8431
|
+
"data-qa": "data-table-date-filter-calendar",
|
|
8432
|
+
ref,
|
|
8433
|
+
onBlur,
|
|
8434
|
+
...props
|
|
8424
8435
|
},
|
|
8425
|
-
/* @__PURE__ */ React80.createElement(
|
|
8426
|
-
SegmentedController
|
|
8436
|
+
/* @__PURE__ */ React80.createElement(Flex, { direction: "column" }, selectionType === "either" && /* @__PURE__ */ React80.createElement(Box, { padding: "md", style: { width: "100%" } }, /* @__PURE__ */ React80.createElement(
|
|
8437
|
+
SegmentedController,
|
|
8427
8438
|
{
|
|
8428
|
-
|
|
8429
|
-
|
|
8439
|
+
block: true,
|
|
8440
|
+
"data-qa": "data-table-date-filter-selection-control"
|
|
8430
8441
|
},
|
|
8431
|
-
|
|
8432
|
-
|
|
8433
|
-
|
|
8434
|
-
|
|
8442
|
+
/* @__PURE__ */ React80.createElement(
|
|
8443
|
+
SegmentedController.Segment,
|
|
8444
|
+
{
|
|
8445
|
+
active: selectedValue.type === "single",
|
|
8446
|
+
onClick: () => setSelectionType("single")
|
|
8447
|
+
},
|
|
8448
|
+
I18n.t("dataTable.filterRenders.dateFilter.single")
|
|
8449
|
+
),
|
|
8450
|
+
/* @__PURE__ */ React80.createElement(
|
|
8451
|
+
SegmentedController.Segment,
|
|
8452
|
+
{
|
|
8453
|
+
active: selectedValue.type === "range",
|
|
8454
|
+
onClick: () => setSelectionType("range")
|
|
8455
|
+
},
|
|
8456
|
+
I18n.t("dataTable.filterRenders.dateFilter.range")
|
|
8457
|
+
)
|
|
8458
|
+
)), /* @__PURE__ */ React80.createElement(
|
|
8459
|
+
Calendar,
|
|
8435
8460
|
{
|
|
8436
|
-
|
|
8437
|
-
|
|
8438
|
-
|
|
8439
|
-
|
|
8440
|
-
|
|
8441
|
-
|
|
8442
|
-
|
|
8443
|
-
|
|
8444
|
-
|
|
8445
|
-
|
|
8446
|
-
onNavigate: setDisplayDate,
|
|
8447
|
-
onSelect: calendarOnSelect,
|
|
8448
|
-
selectedEnd: calendarEnd ?? void 0,
|
|
8449
|
-
selectedStart: calendarStart ?? void 0,
|
|
8450
|
-
yearRef
|
|
8451
|
-
}
|
|
8452
|
-
)));
|
|
8461
|
+
displayDate,
|
|
8462
|
+
monthRef,
|
|
8463
|
+
onNavigate: setDisplayDate,
|
|
8464
|
+
onSelect: calendarOnSelect,
|
|
8465
|
+
selectedEnd: calendarEnd ?? void 0,
|
|
8466
|
+
selectedStart: calendarStart ?? void 0,
|
|
8467
|
+
yearRef
|
|
8468
|
+
}
|
|
8469
|
+
))
|
|
8470
|
+
);
|
|
8453
8471
|
}
|
|
8454
8472
|
);
|
|
8455
8473
|
var DateFilterSelect = React80.forwardRef(
|
|
@@ -8477,16 +8495,13 @@ var DateFilterSelect = React80.forwardRef(
|
|
|
8477
8495
|
setDisplayed2(end);
|
|
8478
8496
|
}
|
|
8479
8497
|
}, [position, selectedValue]);
|
|
8480
|
-
const segmentRefs = {
|
|
8481
|
-
segmentThree: React80.useRef(null)
|
|
8482
|
-
};
|
|
8483
8498
|
const clearRef = React80.useRef(null);
|
|
8484
8499
|
const monthRef = React80.useRef(null);
|
|
8485
8500
|
const yearRef = React80.useRef(null);
|
|
8501
|
+
const hideKeys = ["Escape", "Esc"];
|
|
8486
8502
|
const overlay = /* @__PURE__ */ React80.createElement(
|
|
8487
8503
|
DateFilterOverlay,
|
|
8488
8504
|
{
|
|
8489
|
-
dateInputSegmentRef: segmentRefs.segmentThree,
|
|
8490
8505
|
displayDate: displayed,
|
|
8491
8506
|
monthRef,
|
|
8492
8507
|
onSelect: (date) => {
|
|
@@ -8513,13 +8528,18 @@ var DateFilterSelect = React80.forwardRef(
|
|
|
8513
8528
|
clickOutsideIgnoreRefs: [monthRef, yearRef],
|
|
8514
8529
|
overlay,
|
|
8515
8530
|
placement: getPlacement(selectedValue.type, position),
|
|
8516
|
-
ref
|
|
8531
|
+
ref,
|
|
8532
|
+
autoFocus: true,
|
|
8533
|
+
showKeys: [],
|
|
8534
|
+
hideKeys: {
|
|
8535
|
+
overlay: hideKeys,
|
|
8536
|
+
target: hideKeys
|
|
8537
|
+
}
|
|
8517
8538
|
},
|
|
8518
8539
|
/* @__PURE__ */ React80.createElement(
|
|
8519
8540
|
DateInput,
|
|
8520
8541
|
{
|
|
8521
8542
|
"data-qa": `data-table-date-filter-input-${position}`,
|
|
8522
|
-
segmentRefs,
|
|
8523
8543
|
onChangeSegment: (type, value) => {
|
|
8524
8544
|
if (value === -1) {
|
|
8525
8545
|
return;
|
|
@@ -52355,6 +52375,7 @@ var InternalLinkCellRenderer = ({
|
|
|
52355
52375
|
getURL
|
|
52356
52376
|
}) => {
|
|
52357
52377
|
var _a;
|
|
52378
|
+
const I18n = useI18nContext();
|
|
52358
52379
|
const [isLinkWidthBelowMin, setIsLinkWidthBelowMin] = useState(false);
|
|
52359
52380
|
const linkRef = useRef(null);
|
|
52360
52381
|
const internalValue = value ? (_a = columnDefinition.getStringFormattedValue) == null ? void 0 : _a.call(columnDefinition, value) : "";
|
|
@@ -52382,23 +52403,27 @@ var InternalLinkCellRenderer = ({
|
|
|
52382
52403
|
"extendClickableArea--rowHeightSm": rowHeight === rowSize.sm
|
|
52383
52404
|
}) : "";
|
|
52384
52405
|
if (isExternalLink && value && URL) {
|
|
52385
|
-
return /* @__PURE__ */ React80.createElement(
|
|
52386
|
-
|
|
52406
|
+
return /* @__PURE__ */ React80.createElement(Typography, { ...typographyProps, className }, /* @__PURE__ */ React80.createElement(
|
|
52407
|
+
Link,
|
|
52387
52408
|
{
|
|
52388
|
-
|
|
52389
|
-
|
|
52390
|
-
|
|
52409
|
+
href: URL,
|
|
52410
|
+
target: "_blank",
|
|
52411
|
+
rel: "noopener noreferrer",
|
|
52412
|
+
className: extendClickableAreaClassNames,
|
|
52413
|
+
style: { display: "flex", alignItems: "center", gap: "5px" },
|
|
52414
|
+
ref: linkRef
|
|
52391
52415
|
},
|
|
52392
52416
|
internalValue,
|
|
52393
52417
|
/* @__PURE__ */ React80.createElement(
|
|
52394
52418
|
ExternalLink,
|
|
52395
52419
|
{
|
|
52396
|
-
|
|
52397
|
-
|
|
52398
|
-
|
|
52420
|
+
role: "img",
|
|
52421
|
+
"aria-hidden": false,
|
|
52422
|
+
"aria-label": I18n.t("dataTable.cells.linkCell.externalLabel"),
|
|
52423
|
+
size: "sm"
|
|
52399
52424
|
}
|
|
52400
52425
|
)
|
|
52401
|
-
);
|
|
52426
|
+
));
|
|
52402
52427
|
}
|
|
52403
52428
|
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);
|
|
52404
52429
|
};
|
|
@@ -54445,7 +54470,10 @@ function ServerSideNumberFilterRenderer({
|
|
|
54445
54470
|
value: localFilter.value ?? "",
|
|
54446
54471
|
onChange: handleLowerLimitChange
|
|
54447
54472
|
}
|
|
54448
|
-
), /* @__PURE__ */ React80.createElement(Typography, { style: { padding: "0 8px" } }, I18n.t("labels.and", {
|
|
54473
|
+
), /* @__PURE__ */ React80.createElement(Typography, { style: { padding: "0 8px" } }, I18n.t("labels.and", {
|
|
54474
|
+
defaultValue: "and",
|
|
54475
|
+
scope: "dataTable.filters.numberFilter"
|
|
54476
|
+
})), /* @__PURE__ */ React80.createElement(
|
|
54449
54477
|
Input,
|
|
54450
54478
|
{
|
|
54451
54479
|
type: "number",
|
|
@@ -105113,9 +105141,10 @@ var de_DE_default = {
|
|
|
105113
105141
|
exporting: "Wird exportiert\xA0\u2026",
|
|
105114
105142
|
filters: {
|
|
105115
105143
|
filters: "Filter",
|
|
105116
|
-
|
|
105144
|
+
allFilters: "All Filters",
|
|
105117
105145
|
clearAllFilters: "Alle Filter zur\xFCcksetzen",
|
|
105118
105146
|
close: "Schlie\xDFen",
|
|
105147
|
+
removeFilterToken: "%{name} entfernen",
|
|
105119
105148
|
locationFilter: {
|
|
105120
105149
|
selectAll: "Alle ausw\xE4hlen",
|
|
105121
105150
|
includeSublocations: "Teilstandorte einschlie\xDFen",
|
|
@@ -105153,6 +105182,7 @@ var de_DE_default = {
|
|
|
105153
105182
|
secondary: "Informationen werden geladen, vielen Dank f\xFCr Ihre Geduld."
|
|
105154
105183
|
},
|
|
105155
105184
|
menuOptions: {
|
|
105185
|
+
ariaMenuColumn: "Dr\xFCcken Sie Alt/Option+Nach unten, um das Spaltenmen\xFC zu \xF6ffnen.",
|
|
105156
105186
|
sortMenuItem: {
|
|
105157
105187
|
label: "Nach dieser Spalte sortieren",
|
|
105158
105188
|
sortAscItem: "Spalte aufsteigend sortieren",
|
|
@@ -105207,6 +105237,9 @@ var de_DE_default = {
|
|
|
105207
105237
|
currencyCell: {
|
|
105208
105238
|
placeholder: "W\xE4hrung eingeben"
|
|
105209
105239
|
},
|
|
105240
|
+
linkCell: {
|
|
105241
|
+
externalLabel: "Open external link"
|
|
105242
|
+
},
|
|
105210
105243
|
numberCell: {
|
|
105211
105244
|
placeholder: "Nummer eingeben"
|
|
105212
105245
|
},
|
|
@@ -105287,9 +105320,10 @@ var en_AU_default = {
|
|
|
105287
105320
|
exporting: "Exporting...",
|
|
105288
105321
|
filters: {
|
|
105289
105322
|
filters: "Filters",
|
|
105290
|
-
|
|
105323
|
+
allFilters: "All Filters",
|
|
105291
105324
|
clearAllFilters: "Clear all filters",
|
|
105292
105325
|
close: "Close",
|
|
105326
|
+
removeFilterToken: "Remove %{name}",
|
|
105293
105327
|
locationFilter: {
|
|
105294
105328
|
selectAll: "Select all",
|
|
105295
105329
|
includeSublocations: "Include sub-locations",
|
|
@@ -105327,6 +105361,7 @@ var en_AU_default = {
|
|
|
105327
105361
|
secondary: "Information loading, thanks for your patience."
|
|
105328
105362
|
},
|
|
105329
105363
|
menuOptions: {
|
|
105364
|
+
ariaMenuColumn: "Press Alt/Option+Down to open column menu.",
|
|
105330
105365
|
sortMenuItem: {
|
|
105331
105366
|
label: "Sort by this column",
|
|
105332
105367
|
sortAscItem: "Sort column ascending",
|
|
@@ -105381,6 +105416,9 @@ var en_AU_default = {
|
|
|
105381
105416
|
currencyCell: {
|
|
105382
105417
|
placeholder: "Enter currency"
|
|
105383
105418
|
},
|
|
105419
|
+
linkCell: {
|
|
105420
|
+
externalLabel: "Open external link"
|
|
105421
|
+
},
|
|
105384
105422
|
numberCell: {
|
|
105385
105423
|
placeholder: "Enter number"
|
|
105386
105424
|
},
|
|
@@ -105461,9 +105499,10 @@ var en_CA_default = {
|
|
|
105461
105499
|
exporting: "Exporting...",
|
|
105462
105500
|
filters: {
|
|
105463
105501
|
filters: "Filters",
|
|
105464
|
-
|
|
105502
|
+
allFilters: "All Filters",
|
|
105465
105503
|
clearAllFilters: "Clear all filters",
|
|
105466
105504
|
close: "Close",
|
|
105505
|
+
removeFilterToken: "Remove %{name}",
|
|
105467
105506
|
locationFilter: {
|
|
105468
105507
|
selectAll: "Select all",
|
|
105469
105508
|
includeSublocations: "Include sub-locations",
|
|
@@ -105501,6 +105540,7 @@ var en_CA_default = {
|
|
|
105501
105540
|
secondary: "Information loading, thanks for your patience."
|
|
105502
105541
|
},
|
|
105503
105542
|
menuOptions: {
|
|
105543
|
+
ariaMenuColumn: "Press Alt/Option+Down to open column menu.",
|
|
105504
105544
|
sortMenuItem: {
|
|
105505
105545
|
label: "Sort by this column",
|
|
105506
105546
|
sortAscItem: "Sort column ascending",
|
|
@@ -105555,6 +105595,9 @@ var en_CA_default = {
|
|
|
105555
105595
|
currencyCell: {
|
|
105556
105596
|
placeholder: "Enter currency"
|
|
105557
105597
|
},
|
|
105598
|
+
linkCell: {
|
|
105599
|
+
externalLabel: "Open external link"
|
|
105600
|
+
},
|
|
105558
105601
|
numberCell: {
|
|
105559
105602
|
placeholder: "Enter number"
|
|
105560
105603
|
},
|
|
@@ -105635,9 +105678,10 @@ var en_GB_default = {
|
|
|
105635
105678
|
exporting: "Exporting...",
|
|
105636
105679
|
filters: {
|
|
105637
105680
|
filters: "Filters",
|
|
105638
|
-
|
|
105681
|
+
allFilters: "All Filters",
|
|
105639
105682
|
clearAllFilters: "Clear all filters",
|
|
105640
105683
|
close: "Close",
|
|
105684
|
+
removeFilterToken: "Remove %{name}",
|
|
105641
105685
|
locationFilter: {
|
|
105642
105686
|
selectAll: "Select all",
|
|
105643
105687
|
includeSublocations: "Include sub-locations",
|
|
@@ -105675,6 +105719,7 @@ var en_GB_default = {
|
|
|
105675
105719
|
secondary: "Information loading, thanks for your patience."
|
|
105676
105720
|
},
|
|
105677
105721
|
menuOptions: {
|
|
105722
|
+
ariaMenuColumn: "Press Alt/Option+Down to open column menu.",
|
|
105678
105723
|
sortMenuItem: {
|
|
105679
105724
|
label: "Sort by this column",
|
|
105680
105725
|
sortAscItem: "Sort column ascending",
|
|
@@ -105729,6 +105774,9 @@ var en_GB_default = {
|
|
|
105729
105774
|
currencyCell: {
|
|
105730
105775
|
placeholder: "Enter currency"
|
|
105731
105776
|
},
|
|
105777
|
+
linkCell: {
|
|
105778
|
+
externalLabel: "Open external link"
|
|
105779
|
+
},
|
|
105732
105780
|
numberCell: {
|
|
105733
105781
|
placeholder: "Enter number"
|
|
105734
105782
|
},
|
|
@@ -105809,6 +105857,7 @@ var en_default = {
|
|
|
105809
105857
|
exporting: "Exporting...",
|
|
105810
105858
|
filters: {
|
|
105811
105859
|
filters: "Filters",
|
|
105860
|
+
allFilters: "All Filters",
|
|
105812
105861
|
moreFilters: "More Filters",
|
|
105813
105862
|
clearAllFilters: "Clear All Filters",
|
|
105814
105863
|
close: "Close",
|
|
@@ -105828,6 +105877,7 @@ var en_default = {
|
|
|
105828
105877
|
options: {
|
|
105829
105878
|
any_value: "Any Value",
|
|
105830
105879
|
is_between: "Is Between",
|
|
105880
|
+
is_equal_to: "Is Equal To",
|
|
105831
105881
|
greater_than: "Is Greater Than",
|
|
105832
105882
|
greater_than_equal_to: "Is Greater Than or Equal To",
|
|
105833
105883
|
less_than: "Is Less Than",
|
|
@@ -105905,6 +105955,9 @@ var en_default = {
|
|
|
105905
105955
|
currencyCell: {
|
|
105906
105956
|
placeholder: "Enter currency"
|
|
105907
105957
|
},
|
|
105958
|
+
linkCell: {
|
|
105959
|
+
externalLabel: "Open external link"
|
|
105960
|
+
},
|
|
105908
105961
|
numberCell: {
|
|
105909
105962
|
placeholder: "Enter number"
|
|
105910
105963
|
},
|
|
@@ -105985,9 +106038,10 @@ var es_ES_default = {
|
|
|
105985
106038
|
exporting: "Exportando...",
|
|
105986
106039
|
filters: {
|
|
105987
106040
|
filters: "Filtros",
|
|
105988
|
-
|
|
106041
|
+
allFilters: "All Filters",
|
|
105989
106042
|
clearAllFilters: "Borrar todos los filtros",
|
|
105990
106043
|
close: "Cerrar",
|
|
106044
|
+
removeFilterToken: "Eliminar %{name}",
|
|
105991
106045
|
locationFilter: {
|
|
105992
106046
|
selectAll: "Seleccionar todo",
|
|
105993
106047
|
includeSublocations: "Incluir sububicaciones",
|
|
@@ -106025,6 +106079,7 @@ var es_ES_default = {
|
|
|
106025
106079
|
secondary: "Cargando informaci\xF3n; gracias por su paciencia."
|
|
106026
106080
|
},
|
|
106027
106081
|
menuOptions: {
|
|
106082
|
+
ariaMenuColumn: "Pulse Alt/Opci\xF3n\xA0+\xA0flecha hacia abajo para abrir el men\xFA de la columna.",
|
|
106028
106083
|
sortMenuItem: {
|
|
106029
106084
|
label: "Ordenar por esta columna",
|
|
106030
106085
|
sortAscItem: "Ordenar columna en ascendente",
|
|
@@ -106079,6 +106134,9 @@ var es_ES_default = {
|
|
|
106079
106134
|
currencyCell: {
|
|
106080
106135
|
placeholder: "Introducir moneda"
|
|
106081
106136
|
},
|
|
106137
|
+
linkCell: {
|
|
106138
|
+
externalLabel: "Open external link"
|
|
106139
|
+
},
|
|
106082
106140
|
numberCell: {
|
|
106083
106141
|
placeholder: "Introducir n\xFAmero"
|
|
106084
106142
|
},
|
|
@@ -106159,9 +106217,10 @@ var es_default = {
|
|
|
106159
106217
|
exporting: "Exportando...",
|
|
106160
106218
|
filters: {
|
|
106161
106219
|
filters: "Filtros",
|
|
106162
|
-
|
|
106220
|
+
allFilters: "All Filters",
|
|
106163
106221
|
clearAllFilters: "Restablecer todos los filtros",
|
|
106164
106222
|
close: "Cerrar",
|
|
106223
|
+
removeFilterToken: "Eliminar %{name}",
|
|
106165
106224
|
locationFilter: {
|
|
106166
106225
|
selectAll: "Seleccionar todo",
|
|
106167
106226
|
includeSublocations: "Incluir sububicaciones",
|
|
@@ -106199,6 +106258,7 @@ var es_default = {
|
|
|
106199
106258
|
secondary: "Cargando informaci\xF3n. Gracias por su paciencia."
|
|
106200
106259
|
},
|
|
106201
106260
|
menuOptions: {
|
|
106261
|
+
ariaMenuColumn: "Pulse Alt/Opci\xF3n + Flecha hacia abajo para abrir el men\xFA de columnas.",
|
|
106202
106262
|
sortMenuItem: {
|
|
106203
106263
|
label: "Ordenar por esta columna",
|
|
106204
106264
|
sortAscItem: "Ordenar columna - Ascendente",
|
|
@@ -106253,6 +106313,9 @@ var es_default = {
|
|
|
106253
106313
|
currencyCell: {
|
|
106254
106314
|
placeholder: "Ingresar moneda"
|
|
106255
106315
|
},
|
|
106316
|
+
linkCell: {
|
|
106317
|
+
externalLabel: "Open external link"
|
|
106318
|
+
},
|
|
106256
106319
|
numberCell: {
|
|
106257
106320
|
placeholder: "Ingresar n\xFAmero"
|
|
106258
106321
|
},
|
|
@@ -106305,7 +106368,7 @@ var fr_CA_default = {
|
|
|
106305
106368
|
title: "Il n'y a aucun item \xE0 afficher pour le moment",
|
|
106306
106369
|
itemsTitle: "Il n'y a pas de %{itemsLabel} \xE0 afficher pour le moment",
|
|
106307
106370
|
tooltip: "Le bouton %{featureName} sera activ\xE9 une fois que vous aurez ajout\xE9 des informations au %{tableName}",
|
|
106308
|
-
searchTooltip: "La recherche sera activ\xE9e une fois que vous aurez ajout\xE9
|
|
106371
|
+
searchTooltip: "La recherche sera activ\xE9e une fois que vous aurez ajout\xE9 des informations au %{tableName}",
|
|
106309
106372
|
featureFilter: "Filtre",
|
|
106310
106373
|
featureQuickFilter: "Filtre rapide",
|
|
106311
106374
|
featureGroupBy: "Regrouper par",
|
|
@@ -106333,9 +106396,10 @@ var fr_CA_default = {
|
|
|
106333
106396
|
exporting: "Exportation ...",
|
|
106334
106397
|
filters: {
|
|
106335
106398
|
filters: "Filtres",
|
|
106336
|
-
|
|
106399
|
+
allFilters: "All Filters",
|
|
106337
106400
|
clearAllFilters: "Effacer tous les filtres",
|
|
106338
106401
|
close: "Fermer",
|
|
106402
|
+
removeFilterToken: "Retirer %{name}",
|
|
106339
106403
|
locationFilter: {
|
|
106340
106404
|
selectAll: "S\xE9lectionner tout",
|
|
106341
106405
|
includeSublocations: "Inclure les sous-lieux",
|
|
@@ -106373,6 +106437,7 @@ var fr_CA_default = {
|
|
|
106373
106437
|
secondary: "Chargement des informations, merci pour votre patience."
|
|
106374
106438
|
},
|
|
106375
106439
|
menuOptions: {
|
|
106440
|
+
ariaMenuColumn: "Appuyez sur Alt/Option\xA0+ Bas pour ouvrir le menu de la colonne.",
|
|
106376
106441
|
sortMenuItem: {
|
|
106377
106442
|
label: "Trier cette colonne",
|
|
106378
106443
|
sortAscItem: "Trier la colonne par ordre croissant",
|
|
@@ -106427,6 +106492,9 @@ var fr_CA_default = {
|
|
|
106427
106492
|
currencyCell: {
|
|
106428
106493
|
placeholder: "Saisir la devise"
|
|
106429
106494
|
},
|
|
106495
|
+
linkCell: {
|
|
106496
|
+
externalLabel: "Open external link"
|
|
106497
|
+
},
|
|
106430
106498
|
numberCell: {
|
|
106431
106499
|
placeholder: "Saisir un num\xE9ro"
|
|
106432
106500
|
},
|
|
@@ -106507,9 +106575,10 @@ var fr_FR_default = {
|
|
|
106507
106575
|
exporting: "Exportation...",
|
|
106508
106576
|
filters: {
|
|
106509
106577
|
filters: "Filtres",
|
|
106510
|
-
|
|
106578
|
+
allFilters: "All Filters",
|
|
106511
106579
|
clearAllFilters: "Effacer tous les filtres",
|
|
106512
106580
|
close: "Fermer",
|
|
106581
|
+
removeFilterToken: "Retirer %{name}",
|
|
106513
106582
|
locationFilter: {
|
|
106514
106583
|
selectAll: "S\xE9lectionner tout",
|
|
106515
106584
|
includeSublocations: "Inclure les sous-lieux",
|
|
@@ -106547,6 +106616,7 @@ var fr_FR_default = {
|
|
|
106547
106616
|
secondary: "Chargement des informations. Merci pour votre patience."
|
|
106548
106617
|
},
|
|
106549
106618
|
menuOptions: {
|
|
106619
|
+
ariaMenuColumn: "Appuyez sur Alt/Option + la fl\xE8che vers le bas pour ouvrir le menu de la colonne.",
|
|
106550
106620
|
sortMenuItem: {
|
|
106551
106621
|
label: "Trier cette colonne",
|
|
106552
106622
|
sortAscItem: "Trier la colonne par ordre croissant",
|
|
@@ -106601,6 +106671,9 @@ var fr_FR_default = {
|
|
|
106601
106671
|
currencyCell: {
|
|
106602
106672
|
placeholder: "Saisir la devise"
|
|
106603
106673
|
},
|
|
106674
|
+
linkCell: {
|
|
106675
|
+
externalLabel: "Open external link"
|
|
106676
|
+
},
|
|
106604
106677
|
numberCell: {
|
|
106605
106678
|
placeholder: "Saisir un num\xE9ro"
|
|
106606
106679
|
},
|
|
@@ -106681,9 +106754,10 @@ var is_IS_default = {
|
|
|
106681
106754
|
exporting: "Flytur \xFAt ...",
|
|
106682
106755
|
filters: {
|
|
106683
106756
|
filters: "S\xEDur",
|
|
106684
|
-
|
|
106757
|
+
allFilters: "All Filters",
|
|
106685
106758
|
clearAllFilters: "Hreinsa allar s\xEDur",
|
|
106686
106759
|
close: "Loka\xF0u",
|
|
106760
|
+
removeFilterToken: "Fjarl\xE6gja %{name}",
|
|
106687
106761
|
locationFilter: {
|
|
106688
106762
|
selectAll: "Velja allt",
|
|
106689
106763
|
includeSublocations: "L\xE1ttu undirlokanir fylgja me\xF0",
|
|
@@ -106721,6 +106795,7 @@ var is_IS_default = {
|
|
|
106721
106795
|
secondary: "Hle\xF0sla uppl\xFDsinga, takk fyrir \xFEolinm\xE6\xF0ina."
|
|
106722
106796
|
},
|
|
106723
106797
|
menuOptions: {
|
|
106798
|
+
ariaMenuColumn: "\xDDttu \xE1 Alt/Option+Down til a\xF0 opna d\xE1lkavalmyndina.",
|
|
106724
106799
|
sortMenuItem: {
|
|
106725
106800
|
label: "Ra\xF0a eftir \xFEessum d\xE1lki",
|
|
106726
106801
|
sortAscItem: "Ra\xF0a d\xE1lki h\xE6kkandi",
|
|
@@ -106775,6 +106850,9 @@ var is_IS_default = {
|
|
|
106775
106850
|
currencyCell: {
|
|
106776
106851
|
placeholder: "Sl\xE1\xF0u inn gjaldmi\xF0il"
|
|
106777
106852
|
},
|
|
106853
|
+
linkCell: {
|
|
106854
|
+
externalLabel: "Open external link"
|
|
106855
|
+
},
|
|
106778
106856
|
numberCell: {
|
|
106779
106857
|
placeholder: "Sl\xE1\xF0u inn n\xFAmer"
|
|
106780
106858
|
},
|
|
@@ -106855,9 +106933,10 @@ var it_IT_default = {
|
|
|
106855
106933
|
exporting: "Esportazione in corso...",
|
|
106856
106934
|
filters: {
|
|
106857
106935
|
filters: "Filtri",
|
|
106858
|
-
|
|
106936
|
+
allFilters: "All Filters",
|
|
106859
106937
|
clearAllFilters: "Cancella tutti i filtri",
|
|
106860
106938
|
close: "Chiudi",
|
|
106939
|
+
removeFilterToken: "Rimuovi %{name}",
|
|
106861
106940
|
locationFilter: {
|
|
106862
106941
|
selectAll: "Seleziona tutto",
|
|
106863
106942
|
includeSublocations: "Includi posizioni secondarie",
|
|
@@ -106895,6 +106974,7 @@ var it_IT_default = {
|
|
|
106895
106974
|
secondary: "Caricamento delle informazioni in corso, grazie per la pazienza."
|
|
106896
106975
|
},
|
|
106897
106976
|
menuOptions: {
|
|
106977
|
+
ariaMenuColumn: "Premere Alt/Opzione+Freccia gi\xF9 per aprire il menu a colonna.",
|
|
106898
106978
|
sortMenuItem: {
|
|
106899
106979
|
label: "Ordina per questa colonna",
|
|
106900
106980
|
sortAscItem: "Ordina colonna (crescente)",
|
|
@@ -106949,6 +107029,9 @@ var it_IT_default = {
|
|
|
106949
107029
|
currencyCell: {
|
|
106950
107030
|
placeholder: "Inserisci valuta"
|
|
106951
107031
|
},
|
|
107032
|
+
linkCell: {
|
|
107033
|
+
externalLabel: "Open external link"
|
|
107034
|
+
},
|
|
106952
107035
|
numberCell: {
|
|
106953
107036
|
placeholder: "Inserisci numero"
|
|
106954
107037
|
},
|
|
@@ -107029,9 +107112,10 @@ var ja_JP_default = {
|
|
|
107029
107112
|
exporting: "\u30A8\u30AF\u30B9\u30DD\u30FC\u30C8\u4E2D...",
|
|
107030
107113
|
filters: {
|
|
107031
107114
|
filters: "\u30D5\u30A3\u30EB\u30BF",
|
|
107032
|
-
|
|
107115
|
+
allFilters: "All Filters",
|
|
107033
107116
|
clearAllFilters: "\u3059\u3079\u3066\u306E\u30D5\u30A3\u30EB\u30BF\u3092\u6D88\u53BB",
|
|
107034
107117
|
close: "\u7D42\u4E86",
|
|
107118
|
+
removeFilterToken: "%{name}\u524A\u9664",
|
|
107035
107119
|
locationFilter: {
|
|
107036
107120
|
selectAll: "\u3059\u3079\u3066\u9078\u629E",
|
|
107037
107121
|
includeSublocations: "\u30B5\u30D6\u30ED\u30B1\u30FC\u30B7\u30E7\u30F3\u3092\u542B\u3081\u308B",
|
|
@@ -107069,6 +107153,7 @@ var ja_JP_default = {
|
|
|
107069
107153
|
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"
|
|
107070
107154
|
},
|
|
107071
107155
|
menuOptions: {
|
|
107156
|
+
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",
|
|
107072
107157
|
sortMenuItem: {
|
|
107073
107158
|
label: "\u3053\u306E\u5217\u3067\u4E26\u3079\u66FF\u3048\u308B",
|
|
107074
107159
|
sortAscItem: "\u5217\u3092\u6607\u9806\u306B\u4E26\u3079\u66FF\u3048\u308B",
|
|
@@ -107123,6 +107208,9 @@ var ja_JP_default = {
|
|
|
107123
107208
|
currencyCell: {
|
|
107124
107209
|
placeholder: "\u901A\u8CA8\u3092\u5165\u529B"
|
|
107125
107210
|
},
|
|
107211
|
+
linkCell: {
|
|
107212
|
+
externalLabel: "Open external link"
|
|
107213
|
+
},
|
|
107126
107214
|
numberCell: {
|
|
107127
107215
|
placeholder: "\u756A\u53F7\u3092\u5165\u529B"
|
|
107128
107216
|
},
|
|
@@ -107167,7 +107255,7 @@ var nb_NO_default = {
|
|
|
107167
107255
|
emptyState: {
|
|
107168
107256
|
noFilteredResults: {
|
|
107169
107257
|
description: "Check your spelling and filter options, or search for a different keyword.",
|
|
107170
|
-
title: "
|
|
107258
|
+
title: "Ingen enheter samsvarer med s\xF8ket ditt",
|
|
107171
107259
|
itemsTitle: "No %{itemsLabel} Match Your Search"
|
|
107172
107260
|
},
|
|
107173
107261
|
noResults: {
|
|
@@ -107186,7 +107274,7 @@ var nb_NO_default = {
|
|
|
107186
107274
|
bulkActions: {
|
|
107187
107275
|
apply: "Apply",
|
|
107188
107276
|
bulkEdit: "Bulk Edit",
|
|
107189
|
-
cancel: "
|
|
107277
|
+
cancel: "Avbryt",
|
|
107190
107278
|
editValues: "Edit Values",
|
|
107191
107279
|
error: "Sorry, the items couldn't be updated. Try again.",
|
|
107192
107280
|
placeholderForField: "Enter %{fieldName}",
|
|
@@ -107198,23 +107286,24 @@ var nb_NO_default = {
|
|
|
107198
107286
|
},
|
|
107199
107287
|
success: "The items were successfully updated.",
|
|
107200
107288
|
one: "item",
|
|
107201
|
-
many: "
|
|
107289
|
+
many: "Enheter"
|
|
107202
107290
|
},
|
|
107203
107291
|
exporting: "Exporting...",
|
|
107204
107292
|
filters: {
|
|
107205
|
-
filters: "
|
|
107206
|
-
|
|
107293
|
+
filters: "Filtre",
|
|
107294
|
+
allFilters: "All Filters",
|
|
107207
107295
|
clearAllFilters: "Clear All Filters",
|
|
107208
107296
|
close: "Close",
|
|
107297
|
+
removeFilterToken: "Fjern %{name}",
|
|
107209
107298
|
locationFilter: {
|
|
107210
|
-
selectAll: "
|
|
107299
|
+
selectAll: "Velg alle",
|
|
107211
107300
|
includeSublocations: "Include sublocations",
|
|
107212
107301
|
searchLocations: "Search locations",
|
|
107213
107302
|
locations: "Locations"
|
|
107214
107303
|
},
|
|
107215
107304
|
numberFilter: {
|
|
107216
107305
|
labels: {
|
|
107217
|
-
and: "
|
|
107306
|
+
and: "OG",
|
|
107218
107307
|
input_placeholder: "Enter Value",
|
|
107219
107308
|
placeholder: "Select an item"
|
|
107220
107309
|
},
|
|
@@ -107243,11 +107332,15 @@ var nb_NO_default = {
|
|
|
107243
107332
|
secondary: "Information loading, thanks for your patience."
|
|
107244
107333
|
},
|
|
107245
107334
|
menuOptions: {
|
|
107335
|
+
ariaMenuColumn: "Trykk p\xE5 Alt/Option og pil ned for \xE5 \xE5pne kolonnemenyen.",
|
|
107246
107336
|
sortMenuItem: {
|
|
107247
107337
|
label: "Sort By This Column",
|
|
107248
107338
|
sortAscItem: "Sort Column Ascending",
|
|
107249
107339
|
sortDescItem: "Sort Column Descending",
|
|
107250
|
-
sortResetItem: "Column Not Sorted"
|
|
107340
|
+
sortResetItem: "Column Not Sorted",
|
|
107341
|
+
sortAscending: "sorted ascending",
|
|
107342
|
+
sortDescending: "sorted descending",
|
|
107343
|
+
sortCleared: "Sorting cleared"
|
|
107251
107344
|
},
|
|
107252
107345
|
expandAllGroups: "Expand All Groups",
|
|
107253
107346
|
collapseAllGroups: "Collapse All Groups",
|
|
@@ -107263,7 +107356,7 @@ var nb_NO_default = {
|
|
|
107263
107356
|
groupBy: "Group by {{label}}"
|
|
107264
107357
|
},
|
|
107265
107358
|
grandTotals: "Grand Totals",
|
|
107266
|
-
search: "
|
|
107359
|
+
search: "S\xF8k",
|
|
107267
107360
|
subtotals: "Subtotals",
|
|
107268
107361
|
tableSettings: {
|
|
107269
107362
|
configureColumns: "Configure Columns",
|
|
@@ -107274,7 +107367,7 @@ var nb_NO_default = {
|
|
|
107274
107367
|
large: "Large",
|
|
107275
107368
|
tableSettings: "Table Settings",
|
|
107276
107369
|
groupBy: "Group by:",
|
|
107277
|
-
reset: "
|
|
107370
|
+
reset: "Tilbakestill",
|
|
107278
107371
|
selectColumnGroup: "Select a column to group",
|
|
107279
107372
|
configure: "Configure"
|
|
107280
107373
|
},
|
|
@@ -107294,6 +107387,9 @@ var nb_NO_default = {
|
|
|
107294
107387
|
currencyCell: {
|
|
107295
107388
|
placeholder: "Enter currency"
|
|
107296
107389
|
},
|
|
107390
|
+
linkCell: {
|
|
107391
|
+
externalLabel: "Open external link"
|
|
107392
|
+
},
|
|
107297
107393
|
numberCell: {
|
|
107298
107394
|
placeholder: "Enter number"
|
|
107299
107395
|
},
|
|
@@ -107311,8 +107407,8 @@ var nb_NO_default = {
|
|
|
107311
107407
|
},
|
|
107312
107408
|
booleanCell: {
|
|
107313
107409
|
options: {
|
|
107314
|
-
yes: "
|
|
107315
|
-
no: "
|
|
107410
|
+
yes: "Ja",
|
|
107411
|
+
no: "Nei"
|
|
107316
107412
|
}
|
|
107317
107413
|
}
|
|
107318
107414
|
},
|
|
@@ -107374,9 +107470,10 @@ var pl_PL_default = {
|
|
|
107374
107470
|
exporting: "Eksportowanie...",
|
|
107375
107471
|
filters: {
|
|
107376
107472
|
filters: "Filtry",
|
|
107377
|
-
|
|
107473
|
+
allFilters: "All Filters",
|
|
107378
107474
|
clearAllFilters: "Wyczy\u015B\u0107 wszystkie filtry",
|
|
107379
107475
|
close: "Zamknij",
|
|
107476
|
+
removeFilterToken: "Usu\u0144 %{name}",
|
|
107380
107477
|
locationFilter: {
|
|
107381
107478
|
selectAll: "Zaznacz wszystkie",
|
|
107382
107479
|
includeSublocations: "Uwzgl\u0119dnij lokalizacje podrz\u0119dne",
|
|
@@ -107414,6 +107511,7 @@ var pl_PL_default = {
|
|
|
107414
107511
|
secondary: "Trwa \u0142adowanie informacji. Prosimy o cierpliwo\u015B\u0107."
|
|
107415
107512
|
},
|
|
107416
107513
|
menuOptions: {
|
|
107514
|
+
ariaMenuColumn: "Naci\u015Bnij klawisze Alt/Option + strza\u0142ka w d\xF3\u0142, aby otworzy\u0107 menu kolumny.",
|
|
107417
107515
|
sortMenuItem: {
|
|
107418
107516
|
label: "Sortuj wed\u0142ug tej kolumny",
|
|
107419
107517
|
sortAscItem: "Sortuj kolumny rosn\u0105co",
|
|
@@ -107468,6 +107566,9 @@ var pl_PL_default = {
|
|
|
107468
107566
|
currencyCell: {
|
|
107469
107567
|
placeholder: "Wprowad\u017A walut\u0119"
|
|
107470
107568
|
},
|
|
107569
|
+
linkCell: {
|
|
107570
|
+
externalLabel: "Open external link"
|
|
107571
|
+
},
|
|
107471
107572
|
numberCell: {
|
|
107472
107573
|
placeholder: "Wprowad\u017A numer"
|
|
107473
107574
|
},
|
|
@@ -107548,6 +107649,7 @@ var pseudo_default = {
|
|
|
107548
107649
|
exporting: "[\u1E16\u1E16\u1E16\u1E8B\u01A5\u01FF\u0159\u0167\u012B\u019E\u0260.....]",
|
|
107549
107650
|
filters: {
|
|
107550
107651
|
filters: "[\u0191\u0191\u012B\u0140\u0167\u1E17\u0159\u015F\u015F]",
|
|
107652
|
+
allFilters: "[\u0226\u0226\u0226\u0140\u0140 \xB7 \u0191\u012B\u0140\u0167\u1E17\u0159\u015F\u015F\u015F]",
|
|
107551
107653
|
moreFilters: "[\u1E3E\u1E3E\u1E3E\u01FF\u0159\u1E17 \xB7 \u0191\u012B\u0140\u0167\u1E17\u0159\u015F\u015F\u015F]",
|
|
107552
107654
|
clearAllFilters: "[\u0187\u0187\u0187\u0187\u0140\u1E17\u0227\u0159 \xB7 \u0226\u0140\u0140 \xB7 \u0191\u012B\u0140\u0167\u1E17\u0159\u015F\u015F\u015F\u015F]",
|
|
107553
107655
|
close: "[\u0187\u0140\u01FF\u015F\u1E17]",
|
|
@@ -107567,6 +107669,7 @@ var pseudo_default = {
|
|
|
107567
107669
|
options: {
|
|
107568
107670
|
any_value: "[\u0226\u0226\u019E\u1E8F \xB7 \u1E7C\u0227\u0140\u016D\u1E17\u1E17]",
|
|
107569
107671
|
is_between: "[\u012A\u012A\u015F \xB7 \u0181\u1E17\u0167\u1E87\u1E17\u1E17\u019E\u019E]",
|
|
107672
|
+
is_equal_to: "[\u012A\u012A\u012A\u015F \xB7 \u1E16\u024B\u016D\u0227\u0140 \xB7 \u0166\u01FF\u01FF\u01FF]",
|
|
107570
107673
|
greater_than: "[\u012A\u012A\u012A\u015F \xB7 \u0193\u0159\u1E17\u0227\u0167\u1E17\u0159 \xB7 \u0166\u0127\u0227\u019E\u019E\u019E]",
|
|
107571
107674
|
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]",
|
|
107572
107675
|
less_than: "[\u012A\u012A\u012A\u015F \xB7 \u013F\u1E17\u015F\u015F \xB7 \u0166\u0127\u0227\u019E\u019E\u019E]",
|
|
@@ -107644,6 +107747,9 @@ var pseudo_default = {
|
|
|
107644
107747
|
currencyCell: {
|
|
107645
107748
|
placeholder: "[\u1E16\u1E16\u1E16\u019E\u0167\u1E17\u0159 \xB7 \u0188\u016D\u0159\u0159\u1E17\u019E\u0188\u1E8F\u1E8F\u1E8F]"
|
|
107646
107749
|
},
|
|
107750
|
+
linkCell: {
|
|
107751
|
+
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]"
|
|
107752
|
+
},
|
|
107647
107753
|
numberCell: {
|
|
107648
107754
|
placeholder: "[\u1E16\u1E16\u1E16\u019E\u0167\u1E17\u0159 \xB7 \u019E\u016D\u1E3F\u0180\u1E17\u0159\u0159\u0159]"
|
|
107649
107755
|
},
|
|
@@ -107724,9 +107830,10 @@ var pt_BR_default = {
|
|
|
107724
107830
|
exporting: "Exportando...",
|
|
107725
107831
|
filters: {
|
|
107726
107832
|
filters: "Filtros",
|
|
107727
|
-
|
|
107833
|
+
allFilters: "All Filters",
|
|
107728
107834
|
clearAllFilters: "Limpar Todos os Filtros",
|
|
107729
107835
|
close: "Fechar",
|
|
107836
|
+
removeFilterToken: "Remover %{name}",
|
|
107730
107837
|
locationFilter: {
|
|
107731
107838
|
selectAll: "Selecionar tudo",
|
|
107732
107839
|
includeSublocations: "Incluir Sublocais",
|
|
@@ -107764,6 +107871,7 @@ var pt_BR_default = {
|
|
|
107764
107871
|
secondary: "As informa\xE7\xF5es est\xE3o carregando, obrigado pela paci\xEAncia."
|
|
107765
107872
|
},
|
|
107766
107873
|
menuOptions: {
|
|
107874
|
+
ariaMenuColumn: "Pressione Alt/Option + Seta para baixo para abrir o menu de colunas.",
|
|
107767
107875
|
sortMenuItem: {
|
|
107768
107876
|
label: "Classificar por Esta Coluna",
|
|
107769
107877
|
sortAscItem: "Classificar Coluna em Ordem Crescente",
|
|
@@ -107818,6 +107926,9 @@ var pt_BR_default = {
|
|
|
107818
107926
|
currencyCell: {
|
|
107819
107927
|
placeholder: "Insira moeda"
|
|
107820
107928
|
},
|
|
107929
|
+
linkCell: {
|
|
107930
|
+
externalLabel: "Open external link"
|
|
107931
|
+
},
|
|
107821
107932
|
numberCell: {
|
|
107822
107933
|
placeholder: "Inserir n\xFAmeros"
|
|
107823
107934
|
},
|
|
@@ -107870,7 +107981,7 @@ var pt_PT_default = {
|
|
|
107870
107981
|
title: "N\xE3o h\xE1 itens para apresentar neste momento",
|
|
107871
107982
|
itemsTitle: "N\xE3o h\xE1 %{itemsLabel} para apresentar neste momento",
|
|
107872
107983
|
tooltip: "O bot\xE3o %{featureName} ser\xE1 ativado quando adicionar informa\xE7\xF5es \xE0 tabela %{tableName}",
|
|
107873
|
-
searchTooltip: "A pesquisa ser\xE1 ativada quando adicionar informa\xE7\xF5es
|
|
107984
|
+
searchTooltip: "A pesquisa ser\xE1 ativada quando adicionar informa\xE7\xF5es a %{tableName}",
|
|
107874
107985
|
featureFilter: "Filtro",
|
|
107875
107986
|
featureQuickFilter: "Filtro r\xE1pido",
|
|
107876
107987
|
featureGroupBy: "Agrupar por",
|
|
@@ -107898,9 +108009,10 @@ var pt_PT_default = {
|
|
|
107898
108009
|
exporting: "A exportar...",
|
|
107899
108010
|
filters: {
|
|
107900
108011
|
filters: "Filtros",
|
|
107901
|
-
|
|
108012
|
+
allFilters: "All Filters",
|
|
107902
108013
|
clearAllFilters: "Apagar todos os filtros",
|
|
107903
108014
|
close: "Fechar",
|
|
108015
|
+
removeFilterToken: "Remover %{name}",
|
|
107904
108016
|
locationFilter: {
|
|
107905
108017
|
selectAll: "Selecionar tudo",
|
|
107906
108018
|
includeSublocations: "Incluir locais secund\xE1rios",
|
|
@@ -107938,6 +108050,7 @@ var pt_PT_default = {
|
|
|
107938
108050
|
secondary: "A carregar informa\xE7\xF5es. Agradecemos a sua paci\xEAncia."
|
|
107939
108051
|
},
|
|
107940
108052
|
menuOptions: {
|
|
108053
|
+
ariaMenuColumn: "Pressionar Alt/Op\xE7\xE3o + Seta para baixo para abrir o menu da coluna.",
|
|
107941
108054
|
sortMenuItem: {
|
|
107942
108055
|
label: "Ordenar por esta coluna",
|
|
107943
108056
|
sortAscItem: "Ordenar coluna por ordem ascendente",
|
|
@@ -107992,6 +108105,9 @@ var pt_PT_default = {
|
|
|
107992
108105
|
currencyCell: {
|
|
107993
108106
|
placeholder: "Introduzir moeda"
|
|
107994
108107
|
},
|
|
108108
|
+
linkCell: {
|
|
108109
|
+
externalLabel: "Open external link"
|
|
108110
|
+
},
|
|
107995
108111
|
numberCell: {
|
|
107996
108112
|
placeholder: "Introduzir n\xFAmero"
|
|
107997
108113
|
},
|
|
@@ -108072,9 +108188,10 @@ var th_TH_default = {
|
|
|
108072
108188
|
exporting: "\u0E01\u0E33\u0E25\u0E31\u0E07\u0E2A\u0E48\u0E07\u0E2D\u0E2D\u0E01...",
|
|
108073
108189
|
filters: {
|
|
108074
108190
|
filters: "\u0E15\u0E31\u0E27\u0E01\u0E23\u0E2D\u0E07",
|
|
108075
|
-
|
|
108191
|
+
allFilters: "All Filters",
|
|
108076
108192
|
clearAllFilters: "\u0E25\u0E49\u0E32\u0E07\u0E15\u0E31\u0E27\u0E01\u0E23\u0E2D\u0E07\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14",
|
|
108077
108193
|
close: "\u0E1B\u0E34\u0E14",
|
|
108194
|
+
removeFilterToken: "\u0E25\u0E1A %{name}",
|
|
108078
108195
|
locationFilter: {
|
|
108079
108196
|
selectAll: "\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14",
|
|
108080
108197
|
includeSublocations: "\u0E23\u0E27\u0E21\u0E15\u0E33\u0E41\u0E2B\u0E19\u0E48\u0E07\u0E22\u0E48\u0E2D\u0E22",
|
|
@@ -108112,6 +108229,7 @@ var th_TH_default = {
|
|
|
108112
108229
|
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"
|
|
108113
108230
|
},
|
|
108114
108231
|
menuOptions: {
|
|
108232
|
+
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",
|
|
108115
108233
|
sortMenuItem: {
|
|
108116
108234
|
label: "\u0E08\u0E31\u0E14\u0E40\u0E23\u0E35\u0E22\u0E07\u0E15\u0E32\u0E21\u0E04\u0E2D\u0E25\u0E31\u0E21\u0E19\u0E4C\u0E19\u0E35\u0E49",
|
|
108117
108235
|
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",
|
|
@@ -108166,6 +108284,9 @@ var th_TH_default = {
|
|
|
108166
108284
|
currencyCell: {
|
|
108167
108285
|
placeholder: "\u0E1B\u0E49\u0E2D\u0E19\u0E2A\u0E01\u0E38\u0E25\u0E40\u0E07\u0E34\u0E19"
|
|
108168
108286
|
},
|
|
108287
|
+
linkCell: {
|
|
108288
|
+
externalLabel: "Open external link"
|
|
108289
|
+
},
|
|
108169
108290
|
numberCell: {
|
|
108170
108291
|
placeholder: "\u0E1B\u0E49\u0E2D\u0E19\u0E2B\u0E21\u0E32\u0E22\u0E40\u0E25\u0E02"
|
|
108171
108292
|
},
|
|
@@ -108246,9 +108367,10 @@ var zh_SG_default = {
|
|
|
108246
108367
|
exporting: "\u6B63\u5728\u5BFC\u51FA...",
|
|
108247
108368
|
filters: {
|
|
108248
108369
|
filters: "\u7B5B\u9009\u5668",
|
|
108249
|
-
|
|
108370
|
+
allFilters: "All Filters",
|
|
108250
108371
|
clearAllFilters: "\u6E05\u9664\u6240\u6709\u7B5B\u9009\u5668",
|
|
108251
108372
|
close: "\u5173\u95ED",
|
|
108373
|
+
removeFilterToken: "\u79FB\u9664 %{name}",
|
|
108252
108374
|
locationFilter: {
|
|
108253
108375
|
selectAll: "\u5168\u9009",
|
|
108254
108376
|
includeSublocations: "\u5305\u62EC\u5B50\u5730\u70B9",
|
|
@@ -108286,6 +108408,7 @@ var zh_SG_default = {
|
|
|
108286
108408
|
secondary: "\u4FE1\u606F\u52A0\u8F7D\u4E2D\uFF0C\u8BF7\u7A0D\u7B49\u7247\u523B\u3002"
|
|
108287
108409
|
},
|
|
108288
108410
|
menuOptions: {
|
|
108411
|
+
ariaMenuColumn: "\u6309\u201CAlt/Option + \u5411\u4E0B\u7BAD\u5934\u952E\u201D\u6253\u5F00\u5217\u83DC\u5355\u3002",
|
|
108289
108412
|
sortMenuItem: {
|
|
108290
108413
|
label: "\u6309\u6B64\u5217\u6392\u5E8F",
|
|
108291
108414
|
sortAscItem: "\u6309\u5347\u5E8F\u5BF9\u5217\u6392\u5E8F",
|
|
@@ -108340,6 +108463,9 @@ var zh_SG_default = {
|
|
|
108340
108463
|
currencyCell: {
|
|
108341
108464
|
placeholder: "\u8F93\u5165\u8D27\u5E01"
|
|
108342
108465
|
},
|
|
108466
|
+
linkCell: {
|
|
108467
|
+
externalLabel: "Open external link"
|
|
108468
|
+
},
|
|
108343
108469
|
numberCell: {
|
|
108344
108470
|
placeholder: "\u8F93\u5165\u6570\u5B57"
|
|
108345
108471
|
},
|
|
@@ -108420,9 +108546,10 @@ var zh_TW_default = {
|
|
|
108420
108546
|
exporting: "\u532F\u51FA\u4E2D\u2026\u2026",
|
|
108421
108547
|
filters: {
|
|
108422
108548
|
filters: "\u7BE9\u9078\u689D\u4EF6",
|
|
108423
|
-
|
|
108549
|
+
allFilters: "All Filters",
|
|
108424
108550
|
clearAllFilters: "\u6E05\u9664\u6240\u6709\u7BE9\u9078\u689D\u4EF6",
|
|
108425
108551
|
close: "\u95DC\u9589",
|
|
108552
|
+
removeFilterToken: "\u79FB\u9664\u300C%{name}\u300D",
|
|
108426
108553
|
locationFilter: {
|
|
108427
108554
|
selectAll: "\u5168\u90E8\u9078\u53D6",
|
|
108428
108555
|
includeSublocations: "\u5305\u62EC\u5B50\u4F4D\u7F6E",
|
|
@@ -108460,6 +108587,7 @@ var zh_TW_default = {
|
|
|
108460
108587
|
secondary: "\u6B63\u5728\u8F09\u5165\u8CC7\u8A0A\uFF0C\u611F\u8B1D\u60A8\u7684\u8010\u5FC3\u7B49\u5019\u3002"
|
|
108461
108588
|
},
|
|
108462
108589
|
menuOptions: {
|
|
108590
|
+
ariaMenuColumn: "\u6309\u4E0B Alt/Option+Down \u958B\u555F\u6B04\u4F4D\u9078\u55AE\u3002",
|
|
108463
108591
|
sortMenuItem: {
|
|
108464
108592
|
label: "\u4F9D\u6B64\u6B04\u4F4D\u6392\u5E8F",
|
|
108465
108593
|
sortAscItem: "\u905E\u589E\u6392\u5E8F\u6B04\u4F4D",
|
|
@@ -108514,6 +108642,9 @@ var zh_TW_default = {
|
|
|
108514
108642
|
currencyCell: {
|
|
108515
108643
|
placeholder: "\u8F38\u5165\u8CA8\u5E63"
|
|
108516
108644
|
},
|
|
108645
|
+
linkCell: {
|
|
108646
|
+
externalLabel: "Open external link"
|
|
108647
|
+
},
|
|
108517
108648
|
numberCell: {
|
|
108518
108649
|
placeholder: "\u8F38\u5165\u6578\u5B57"
|
|
108519
108650
|
},
|
|
@@ -111928,6 +112059,23 @@ var getSuperSelectFilterPreset = (columnDefinition) => {
|
|
|
111928
112059
|
} : void 0;
|
|
111929
112060
|
return {
|
|
111930
112061
|
components: {
|
|
112062
|
+
Clear: () => {
|
|
112063
|
+
const ctx = UNSAFE_useSuperSelectContext();
|
|
112064
|
+
const I18n = useI18nContext();
|
|
112065
|
+
return /* @__PURE__ */ React80.createElement(
|
|
112066
|
+
Button,
|
|
112067
|
+
{
|
|
112068
|
+
...ctx.props.clear(),
|
|
112069
|
+
"aria-label": I18n.t("dataTable.filters.removeFilterToken", {
|
|
112070
|
+
name: filterName
|
|
112071
|
+
}),
|
|
112072
|
+
size: "sm",
|
|
112073
|
+
variant: "tertiary",
|
|
112074
|
+
disabled: ctx.config.disabled,
|
|
112075
|
+
icon: /* @__PURE__ */ React80.createElement(Clear, null)
|
|
112076
|
+
}
|
|
112077
|
+
);
|
|
112078
|
+
},
|
|
111931
112079
|
Label: React80.forwardRef(() => {
|
|
111932
112080
|
const ctx = UNSAFE_useSuperSelectContext();
|
|
111933
112081
|
const isValueEmpty = ["", null, void 0].includes(
|
|
@@ -112363,7 +112511,7 @@ var SingleSelectQuickFilterRenderer = (props) => {
|
|
|
112363
112511
|
return /* @__PURE__ */ React80.createElement(ClientSideSingleSelectQuickFilter, { ...props });
|
|
112364
112512
|
};
|
|
112365
112513
|
var SingleSelectQuickFilterRenderer_default = SingleSelectQuickFilterRenderer;
|
|
112366
|
-
var FiltersPanelToggleButton = ({
|
|
112514
|
+
var FiltersPanelToggleButton = ({ hasDefinedFilters }) => {
|
|
112367
112515
|
const I18n = useI18nContext();
|
|
112368
112516
|
const { contextPanel } = useInternalTableContext();
|
|
112369
112517
|
const hasNoContent = useTableHasNoContent();
|
|
@@ -112391,34 +112539,22 @@ var FiltersPanelToggleButton = ({ hasSelectedFilters, hasDefinedFilters }) => {
|
|
|
112391
112539
|
},
|
|
112392
112540
|
selected: contextPanel.content === "filters"
|
|
112393
112541
|
},
|
|
112394
|
-
|
|
112542
|
+
I18n.t("dataTable.filters.allFilters")
|
|
112395
112543
|
)
|
|
112396
112544
|
);
|
|
112397
112545
|
};
|
|
112398
112546
|
var ServerSideFiltersPanelToggleButton = () => {
|
|
112399
112547
|
const {
|
|
112400
|
-
filterStorage: { hasDefinedFilters
|
|
112548
|
+
filterStorage: { hasDefinedFilters }
|
|
112401
112549
|
} = useInternalTableContext();
|
|
112402
|
-
return /* @__PURE__ */ React80.createElement(
|
|
112403
|
-
FiltersPanelToggleButton,
|
|
112404
|
-
{
|
|
112405
|
-
hasDefinedFilters,
|
|
112406
|
-
hasSelectedFilters
|
|
112407
|
-
}
|
|
112408
|
-
);
|
|
112550
|
+
return /* @__PURE__ */ React80.createElement(FiltersPanelToggleButton, { hasDefinedFilters });
|
|
112409
112551
|
};
|
|
112410
112552
|
var ClientSideFiltersPanelToggleButton = () => {
|
|
112411
112553
|
const { filterState } = useInternalTableContext();
|
|
112412
|
-
const activeFilters = React80.useMemo(() => {
|
|
112413
|
-
return filterState.allAvailableFilters.filter(({ instance }) => {
|
|
112414
|
-
return instance.isFilterActive();
|
|
112415
|
-
});
|
|
112416
|
-
}, [filterState.allAvailableFilters]);
|
|
112417
112554
|
return /* @__PURE__ */ React80.createElement(
|
|
112418
112555
|
FiltersPanelToggleButton,
|
|
112419
112556
|
{
|
|
112420
|
-
hasDefinedFilters: filterState.allAvailableFilters.length > 0
|
|
112421
|
-
hasSelectedFilters: activeFilters.length > 0
|
|
112557
|
+
hasDefinedFilters: filterState.allAvailableFilters.length > 0
|
|
112422
112558
|
}
|
|
112423
112559
|
);
|
|
112424
112560
|
};
|