@procore/data-table 14.43.2 → 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 +28 -0
- package/dist/legacy/index.cjs +322 -103
- package/dist/legacy/index.js +322 -103
- package/dist/modern/index.cjs +318 -103
- package/dist/modern/index.js +318 -103
- 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",
|
|
@@ -56527,6 +56554,7 @@ var GenericHeaderRenderer = (props) => {
|
|
|
56527
56554
|
I18n
|
|
56528
56555
|
);
|
|
56529
56556
|
const headerCellRef = useRef(null);
|
|
56557
|
+
const menuButtonRef = useRef(null);
|
|
56530
56558
|
const headerCheckboxSelection = colDef.headerCheckboxSelection;
|
|
56531
56559
|
const headerCheckboxSelectionEnabled = typeof headerCheckboxSelection === "function" ? headerCheckboxSelection({
|
|
56532
56560
|
api: props.api,
|
|
@@ -56885,6 +56913,50 @@ var GenericHeaderRenderer = (props) => {
|
|
|
56885
56913
|
expansionVariant,
|
|
56886
56914
|
onSSDR
|
|
56887
56915
|
);
|
|
56916
|
+
React80.useEffect(() => {
|
|
56917
|
+
if (!props.enableMenu) return;
|
|
56918
|
+
const MENU_SYNTHETIC = "__menu_synthetic_keydown";
|
|
56919
|
+
const handler = (e) => {
|
|
56920
|
+
const button = menuButtonRef.current?.querySelector("button");
|
|
56921
|
+
const isMenuOpen = button?.getAttribute("aria-expanded") === "true";
|
|
56922
|
+
if (e[MENU_SYNTHETIC]) {
|
|
56923
|
+
return;
|
|
56924
|
+
}
|
|
56925
|
+
if (e.altKey && e.key === "ArrowDown" && !isMenuOpen) {
|
|
56926
|
+
e.preventDefault();
|
|
56927
|
+
e.stopPropagation();
|
|
56928
|
+
button?.focus();
|
|
56929
|
+
button?.click();
|
|
56930
|
+
return;
|
|
56931
|
+
}
|
|
56932
|
+
if (!isMenuOpen) return;
|
|
56933
|
+
switch (e.key) {
|
|
56934
|
+
case "ArrowDown":
|
|
56935
|
+
case "ArrowUp":
|
|
56936
|
+
case "Enter":
|
|
56937
|
+
case "Escape":
|
|
56938
|
+
e.stopPropagation();
|
|
56939
|
+
e.preventDefault();
|
|
56940
|
+
if (button) {
|
|
56941
|
+
const synthetic = new KeyboardEvent("keydown", {
|
|
56942
|
+
key: e.key,
|
|
56943
|
+
bubbles: true,
|
|
56944
|
+
cancelable: true
|
|
56945
|
+
});
|
|
56946
|
+
synthetic[MENU_SYNTHETIC] = true;
|
|
56947
|
+
button.dispatchEvent(synthetic);
|
|
56948
|
+
}
|
|
56949
|
+
break;
|
|
56950
|
+
case "Tab":
|
|
56951
|
+
case "ArrowLeft":
|
|
56952
|
+
case "ArrowRight":
|
|
56953
|
+
button?.click();
|
|
56954
|
+
break;
|
|
56955
|
+
}
|
|
56956
|
+
};
|
|
56957
|
+
props.eGridHeader.addEventListener("keydown", handler, true);
|
|
56958
|
+
return () => props.eGridHeader.removeEventListener("keydown", handler, true);
|
|
56959
|
+
}, [props.eGridHeader, props.enableMenu]);
|
|
56888
56960
|
return /* @__PURE__ */ React80.createElement(
|
|
56889
56961
|
Flex,
|
|
56890
56962
|
{
|
|
@@ -56959,6 +57031,7 @@ var GenericHeaderRenderer = (props) => {
|
|
|
56959
57031
|
props.enableMenu && /* @__PURE__ */ React80.createElement(
|
|
56960
57032
|
DropdownFlyout,
|
|
56961
57033
|
{
|
|
57034
|
+
ref: menuButtonRef,
|
|
56962
57035
|
className: "data-table-header-menu",
|
|
56963
57036
|
size: "sm",
|
|
56964
57037
|
options: orderMenuOptions(),
|
|
@@ -104078,6 +104151,10 @@ var BulkEditPanel = ({}) => {
|
|
|
104078
104151
|
const { contextPanel, suppressBulkEditToasts } = useInternalTableContext();
|
|
104079
104152
|
const I18n = useI18nContext();
|
|
104080
104153
|
const bulkEditRef = React80.useRef(null);
|
|
104154
|
+
const bodyRef = React80.useRef(null);
|
|
104155
|
+
useEffect(() => {
|
|
104156
|
+
bodyRef.current?.focus();
|
|
104157
|
+
}, []);
|
|
104081
104158
|
return /* @__PURE__ */ React80.createElement(Panel, null, /* @__PURE__ */ React80.createElement(
|
|
104082
104159
|
Panel.Header,
|
|
104083
104160
|
{
|
|
@@ -104087,7 +104164,7 @@ var BulkEditPanel = ({}) => {
|
|
|
104087
104164
|
}
|
|
104088
104165
|
},
|
|
104089
104166
|
/* @__PURE__ */ React80.createElement(Panel.Title, null, I18n.t("dataTable.bulkActions.editValues"))
|
|
104090
|
-
), /* @__PURE__ */ React80.createElement(Panel.Body,
|
|
104167
|
+
), /* @__PURE__ */ React80.createElement(Panel.Body, { ref: bodyRef }, /* @__PURE__ */ React80.createElement(Panel.Section, null, /* @__PURE__ */ React80.createElement(
|
|
104091
104168
|
BulkEdit,
|
|
104092
104169
|
{
|
|
104093
104170
|
ref: bulkEditRef,
|
|
@@ -104922,9 +104999,10 @@ var de_DE_default = {
|
|
|
104922
104999
|
exporting: "Wird exportiert\xA0\u2026",
|
|
104923
105000
|
filters: {
|
|
104924
105001
|
filters: "Filter",
|
|
104925
|
-
|
|
105002
|
+
allFilters: "All Filters",
|
|
104926
105003
|
clearAllFilters: "Alle Filter zur\xFCcksetzen",
|
|
104927
105004
|
close: "Schlie\xDFen",
|
|
105005
|
+
removeFilterToken: "%{name} entfernen",
|
|
104928
105006
|
locationFilter: {
|
|
104929
105007
|
selectAll: "Alle ausw\xE4hlen",
|
|
104930
105008
|
includeSublocations: "Teilstandorte einschlie\xDFen",
|
|
@@ -104962,6 +105040,7 @@ var de_DE_default = {
|
|
|
104962
105040
|
secondary: "Informationen werden geladen, vielen Dank f\xFCr Ihre Geduld."
|
|
104963
105041
|
},
|
|
104964
105042
|
menuOptions: {
|
|
105043
|
+
ariaMenuColumn: "Dr\xFCcken Sie Alt/Option+Nach unten, um das Spaltenmen\xFC zu \xF6ffnen.",
|
|
104965
105044
|
sortMenuItem: {
|
|
104966
105045
|
label: "Nach dieser Spalte sortieren",
|
|
104967
105046
|
sortAscItem: "Spalte aufsteigend sortieren",
|
|
@@ -105016,6 +105095,9 @@ var de_DE_default = {
|
|
|
105016
105095
|
currencyCell: {
|
|
105017
105096
|
placeholder: "W\xE4hrung eingeben"
|
|
105018
105097
|
},
|
|
105098
|
+
linkCell: {
|
|
105099
|
+
externalLabel: "Open external link"
|
|
105100
|
+
},
|
|
105019
105101
|
numberCell: {
|
|
105020
105102
|
placeholder: "Nummer eingeben"
|
|
105021
105103
|
},
|
|
@@ -105096,9 +105178,10 @@ var en_AU_default = {
|
|
|
105096
105178
|
exporting: "Exporting...",
|
|
105097
105179
|
filters: {
|
|
105098
105180
|
filters: "Filters",
|
|
105099
|
-
|
|
105181
|
+
allFilters: "All Filters",
|
|
105100
105182
|
clearAllFilters: "Clear all filters",
|
|
105101
105183
|
close: "Close",
|
|
105184
|
+
removeFilterToken: "Remove %{name}",
|
|
105102
105185
|
locationFilter: {
|
|
105103
105186
|
selectAll: "Select all",
|
|
105104
105187
|
includeSublocations: "Include sub-locations",
|
|
@@ -105136,6 +105219,7 @@ var en_AU_default = {
|
|
|
105136
105219
|
secondary: "Information loading, thanks for your patience."
|
|
105137
105220
|
},
|
|
105138
105221
|
menuOptions: {
|
|
105222
|
+
ariaMenuColumn: "Press Alt/Option+Down to open column menu.",
|
|
105139
105223
|
sortMenuItem: {
|
|
105140
105224
|
label: "Sort by this column",
|
|
105141
105225
|
sortAscItem: "Sort column ascending",
|
|
@@ -105190,6 +105274,9 @@ var en_AU_default = {
|
|
|
105190
105274
|
currencyCell: {
|
|
105191
105275
|
placeholder: "Enter currency"
|
|
105192
105276
|
},
|
|
105277
|
+
linkCell: {
|
|
105278
|
+
externalLabel: "Open external link"
|
|
105279
|
+
},
|
|
105193
105280
|
numberCell: {
|
|
105194
105281
|
placeholder: "Enter number"
|
|
105195
105282
|
},
|
|
@@ -105270,9 +105357,10 @@ var en_CA_default = {
|
|
|
105270
105357
|
exporting: "Exporting...",
|
|
105271
105358
|
filters: {
|
|
105272
105359
|
filters: "Filters",
|
|
105273
|
-
|
|
105360
|
+
allFilters: "All Filters",
|
|
105274
105361
|
clearAllFilters: "Clear all filters",
|
|
105275
105362
|
close: "Close",
|
|
105363
|
+
removeFilterToken: "Remove %{name}",
|
|
105276
105364
|
locationFilter: {
|
|
105277
105365
|
selectAll: "Select all",
|
|
105278
105366
|
includeSublocations: "Include sub-locations",
|
|
@@ -105310,6 +105398,7 @@ var en_CA_default = {
|
|
|
105310
105398
|
secondary: "Information loading, thanks for your patience."
|
|
105311
105399
|
},
|
|
105312
105400
|
menuOptions: {
|
|
105401
|
+
ariaMenuColumn: "Press Alt/Option+Down to open column menu.",
|
|
105313
105402
|
sortMenuItem: {
|
|
105314
105403
|
label: "Sort by this column",
|
|
105315
105404
|
sortAscItem: "Sort column ascending",
|
|
@@ -105364,6 +105453,9 @@ var en_CA_default = {
|
|
|
105364
105453
|
currencyCell: {
|
|
105365
105454
|
placeholder: "Enter currency"
|
|
105366
105455
|
},
|
|
105456
|
+
linkCell: {
|
|
105457
|
+
externalLabel: "Open external link"
|
|
105458
|
+
},
|
|
105367
105459
|
numberCell: {
|
|
105368
105460
|
placeholder: "Enter number"
|
|
105369
105461
|
},
|
|
@@ -105444,9 +105536,10 @@ var en_GB_default = {
|
|
|
105444
105536
|
exporting: "Exporting...",
|
|
105445
105537
|
filters: {
|
|
105446
105538
|
filters: "Filters",
|
|
105447
|
-
|
|
105539
|
+
allFilters: "All Filters",
|
|
105448
105540
|
clearAllFilters: "Clear all filters",
|
|
105449
105541
|
close: "Close",
|
|
105542
|
+
removeFilterToken: "Remove %{name}",
|
|
105450
105543
|
locationFilter: {
|
|
105451
105544
|
selectAll: "Select all",
|
|
105452
105545
|
includeSublocations: "Include sub-locations",
|
|
@@ -105484,6 +105577,7 @@ var en_GB_default = {
|
|
|
105484
105577
|
secondary: "Information loading, thanks for your patience."
|
|
105485
105578
|
},
|
|
105486
105579
|
menuOptions: {
|
|
105580
|
+
ariaMenuColumn: "Press Alt/Option+Down to open column menu.",
|
|
105487
105581
|
sortMenuItem: {
|
|
105488
105582
|
label: "Sort by this column",
|
|
105489
105583
|
sortAscItem: "Sort column ascending",
|
|
@@ -105538,6 +105632,9 @@ var en_GB_default = {
|
|
|
105538
105632
|
currencyCell: {
|
|
105539
105633
|
placeholder: "Enter currency"
|
|
105540
105634
|
},
|
|
105635
|
+
linkCell: {
|
|
105636
|
+
externalLabel: "Open external link"
|
|
105637
|
+
},
|
|
105541
105638
|
numberCell: {
|
|
105542
105639
|
placeholder: "Enter number"
|
|
105543
105640
|
},
|
|
@@ -105618,9 +105715,11 @@ var en_default = {
|
|
|
105618
105715
|
exporting: "Exporting...",
|
|
105619
105716
|
filters: {
|
|
105620
105717
|
filters: "Filters",
|
|
105718
|
+
allFilters: "All Filters",
|
|
105621
105719
|
moreFilters: "More Filters",
|
|
105622
105720
|
clearAllFilters: "Clear All Filters",
|
|
105623
105721
|
close: "Close",
|
|
105722
|
+
removeFilterToken: "Remove %{name}",
|
|
105624
105723
|
locationFilter: {
|
|
105625
105724
|
selectAll: "Select all",
|
|
105626
105725
|
includeSublocations: "Include sublocations",
|
|
@@ -105636,6 +105735,7 @@ var en_default = {
|
|
|
105636
105735
|
options: {
|
|
105637
105736
|
any_value: "Any Value",
|
|
105638
105737
|
is_between: "Is Between",
|
|
105738
|
+
is_equal_to: "Is Equal To",
|
|
105639
105739
|
greater_than: "Is Greater Than",
|
|
105640
105740
|
greater_than_equal_to: "Is Greater Than or Equal To",
|
|
105641
105741
|
less_than: "Is Less Than",
|
|
@@ -105658,6 +105758,7 @@ var en_default = {
|
|
|
105658
105758
|
secondary: "Information loading, thanks for your patience."
|
|
105659
105759
|
},
|
|
105660
105760
|
menuOptions: {
|
|
105761
|
+
ariaMenuColumn: "Press Alt/Option+Down to open column menu.",
|
|
105661
105762
|
sortMenuItem: {
|
|
105662
105763
|
label: "Sort By This Column",
|
|
105663
105764
|
sortAscItem: "Sort Column Ascending",
|
|
@@ -105712,6 +105813,9 @@ var en_default = {
|
|
|
105712
105813
|
currencyCell: {
|
|
105713
105814
|
placeholder: "Enter currency"
|
|
105714
105815
|
},
|
|
105816
|
+
linkCell: {
|
|
105817
|
+
externalLabel: "Open external link"
|
|
105818
|
+
},
|
|
105715
105819
|
numberCell: {
|
|
105716
105820
|
placeholder: "Enter number"
|
|
105717
105821
|
},
|
|
@@ -105792,9 +105896,10 @@ var es_ES_default = {
|
|
|
105792
105896
|
exporting: "Exportando...",
|
|
105793
105897
|
filters: {
|
|
105794
105898
|
filters: "Filtros",
|
|
105795
|
-
|
|
105899
|
+
allFilters: "All Filters",
|
|
105796
105900
|
clearAllFilters: "Borrar todos los filtros",
|
|
105797
105901
|
close: "Cerrar",
|
|
105902
|
+
removeFilterToken: "Eliminar %{name}",
|
|
105798
105903
|
locationFilter: {
|
|
105799
105904
|
selectAll: "Seleccionar todo",
|
|
105800
105905
|
includeSublocations: "Incluir sububicaciones",
|
|
@@ -105832,6 +105937,7 @@ var es_ES_default = {
|
|
|
105832
105937
|
secondary: "Cargando informaci\xF3n; gracias por su paciencia."
|
|
105833
105938
|
},
|
|
105834
105939
|
menuOptions: {
|
|
105940
|
+
ariaMenuColumn: "Pulse Alt/Opci\xF3n\xA0+\xA0flecha hacia abajo para abrir el men\xFA de la columna.",
|
|
105835
105941
|
sortMenuItem: {
|
|
105836
105942
|
label: "Ordenar por esta columna",
|
|
105837
105943
|
sortAscItem: "Ordenar columna en ascendente",
|
|
@@ -105886,6 +105992,9 @@ var es_ES_default = {
|
|
|
105886
105992
|
currencyCell: {
|
|
105887
105993
|
placeholder: "Introducir moneda"
|
|
105888
105994
|
},
|
|
105995
|
+
linkCell: {
|
|
105996
|
+
externalLabel: "Open external link"
|
|
105997
|
+
},
|
|
105889
105998
|
numberCell: {
|
|
105890
105999
|
placeholder: "Introducir n\xFAmero"
|
|
105891
106000
|
},
|
|
@@ -105966,9 +106075,10 @@ var es_default = {
|
|
|
105966
106075
|
exporting: "Exportando...",
|
|
105967
106076
|
filters: {
|
|
105968
106077
|
filters: "Filtros",
|
|
105969
|
-
|
|
106078
|
+
allFilters: "All Filters",
|
|
105970
106079
|
clearAllFilters: "Restablecer todos los filtros",
|
|
105971
106080
|
close: "Cerrar",
|
|
106081
|
+
removeFilterToken: "Eliminar %{name}",
|
|
105972
106082
|
locationFilter: {
|
|
105973
106083
|
selectAll: "Seleccionar todo",
|
|
105974
106084
|
includeSublocations: "Incluir sububicaciones",
|
|
@@ -106006,6 +106116,7 @@ var es_default = {
|
|
|
106006
106116
|
secondary: "Cargando informaci\xF3n. Gracias por su paciencia."
|
|
106007
106117
|
},
|
|
106008
106118
|
menuOptions: {
|
|
106119
|
+
ariaMenuColumn: "Pulse Alt/Opci\xF3n + Flecha hacia abajo para abrir el men\xFA de columnas.",
|
|
106009
106120
|
sortMenuItem: {
|
|
106010
106121
|
label: "Ordenar por esta columna",
|
|
106011
106122
|
sortAscItem: "Ordenar columna - Ascendente",
|
|
@@ -106060,6 +106171,9 @@ var es_default = {
|
|
|
106060
106171
|
currencyCell: {
|
|
106061
106172
|
placeholder: "Ingresar moneda"
|
|
106062
106173
|
},
|
|
106174
|
+
linkCell: {
|
|
106175
|
+
externalLabel: "Open external link"
|
|
106176
|
+
},
|
|
106063
106177
|
numberCell: {
|
|
106064
106178
|
placeholder: "Ingresar n\xFAmero"
|
|
106065
106179
|
},
|
|
@@ -106112,7 +106226,7 @@ var fr_CA_default = {
|
|
|
106112
106226
|
title: "Il n'y a aucun item \xE0 afficher pour le moment",
|
|
106113
106227
|
itemsTitle: "Il n'y a pas de %{itemsLabel} \xE0 afficher pour le moment",
|
|
106114
106228
|
tooltip: "Le bouton %{featureName} sera activ\xE9 une fois que vous aurez ajout\xE9 des informations au %{tableName}",
|
|
106115
|
-
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}",
|
|
106116
106230
|
featureFilter: "Filtre",
|
|
106117
106231
|
featureQuickFilter: "Filtre rapide",
|
|
106118
106232
|
featureGroupBy: "Regrouper par",
|
|
@@ -106140,9 +106254,10 @@ var fr_CA_default = {
|
|
|
106140
106254
|
exporting: "Exportation ...",
|
|
106141
106255
|
filters: {
|
|
106142
106256
|
filters: "Filtres",
|
|
106143
|
-
|
|
106257
|
+
allFilters: "All Filters",
|
|
106144
106258
|
clearAllFilters: "Effacer tous les filtres",
|
|
106145
106259
|
close: "Fermer",
|
|
106260
|
+
removeFilterToken: "Retirer %{name}",
|
|
106146
106261
|
locationFilter: {
|
|
106147
106262
|
selectAll: "S\xE9lectionner tout",
|
|
106148
106263
|
includeSublocations: "Inclure les sous-lieux",
|
|
@@ -106180,6 +106295,7 @@ var fr_CA_default = {
|
|
|
106180
106295
|
secondary: "Chargement des informations, merci pour votre patience."
|
|
106181
106296
|
},
|
|
106182
106297
|
menuOptions: {
|
|
106298
|
+
ariaMenuColumn: "Appuyez sur Alt/Option\xA0+ Bas pour ouvrir le menu de la colonne.",
|
|
106183
106299
|
sortMenuItem: {
|
|
106184
106300
|
label: "Trier cette colonne",
|
|
106185
106301
|
sortAscItem: "Trier la colonne par ordre croissant",
|
|
@@ -106234,6 +106350,9 @@ var fr_CA_default = {
|
|
|
106234
106350
|
currencyCell: {
|
|
106235
106351
|
placeholder: "Saisir la devise"
|
|
106236
106352
|
},
|
|
106353
|
+
linkCell: {
|
|
106354
|
+
externalLabel: "Open external link"
|
|
106355
|
+
},
|
|
106237
106356
|
numberCell: {
|
|
106238
106357
|
placeholder: "Saisir un num\xE9ro"
|
|
106239
106358
|
},
|
|
@@ -106314,9 +106433,10 @@ var fr_FR_default = {
|
|
|
106314
106433
|
exporting: "Exportation...",
|
|
106315
106434
|
filters: {
|
|
106316
106435
|
filters: "Filtres",
|
|
106317
|
-
|
|
106436
|
+
allFilters: "All Filters",
|
|
106318
106437
|
clearAllFilters: "Effacer tous les filtres",
|
|
106319
106438
|
close: "Fermer",
|
|
106439
|
+
removeFilterToken: "Retirer %{name}",
|
|
106320
106440
|
locationFilter: {
|
|
106321
106441
|
selectAll: "S\xE9lectionner tout",
|
|
106322
106442
|
includeSublocations: "Inclure les sous-lieux",
|
|
@@ -106354,6 +106474,7 @@ var fr_FR_default = {
|
|
|
106354
106474
|
secondary: "Chargement des informations. Merci pour votre patience."
|
|
106355
106475
|
},
|
|
106356
106476
|
menuOptions: {
|
|
106477
|
+
ariaMenuColumn: "Appuyez sur Alt/Option + la fl\xE8che vers le bas pour ouvrir le menu de la colonne.",
|
|
106357
106478
|
sortMenuItem: {
|
|
106358
106479
|
label: "Trier cette colonne",
|
|
106359
106480
|
sortAscItem: "Trier la colonne par ordre croissant",
|
|
@@ -106408,6 +106529,9 @@ var fr_FR_default = {
|
|
|
106408
106529
|
currencyCell: {
|
|
106409
106530
|
placeholder: "Saisir la devise"
|
|
106410
106531
|
},
|
|
106532
|
+
linkCell: {
|
|
106533
|
+
externalLabel: "Open external link"
|
|
106534
|
+
},
|
|
106411
106535
|
numberCell: {
|
|
106412
106536
|
placeholder: "Saisir un num\xE9ro"
|
|
106413
106537
|
},
|
|
@@ -106488,9 +106612,10 @@ var is_IS_default = {
|
|
|
106488
106612
|
exporting: "Flytur \xFAt ...",
|
|
106489
106613
|
filters: {
|
|
106490
106614
|
filters: "S\xEDur",
|
|
106491
|
-
|
|
106615
|
+
allFilters: "All Filters",
|
|
106492
106616
|
clearAllFilters: "Hreinsa allar s\xEDur",
|
|
106493
106617
|
close: "Loka\xF0u",
|
|
106618
|
+
removeFilterToken: "Fjarl\xE6gja %{name}",
|
|
106494
106619
|
locationFilter: {
|
|
106495
106620
|
selectAll: "Velja allt",
|
|
106496
106621
|
includeSublocations: "L\xE1ttu undirlokanir fylgja me\xF0",
|
|
@@ -106528,6 +106653,7 @@ var is_IS_default = {
|
|
|
106528
106653
|
secondary: "Hle\xF0sla uppl\xFDsinga, takk fyrir \xFEolinm\xE6\xF0ina."
|
|
106529
106654
|
},
|
|
106530
106655
|
menuOptions: {
|
|
106656
|
+
ariaMenuColumn: "\xDDttu \xE1 Alt/Option+Down til a\xF0 opna d\xE1lkavalmyndina.",
|
|
106531
106657
|
sortMenuItem: {
|
|
106532
106658
|
label: "Ra\xF0a eftir \xFEessum d\xE1lki",
|
|
106533
106659
|
sortAscItem: "Ra\xF0a d\xE1lki h\xE6kkandi",
|
|
@@ -106582,6 +106708,9 @@ var is_IS_default = {
|
|
|
106582
106708
|
currencyCell: {
|
|
106583
106709
|
placeholder: "Sl\xE1\xF0u inn gjaldmi\xF0il"
|
|
106584
106710
|
},
|
|
106711
|
+
linkCell: {
|
|
106712
|
+
externalLabel: "Open external link"
|
|
106713
|
+
},
|
|
106585
106714
|
numberCell: {
|
|
106586
106715
|
placeholder: "Sl\xE1\xF0u inn n\xFAmer"
|
|
106587
106716
|
},
|
|
@@ -106662,9 +106791,10 @@ var it_IT_default = {
|
|
|
106662
106791
|
exporting: "Esportazione in corso...",
|
|
106663
106792
|
filters: {
|
|
106664
106793
|
filters: "Filtri",
|
|
106665
|
-
|
|
106794
|
+
allFilters: "All Filters",
|
|
106666
106795
|
clearAllFilters: "Cancella tutti i filtri",
|
|
106667
106796
|
close: "Chiudi",
|
|
106797
|
+
removeFilterToken: "Rimuovi %{name}",
|
|
106668
106798
|
locationFilter: {
|
|
106669
106799
|
selectAll: "Seleziona tutto",
|
|
106670
106800
|
includeSublocations: "Includi posizioni secondarie",
|
|
@@ -106702,6 +106832,7 @@ var it_IT_default = {
|
|
|
106702
106832
|
secondary: "Caricamento delle informazioni in corso, grazie per la pazienza."
|
|
106703
106833
|
},
|
|
106704
106834
|
menuOptions: {
|
|
106835
|
+
ariaMenuColumn: "Premere Alt/Opzione+Freccia gi\xF9 per aprire il menu a colonna.",
|
|
106705
106836
|
sortMenuItem: {
|
|
106706
106837
|
label: "Ordina per questa colonna",
|
|
106707
106838
|
sortAscItem: "Ordina colonna (crescente)",
|
|
@@ -106756,6 +106887,9 @@ var it_IT_default = {
|
|
|
106756
106887
|
currencyCell: {
|
|
106757
106888
|
placeholder: "Inserisci valuta"
|
|
106758
106889
|
},
|
|
106890
|
+
linkCell: {
|
|
106891
|
+
externalLabel: "Open external link"
|
|
106892
|
+
},
|
|
106759
106893
|
numberCell: {
|
|
106760
106894
|
placeholder: "Inserisci numero"
|
|
106761
106895
|
},
|
|
@@ -106836,9 +106970,10 @@ var ja_JP_default = {
|
|
|
106836
106970
|
exporting: "\u30A8\u30AF\u30B9\u30DD\u30FC\u30C8\u4E2D...",
|
|
106837
106971
|
filters: {
|
|
106838
106972
|
filters: "\u30D5\u30A3\u30EB\u30BF",
|
|
106839
|
-
|
|
106973
|
+
allFilters: "All Filters",
|
|
106840
106974
|
clearAllFilters: "\u3059\u3079\u3066\u306E\u30D5\u30A3\u30EB\u30BF\u3092\u6D88\u53BB",
|
|
106841
106975
|
close: "\u7D42\u4E86",
|
|
106976
|
+
removeFilterToken: "%{name}\u524A\u9664",
|
|
106842
106977
|
locationFilter: {
|
|
106843
106978
|
selectAll: "\u3059\u3079\u3066\u9078\u629E",
|
|
106844
106979
|
includeSublocations: "\u30B5\u30D6\u30ED\u30B1\u30FC\u30B7\u30E7\u30F3\u3092\u542B\u3081\u308B",
|
|
@@ -106876,6 +107011,7 @@ var ja_JP_default = {
|
|
|
106876
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"
|
|
106877
107012
|
},
|
|
106878
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",
|
|
106879
107015
|
sortMenuItem: {
|
|
106880
107016
|
label: "\u3053\u306E\u5217\u3067\u4E26\u3079\u66FF\u3048\u308B",
|
|
106881
107017
|
sortAscItem: "\u5217\u3092\u6607\u9806\u306B\u4E26\u3079\u66FF\u3048\u308B",
|
|
@@ -106930,6 +107066,9 @@ var ja_JP_default = {
|
|
|
106930
107066
|
currencyCell: {
|
|
106931
107067
|
placeholder: "\u901A\u8CA8\u3092\u5165\u529B"
|
|
106932
107068
|
},
|
|
107069
|
+
linkCell: {
|
|
107070
|
+
externalLabel: "Open external link"
|
|
107071
|
+
},
|
|
106933
107072
|
numberCell: {
|
|
106934
107073
|
placeholder: "\u756A\u53F7\u3092\u5165\u529B"
|
|
106935
107074
|
},
|
|
@@ -106974,7 +107113,7 @@ var nb_NO_default = {
|
|
|
106974
107113
|
emptyState: {
|
|
106975
107114
|
noFilteredResults: {
|
|
106976
107115
|
description: "Check your spelling and filter options, or search for a different keyword.",
|
|
106977
|
-
title: "
|
|
107116
|
+
title: "Ingen enheter samsvarer med s\xF8ket ditt",
|
|
106978
107117
|
itemsTitle: "No %{itemsLabel} Match Your Search"
|
|
106979
107118
|
},
|
|
106980
107119
|
noResults: {
|
|
@@ -106993,7 +107132,7 @@ var nb_NO_default = {
|
|
|
106993
107132
|
bulkActions: {
|
|
106994
107133
|
apply: "Apply",
|
|
106995
107134
|
bulkEdit: "Bulk Edit",
|
|
106996
|
-
cancel: "
|
|
107135
|
+
cancel: "Avbryt",
|
|
106997
107136
|
editValues: "Edit Values",
|
|
106998
107137
|
error: "Sorry, the items couldn't be updated. Try again.",
|
|
106999
107138
|
placeholderForField: "Enter %{fieldName}",
|
|
@@ -107005,23 +107144,24 @@ var nb_NO_default = {
|
|
|
107005
107144
|
},
|
|
107006
107145
|
success: "The items were successfully updated.",
|
|
107007
107146
|
one: "item",
|
|
107008
|
-
many: "
|
|
107147
|
+
many: "Enheter"
|
|
107009
107148
|
},
|
|
107010
107149
|
exporting: "Exporting...",
|
|
107011
107150
|
filters: {
|
|
107012
|
-
filters: "
|
|
107013
|
-
|
|
107151
|
+
filters: "Filtre",
|
|
107152
|
+
allFilters: "All Filters",
|
|
107014
107153
|
clearAllFilters: "Clear All Filters",
|
|
107015
107154
|
close: "Close",
|
|
107155
|
+
removeFilterToken: "Fjern %{name}",
|
|
107016
107156
|
locationFilter: {
|
|
107017
|
-
selectAll: "
|
|
107157
|
+
selectAll: "Velg alle",
|
|
107018
107158
|
includeSublocations: "Include sublocations",
|
|
107019
107159
|
searchLocations: "Search locations",
|
|
107020
107160
|
locations: "Locations"
|
|
107021
107161
|
},
|
|
107022
107162
|
numberFilter: {
|
|
107023
107163
|
labels: {
|
|
107024
|
-
and: "
|
|
107164
|
+
and: "OG",
|
|
107025
107165
|
input_placeholder: "Enter Value",
|
|
107026
107166
|
placeholder: "Select an item"
|
|
107027
107167
|
},
|
|
@@ -107050,11 +107190,15 @@ var nb_NO_default = {
|
|
|
107050
107190
|
secondary: "Information loading, thanks for your patience."
|
|
107051
107191
|
},
|
|
107052
107192
|
menuOptions: {
|
|
107193
|
+
ariaMenuColumn: "Trykk p\xE5 Alt/Option og pil ned for \xE5 \xE5pne kolonnemenyen.",
|
|
107053
107194
|
sortMenuItem: {
|
|
107054
107195
|
label: "Sort By This Column",
|
|
107055
107196
|
sortAscItem: "Sort Column Ascending",
|
|
107056
107197
|
sortDescItem: "Sort Column Descending",
|
|
107057
|
-
sortResetItem: "Column Not Sorted"
|
|
107198
|
+
sortResetItem: "Column Not Sorted",
|
|
107199
|
+
sortAscending: "sorted ascending",
|
|
107200
|
+
sortDescending: "sorted descending",
|
|
107201
|
+
sortCleared: "Sorting cleared"
|
|
107058
107202
|
},
|
|
107059
107203
|
expandAllGroups: "Expand All Groups",
|
|
107060
107204
|
collapseAllGroups: "Collapse All Groups",
|
|
@@ -107070,7 +107214,7 @@ var nb_NO_default = {
|
|
|
107070
107214
|
groupBy: "Group by {{label}}"
|
|
107071
107215
|
},
|
|
107072
107216
|
grandTotals: "Grand Totals",
|
|
107073
|
-
search: "
|
|
107217
|
+
search: "S\xF8k",
|
|
107074
107218
|
subtotals: "Subtotals",
|
|
107075
107219
|
tableSettings: {
|
|
107076
107220
|
configureColumns: "Configure Columns",
|
|
@@ -107081,7 +107225,7 @@ var nb_NO_default = {
|
|
|
107081
107225
|
large: "Large",
|
|
107082
107226
|
tableSettings: "Table Settings",
|
|
107083
107227
|
groupBy: "Group by:",
|
|
107084
|
-
reset: "
|
|
107228
|
+
reset: "Tilbakestill",
|
|
107085
107229
|
selectColumnGroup: "Select a column to group",
|
|
107086
107230
|
configure: "Configure"
|
|
107087
107231
|
},
|
|
@@ -107101,6 +107245,9 @@ var nb_NO_default = {
|
|
|
107101
107245
|
currencyCell: {
|
|
107102
107246
|
placeholder: "Enter currency"
|
|
107103
107247
|
},
|
|
107248
|
+
linkCell: {
|
|
107249
|
+
externalLabel: "Open external link"
|
|
107250
|
+
},
|
|
107104
107251
|
numberCell: {
|
|
107105
107252
|
placeholder: "Enter number"
|
|
107106
107253
|
},
|
|
@@ -107118,8 +107265,8 @@ var nb_NO_default = {
|
|
|
107118
107265
|
},
|
|
107119
107266
|
booleanCell: {
|
|
107120
107267
|
options: {
|
|
107121
|
-
yes: "
|
|
107122
|
-
no: "
|
|
107268
|
+
yes: "Ja",
|
|
107269
|
+
no: "Nei"
|
|
107123
107270
|
}
|
|
107124
107271
|
}
|
|
107125
107272
|
},
|
|
@@ -107181,9 +107328,10 @@ var pl_PL_default = {
|
|
|
107181
107328
|
exporting: "Eksportowanie...",
|
|
107182
107329
|
filters: {
|
|
107183
107330
|
filters: "Filtry",
|
|
107184
|
-
|
|
107331
|
+
allFilters: "All Filters",
|
|
107185
107332
|
clearAllFilters: "Wyczy\u015B\u0107 wszystkie filtry",
|
|
107186
107333
|
close: "Zamknij",
|
|
107334
|
+
removeFilterToken: "Usu\u0144 %{name}",
|
|
107187
107335
|
locationFilter: {
|
|
107188
107336
|
selectAll: "Zaznacz wszystkie",
|
|
107189
107337
|
includeSublocations: "Uwzgl\u0119dnij lokalizacje podrz\u0119dne",
|
|
@@ -107221,6 +107369,7 @@ var pl_PL_default = {
|
|
|
107221
107369
|
secondary: "Trwa \u0142adowanie informacji. Prosimy o cierpliwo\u015B\u0107."
|
|
107222
107370
|
},
|
|
107223
107371
|
menuOptions: {
|
|
107372
|
+
ariaMenuColumn: "Naci\u015Bnij klawisze Alt/Option + strza\u0142ka w d\xF3\u0142, aby otworzy\u0107 menu kolumny.",
|
|
107224
107373
|
sortMenuItem: {
|
|
107225
107374
|
label: "Sortuj wed\u0142ug tej kolumny",
|
|
107226
107375
|
sortAscItem: "Sortuj kolumny rosn\u0105co",
|
|
@@ -107275,6 +107424,9 @@ var pl_PL_default = {
|
|
|
107275
107424
|
currencyCell: {
|
|
107276
107425
|
placeholder: "Wprowad\u017A walut\u0119"
|
|
107277
107426
|
},
|
|
107427
|
+
linkCell: {
|
|
107428
|
+
externalLabel: "Open external link"
|
|
107429
|
+
},
|
|
107278
107430
|
numberCell: {
|
|
107279
107431
|
placeholder: "Wprowad\u017A numer"
|
|
107280
107432
|
},
|
|
@@ -107355,9 +107507,11 @@ var pseudo_default = {
|
|
|
107355
107507
|
exporting: "[\u1E16\u1E16\u1E16\u1E8B\u01A5\u01FF\u0159\u0167\u012B\u019E\u0260.....]",
|
|
107356
107508
|
filters: {
|
|
107357
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]",
|
|
107358
107511
|
moreFilters: "[\u1E3E\u1E3E\u1E3E\u01FF\u0159\u1E17 \xB7 \u0191\u012B\u0140\u0167\u1E17\u0159\u015F\u015F\u015F]",
|
|
107359
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]",
|
|
107360
107513
|
close: "[\u0187\u0140\u01FF\u015F\u1E17]",
|
|
107514
|
+
removeFilterToken: "[\u0158\u0158\u1E17\u1E3F\u01FF\u1E7D\u1E17 \xB7 \xB7 [NOTRANSLATE]%{name}[/NOTRANSLATE]]",
|
|
107361
107515
|
locationFilter: {
|
|
107362
107516
|
selectAll: "[\u015E\u015E\u1E17\u0140\u1E17\u0188\u0167 \xB7 \u0227\u0140\u0140\u0140]",
|
|
107363
107517
|
includeSublocations: "[\u012A\u012A\u012A\u012A\u019E\u0188\u0140\u016D\u1E13\u1E17 \xB7 \u015F\u016D\u0180\u0140\u01FF\u0188\u0227\u0167\u012B\u01FF\u019E\u015F\u015F\u015F\u015F]",
|
|
@@ -107373,6 +107527,7 @@ var pseudo_default = {
|
|
|
107373
107527
|
options: {
|
|
107374
107528
|
any_value: "[\u0226\u0226\u019E\u1E8F \xB7 \u1E7C\u0227\u0140\u016D\u1E17\u1E17]",
|
|
107375
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]",
|
|
107376
107531
|
greater_than: "[\u012A\u012A\u012A\u015F \xB7 \u0193\u0159\u1E17\u0227\u0167\u1E17\u0159 \xB7 \u0166\u0127\u0227\u019E\u019E\u019E]",
|
|
107377
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]",
|
|
107378
107533
|
less_than: "[\u012A\u012A\u012A\u015F \xB7 \u013F\u1E17\u015F\u015F \xB7 \u0166\u0127\u0227\u019E\u019E\u019E]",
|
|
@@ -107395,6 +107550,7 @@ var pseudo_default = {
|
|
|
107395
107550
|
secondary: "[\u012A\u012A\u012A\u012A\u012A\u012A\u012A\u012A\u012A\u012A\u019E\u0192\u01FF\u0159\u1E3F\u0227\u0167\u012B\u01FF\u019E \xB7 \u0140\u01FF\u0227\u1E13\u012B\u019E\u0260, \xB7 \u0167\u0127\u0227\u019E\u0137\u015F \xB7 \u0192\u01FF\u0159 \xB7 \u1E8F\u01FF\u016D\u0159 \xB7 \u01A5\u0227\u0167\u012B\u1E17\u019E\u0188\u1E17..........]"
|
|
107396
107551
|
},
|
|
107397
107552
|
menuOptions: {
|
|
107553
|
+
ariaMenuColumn: "[\u01A4\u01A4\u01A4\u01A4\u01A4\u01A4\u01A4\u01A4\u01A4\u0159\u1E17\u015F\u015F \xB7 \u0226\u0140\u0167/\u01FE\u01A5\u0167\u012B\u01FF\u019E+\u1E12\u01FF\u1E87\u019E \xB7 \u0167\u01FF \xB7 \u01FF\u01A5\u1E17\u019E \xB7 \u0188\u01FF\u0140\u016D\u1E3F\u019E \xB7 \u1E3F\u1E17\u019E\u016D.........]",
|
|
107398
107554
|
sortMenuItem: {
|
|
107399
107555
|
label: "[\u015E\u015E\u015E\u015E\u01FF\u0159\u0167 \xB7 \u0181\u1E8F \xB7 \u0166\u0127\u012B\u015F \xB7 \u0187\u01FF\u0140\u016D\u1E3F\u019E\u019E\u019E\u019E]",
|
|
107400
107556
|
sortAscItem: "[\u015E\u015E\u015E\u015E\u015E\u01FF\u0159\u0167 \xB7 \u0187\u01FF\u0140\u016D\u1E3F\u019E \xB7 \u0226\u015F\u0188\u1E17\u019E\u1E13\u012B\u019E\u0260\u0260\u0260\u0260\u0260]",
|
|
@@ -107449,6 +107605,9 @@ var pseudo_default = {
|
|
|
107449
107605
|
currencyCell: {
|
|
107450
107606
|
placeholder: "[\u1E16\u1E16\u1E16\u019E\u0167\u1E17\u0159 \xB7 \u0188\u016D\u0159\u0159\u1E17\u019E\u0188\u1E8F\u1E8F\u1E8F]"
|
|
107451
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
|
+
},
|
|
107452
107611
|
numberCell: {
|
|
107453
107612
|
placeholder: "[\u1E16\u1E16\u1E16\u019E\u0167\u1E17\u0159 \xB7 \u019E\u016D\u1E3F\u0180\u1E17\u0159\u0159\u0159]"
|
|
107454
107613
|
},
|
|
@@ -107529,9 +107688,10 @@ var pt_BR_default = {
|
|
|
107529
107688
|
exporting: "Exportando...",
|
|
107530
107689
|
filters: {
|
|
107531
107690
|
filters: "Filtros",
|
|
107532
|
-
|
|
107691
|
+
allFilters: "All Filters",
|
|
107533
107692
|
clearAllFilters: "Limpar Todos os Filtros",
|
|
107534
107693
|
close: "Fechar",
|
|
107694
|
+
removeFilterToken: "Remover %{name}",
|
|
107535
107695
|
locationFilter: {
|
|
107536
107696
|
selectAll: "Selecionar tudo",
|
|
107537
107697
|
includeSublocations: "Incluir Sublocais",
|
|
@@ -107569,6 +107729,7 @@ var pt_BR_default = {
|
|
|
107569
107729
|
secondary: "As informa\xE7\xF5es est\xE3o carregando, obrigado pela paci\xEAncia."
|
|
107570
107730
|
},
|
|
107571
107731
|
menuOptions: {
|
|
107732
|
+
ariaMenuColumn: "Pressione Alt/Option + Seta para baixo para abrir o menu de colunas.",
|
|
107572
107733
|
sortMenuItem: {
|
|
107573
107734
|
label: "Classificar por Esta Coluna",
|
|
107574
107735
|
sortAscItem: "Classificar Coluna em Ordem Crescente",
|
|
@@ -107623,6 +107784,9 @@ var pt_BR_default = {
|
|
|
107623
107784
|
currencyCell: {
|
|
107624
107785
|
placeholder: "Insira moeda"
|
|
107625
107786
|
},
|
|
107787
|
+
linkCell: {
|
|
107788
|
+
externalLabel: "Open external link"
|
|
107789
|
+
},
|
|
107626
107790
|
numberCell: {
|
|
107627
107791
|
placeholder: "Inserir n\xFAmeros"
|
|
107628
107792
|
},
|
|
@@ -107675,7 +107839,7 @@ var pt_PT_default = {
|
|
|
107675
107839
|
title: "N\xE3o h\xE1 itens para apresentar neste momento",
|
|
107676
107840
|
itemsTitle: "N\xE3o h\xE1 %{itemsLabel} para apresentar neste momento",
|
|
107677
107841
|
tooltip: "O bot\xE3o %{featureName} ser\xE1 ativado quando adicionar informa\xE7\xF5es \xE0 tabela %{tableName}",
|
|
107678
|
-
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}",
|
|
107679
107843
|
featureFilter: "Filtro",
|
|
107680
107844
|
featureQuickFilter: "Filtro r\xE1pido",
|
|
107681
107845
|
featureGroupBy: "Agrupar por",
|
|
@@ -107703,9 +107867,10 @@ var pt_PT_default = {
|
|
|
107703
107867
|
exporting: "A exportar...",
|
|
107704
107868
|
filters: {
|
|
107705
107869
|
filters: "Filtros",
|
|
107706
|
-
|
|
107870
|
+
allFilters: "All Filters",
|
|
107707
107871
|
clearAllFilters: "Apagar todos os filtros",
|
|
107708
107872
|
close: "Fechar",
|
|
107873
|
+
removeFilterToken: "Remover %{name}",
|
|
107709
107874
|
locationFilter: {
|
|
107710
107875
|
selectAll: "Selecionar tudo",
|
|
107711
107876
|
includeSublocations: "Incluir locais secund\xE1rios",
|
|
@@ -107743,6 +107908,7 @@ var pt_PT_default = {
|
|
|
107743
107908
|
secondary: "A carregar informa\xE7\xF5es. Agradecemos a sua paci\xEAncia."
|
|
107744
107909
|
},
|
|
107745
107910
|
menuOptions: {
|
|
107911
|
+
ariaMenuColumn: "Pressionar Alt/Op\xE7\xE3o + Seta para baixo para abrir o menu da coluna.",
|
|
107746
107912
|
sortMenuItem: {
|
|
107747
107913
|
label: "Ordenar por esta coluna",
|
|
107748
107914
|
sortAscItem: "Ordenar coluna por ordem ascendente",
|
|
@@ -107797,6 +107963,9 @@ var pt_PT_default = {
|
|
|
107797
107963
|
currencyCell: {
|
|
107798
107964
|
placeholder: "Introduzir moeda"
|
|
107799
107965
|
},
|
|
107966
|
+
linkCell: {
|
|
107967
|
+
externalLabel: "Open external link"
|
|
107968
|
+
},
|
|
107800
107969
|
numberCell: {
|
|
107801
107970
|
placeholder: "Introduzir n\xFAmero"
|
|
107802
107971
|
},
|
|
@@ -107877,9 +108046,10 @@ var th_TH_default = {
|
|
|
107877
108046
|
exporting: "\u0E01\u0E33\u0E25\u0E31\u0E07\u0E2A\u0E48\u0E07\u0E2D\u0E2D\u0E01...",
|
|
107878
108047
|
filters: {
|
|
107879
108048
|
filters: "\u0E15\u0E31\u0E27\u0E01\u0E23\u0E2D\u0E07",
|
|
107880
|
-
|
|
108049
|
+
allFilters: "All Filters",
|
|
107881
108050
|
clearAllFilters: "\u0E25\u0E49\u0E32\u0E07\u0E15\u0E31\u0E27\u0E01\u0E23\u0E2D\u0E07\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14",
|
|
107882
108051
|
close: "\u0E1B\u0E34\u0E14",
|
|
108052
|
+
removeFilterToken: "\u0E25\u0E1A %{name}",
|
|
107883
108053
|
locationFilter: {
|
|
107884
108054
|
selectAll: "\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14",
|
|
107885
108055
|
includeSublocations: "\u0E23\u0E27\u0E21\u0E15\u0E33\u0E41\u0E2B\u0E19\u0E48\u0E07\u0E22\u0E48\u0E2D\u0E22",
|
|
@@ -107917,6 +108087,7 @@ var th_TH_default = {
|
|
|
107917
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"
|
|
107918
108088
|
},
|
|
107919
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",
|
|
107920
108091
|
sortMenuItem: {
|
|
107921
108092
|
label: "\u0E08\u0E31\u0E14\u0E40\u0E23\u0E35\u0E22\u0E07\u0E15\u0E32\u0E21\u0E04\u0E2D\u0E25\u0E31\u0E21\u0E19\u0E4C\u0E19\u0E35\u0E49",
|
|
107922
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",
|
|
@@ -107971,6 +108142,9 @@ var th_TH_default = {
|
|
|
107971
108142
|
currencyCell: {
|
|
107972
108143
|
placeholder: "\u0E1B\u0E49\u0E2D\u0E19\u0E2A\u0E01\u0E38\u0E25\u0E40\u0E07\u0E34\u0E19"
|
|
107973
108144
|
},
|
|
108145
|
+
linkCell: {
|
|
108146
|
+
externalLabel: "Open external link"
|
|
108147
|
+
},
|
|
107974
108148
|
numberCell: {
|
|
107975
108149
|
placeholder: "\u0E1B\u0E49\u0E2D\u0E19\u0E2B\u0E21\u0E32\u0E22\u0E40\u0E25\u0E02"
|
|
107976
108150
|
},
|
|
@@ -108051,9 +108225,10 @@ var zh_SG_default = {
|
|
|
108051
108225
|
exporting: "\u6B63\u5728\u5BFC\u51FA...",
|
|
108052
108226
|
filters: {
|
|
108053
108227
|
filters: "\u7B5B\u9009\u5668",
|
|
108054
|
-
|
|
108228
|
+
allFilters: "All Filters",
|
|
108055
108229
|
clearAllFilters: "\u6E05\u9664\u6240\u6709\u7B5B\u9009\u5668",
|
|
108056
108230
|
close: "\u5173\u95ED",
|
|
108231
|
+
removeFilterToken: "\u79FB\u9664 %{name}",
|
|
108057
108232
|
locationFilter: {
|
|
108058
108233
|
selectAll: "\u5168\u9009",
|
|
108059
108234
|
includeSublocations: "\u5305\u62EC\u5B50\u5730\u70B9",
|
|
@@ -108091,6 +108266,7 @@ var zh_SG_default = {
|
|
|
108091
108266
|
secondary: "\u4FE1\u606F\u52A0\u8F7D\u4E2D\uFF0C\u8BF7\u7A0D\u7B49\u7247\u523B\u3002"
|
|
108092
108267
|
},
|
|
108093
108268
|
menuOptions: {
|
|
108269
|
+
ariaMenuColumn: "\u6309\u201CAlt/Option + \u5411\u4E0B\u7BAD\u5934\u952E\u201D\u6253\u5F00\u5217\u83DC\u5355\u3002",
|
|
108094
108270
|
sortMenuItem: {
|
|
108095
108271
|
label: "\u6309\u6B64\u5217\u6392\u5E8F",
|
|
108096
108272
|
sortAscItem: "\u6309\u5347\u5E8F\u5BF9\u5217\u6392\u5E8F",
|
|
@@ -108145,6 +108321,9 @@ var zh_SG_default = {
|
|
|
108145
108321
|
currencyCell: {
|
|
108146
108322
|
placeholder: "\u8F93\u5165\u8D27\u5E01"
|
|
108147
108323
|
},
|
|
108324
|
+
linkCell: {
|
|
108325
|
+
externalLabel: "Open external link"
|
|
108326
|
+
},
|
|
108148
108327
|
numberCell: {
|
|
108149
108328
|
placeholder: "\u8F93\u5165\u6570\u5B57"
|
|
108150
108329
|
},
|
|
@@ -108225,9 +108404,10 @@ var zh_TW_default = {
|
|
|
108225
108404
|
exporting: "\u532F\u51FA\u4E2D\u2026\u2026",
|
|
108226
108405
|
filters: {
|
|
108227
108406
|
filters: "\u7BE9\u9078\u689D\u4EF6",
|
|
108228
|
-
|
|
108407
|
+
allFilters: "All Filters",
|
|
108229
108408
|
clearAllFilters: "\u6E05\u9664\u6240\u6709\u7BE9\u9078\u689D\u4EF6",
|
|
108230
108409
|
close: "\u95DC\u9589",
|
|
108410
|
+
removeFilterToken: "\u79FB\u9664\u300C%{name}\u300D",
|
|
108231
108411
|
locationFilter: {
|
|
108232
108412
|
selectAll: "\u5168\u90E8\u9078\u53D6",
|
|
108233
108413
|
includeSublocations: "\u5305\u62EC\u5B50\u4F4D\u7F6E",
|
|
@@ -108265,6 +108445,7 @@ var zh_TW_default = {
|
|
|
108265
108445
|
secondary: "\u6B63\u5728\u8F09\u5165\u8CC7\u8A0A\uFF0C\u611F\u8B1D\u60A8\u7684\u8010\u5FC3\u7B49\u5019\u3002"
|
|
108266
108446
|
},
|
|
108267
108447
|
menuOptions: {
|
|
108448
|
+
ariaMenuColumn: "\u6309\u4E0B Alt/Option+Down \u958B\u555F\u6B04\u4F4D\u9078\u55AE\u3002",
|
|
108268
108449
|
sortMenuItem: {
|
|
108269
108450
|
label: "\u4F9D\u6B64\u6B04\u4F4D\u6392\u5E8F",
|
|
108270
108451
|
sortAscItem: "\u905E\u589E\u6392\u5E8F\u6B04\u4F4D",
|
|
@@ -108319,6 +108500,9 @@ var zh_TW_default = {
|
|
|
108319
108500
|
currencyCell: {
|
|
108320
108501
|
placeholder: "\u8F38\u5165\u8CA8\u5E63"
|
|
108321
108502
|
},
|
|
108503
|
+
linkCell: {
|
|
108504
|
+
externalLabel: "Open external link"
|
|
108505
|
+
},
|
|
108322
108506
|
numberCell: {
|
|
108323
108507
|
placeholder: "\u8F38\u5165\u6578\u5B57"
|
|
108324
108508
|
},
|
|
@@ -110383,7 +110567,20 @@ var Table = (props) => {
|
|
|
110383
110567
|
params.api
|
|
110384
110568
|
);
|
|
110385
110569
|
},
|
|
110386
|
-
headerCheckboxSelectionFilteredOnly: true
|
|
110570
|
+
headerCheckboxSelectionFilteredOnly: true,
|
|
110571
|
+
// Needed to suppress ag-grid's default keyboard event handling for header menu keys when menu is open
|
|
110572
|
+
suppressHeaderKeyboardEvent({ event }) {
|
|
110573
|
+
const headerCell = event.target?.closest(
|
|
110574
|
+
".ag-header-cell"
|
|
110575
|
+
);
|
|
110576
|
+
const isMenuOpen = !!headerCell?.querySelector(
|
|
110577
|
+
'[aria-expanded="true"]'
|
|
110578
|
+
);
|
|
110579
|
+
if (isMenuOpen && ["ArrowDown", "ArrowUp", "Enter", "Escape"].includes(event.key)) {
|
|
110580
|
+
return true;
|
|
110581
|
+
}
|
|
110582
|
+
return false;
|
|
110583
|
+
}
|
|
110387
110584
|
};
|
|
110388
110585
|
},
|
|
110389
110586
|
[
|
|
@@ -110566,6 +110763,9 @@ var Table = (props) => {
|
|
|
110566
110763
|
suppressPropertyNamesCheck: true,
|
|
110567
110764
|
suppressRowClickSelection: props.suppressRowClickSelection || tableRowSelectionEnabled,
|
|
110568
110765
|
suppressPaginationPanel: true,
|
|
110766
|
+
localeText: {
|
|
110767
|
+
ariaMenuColumn: I18n.t("dataTable.menuOptions.ariaMenuColumn")
|
|
110768
|
+
},
|
|
110569
110769
|
tabToNextCell: props.tabToNextCell,
|
|
110570
110770
|
...clientSideRowData,
|
|
110571
110771
|
...detailRowConfigProps,
|
|
@@ -111657,6 +111857,23 @@ var getSuperSelectFilterPreset = (columnDefinition) => {
|
|
|
111657
111857
|
} : void 0;
|
|
111658
111858
|
return {
|
|
111659
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
|
+
},
|
|
111660
111877
|
Label: React80.forwardRef(() => {
|
|
111661
111878
|
const ctx = UNSAFE_useSuperSelectContext();
|
|
111662
111879
|
const isValueEmpty = ["", null, void 0].includes(
|
|
@@ -112075,7 +112292,7 @@ var SingleSelectQuickFilterRenderer = (props) => {
|
|
|
112075
112292
|
return /* @__PURE__ */ React80.createElement(ClientSideSingleSelectQuickFilter, { ...props });
|
|
112076
112293
|
};
|
|
112077
112294
|
var SingleSelectQuickFilterRenderer_default = SingleSelectQuickFilterRenderer;
|
|
112078
|
-
var FiltersPanelToggleButton = ({
|
|
112295
|
+
var FiltersPanelToggleButton = ({ hasDefinedFilters }) => {
|
|
112079
112296
|
const I18n = useI18nContext();
|
|
112080
112297
|
const { contextPanel } = useInternalTableContext();
|
|
112081
112298
|
const hasNoContent = useTableHasNoContent();
|
|
@@ -112103,34 +112320,22 @@ var FiltersPanelToggleButton = ({ hasSelectedFilters, hasDefinedFilters }) => {
|
|
|
112103
112320
|
},
|
|
112104
112321
|
selected: contextPanel.content === "filters"
|
|
112105
112322
|
},
|
|
112106
|
-
|
|
112323
|
+
I18n.t("dataTable.filters.allFilters")
|
|
112107
112324
|
)
|
|
112108
112325
|
);
|
|
112109
112326
|
};
|
|
112110
112327
|
var ServerSideFiltersPanelToggleButton = () => {
|
|
112111
112328
|
const {
|
|
112112
|
-
filterStorage: { hasDefinedFilters
|
|
112329
|
+
filterStorage: { hasDefinedFilters }
|
|
112113
112330
|
} = useInternalTableContext();
|
|
112114
|
-
return /* @__PURE__ */ React80.createElement(
|
|
112115
|
-
FiltersPanelToggleButton,
|
|
112116
|
-
{
|
|
112117
|
-
hasDefinedFilters,
|
|
112118
|
-
hasSelectedFilters
|
|
112119
|
-
}
|
|
112120
|
-
);
|
|
112331
|
+
return /* @__PURE__ */ React80.createElement(FiltersPanelToggleButton, { hasDefinedFilters });
|
|
112121
112332
|
};
|
|
112122
112333
|
var ClientSideFiltersPanelToggleButton = () => {
|
|
112123
112334
|
const { filterState } = useInternalTableContext();
|
|
112124
|
-
const activeFilters = React80.useMemo(() => {
|
|
112125
|
-
return filterState.allAvailableFilters.filter(({ instance }) => {
|
|
112126
|
-
return instance.isFilterActive();
|
|
112127
|
-
});
|
|
112128
|
-
}, [filterState.allAvailableFilters]);
|
|
112129
112335
|
return /* @__PURE__ */ React80.createElement(
|
|
112130
112336
|
FiltersPanelToggleButton,
|
|
112131
112337
|
{
|
|
112132
|
-
hasDefinedFilters: filterState.allAvailableFilters.length > 0
|
|
112133
|
-
hasSelectedFilters: activeFilters.length > 0
|
|
112338
|
+
hasDefinedFilters: filterState.allAvailableFilters.length > 0
|
|
112134
112339
|
}
|
|
112135
112340
|
);
|
|
112136
112341
|
};
|
|
@@ -112183,6 +112388,7 @@ var StyledFilterTokenWrapper = styled4.div`
|
|
|
112183
112388
|
var ClientSideQuickFilters = ({ overlayMatchesTriggerWidth }) => {
|
|
112184
112389
|
const { tableRef, filterState, getColumnDefinition } = useInternalTableContext();
|
|
112185
112390
|
const hasNoContent = useTableHasNoContent();
|
|
112391
|
+
const I18n = useI18nContext();
|
|
112186
112392
|
const { quickFilters, tokens } = React80.useMemo(() => {
|
|
112187
112393
|
return filterState.allAvailableFilters.reduce(
|
|
112188
112394
|
(acc, filter) => {
|
|
@@ -112247,9 +112453,13 @@ var ClientSideQuickFilters = ({ overlayMatchesTriggerWidth }) => {
|
|
|
112247
112453
|
if (!colDef) {
|
|
112248
112454
|
return null;
|
|
112249
112455
|
}
|
|
112250
|
-
|
|
112456
|
+
const tokenText = getFilterTokenText(colDef, filter.filterValues);
|
|
112457
|
+
return /* @__PURE__ */ React80.createElement(StyledFilterTokenWrapper, { key: filter.field }, /* @__PURE__ */ React80.createElement(UNSAFE_FilterToken, null, /* @__PURE__ */ React80.createElement(UNSAFE_FilterToken.Label, null, /* @__PURE__ */ React80.createElement(React80.Fragment, null, tokenText)), /* @__PURE__ */ React80.createElement(
|
|
112251
112458
|
UNSAFE_FilterToken.Remove,
|
|
112252
112459
|
{
|
|
112460
|
+
"aria-label": I18n.t("dataTable.filters.removeFilterToken", {
|
|
112461
|
+
name: tokenText
|
|
112462
|
+
}),
|
|
112253
112463
|
onClick: () => tableRef?.current?.removeFilter(filter.field)
|
|
112254
112464
|
}
|
|
112255
112465
|
)));
|
|
@@ -112268,6 +112478,7 @@ var ServerSideQuickFilters = ({ overlayMatchesTriggerWidth }) => {
|
|
|
112268
112478
|
getColumnDefinition
|
|
112269
112479
|
} = useInternalTableContext();
|
|
112270
112480
|
const hasNoContent = useTableHasNoContent();
|
|
112481
|
+
const I18n = useI18nContext();
|
|
112271
112482
|
const { quickFilterNames, tokenNames } = React80.useMemo(() => {
|
|
112272
112483
|
const appliedFilterNames = Object.keys(selectedFilters);
|
|
112273
112484
|
const isActiveFilter = (filterName) => appliedFilterNames.includes(filterName);
|
|
@@ -112342,12 +112553,16 @@ var ServerSideQuickFilters = ({ overlayMatchesTriggerWidth }) => {
|
|
|
112342
112553
|
return null;
|
|
112343
112554
|
}
|
|
112344
112555
|
const filter = getListFilter(fieldName);
|
|
112345
|
-
|
|
112556
|
+
const tokenText = getFilterTokenText(
|
|
112346
112557
|
colDef,
|
|
112347
112558
|
colDef.filterRenderer === DateFilterRenderer_default ? filter.value : filter.selected
|
|
112348
|
-
)
|
|
112559
|
+
);
|
|
112560
|
+
return /* @__PURE__ */ React80.createElement(StyledFilterTokenWrapper, { key: fieldName }, /* @__PURE__ */ React80.createElement(UNSAFE_FilterToken, null, /* @__PURE__ */ React80.createElement(UNSAFE_FilterToken.Label, null, /* @__PURE__ */ React80.createElement(React80.Fragment, null, tokenText)), /* @__PURE__ */ React80.createElement(
|
|
112349
112561
|
UNSAFE_FilterToken.Remove,
|
|
112350
112562
|
{
|
|
112563
|
+
"aria-label": I18n.t("dataTable.filters.removeFilterToken", {
|
|
112564
|
+
name: tokenText
|
|
112565
|
+
}),
|
|
112351
112566
|
"data-qa": "data-table-quick-filter-remove-token",
|
|
112352
112567
|
onClick: () => onClearFilter(fieldName)
|
|
112353
112568
|
}
|