@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.
@@ -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((Button6) => /* @__PURE__ */ React80.createElement(
8044
- Button6,
8043
+ return /* @__PURE__ */ React80.createElement(FlexList, { justifyContent: "center", alignItems: "center", size: "xs" }, buttons.map((Button7) => /* @__PURE__ */ React80.createElement(
8044
+ Button7,
8045
8045
  {
8046
- key: Button6.displayName,
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(Card, { "data-qa": "data-table-date-filter-calendar", ref, ...props }, /* @__PURE__ */ React80.createElement(Flex, { direction: "column" }, selectionType === "either" && /* @__PURE__ */ React80.createElement(Box, { padding: "md", style: { width: "100%" } }, /* @__PURE__ */ React80.createElement(
8420
- SegmentedController,
8428
+ return /* @__PURE__ */ React80.createElement(
8429
+ Card,
8421
8430
  {
8422
- block: true,
8423
- "data-qa": "data-table-date-filter-selection-control"
8431
+ "data-qa": "data-table-date-filter-calendar",
8432
+ ref,
8433
+ onBlur,
8434
+ ...props
8424
8435
  },
8425
- /* @__PURE__ */ React80.createElement(
8426
- SegmentedController.Segment,
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
- active: selectedValue.type === "single",
8429
- onClick: () => setSelectionType("single")
8439
+ block: true,
8440
+ "data-qa": "data-table-date-filter-selection-control"
8430
8441
  },
8431
- I18n.t("dataTable.filterRenders.dateFilter.single")
8432
- ),
8433
- /* @__PURE__ */ React80.createElement(
8434
- SegmentedController.Segment,
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
- active: selectedValue.type === "range",
8437
- onClick: () => setSelectionType("range")
8438
- },
8439
- I18n.t("dataTable.filterRenders.dateFilter.range")
8440
- )
8441
- )), /* @__PURE__ */ React80.createElement(
8442
- Calendar,
8443
- {
8444
- displayDate,
8445
- monthRef,
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
- Typography,
52406
+ return /* @__PURE__ */ React80.createElement(Typography, { ...typographyProps, className }, /* @__PURE__ */ React80.createElement(
52407
+ Link,
52387
52408
  {
52388
- ...typographyProps,
52389
- className,
52390
- style: { display: "flex", alignItems: "center", gap: "5px" }
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
- cursor: "pointer",
52397
- size: "sm",
52398
- onClick: () => window.open(URL, "_blank")
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", { defaultValue: "and" })), /* @__PURE__ */ React80.createElement(
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",
@@ -56606,6 +56634,7 @@ var GenericHeaderRenderer = (props) => {
56606
56634
  I18n
56607
56635
  );
56608
56636
  const headerCellRef = useRef(null);
56637
+ const menuButtonRef = useRef(null);
56609
56638
  const headerCheckboxSelection = colDef.headerCheckboxSelection;
56610
56639
  const headerCheckboxSelectionEnabled = typeof headerCheckboxSelection === "function" ? headerCheckboxSelection({
56611
56640
  api: props.api,
@@ -56972,6 +57001,51 @@ var GenericHeaderRenderer = (props) => {
56972
57001
  expansionVariant,
56973
57002
  onSSDR
56974
57003
  );
57004
+ React80.useEffect(() => {
57005
+ if (!props.enableMenu) return;
57006
+ const MENU_SYNTHETIC = "__menu_synthetic_keydown";
57007
+ const handler = (e) => {
57008
+ var _a2;
57009
+ const button = (_a2 = menuButtonRef.current) == null ? void 0 : _a2.querySelector("button");
57010
+ const isMenuOpen = (button == null ? void 0 : button.getAttribute("aria-expanded")) === "true";
57011
+ if (e[MENU_SYNTHETIC]) {
57012
+ return;
57013
+ }
57014
+ if (e.altKey && e.key === "ArrowDown" && !isMenuOpen) {
57015
+ e.preventDefault();
57016
+ e.stopPropagation();
57017
+ button == null ? void 0 : button.focus();
57018
+ button == null ? void 0 : button.click();
57019
+ return;
57020
+ }
57021
+ if (!isMenuOpen) return;
57022
+ switch (e.key) {
57023
+ case "ArrowDown":
57024
+ case "ArrowUp":
57025
+ case "Enter":
57026
+ case "Escape":
57027
+ e.stopPropagation();
57028
+ e.preventDefault();
57029
+ if (button) {
57030
+ const synthetic = new KeyboardEvent("keydown", {
57031
+ key: e.key,
57032
+ bubbles: true,
57033
+ cancelable: true
57034
+ });
57035
+ synthetic[MENU_SYNTHETIC] = true;
57036
+ button.dispatchEvent(synthetic);
57037
+ }
57038
+ break;
57039
+ case "Tab":
57040
+ case "ArrowLeft":
57041
+ case "ArrowRight":
57042
+ button == null ? void 0 : button.click();
57043
+ break;
57044
+ }
57045
+ };
57046
+ props.eGridHeader.addEventListener("keydown", handler, true);
57047
+ return () => props.eGridHeader.removeEventListener("keydown", handler, true);
57048
+ }, [props.eGridHeader, props.enableMenu]);
56975
57049
  return /* @__PURE__ */ React80.createElement(
56976
57050
  Flex,
56977
57051
  {
@@ -57046,6 +57120,7 @@ var GenericHeaderRenderer = (props) => {
57046
57120
  props.enableMenu && /* @__PURE__ */ React80.createElement(
57047
57121
  DropdownFlyout,
57048
57122
  {
57123
+ ref: menuButtonRef,
57049
57124
  className: "data-table-header-menu",
57050
57125
  size: "sm",
57051
57126
  options: orderMenuOptions(),
@@ -104200,6 +104275,11 @@ var BulkEditPanel = ({}) => {
104200
104275
  const { contextPanel, suppressBulkEditToasts } = useInternalTableContext();
104201
104276
  const I18n = useI18nContext();
104202
104277
  const bulkEditRef = React80.useRef(null);
104278
+ const bodyRef = React80.useRef(null);
104279
+ useEffect(() => {
104280
+ var _a;
104281
+ (_a = bodyRef.current) == null ? void 0 : _a.focus();
104282
+ }, []);
104203
104283
  return /* @__PURE__ */ React80.createElement(Panel, null, /* @__PURE__ */ React80.createElement(
104204
104284
  Panel.Header,
104205
104285
  {
@@ -104210,7 +104290,7 @@ var BulkEditPanel = ({}) => {
104210
104290
  }
104211
104291
  },
104212
104292
  /* @__PURE__ */ React80.createElement(Panel.Title, null, I18n.t("dataTable.bulkActions.editValues"))
104213
- ), /* @__PURE__ */ React80.createElement(Panel.Body, null, /* @__PURE__ */ React80.createElement(Panel.Section, null, /* @__PURE__ */ React80.createElement(
104293
+ ), /* @__PURE__ */ React80.createElement(Panel.Body, { ref: bodyRef }, /* @__PURE__ */ React80.createElement(Panel.Section, null, /* @__PURE__ */ React80.createElement(
104214
104294
  BulkEdit,
104215
104295
  {
104216
104296
  ref: bulkEditRef,
@@ -105061,9 +105141,10 @@ var de_DE_default = {
105061
105141
  exporting: "Wird exportiert\xA0\u2026",
105062
105142
  filters: {
105063
105143
  filters: "Filter",
105064
- moreFilters: "Weitere Filter",
105144
+ allFilters: "All Filters",
105065
105145
  clearAllFilters: "Alle Filter zur\xFCcksetzen",
105066
105146
  close: "Schlie\xDFen",
105147
+ removeFilterToken: "%{name} entfernen",
105067
105148
  locationFilter: {
105068
105149
  selectAll: "Alle ausw\xE4hlen",
105069
105150
  includeSublocations: "Teilstandorte einschlie\xDFen",
@@ -105101,6 +105182,7 @@ var de_DE_default = {
105101
105182
  secondary: "Informationen werden geladen, vielen Dank f\xFCr Ihre Geduld."
105102
105183
  },
105103
105184
  menuOptions: {
105185
+ ariaMenuColumn: "Dr\xFCcken Sie Alt/Option+Nach unten, um das Spaltenmen\xFC zu \xF6ffnen.",
105104
105186
  sortMenuItem: {
105105
105187
  label: "Nach dieser Spalte sortieren",
105106
105188
  sortAscItem: "Spalte aufsteigend sortieren",
@@ -105155,6 +105237,9 @@ var de_DE_default = {
105155
105237
  currencyCell: {
105156
105238
  placeholder: "W\xE4hrung eingeben"
105157
105239
  },
105240
+ linkCell: {
105241
+ externalLabel: "Open external link"
105242
+ },
105158
105243
  numberCell: {
105159
105244
  placeholder: "Nummer eingeben"
105160
105245
  },
@@ -105235,9 +105320,10 @@ var en_AU_default = {
105235
105320
  exporting: "Exporting...",
105236
105321
  filters: {
105237
105322
  filters: "Filters",
105238
- moreFilters: "More filters",
105323
+ allFilters: "All Filters",
105239
105324
  clearAllFilters: "Clear all filters",
105240
105325
  close: "Close",
105326
+ removeFilterToken: "Remove %{name}",
105241
105327
  locationFilter: {
105242
105328
  selectAll: "Select all",
105243
105329
  includeSublocations: "Include sub-locations",
@@ -105275,6 +105361,7 @@ var en_AU_default = {
105275
105361
  secondary: "Information loading, thanks for your patience."
105276
105362
  },
105277
105363
  menuOptions: {
105364
+ ariaMenuColumn: "Press Alt/Option+Down to open column menu.",
105278
105365
  sortMenuItem: {
105279
105366
  label: "Sort by this column",
105280
105367
  sortAscItem: "Sort column ascending",
@@ -105329,6 +105416,9 @@ var en_AU_default = {
105329
105416
  currencyCell: {
105330
105417
  placeholder: "Enter currency"
105331
105418
  },
105419
+ linkCell: {
105420
+ externalLabel: "Open external link"
105421
+ },
105332
105422
  numberCell: {
105333
105423
  placeholder: "Enter number"
105334
105424
  },
@@ -105409,9 +105499,10 @@ var en_CA_default = {
105409
105499
  exporting: "Exporting...",
105410
105500
  filters: {
105411
105501
  filters: "Filters",
105412
- moreFilters: "More filters",
105502
+ allFilters: "All Filters",
105413
105503
  clearAllFilters: "Clear all filters",
105414
105504
  close: "Close",
105505
+ removeFilterToken: "Remove %{name}",
105415
105506
  locationFilter: {
105416
105507
  selectAll: "Select all",
105417
105508
  includeSublocations: "Include sub-locations",
@@ -105449,6 +105540,7 @@ var en_CA_default = {
105449
105540
  secondary: "Information loading, thanks for your patience."
105450
105541
  },
105451
105542
  menuOptions: {
105543
+ ariaMenuColumn: "Press Alt/Option+Down to open column menu.",
105452
105544
  sortMenuItem: {
105453
105545
  label: "Sort by this column",
105454
105546
  sortAscItem: "Sort column ascending",
@@ -105503,6 +105595,9 @@ var en_CA_default = {
105503
105595
  currencyCell: {
105504
105596
  placeholder: "Enter currency"
105505
105597
  },
105598
+ linkCell: {
105599
+ externalLabel: "Open external link"
105600
+ },
105506
105601
  numberCell: {
105507
105602
  placeholder: "Enter number"
105508
105603
  },
@@ -105583,9 +105678,10 @@ var en_GB_default = {
105583
105678
  exporting: "Exporting...",
105584
105679
  filters: {
105585
105680
  filters: "Filters",
105586
- moreFilters: "More filters",
105681
+ allFilters: "All Filters",
105587
105682
  clearAllFilters: "Clear all filters",
105588
105683
  close: "Close",
105684
+ removeFilterToken: "Remove %{name}",
105589
105685
  locationFilter: {
105590
105686
  selectAll: "Select all",
105591
105687
  includeSublocations: "Include sub-locations",
@@ -105623,6 +105719,7 @@ var en_GB_default = {
105623
105719
  secondary: "Information loading, thanks for your patience."
105624
105720
  },
105625
105721
  menuOptions: {
105722
+ ariaMenuColumn: "Press Alt/Option+Down to open column menu.",
105626
105723
  sortMenuItem: {
105627
105724
  label: "Sort by this column",
105628
105725
  sortAscItem: "Sort column ascending",
@@ -105677,6 +105774,9 @@ var en_GB_default = {
105677
105774
  currencyCell: {
105678
105775
  placeholder: "Enter currency"
105679
105776
  },
105777
+ linkCell: {
105778
+ externalLabel: "Open external link"
105779
+ },
105680
105780
  numberCell: {
105681
105781
  placeholder: "Enter number"
105682
105782
  },
@@ -105757,9 +105857,11 @@ var en_default = {
105757
105857
  exporting: "Exporting...",
105758
105858
  filters: {
105759
105859
  filters: "Filters",
105860
+ allFilters: "All Filters",
105760
105861
  moreFilters: "More Filters",
105761
105862
  clearAllFilters: "Clear All Filters",
105762
105863
  close: "Close",
105864
+ removeFilterToken: "Remove %{name}",
105763
105865
  locationFilter: {
105764
105866
  selectAll: "Select all",
105765
105867
  includeSublocations: "Include sublocations",
@@ -105775,6 +105877,7 @@ var en_default = {
105775
105877
  options: {
105776
105878
  any_value: "Any Value",
105777
105879
  is_between: "Is Between",
105880
+ is_equal_to: "Is Equal To",
105778
105881
  greater_than: "Is Greater Than",
105779
105882
  greater_than_equal_to: "Is Greater Than or Equal To",
105780
105883
  less_than: "Is Less Than",
@@ -105797,6 +105900,7 @@ var en_default = {
105797
105900
  secondary: "Information loading, thanks for your patience."
105798
105901
  },
105799
105902
  menuOptions: {
105903
+ ariaMenuColumn: "Press Alt/Option+Down to open column menu.",
105800
105904
  sortMenuItem: {
105801
105905
  label: "Sort By This Column",
105802
105906
  sortAscItem: "Sort Column Ascending",
@@ -105851,6 +105955,9 @@ var en_default = {
105851
105955
  currencyCell: {
105852
105956
  placeholder: "Enter currency"
105853
105957
  },
105958
+ linkCell: {
105959
+ externalLabel: "Open external link"
105960
+ },
105854
105961
  numberCell: {
105855
105962
  placeholder: "Enter number"
105856
105963
  },
@@ -105931,9 +106038,10 @@ var es_ES_default = {
105931
106038
  exporting: "Exportando...",
105932
106039
  filters: {
105933
106040
  filters: "Filtros",
105934
- moreFilters: "M\xE1s filtros",
106041
+ allFilters: "All Filters",
105935
106042
  clearAllFilters: "Borrar todos los filtros",
105936
106043
  close: "Cerrar",
106044
+ removeFilterToken: "Eliminar %{name}",
105937
106045
  locationFilter: {
105938
106046
  selectAll: "Seleccionar todo",
105939
106047
  includeSublocations: "Incluir sububicaciones",
@@ -105971,6 +106079,7 @@ var es_ES_default = {
105971
106079
  secondary: "Cargando informaci\xF3n; gracias por su paciencia."
105972
106080
  },
105973
106081
  menuOptions: {
106082
+ ariaMenuColumn: "Pulse Alt/Opci\xF3n\xA0+\xA0flecha hacia abajo para abrir el men\xFA de la columna.",
105974
106083
  sortMenuItem: {
105975
106084
  label: "Ordenar por esta columna",
105976
106085
  sortAscItem: "Ordenar columna en ascendente",
@@ -106025,6 +106134,9 @@ var es_ES_default = {
106025
106134
  currencyCell: {
106026
106135
  placeholder: "Introducir moneda"
106027
106136
  },
106137
+ linkCell: {
106138
+ externalLabel: "Open external link"
106139
+ },
106028
106140
  numberCell: {
106029
106141
  placeholder: "Introducir n\xFAmero"
106030
106142
  },
@@ -106105,9 +106217,10 @@ var es_default = {
106105
106217
  exporting: "Exportando...",
106106
106218
  filters: {
106107
106219
  filters: "Filtros",
106108
- moreFilters: "M\xE1s filtros",
106220
+ allFilters: "All Filters",
106109
106221
  clearAllFilters: "Restablecer todos los filtros",
106110
106222
  close: "Cerrar",
106223
+ removeFilterToken: "Eliminar %{name}",
106111
106224
  locationFilter: {
106112
106225
  selectAll: "Seleccionar todo",
106113
106226
  includeSublocations: "Incluir sububicaciones",
@@ -106145,6 +106258,7 @@ var es_default = {
106145
106258
  secondary: "Cargando informaci\xF3n. Gracias por su paciencia."
106146
106259
  },
106147
106260
  menuOptions: {
106261
+ ariaMenuColumn: "Pulse Alt/Opci\xF3n + Flecha hacia abajo para abrir el men\xFA de columnas.",
106148
106262
  sortMenuItem: {
106149
106263
  label: "Ordenar por esta columna",
106150
106264
  sortAscItem: "Ordenar columna - Ascendente",
@@ -106199,6 +106313,9 @@ var es_default = {
106199
106313
  currencyCell: {
106200
106314
  placeholder: "Ingresar moneda"
106201
106315
  },
106316
+ linkCell: {
106317
+ externalLabel: "Open external link"
106318
+ },
106202
106319
  numberCell: {
106203
106320
  placeholder: "Ingresar n\xFAmero"
106204
106321
  },
@@ -106251,7 +106368,7 @@ var fr_CA_default = {
106251
106368
  title: "Il n'y a aucun item \xE0 afficher pour le moment",
106252
106369
  itemsTitle: "Il n'y a pas de %{itemsLabel} \xE0 afficher pour le moment",
106253
106370
  tooltip: "Le bouton %{featureName} sera activ\xE9 une fois que vous aurez ajout\xE9 des informations au %{tableName}",
106254
- searchTooltip: "La recherche sera activ\xE9e une fois que vous aurez ajout\xE9 de l'information au %{tableName}",
106371
+ searchTooltip: "La recherche sera activ\xE9e une fois que vous aurez ajout\xE9 des informations au %{tableName}",
106255
106372
  featureFilter: "Filtre",
106256
106373
  featureQuickFilter: "Filtre rapide",
106257
106374
  featureGroupBy: "Regrouper par",
@@ -106279,9 +106396,10 @@ var fr_CA_default = {
106279
106396
  exporting: "Exportation ...",
106280
106397
  filters: {
106281
106398
  filters: "Filtres",
106282
- moreFilters: "Plus de filtres",
106399
+ allFilters: "All Filters",
106283
106400
  clearAllFilters: "Effacer tous les filtres",
106284
106401
  close: "Fermer",
106402
+ removeFilterToken: "Retirer %{name}",
106285
106403
  locationFilter: {
106286
106404
  selectAll: "S\xE9lectionner tout",
106287
106405
  includeSublocations: "Inclure les sous-lieux",
@@ -106319,6 +106437,7 @@ var fr_CA_default = {
106319
106437
  secondary: "Chargement des informations, merci pour votre patience."
106320
106438
  },
106321
106439
  menuOptions: {
106440
+ ariaMenuColumn: "Appuyez sur Alt/Option\xA0+ Bas pour ouvrir le menu de la colonne.",
106322
106441
  sortMenuItem: {
106323
106442
  label: "Trier cette colonne",
106324
106443
  sortAscItem: "Trier la colonne par ordre croissant",
@@ -106373,6 +106492,9 @@ var fr_CA_default = {
106373
106492
  currencyCell: {
106374
106493
  placeholder: "Saisir la devise"
106375
106494
  },
106495
+ linkCell: {
106496
+ externalLabel: "Open external link"
106497
+ },
106376
106498
  numberCell: {
106377
106499
  placeholder: "Saisir un num\xE9ro"
106378
106500
  },
@@ -106453,9 +106575,10 @@ var fr_FR_default = {
106453
106575
  exporting: "Exportation...",
106454
106576
  filters: {
106455
106577
  filters: "Filtres",
106456
- moreFilters: "Plus de filtres",
106578
+ allFilters: "All Filters",
106457
106579
  clearAllFilters: "Effacer tous les filtres",
106458
106580
  close: "Fermer",
106581
+ removeFilterToken: "Retirer %{name}",
106459
106582
  locationFilter: {
106460
106583
  selectAll: "S\xE9lectionner tout",
106461
106584
  includeSublocations: "Inclure les sous-lieux",
@@ -106493,6 +106616,7 @@ var fr_FR_default = {
106493
106616
  secondary: "Chargement des informations. Merci pour votre patience."
106494
106617
  },
106495
106618
  menuOptions: {
106619
+ ariaMenuColumn: "Appuyez sur Alt/Option + la fl\xE8che vers le bas pour ouvrir le menu de la colonne.",
106496
106620
  sortMenuItem: {
106497
106621
  label: "Trier cette colonne",
106498
106622
  sortAscItem: "Trier la colonne par ordre croissant",
@@ -106547,6 +106671,9 @@ var fr_FR_default = {
106547
106671
  currencyCell: {
106548
106672
  placeholder: "Saisir la devise"
106549
106673
  },
106674
+ linkCell: {
106675
+ externalLabel: "Open external link"
106676
+ },
106550
106677
  numberCell: {
106551
106678
  placeholder: "Saisir un num\xE9ro"
106552
106679
  },
@@ -106627,9 +106754,10 @@ var is_IS_default = {
106627
106754
  exporting: "Flytur \xFAt ...",
106628
106755
  filters: {
106629
106756
  filters: "S\xEDur",
106630
- moreFilters: "Fleiri s\xEDur",
106757
+ allFilters: "All Filters",
106631
106758
  clearAllFilters: "Hreinsa allar s\xEDur",
106632
106759
  close: "Loka\xF0u",
106760
+ removeFilterToken: "Fjarl\xE6gja %{name}",
106633
106761
  locationFilter: {
106634
106762
  selectAll: "Velja allt",
106635
106763
  includeSublocations: "L\xE1ttu undirlokanir fylgja me\xF0",
@@ -106667,6 +106795,7 @@ var is_IS_default = {
106667
106795
  secondary: "Hle\xF0sla uppl\xFDsinga, takk fyrir \xFEolinm\xE6\xF0ina."
106668
106796
  },
106669
106797
  menuOptions: {
106798
+ ariaMenuColumn: "\xDDttu \xE1 Alt/Option+Down til a\xF0 opna d\xE1lkavalmyndina.",
106670
106799
  sortMenuItem: {
106671
106800
  label: "Ra\xF0a eftir \xFEessum d\xE1lki",
106672
106801
  sortAscItem: "Ra\xF0a d\xE1lki h\xE6kkandi",
@@ -106721,6 +106850,9 @@ var is_IS_default = {
106721
106850
  currencyCell: {
106722
106851
  placeholder: "Sl\xE1\xF0u inn gjaldmi\xF0il"
106723
106852
  },
106853
+ linkCell: {
106854
+ externalLabel: "Open external link"
106855
+ },
106724
106856
  numberCell: {
106725
106857
  placeholder: "Sl\xE1\xF0u inn n\xFAmer"
106726
106858
  },
@@ -106801,9 +106933,10 @@ var it_IT_default = {
106801
106933
  exporting: "Esportazione in corso...",
106802
106934
  filters: {
106803
106935
  filters: "Filtri",
106804
- moreFilters: "Altri filtri",
106936
+ allFilters: "All Filters",
106805
106937
  clearAllFilters: "Cancella tutti i filtri",
106806
106938
  close: "Chiudi",
106939
+ removeFilterToken: "Rimuovi %{name}",
106807
106940
  locationFilter: {
106808
106941
  selectAll: "Seleziona tutto",
106809
106942
  includeSublocations: "Includi posizioni secondarie",
@@ -106841,6 +106974,7 @@ var it_IT_default = {
106841
106974
  secondary: "Caricamento delle informazioni in corso, grazie per la pazienza."
106842
106975
  },
106843
106976
  menuOptions: {
106977
+ ariaMenuColumn: "Premere Alt/Opzione+Freccia gi\xF9 per aprire il menu a colonna.",
106844
106978
  sortMenuItem: {
106845
106979
  label: "Ordina per questa colonna",
106846
106980
  sortAscItem: "Ordina colonna (crescente)",
@@ -106895,6 +107029,9 @@ var it_IT_default = {
106895
107029
  currencyCell: {
106896
107030
  placeholder: "Inserisci valuta"
106897
107031
  },
107032
+ linkCell: {
107033
+ externalLabel: "Open external link"
107034
+ },
106898
107035
  numberCell: {
106899
107036
  placeholder: "Inserisci numero"
106900
107037
  },
@@ -106975,9 +107112,10 @@ var ja_JP_default = {
106975
107112
  exporting: "\u30A8\u30AF\u30B9\u30DD\u30FC\u30C8\u4E2D...",
106976
107113
  filters: {
106977
107114
  filters: "\u30D5\u30A3\u30EB\u30BF",
106978
- moreFilters: "\u305D\u306E\u4ED6\u306E\u30D5\u30A3\u30EB\u30BF",
107115
+ allFilters: "All Filters",
106979
107116
  clearAllFilters: "\u3059\u3079\u3066\u306E\u30D5\u30A3\u30EB\u30BF\u3092\u6D88\u53BB",
106980
107117
  close: "\u7D42\u4E86",
107118
+ removeFilterToken: "%{name}\u524A\u9664",
106981
107119
  locationFilter: {
106982
107120
  selectAll: "\u3059\u3079\u3066\u9078\u629E",
106983
107121
  includeSublocations: "\u30B5\u30D6\u30ED\u30B1\u30FC\u30B7\u30E7\u30F3\u3092\u542B\u3081\u308B",
@@ -107015,6 +107153,7 @@ var ja_JP_default = {
107015
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"
107016
107154
  },
107017
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",
107018
107157
  sortMenuItem: {
107019
107158
  label: "\u3053\u306E\u5217\u3067\u4E26\u3079\u66FF\u3048\u308B",
107020
107159
  sortAscItem: "\u5217\u3092\u6607\u9806\u306B\u4E26\u3079\u66FF\u3048\u308B",
@@ -107069,6 +107208,9 @@ var ja_JP_default = {
107069
107208
  currencyCell: {
107070
107209
  placeholder: "\u901A\u8CA8\u3092\u5165\u529B"
107071
107210
  },
107211
+ linkCell: {
107212
+ externalLabel: "Open external link"
107213
+ },
107072
107214
  numberCell: {
107073
107215
  placeholder: "\u756A\u53F7\u3092\u5165\u529B"
107074
107216
  },
@@ -107113,7 +107255,7 @@ var nb_NO_default = {
107113
107255
  emptyState: {
107114
107256
  noFilteredResults: {
107115
107257
  description: "Check your spelling and filter options, or search for a different keyword.",
107116
- title: "No Items Match Your Search",
107258
+ title: "Ingen enheter samsvarer med s\xF8ket ditt",
107117
107259
  itemsTitle: "No %{itemsLabel} Match Your Search"
107118
107260
  },
107119
107261
  noResults: {
@@ -107132,7 +107274,7 @@ var nb_NO_default = {
107132
107274
  bulkActions: {
107133
107275
  apply: "Apply",
107134
107276
  bulkEdit: "Bulk Edit",
107135
- cancel: "Cancel",
107277
+ cancel: "Avbryt",
107136
107278
  editValues: "Edit Values",
107137
107279
  error: "Sorry, the items couldn't be updated. Try again.",
107138
107280
  placeholderForField: "Enter %{fieldName}",
@@ -107144,23 +107286,24 @@ var nb_NO_default = {
107144
107286
  },
107145
107287
  success: "The items were successfully updated.",
107146
107288
  one: "item",
107147
- many: "items"
107289
+ many: "Enheter"
107148
107290
  },
107149
107291
  exporting: "Exporting...",
107150
107292
  filters: {
107151
- filters: "Filters",
107152
- moreFilters: "More Filters",
107293
+ filters: "Filtre",
107294
+ allFilters: "All Filters",
107153
107295
  clearAllFilters: "Clear All Filters",
107154
107296
  close: "Close",
107297
+ removeFilterToken: "Fjern %{name}",
107155
107298
  locationFilter: {
107156
- selectAll: "Select all",
107299
+ selectAll: "Velg alle",
107157
107300
  includeSublocations: "Include sublocations",
107158
107301
  searchLocations: "Search locations",
107159
107302
  locations: "Locations"
107160
107303
  },
107161
107304
  numberFilter: {
107162
107305
  labels: {
107163
- and: "and",
107306
+ and: "OG",
107164
107307
  input_placeholder: "Enter Value",
107165
107308
  placeholder: "Select an item"
107166
107309
  },
@@ -107189,11 +107332,15 @@ var nb_NO_default = {
107189
107332
  secondary: "Information loading, thanks for your patience."
107190
107333
  },
107191
107334
  menuOptions: {
107335
+ ariaMenuColumn: "Trykk p\xE5 Alt/Option og pil ned for \xE5 \xE5pne kolonnemenyen.",
107192
107336
  sortMenuItem: {
107193
107337
  label: "Sort By This Column",
107194
107338
  sortAscItem: "Sort Column Ascending",
107195
107339
  sortDescItem: "Sort Column Descending",
107196
- sortResetItem: "Column Not Sorted"
107340
+ sortResetItem: "Column Not Sorted",
107341
+ sortAscending: "sorted ascending",
107342
+ sortDescending: "sorted descending",
107343
+ sortCleared: "Sorting cleared"
107197
107344
  },
107198
107345
  expandAllGroups: "Expand All Groups",
107199
107346
  collapseAllGroups: "Collapse All Groups",
@@ -107209,7 +107356,7 @@ var nb_NO_default = {
107209
107356
  groupBy: "Group by {{label}}"
107210
107357
  },
107211
107358
  grandTotals: "Grand Totals",
107212
- search: "Search",
107359
+ search: "S\xF8k",
107213
107360
  subtotals: "Subtotals",
107214
107361
  tableSettings: {
107215
107362
  configureColumns: "Configure Columns",
@@ -107220,7 +107367,7 @@ var nb_NO_default = {
107220
107367
  large: "Large",
107221
107368
  tableSettings: "Table Settings",
107222
107369
  groupBy: "Group by:",
107223
- reset: "Reset",
107370
+ reset: "Tilbakestill",
107224
107371
  selectColumnGroup: "Select a column to group",
107225
107372
  configure: "Configure"
107226
107373
  },
@@ -107240,6 +107387,9 @@ var nb_NO_default = {
107240
107387
  currencyCell: {
107241
107388
  placeholder: "Enter currency"
107242
107389
  },
107390
+ linkCell: {
107391
+ externalLabel: "Open external link"
107392
+ },
107243
107393
  numberCell: {
107244
107394
  placeholder: "Enter number"
107245
107395
  },
@@ -107257,8 +107407,8 @@ var nb_NO_default = {
107257
107407
  },
107258
107408
  booleanCell: {
107259
107409
  options: {
107260
- yes: "Yes",
107261
- no: "No"
107410
+ yes: "Ja",
107411
+ no: "Nei"
107262
107412
  }
107263
107413
  }
107264
107414
  },
@@ -107320,9 +107470,10 @@ var pl_PL_default = {
107320
107470
  exporting: "Eksportowanie...",
107321
107471
  filters: {
107322
107472
  filters: "Filtry",
107323
- moreFilters: "Wi\u0119cej filtr\xF3w",
107473
+ allFilters: "All Filters",
107324
107474
  clearAllFilters: "Wyczy\u015B\u0107 wszystkie filtry",
107325
107475
  close: "Zamknij",
107476
+ removeFilterToken: "Usu\u0144 %{name}",
107326
107477
  locationFilter: {
107327
107478
  selectAll: "Zaznacz wszystkie",
107328
107479
  includeSublocations: "Uwzgl\u0119dnij lokalizacje podrz\u0119dne",
@@ -107360,6 +107511,7 @@ var pl_PL_default = {
107360
107511
  secondary: "Trwa \u0142adowanie informacji. Prosimy o cierpliwo\u015B\u0107."
107361
107512
  },
107362
107513
  menuOptions: {
107514
+ ariaMenuColumn: "Naci\u015Bnij klawisze Alt/Option + strza\u0142ka w d\xF3\u0142, aby otworzy\u0107 menu kolumny.",
107363
107515
  sortMenuItem: {
107364
107516
  label: "Sortuj wed\u0142ug tej kolumny",
107365
107517
  sortAscItem: "Sortuj kolumny rosn\u0105co",
@@ -107414,6 +107566,9 @@ var pl_PL_default = {
107414
107566
  currencyCell: {
107415
107567
  placeholder: "Wprowad\u017A walut\u0119"
107416
107568
  },
107569
+ linkCell: {
107570
+ externalLabel: "Open external link"
107571
+ },
107417
107572
  numberCell: {
107418
107573
  placeholder: "Wprowad\u017A numer"
107419
107574
  },
@@ -107494,9 +107649,11 @@ var pseudo_default = {
107494
107649
  exporting: "[\u1E16\u1E16\u1E16\u1E8B\u01A5\u01FF\u0159\u0167\u012B\u019E\u0260.....]",
107495
107650
  filters: {
107496
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]",
107497
107653
  moreFilters: "[\u1E3E\u1E3E\u1E3E\u01FF\u0159\u1E17 \xB7 \u0191\u012B\u0140\u0167\u1E17\u0159\u015F\u015F\u015F]",
107498
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]",
107499
107655
  close: "[\u0187\u0140\u01FF\u015F\u1E17]",
107656
+ removeFilterToken: "[\u0158\u0158\u1E17\u1E3F\u01FF\u1E7D\u1E17 \xB7 \xB7 [NOTRANSLATE]%{name}[/NOTRANSLATE]]",
107500
107657
  locationFilter: {
107501
107658
  selectAll: "[\u015E\u015E\u1E17\u0140\u1E17\u0188\u0167 \xB7 \u0227\u0140\u0140\u0140]",
107502
107659
  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]",
@@ -107512,6 +107669,7 @@ var pseudo_default = {
107512
107669
  options: {
107513
107670
  any_value: "[\u0226\u0226\u019E\u1E8F \xB7 \u1E7C\u0227\u0140\u016D\u1E17\u1E17]",
107514
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]",
107515
107673
  greater_than: "[\u012A\u012A\u012A\u015F \xB7 \u0193\u0159\u1E17\u0227\u0167\u1E17\u0159 \xB7 \u0166\u0127\u0227\u019E\u019E\u019E]",
107516
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]",
107517
107675
  less_than: "[\u012A\u012A\u012A\u015F \xB7 \u013F\u1E17\u015F\u015F \xB7 \u0166\u0127\u0227\u019E\u019E\u019E]",
@@ -107534,6 +107692,7 @@ var pseudo_default = {
107534
107692
  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..........]"
107535
107693
  },
107536
107694
  menuOptions: {
107695
+ 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.........]",
107537
107696
  sortMenuItem: {
107538
107697
  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]",
107539
107698
  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]",
@@ -107588,6 +107747,9 @@ var pseudo_default = {
107588
107747
  currencyCell: {
107589
107748
  placeholder: "[\u1E16\u1E16\u1E16\u019E\u0167\u1E17\u0159 \xB7 \u0188\u016D\u0159\u0159\u1E17\u019E\u0188\u1E8F\u1E8F\u1E8F]"
107590
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
+ },
107591
107753
  numberCell: {
107592
107754
  placeholder: "[\u1E16\u1E16\u1E16\u019E\u0167\u1E17\u0159 \xB7 \u019E\u016D\u1E3F\u0180\u1E17\u0159\u0159\u0159]"
107593
107755
  },
@@ -107668,9 +107830,10 @@ var pt_BR_default = {
107668
107830
  exporting: "Exportando...",
107669
107831
  filters: {
107670
107832
  filters: "Filtros",
107671
- moreFilters: "Mais Filtros",
107833
+ allFilters: "All Filters",
107672
107834
  clearAllFilters: "Limpar Todos os Filtros",
107673
107835
  close: "Fechar",
107836
+ removeFilterToken: "Remover %{name}",
107674
107837
  locationFilter: {
107675
107838
  selectAll: "Selecionar tudo",
107676
107839
  includeSublocations: "Incluir Sublocais",
@@ -107708,6 +107871,7 @@ var pt_BR_default = {
107708
107871
  secondary: "As informa\xE7\xF5es est\xE3o carregando, obrigado pela paci\xEAncia."
107709
107872
  },
107710
107873
  menuOptions: {
107874
+ ariaMenuColumn: "Pressione Alt/Option + Seta para baixo para abrir o menu de colunas.",
107711
107875
  sortMenuItem: {
107712
107876
  label: "Classificar por Esta Coluna",
107713
107877
  sortAscItem: "Classificar Coluna em Ordem Crescente",
@@ -107762,6 +107926,9 @@ var pt_BR_default = {
107762
107926
  currencyCell: {
107763
107927
  placeholder: "Insira moeda"
107764
107928
  },
107929
+ linkCell: {
107930
+ externalLabel: "Open external link"
107931
+ },
107765
107932
  numberCell: {
107766
107933
  placeholder: "Inserir n\xFAmeros"
107767
107934
  },
@@ -107814,7 +107981,7 @@ var pt_PT_default = {
107814
107981
  title: "N\xE3o h\xE1 itens para apresentar neste momento",
107815
107982
  itemsTitle: "N\xE3o h\xE1 %{itemsLabel} para apresentar neste momento",
107816
107983
  tooltip: "O bot\xE3o %{featureName} ser\xE1 ativado quando adicionar informa\xE7\xF5es \xE0 tabela %{tableName}",
107817
- searchTooltip: "A pesquisa ser\xE1 ativada quando adicionar informa\xE7\xF5es \xE0 tabela %{tableName}",
107984
+ searchTooltip: "A pesquisa ser\xE1 ativada quando adicionar informa\xE7\xF5es a %{tableName}",
107818
107985
  featureFilter: "Filtro",
107819
107986
  featureQuickFilter: "Filtro r\xE1pido",
107820
107987
  featureGroupBy: "Agrupar por",
@@ -107842,9 +108009,10 @@ var pt_PT_default = {
107842
108009
  exporting: "A exportar...",
107843
108010
  filters: {
107844
108011
  filters: "Filtros",
107845
- moreFilters: "Mais filtros",
108012
+ allFilters: "All Filters",
107846
108013
  clearAllFilters: "Apagar todos os filtros",
107847
108014
  close: "Fechar",
108015
+ removeFilterToken: "Remover %{name}",
107848
108016
  locationFilter: {
107849
108017
  selectAll: "Selecionar tudo",
107850
108018
  includeSublocations: "Incluir locais secund\xE1rios",
@@ -107882,6 +108050,7 @@ var pt_PT_default = {
107882
108050
  secondary: "A carregar informa\xE7\xF5es. Agradecemos a sua paci\xEAncia."
107883
108051
  },
107884
108052
  menuOptions: {
108053
+ ariaMenuColumn: "Pressionar Alt/Op\xE7\xE3o + Seta para baixo para abrir o menu da coluna.",
107885
108054
  sortMenuItem: {
107886
108055
  label: "Ordenar por esta coluna",
107887
108056
  sortAscItem: "Ordenar coluna por ordem ascendente",
@@ -107936,6 +108105,9 @@ var pt_PT_default = {
107936
108105
  currencyCell: {
107937
108106
  placeholder: "Introduzir moeda"
107938
108107
  },
108108
+ linkCell: {
108109
+ externalLabel: "Open external link"
108110
+ },
107939
108111
  numberCell: {
107940
108112
  placeholder: "Introduzir n\xFAmero"
107941
108113
  },
@@ -108016,9 +108188,10 @@ var th_TH_default = {
108016
108188
  exporting: "\u0E01\u0E33\u0E25\u0E31\u0E07\u0E2A\u0E48\u0E07\u0E2D\u0E2D\u0E01...",
108017
108189
  filters: {
108018
108190
  filters: "\u0E15\u0E31\u0E27\u0E01\u0E23\u0E2D\u0E07",
108019
- moreFilters: "\u0E15\u0E31\u0E27\u0E01\u0E23\u0E2D\u0E07\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E40\u0E15\u0E34\u0E21",
108191
+ allFilters: "All Filters",
108020
108192
  clearAllFilters: "\u0E25\u0E49\u0E32\u0E07\u0E15\u0E31\u0E27\u0E01\u0E23\u0E2D\u0E07\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14",
108021
108193
  close: "\u0E1B\u0E34\u0E14",
108194
+ removeFilterToken: "\u0E25\u0E1A %{name}",
108022
108195
  locationFilter: {
108023
108196
  selectAll: "\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14",
108024
108197
  includeSublocations: "\u0E23\u0E27\u0E21\u0E15\u0E33\u0E41\u0E2B\u0E19\u0E48\u0E07\u0E22\u0E48\u0E2D\u0E22",
@@ -108056,6 +108229,7 @@ var th_TH_default = {
108056
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"
108057
108230
  },
108058
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",
108059
108233
  sortMenuItem: {
108060
108234
  label: "\u0E08\u0E31\u0E14\u0E40\u0E23\u0E35\u0E22\u0E07\u0E15\u0E32\u0E21\u0E04\u0E2D\u0E25\u0E31\u0E21\u0E19\u0E4C\u0E19\u0E35\u0E49",
108061
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",
@@ -108110,6 +108284,9 @@ var th_TH_default = {
108110
108284
  currencyCell: {
108111
108285
  placeholder: "\u0E1B\u0E49\u0E2D\u0E19\u0E2A\u0E01\u0E38\u0E25\u0E40\u0E07\u0E34\u0E19"
108112
108286
  },
108287
+ linkCell: {
108288
+ externalLabel: "Open external link"
108289
+ },
108113
108290
  numberCell: {
108114
108291
  placeholder: "\u0E1B\u0E49\u0E2D\u0E19\u0E2B\u0E21\u0E32\u0E22\u0E40\u0E25\u0E02"
108115
108292
  },
@@ -108190,9 +108367,10 @@ var zh_SG_default = {
108190
108367
  exporting: "\u6B63\u5728\u5BFC\u51FA...",
108191
108368
  filters: {
108192
108369
  filters: "\u7B5B\u9009\u5668",
108193
- moreFilters: "\u66F4\u591A\u7B5B\u9009\u5668",
108370
+ allFilters: "All Filters",
108194
108371
  clearAllFilters: "\u6E05\u9664\u6240\u6709\u7B5B\u9009\u5668",
108195
108372
  close: "\u5173\u95ED",
108373
+ removeFilterToken: "\u79FB\u9664 %{name}",
108196
108374
  locationFilter: {
108197
108375
  selectAll: "\u5168\u9009",
108198
108376
  includeSublocations: "\u5305\u62EC\u5B50\u5730\u70B9",
@@ -108230,6 +108408,7 @@ var zh_SG_default = {
108230
108408
  secondary: "\u4FE1\u606F\u52A0\u8F7D\u4E2D\uFF0C\u8BF7\u7A0D\u7B49\u7247\u523B\u3002"
108231
108409
  },
108232
108410
  menuOptions: {
108411
+ ariaMenuColumn: "\u6309\u201CAlt/Option + \u5411\u4E0B\u7BAD\u5934\u952E\u201D\u6253\u5F00\u5217\u83DC\u5355\u3002",
108233
108412
  sortMenuItem: {
108234
108413
  label: "\u6309\u6B64\u5217\u6392\u5E8F",
108235
108414
  sortAscItem: "\u6309\u5347\u5E8F\u5BF9\u5217\u6392\u5E8F",
@@ -108284,6 +108463,9 @@ var zh_SG_default = {
108284
108463
  currencyCell: {
108285
108464
  placeholder: "\u8F93\u5165\u8D27\u5E01"
108286
108465
  },
108466
+ linkCell: {
108467
+ externalLabel: "Open external link"
108468
+ },
108287
108469
  numberCell: {
108288
108470
  placeholder: "\u8F93\u5165\u6570\u5B57"
108289
108471
  },
@@ -108364,9 +108546,10 @@ var zh_TW_default = {
108364
108546
  exporting: "\u532F\u51FA\u4E2D\u2026\u2026",
108365
108547
  filters: {
108366
108548
  filters: "\u7BE9\u9078\u689D\u4EF6",
108367
- moreFilters: "\u66F4\u591A\u7BE9\u9078\u689D\u4EF6",
108549
+ allFilters: "All Filters",
108368
108550
  clearAllFilters: "\u6E05\u9664\u6240\u6709\u7BE9\u9078\u689D\u4EF6",
108369
108551
  close: "\u95DC\u9589",
108552
+ removeFilterToken: "\u79FB\u9664\u300C%{name}\u300D",
108370
108553
  locationFilter: {
108371
108554
  selectAll: "\u5168\u90E8\u9078\u53D6",
108372
108555
  includeSublocations: "\u5305\u62EC\u5B50\u4F4D\u7F6E",
@@ -108404,6 +108587,7 @@ var zh_TW_default = {
108404
108587
  secondary: "\u6B63\u5728\u8F09\u5165\u8CC7\u8A0A\uFF0C\u611F\u8B1D\u60A8\u7684\u8010\u5FC3\u7B49\u5019\u3002"
108405
108588
  },
108406
108589
  menuOptions: {
108590
+ ariaMenuColumn: "\u6309\u4E0B Alt/Option+Down \u958B\u555F\u6B04\u4F4D\u9078\u55AE\u3002",
108407
108591
  sortMenuItem: {
108408
108592
  label: "\u4F9D\u6B64\u6B04\u4F4D\u6392\u5E8F",
108409
108593
  sortAscItem: "\u905E\u589E\u6392\u5E8F\u6B04\u4F4D",
@@ -108458,6 +108642,9 @@ var zh_TW_default = {
108458
108642
  currencyCell: {
108459
108643
  placeholder: "\u8F38\u5165\u8CA8\u5E63"
108460
108644
  },
108645
+ linkCell: {
108646
+ externalLabel: "Open external link"
108647
+ },
108461
108648
  numberCell: {
108462
108649
  placeholder: "\u8F38\u5165\u6578\u5B57"
108463
108650
  },
@@ -110572,7 +110759,21 @@ var Table = (props) => {
110572
110759
  params.api
110573
110760
  );
110574
110761
  },
110575
- headerCheckboxSelectionFilteredOnly: true
110762
+ headerCheckboxSelectionFilteredOnly: true,
110763
+ // Needed to suppress ag-grid's default keyboard event handling for header menu keys when menu is open
110764
+ suppressHeaderKeyboardEvent({ event }) {
110765
+ var _a2;
110766
+ const headerCell = (_a2 = event.target) == null ? void 0 : _a2.closest(
110767
+ ".ag-header-cell"
110768
+ );
110769
+ const isMenuOpen = !!(headerCell == null ? void 0 : headerCell.querySelector(
110770
+ '[aria-expanded="true"]'
110771
+ ));
110772
+ if (isMenuOpen && ["ArrowDown", "ArrowUp", "Enter", "Escape"].includes(event.key)) {
110773
+ return true;
110774
+ }
110775
+ return false;
110776
+ }
110576
110777
  };
110577
110778
  },
110578
110779
  [
@@ -110755,6 +110956,9 @@ var Table = (props) => {
110755
110956
  suppressPropertyNamesCheck: true,
110756
110957
  suppressRowClickSelection: props.suppressRowClickSelection || tableRowSelectionEnabled,
110757
110958
  suppressPaginationPanel: true,
110959
+ localeText: {
110960
+ ariaMenuColumn: I18n.t("dataTable.menuOptions.ariaMenuColumn")
110961
+ },
110758
110962
  tabToNextCell: props.tabToNextCell,
110759
110963
  ...clientSideRowData,
110760
110964
  ...detailRowConfigProps,
@@ -111855,6 +112059,23 @@ var getSuperSelectFilterPreset = (columnDefinition) => {
111855
112059
  } : void 0;
111856
112060
  return {
111857
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
+ },
111858
112079
  Label: React80.forwardRef(() => {
111859
112080
  const ctx = UNSAFE_useSuperSelectContext();
111860
112081
  const isValueEmpty = ["", null, void 0].includes(
@@ -112290,7 +112511,7 @@ var SingleSelectQuickFilterRenderer = (props) => {
112290
112511
  return /* @__PURE__ */ React80.createElement(ClientSideSingleSelectQuickFilter, { ...props });
112291
112512
  };
112292
112513
  var SingleSelectQuickFilterRenderer_default = SingleSelectQuickFilterRenderer;
112293
- var FiltersPanelToggleButton = ({ hasSelectedFilters, hasDefinedFilters }) => {
112514
+ var FiltersPanelToggleButton = ({ hasDefinedFilters }) => {
112294
112515
  const I18n = useI18nContext();
112295
112516
  const { contextPanel } = useInternalTableContext();
112296
112517
  const hasNoContent = useTableHasNoContent();
@@ -112318,34 +112539,22 @@ var FiltersPanelToggleButton = ({ hasSelectedFilters, hasDefinedFilters }) => {
112318
112539
  },
112319
112540
  selected: contextPanel.content === "filters"
112320
112541
  },
112321
- hasSelectedFilters ? I18n.t("dataTable.filters.moreFilters") : I18n.t("dataTable.filters.filters")
112542
+ I18n.t("dataTable.filters.allFilters")
112322
112543
  )
112323
112544
  );
112324
112545
  };
112325
112546
  var ServerSideFiltersPanelToggleButton = () => {
112326
112547
  const {
112327
- filterStorage: { hasDefinedFilters, hasSelectedFilters }
112548
+ filterStorage: { hasDefinedFilters }
112328
112549
  } = useInternalTableContext();
112329
- return /* @__PURE__ */ React80.createElement(
112330
- FiltersPanelToggleButton,
112331
- {
112332
- hasDefinedFilters,
112333
- hasSelectedFilters
112334
- }
112335
- );
112550
+ return /* @__PURE__ */ React80.createElement(FiltersPanelToggleButton, { hasDefinedFilters });
112336
112551
  };
112337
112552
  var ClientSideFiltersPanelToggleButton = () => {
112338
112553
  const { filterState } = useInternalTableContext();
112339
- const activeFilters = React80.useMemo(() => {
112340
- return filterState.allAvailableFilters.filter(({ instance }) => {
112341
- return instance.isFilterActive();
112342
- });
112343
- }, [filterState.allAvailableFilters]);
112344
112554
  return /* @__PURE__ */ React80.createElement(
112345
112555
  FiltersPanelToggleButton,
112346
112556
  {
112347
- hasDefinedFilters: filterState.allAvailableFilters.length > 0,
112348
- hasSelectedFilters: activeFilters.length > 0
112557
+ hasDefinedFilters: filterState.allAvailableFilters.length > 0
112349
112558
  }
112350
112559
  );
112351
112560
  };
@@ -112399,6 +112608,7 @@ var StyledFilterTokenWrapper = styled4.div`
112399
112608
  var ClientSideQuickFilters = ({ overlayMatchesTriggerWidth }) => {
112400
112609
  const { tableRef, filterState, getColumnDefinition } = useInternalTableContext();
112401
112610
  const hasNoContent = useTableHasNoContent();
112611
+ const I18n = useI18nContext();
112402
112612
  const { quickFilters, tokens } = React80.useMemo(() => {
112403
112613
  return filterState.allAvailableFilters.reduce(
112404
112614
  (acc, filter) => {
@@ -112470,9 +112680,13 @@ var ClientSideQuickFilters = ({ overlayMatchesTriggerWidth }) => {
112470
112680
  if (!colDef) {
112471
112681
  return null;
112472
112682
  }
112473
- 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, getFilterTokenText(colDef, filter.filterValues))), /* @__PURE__ */ React80.createElement(
112683
+ const tokenText = getFilterTokenText(colDef, filter.filterValues);
112684
+ 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(
112474
112685
  UNSAFE_FilterToken.Remove,
112475
112686
  {
112687
+ "aria-label": I18n.t("dataTable.filters.removeFilterToken", {
112688
+ name: tokenText
112689
+ }),
112476
112690
  onClick: () => {
112477
112691
  var _a;
112478
112692
  return (_a = tableRef == null ? void 0 : tableRef.current) == null ? void 0 : _a.removeFilter(filter.field);
@@ -112494,6 +112708,7 @@ var ServerSideQuickFilters = ({ overlayMatchesTriggerWidth }) => {
112494
112708
  getColumnDefinition
112495
112709
  } = useInternalTableContext();
112496
112710
  const hasNoContent = useTableHasNoContent();
112711
+ const I18n = useI18nContext();
112497
112712
  const { quickFilterNames, tokenNames } = React80.useMemo(() => {
112498
112713
  const appliedFilterNames = Object.keys(selectedFilters);
112499
112714
  const isActiveFilter = (filterName) => appliedFilterNames.includes(filterName);
@@ -112569,12 +112784,16 @@ var ServerSideQuickFilters = ({ overlayMatchesTriggerWidth }) => {
112569
112784
  return null;
112570
112785
  }
112571
112786
  const filter = getListFilter(fieldName);
112572
- 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, getFilterTokenText(
112787
+ const tokenText = getFilterTokenText(
112573
112788
  colDef,
112574
112789
  colDef.filterRenderer === DateFilterRenderer_default ? filter.value : filter.selected
112575
- ))), /* @__PURE__ */ React80.createElement(
112790
+ );
112791
+ 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(
112576
112792
  UNSAFE_FilterToken.Remove,
112577
112793
  {
112794
+ "aria-label": I18n.t("dataTable.filters.removeFilterToken", {
112795
+ name: tokenText
112796
+ }),
112578
112797
  "data-qa": "data-table-quick-filter-remove-token",
112579
112798
  onClick: () => onClearFilter(fieldName)
112580
112799
  }