@procore/data-table 14.44.0 → 14.46.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.
@@ -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((Button6) => /* @__PURE__ */ React80.createElement(
8042
- Button6,
8041
+ return /* @__PURE__ */ React80.createElement(FlexList, { justifyContent: "center", alignItems: "center", size: "xs" }, buttons.map((Button7) => /* @__PURE__ */ React80.createElement(
8042
+ Button7,
8043
8043
  {
8044
- key: Button6.displayName,
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(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(
8417
- SegmentedController,
8424
+ return /* @__PURE__ */ React80.createElement(
8425
+ Card,
8418
8426
  {
8419
- block: true,
8420
- "data-qa": "data-table-date-filter-selection-control"
8427
+ "data-qa": "data-table-date-filter-calendar",
8428
+ ref,
8429
+ onBlur,
8430
+ ...props
8421
8431
  },
8422
- /* @__PURE__ */ React80.createElement(
8423
- SegmentedController.Segment,
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
- active: selectedValue.type === "single",
8426
- onClick: () => setSelectionType("single")
8435
+ block: true,
8436
+ "data-qa": "data-table-date-filter-selection-control"
8427
8437
  },
8428
- I18n.t("dataTable.filterRenders.dateFilter.single")
8429
- ),
8430
- /* @__PURE__ */ React80.createElement(
8431
- SegmentedController.Segment,
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
- active: selectedValue.type === "range",
8434
- onClick: () => setSelectionType("range")
8435
- },
8436
- I18n.t("dataTable.filterRenders.dateFilter.range")
8437
- )
8438
- )), /* @__PURE__ */ React80.createElement(
8439
- Calendar,
8440
- {
8441
- displayDate,
8442
- monthRef,
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
- Typography,
52396
+ return /* @__PURE__ */ React80.createElement(Typography, { ...typographyProps, className }, /* @__PURE__ */ React80.createElement(
52397
+ Link,
52378
52398
  {
52379
- ...typographyProps,
52380
- className,
52381
- style: { display: "flex", alignItems: "center", gap: "5px" }
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
- cursor: "pointer",
52388
- size: "sm",
52389
- onClick: () => window.open(URL, "_blank")
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", { defaultValue: "and" })), /* @__PURE__ */ React80.createElement(
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",
@@ -57827,7 +57854,9 @@ var InternalTableContext = React80.createContext({
57827
57854
  totalRowCount: 0,
57828
57855
  setTotalRowCount: () => {
57829
57856
  },
57830
- hasDuplicateRowIds: false
57857
+ hasDuplicateRowIds: false,
57858
+ filtersPanelId: void 0,
57859
+ filtersBodyId: void 0
57831
57860
  });
57832
57861
  var useInternalTableContext = () => React80.useContext(InternalTableContext);
57833
57862
  var prng = detectPrng(true);
@@ -103239,10 +103268,103 @@ function $8ae05eaa5c114e9c$export$7f54fc3180508a52(fn) {
103239
103268
  return f === null || f === void 0 ? void 0 : f(...args);
103240
103269
  }, []);
103241
103270
  }
103271
+ var $b5e257d569688ac6$var$defaultContext = {
103272
+ prefix: String(Math.round(Math.random() * 1e10)),
103273
+ current: 0
103274
+ };
103275
+ var $b5e257d569688ac6$var$SSRContext = /* @__PURE__ */ (React80).createContext($b5e257d569688ac6$var$defaultContext);
103276
+ var $b5e257d569688ac6$var$IsSSRContext = /* @__PURE__ */ (React80).createContext(false);
103277
+ var $b5e257d569688ac6$var$canUseDOM = Boolean(typeof window !== "undefined" && window.document && window.document.createElement);
103278
+ var $b5e257d569688ac6$var$componentIds = /* @__PURE__ */ new WeakMap();
103279
+ function $b5e257d569688ac6$var$useCounter(isDisabled = false) {
103280
+ let ctx = (useContext)($b5e257d569688ac6$var$SSRContext);
103281
+ let ref = (useRef)(null);
103282
+ if (ref.current === null && !isDisabled) {
103283
+ var _React___SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED_ReactCurrentOwner, _React___SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;
103284
+ let currentOwner = (_React___SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED = (React80).__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED) === null || _React___SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED === void 0 ? void 0 : (_React___SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED_ReactCurrentOwner = _React___SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner) === null || _React___SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED_ReactCurrentOwner === void 0 ? void 0 : _React___SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED_ReactCurrentOwner.current;
103285
+ if (currentOwner) {
103286
+ let prevComponentValue = $b5e257d569688ac6$var$componentIds.get(currentOwner);
103287
+ if (prevComponentValue == null)
103288
+ $b5e257d569688ac6$var$componentIds.set(currentOwner, {
103289
+ id: ctx.current,
103290
+ state: currentOwner.memoizedState
103291
+ });
103292
+ else if (currentOwner.memoizedState !== prevComponentValue.state) {
103293
+ ctx.current = prevComponentValue.id;
103294
+ $b5e257d569688ac6$var$componentIds.delete(currentOwner);
103295
+ }
103296
+ }
103297
+ ref.current = ++ctx.current;
103298
+ }
103299
+ return ref.current;
103300
+ }
103301
+ function $b5e257d569688ac6$var$useLegacySSRSafeId(defaultId) {
103302
+ let ctx = (useContext)($b5e257d569688ac6$var$SSRContext);
103303
+ if (ctx === $b5e257d569688ac6$var$defaultContext && !$b5e257d569688ac6$var$canUseDOM && process.env.NODE_ENV !== "production") console.warn("When server rendering, you must wrap your application in an <SSRProvider> to ensure consistent ids are generated between the client and server.");
103304
+ let counter2 = $b5e257d569688ac6$var$useCounter(!!defaultId);
103305
+ let prefix = ctx === $b5e257d569688ac6$var$defaultContext && process.env.NODE_ENV === "test" ? "react-aria" : `react-aria${ctx.prefix}`;
103306
+ return defaultId || `${prefix}-${counter2}`;
103307
+ }
103308
+ function $b5e257d569688ac6$var$useModernSSRSafeId(defaultId) {
103309
+ let id = (React80).useId();
103310
+ let [didSSR] = (useState)($b5e257d569688ac6$export$535bd6ca7f90a273());
103311
+ let prefix = didSSR || process.env.NODE_ENV === "test" ? "react-aria" : `react-aria${$b5e257d569688ac6$var$defaultContext.prefix}`;
103312
+ return defaultId || `${prefix}-${id}`;
103313
+ }
103314
+ var $b5e257d569688ac6$export$619500959fc48b26 = typeof (React80)["useId"] === "function" ? $b5e257d569688ac6$var$useModernSSRSafeId : $b5e257d569688ac6$var$useLegacySSRSafeId;
103315
+ function $b5e257d569688ac6$var$getSnapshot() {
103316
+ return false;
103317
+ }
103318
+ function $b5e257d569688ac6$var$getServerSnapshot() {
103319
+ return true;
103320
+ }
103321
+ function $b5e257d569688ac6$var$subscribe(onStoreChange) {
103322
+ return () => {
103323
+ };
103324
+ }
103325
+ function $b5e257d569688ac6$export$535bd6ca7f90a273() {
103326
+ if (typeof (React80)["useSyncExternalStore"] === "function") return (React80)["useSyncExternalStore"]($b5e257d569688ac6$var$subscribe, $b5e257d569688ac6$var$getSnapshot, $b5e257d569688ac6$var$getServerSnapshot);
103327
+ return (useContext)($b5e257d569688ac6$var$IsSSRContext);
103328
+ }
103329
+
103330
+ // ../../node_modules/@react-aria/utils/dist/useId.mjs
103331
+ var $bdb11010cef70236$var$canUseDOM = Boolean(typeof window !== "undefined" && window.document && window.document.createElement);
103242
103332
  var $bdb11010cef70236$export$d41a04c74483c6ef = /* @__PURE__ */ new Map();
103243
- if (typeof FinalizationRegistry !== "undefined") new FinalizationRegistry((heldValue) => {
103333
+ var $bdb11010cef70236$var$registry;
103334
+ if (typeof FinalizationRegistry !== "undefined") $bdb11010cef70236$var$registry = new FinalizationRegistry((heldValue) => {
103244
103335
  $bdb11010cef70236$export$d41a04c74483c6ef.delete(heldValue);
103245
103336
  });
103337
+ function $bdb11010cef70236$export$f680877a34711e37(defaultId) {
103338
+ let [value, setValue] = (useState)(defaultId);
103339
+ let nextId = (useRef)(null);
103340
+ let res = ($b5e257d569688ac6$export$619500959fc48b26)(value);
103341
+ let cleanupRef = (useRef)(null);
103342
+ if ($bdb11010cef70236$var$registry) $bdb11010cef70236$var$registry.register(cleanupRef, res);
103343
+ if ($bdb11010cef70236$var$canUseDOM) {
103344
+ const cacheIdRef = $bdb11010cef70236$export$d41a04c74483c6ef.get(res);
103345
+ if (cacheIdRef && !cacheIdRef.includes(nextId)) cacheIdRef.push(nextId);
103346
+ else $bdb11010cef70236$export$d41a04c74483c6ef.set(res, [
103347
+ nextId
103348
+ ]);
103349
+ }
103350
+ ($f0a04ccd8dbdd83b$export$e5c5a5f917a5871c)(() => {
103351
+ let r2 = res;
103352
+ return () => {
103353
+ if ($bdb11010cef70236$var$registry) $bdb11010cef70236$var$registry.unregister(cleanupRef);
103354
+ $bdb11010cef70236$export$d41a04c74483c6ef.delete(r2);
103355
+ };
103356
+ }, [
103357
+ res
103358
+ ]);
103359
+ (useEffect)(() => {
103360
+ let newId = nextId.current;
103361
+ if (newId) setValue(newId);
103362
+ return () => {
103363
+ if (newId) nextId.current = null;
103364
+ };
103365
+ });
103366
+ return res;
103367
+ }
103246
103368
  function $bdb11010cef70236$export$cd8c9cb68f842629(idA, idB) {
103247
103369
  if (idA === idB) return idA;
103248
103370
  let setIdsA = $bdb11010cef70236$export$d41a04c74483c6ef.get(idA);
@@ -104972,9 +105094,11 @@ var de_DE_default = {
104972
105094
  exporting: "Wird exportiert\xA0\u2026",
104973
105095
  filters: {
104974
105096
  filters: "Filter",
105097
+ allFilters: "Alle Filter",
104975
105098
  moreFilters: "Weitere Filter",
104976
105099
  clearAllFilters: "Alle Filter zur\xFCcksetzen",
104977
105100
  close: "Schlie\xDFen",
105101
+ removeFilterToken: "%{name} entfernen",
104978
105102
  locationFilter: {
104979
105103
  selectAll: "Alle ausw\xE4hlen",
104980
105104
  includeSublocations: "Teilstandorte einschlie\xDFen",
@@ -104990,6 +105114,7 @@ var de_DE_default = {
104990
105114
  options: {
104991
105115
  any_value: "Beliebiger Wert",
104992
105116
  is_between: "Ist zwischen",
105117
+ is_equal_to: "Ist gleich",
104993
105118
  greater_than: "Ist gr\xF6\xDFer als",
104994
105119
  greater_than_equal_to: "Ist gr\xF6\xDFer als oder gleich",
104995
105120
  less_than: "Ist kleiner als",
@@ -105012,6 +105137,7 @@ var de_DE_default = {
105012
105137
  secondary: "Informationen werden geladen, vielen Dank f\xFCr Ihre Geduld."
105013
105138
  },
105014
105139
  menuOptions: {
105140
+ ariaMenuColumn: "Dr\xFCcken Sie Alt/Option+Nach unten, um das Spaltenmen\xFC zu \xF6ffnen.",
105015
105141
  sortMenuItem: {
105016
105142
  label: "Nach dieser Spalte sortieren",
105017
105143
  sortAscItem: "Spalte aufsteigend sortieren",
@@ -105066,6 +105192,9 @@ var de_DE_default = {
105066
105192
  currencyCell: {
105067
105193
  placeholder: "W\xE4hrung eingeben"
105068
105194
  },
105195
+ linkCell: {
105196
+ externalLabel: "Externen Link \xF6ffnen"
105197
+ },
105069
105198
  numberCell: {
105070
105199
  placeholder: "Nummer eingeben"
105071
105200
  },
@@ -105146,9 +105275,11 @@ var en_AU_default = {
105146
105275
  exporting: "Exporting...",
105147
105276
  filters: {
105148
105277
  filters: "Filters",
105278
+ allFilters: "All filters",
105149
105279
  moreFilters: "More filters",
105150
105280
  clearAllFilters: "Clear all filters",
105151
105281
  close: "Close",
105282
+ removeFilterToken: "Remove %{name}",
105152
105283
  locationFilter: {
105153
105284
  selectAll: "Select all",
105154
105285
  includeSublocations: "Include sub-locations",
@@ -105164,6 +105295,7 @@ var en_AU_default = {
105164
105295
  options: {
105165
105296
  any_value: "Any value",
105166
105297
  is_between: "Is between",
105298
+ is_equal_to: "Is equal to",
105167
105299
  greater_than: "Is greater than",
105168
105300
  greater_than_equal_to: "Is greater than or equal to",
105169
105301
  less_than: "Is less than",
@@ -105186,6 +105318,7 @@ var en_AU_default = {
105186
105318
  secondary: "Information loading, thanks for your patience."
105187
105319
  },
105188
105320
  menuOptions: {
105321
+ ariaMenuColumn: "Press Alt/Option+Down to open column menu.",
105189
105322
  sortMenuItem: {
105190
105323
  label: "Sort by this column",
105191
105324
  sortAscItem: "Sort column ascending",
@@ -105240,6 +105373,9 @@ var en_AU_default = {
105240
105373
  currencyCell: {
105241
105374
  placeholder: "Enter currency"
105242
105375
  },
105376
+ linkCell: {
105377
+ externalLabel: "Open external link"
105378
+ },
105243
105379
  numberCell: {
105244
105380
  placeholder: "Enter number"
105245
105381
  },
@@ -105320,9 +105456,11 @@ var en_CA_default = {
105320
105456
  exporting: "Exporting...",
105321
105457
  filters: {
105322
105458
  filters: "Filters",
105459
+ allFilters: "All filters",
105323
105460
  moreFilters: "More filters",
105324
105461
  clearAllFilters: "Clear all filters",
105325
105462
  close: "Close",
105463
+ removeFilterToken: "Remove %{name}",
105326
105464
  locationFilter: {
105327
105465
  selectAll: "Select all",
105328
105466
  includeSublocations: "Include sub-locations",
@@ -105338,6 +105476,7 @@ var en_CA_default = {
105338
105476
  options: {
105339
105477
  any_value: "Any value",
105340
105478
  is_between: "Is between",
105479
+ is_equal_to: "Is equal to",
105341
105480
  greater_than: "Is greater than",
105342
105481
  greater_than_equal_to: "Is greater than or equal to",
105343
105482
  less_than: "Is less than",
@@ -105360,6 +105499,7 @@ var en_CA_default = {
105360
105499
  secondary: "Information loading, thanks for your patience."
105361
105500
  },
105362
105501
  menuOptions: {
105502
+ ariaMenuColumn: "Press Alt/Option+Down to open column menu.",
105363
105503
  sortMenuItem: {
105364
105504
  label: "Sort by this column",
105365
105505
  sortAscItem: "Sort column ascending",
@@ -105414,6 +105554,9 @@ var en_CA_default = {
105414
105554
  currencyCell: {
105415
105555
  placeholder: "Enter currency"
105416
105556
  },
105557
+ linkCell: {
105558
+ externalLabel: "Open external link"
105559
+ },
105417
105560
  numberCell: {
105418
105561
  placeholder: "Enter number"
105419
105562
  },
@@ -105494,9 +105637,11 @@ var en_GB_default = {
105494
105637
  exporting: "Exporting...",
105495
105638
  filters: {
105496
105639
  filters: "Filters",
105640
+ allFilters: "All filters",
105497
105641
  moreFilters: "More filters",
105498
105642
  clearAllFilters: "Clear all filters",
105499
105643
  close: "Close",
105644
+ removeFilterToken: "Remove %{name}",
105500
105645
  locationFilter: {
105501
105646
  selectAll: "Select all",
105502
105647
  includeSublocations: "Include sub-locations",
@@ -105512,6 +105657,7 @@ var en_GB_default = {
105512
105657
  options: {
105513
105658
  any_value: "Any value",
105514
105659
  is_between: "Is between",
105660
+ is_equal_to: "Is equal to",
105515
105661
  greater_than: "Is greater than",
105516
105662
  greater_than_equal_to: "Is greater than or equal to",
105517
105663
  less_than: "Is less than",
@@ -105534,6 +105680,7 @@ var en_GB_default = {
105534
105680
  secondary: "Information loading, thanks for your patience."
105535
105681
  },
105536
105682
  menuOptions: {
105683
+ ariaMenuColumn: "Press Alt/Option+Down to open column menu.",
105537
105684
  sortMenuItem: {
105538
105685
  label: "Sort by this column",
105539
105686
  sortAscItem: "Sort column ascending",
@@ -105588,6 +105735,9 @@ var en_GB_default = {
105588
105735
  currencyCell: {
105589
105736
  placeholder: "Enter currency"
105590
105737
  },
105738
+ linkCell: {
105739
+ externalLabel: "Open external link"
105740
+ },
105591
105741
  numberCell: {
105592
105742
  placeholder: "Enter number"
105593
105743
  },
@@ -105668,6 +105818,7 @@ var en_default = {
105668
105818
  exporting: "Exporting...",
105669
105819
  filters: {
105670
105820
  filters: "Filters",
105821
+ allFilters: "All Filters",
105671
105822
  moreFilters: "More Filters",
105672
105823
  clearAllFilters: "Clear All Filters",
105673
105824
  close: "Close",
@@ -105687,6 +105838,7 @@ var en_default = {
105687
105838
  options: {
105688
105839
  any_value: "Any Value",
105689
105840
  is_between: "Is Between",
105841
+ is_equal_to: "Is Equal To",
105690
105842
  greater_than: "Is Greater Than",
105691
105843
  greater_than_equal_to: "Is Greater Than or Equal To",
105692
105844
  less_than: "Is Less Than",
@@ -105764,6 +105916,9 @@ var en_default = {
105764
105916
  currencyCell: {
105765
105917
  placeholder: "Enter currency"
105766
105918
  },
105919
+ linkCell: {
105920
+ externalLabel: "Open external link"
105921
+ },
105767
105922
  numberCell: {
105768
105923
  placeholder: "Enter number"
105769
105924
  },
@@ -105844,9 +105999,11 @@ var es_ES_default = {
105844
105999
  exporting: "Exportando...",
105845
106000
  filters: {
105846
106001
  filters: "Filtros",
106002
+ allFilters: "Todos los filtros",
105847
106003
  moreFilters: "M\xE1s filtros",
105848
106004
  clearAllFilters: "Borrar todos los filtros",
105849
106005
  close: "Cerrar",
106006
+ removeFilterToken: "Eliminar %{name}",
105850
106007
  locationFilter: {
105851
106008
  selectAll: "Seleccionar todo",
105852
106009
  includeSublocations: "Incluir sububicaciones",
@@ -105862,6 +106019,7 @@ var es_ES_default = {
105862
106019
  options: {
105863
106020
  any_value: "Cualquier valor",
105864
106021
  is_between: "Est\xE1 entre",
106022
+ is_equal_to: "Es igual a",
105865
106023
  greater_than: "Es mayor que",
105866
106024
  greater_than_equal_to: "Es mayor o igual que",
105867
106025
  less_than: "Es menor que",
@@ -105884,6 +106042,7 @@ var es_ES_default = {
105884
106042
  secondary: "Cargando informaci\xF3n; gracias por su paciencia."
105885
106043
  },
105886
106044
  menuOptions: {
106045
+ ariaMenuColumn: "Pulse Alt/Opci\xF3n\xA0+\xA0flecha hacia abajo para abrir el men\xFA de la columna.",
105887
106046
  sortMenuItem: {
105888
106047
  label: "Ordenar por esta columna",
105889
106048
  sortAscItem: "Ordenar columna en ascendente",
@@ -105938,6 +106097,9 @@ var es_ES_default = {
105938
106097
  currencyCell: {
105939
106098
  placeholder: "Introducir moneda"
105940
106099
  },
106100
+ linkCell: {
106101
+ externalLabel: "Abrir enlace externo"
106102
+ },
105941
106103
  numberCell: {
105942
106104
  placeholder: "Introducir n\xFAmero"
105943
106105
  },
@@ -106018,9 +106180,11 @@ var es_default = {
106018
106180
  exporting: "Exportando...",
106019
106181
  filters: {
106020
106182
  filters: "Filtros",
106183
+ allFilters: "Todos los filtros",
106021
106184
  moreFilters: "M\xE1s filtros",
106022
106185
  clearAllFilters: "Restablecer todos los filtros",
106023
106186
  close: "Cerrar",
106187
+ removeFilterToken: "Eliminar %{name}",
106024
106188
  locationFilter: {
106025
106189
  selectAll: "Seleccionar todo",
106026
106190
  includeSublocations: "Incluir sububicaciones",
@@ -106036,6 +106200,7 @@ var es_default = {
106036
106200
  options: {
106037
106201
  any_value: "Cualquier valor",
106038
106202
  is_between: "Est\xE1 entre",
106203
+ is_equal_to: "Es igual a",
106039
106204
  greater_than: "Es mayor que",
106040
106205
  greater_than_equal_to: "Es mayor o igual que",
106041
106206
  less_than: "Es menor que",
@@ -106058,6 +106223,7 @@ var es_default = {
106058
106223
  secondary: "Cargando informaci\xF3n. Gracias por su paciencia."
106059
106224
  },
106060
106225
  menuOptions: {
106226
+ ariaMenuColumn: "Pulse Alt/Opci\xF3n + Flecha hacia abajo para abrir el men\xFA de columnas.",
106061
106227
  sortMenuItem: {
106062
106228
  label: "Ordenar por esta columna",
106063
106229
  sortAscItem: "Ordenar columna - Ascendente",
@@ -106112,6 +106278,9 @@ var es_default = {
106112
106278
  currencyCell: {
106113
106279
  placeholder: "Ingresar moneda"
106114
106280
  },
106281
+ linkCell: {
106282
+ externalLabel: "Abrir enlace externo"
106283
+ },
106115
106284
  numberCell: {
106116
106285
  placeholder: "Ingresar n\xFAmero"
106117
106286
  },
@@ -106164,7 +106333,7 @@ var fr_CA_default = {
106164
106333
  title: "Il n'y a aucun item \xE0 afficher pour le moment",
106165
106334
  itemsTitle: "Il n'y a pas de %{itemsLabel} \xE0 afficher pour le moment",
106166
106335
  tooltip: "Le bouton %{featureName} sera activ\xE9 une fois que vous aurez ajout\xE9 des informations au %{tableName}",
106167
- searchTooltip: "La recherche sera activ\xE9e une fois que vous aurez ajout\xE9 de l'information au %{tableName}",
106336
+ searchTooltip: "La recherche sera activ\xE9e une fois que vous aurez ajout\xE9 des informations au %{tableName}",
106168
106337
  featureFilter: "Filtre",
106169
106338
  featureQuickFilter: "Filtre rapide",
106170
106339
  featureGroupBy: "Regrouper par",
@@ -106192,9 +106361,11 @@ var fr_CA_default = {
106192
106361
  exporting: "Exportation ...",
106193
106362
  filters: {
106194
106363
  filters: "Filtres",
106364
+ allFilters: "Tous les filtres",
106195
106365
  moreFilters: "Plus de filtres",
106196
106366
  clearAllFilters: "Effacer tous les filtres",
106197
106367
  close: "Fermer",
106368
+ removeFilterToken: "Retirer %{name}",
106198
106369
  locationFilter: {
106199
106370
  selectAll: "S\xE9lectionner tout",
106200
106371
  includeSublocations: "Inclure les sous-lieux",
@@ -106210,6 +106381,7 @@ var fr_CA_default = {
106210
106381
  options: {
106211
106382
  any_value: "N'importe quelle valeur",
106212
106383
  is_between: "Est entre",
106384
+ is_equal_to: "Est \xE9gal \xE0",
106213
106385
  greater_than: "Est sup\xE9rieur \xE0",
106214
106386
  greater_than_equal_to: "Est sup\xE9rieur ou \xE9gal \xE0",
106215
106387
  less_than: "Est inf\xE9rieur \xE0",
@@ -106232,6 +106404,7 @@ var fr_CA_default = {
106232
106404
  secondary: "Chargement des informations, merci pour votre patience."
106233
106405
  },
106234
106406
  menuOptions: {
106407
+ ariaMenuColumn: "Appuyez sur Alt/Option\xA0+ Bas pour ouvrir le menu de la colonne.",
106235
106408
  sortMenuItem: {
106236
106409
  label: "Trier cette colonne",
106237
106410
  sortAscItem: "Trier la colonne par ordre croissant",
@@ -106286,6 +106459,9 @@ var fr_CA_default = {
106286
106459
  currencyCell: {
106287
106460
  placeholder: "Saisir la devise"
106288
106461
  },
106462
+ linkCell: {
106463
+ externalLabel: "Lien externe ouvert"
106464
+ },
106289
106465
  numberCell: {
106290
106466
  placeholder: "Saisir un num\xE9ro"
106291
106467
  },
@@ -106366,9 +106542,11 @@ var fr_FR_default = {
106366
106542
  exporting: "Exportation...",
106367
106543
  filters: {
106368
106544
  filters: "Filtres",
106545
+ allFilters: "Tous les filtres",
106369
106546
  moreFilters: "Plus de filtres",
106370
106547
  clearAllFilters: "Effacer tous les filtres",
106371
106548
  close: "Fermer",
106549
+ removeFilterToken: "Retirer %{name}",
106372
106550
  locationFilter: {
106373
106551
  selectAll: "S\xE9lectionner tout",
106374
106552
  includeSublocations: "Inclure les sous-lieux",
@@ -106384,6 +106562,7 @@ var fr_FR_default = {
106384
106562
  options: {
106385
106563
  any_value: "N'importe quelle valeur",
106386
106564
  is_between: "Est comprise entre",
106565
+ is_equal_to: "Est \xE9gal \xE0",
106387
106566
  greater_than: "Est sup\xE9rieure \xE0",
106388
106567
  greater_than_equal_to: "Est sup\xE9rieure ou \xE9gale \xE0",
106389
106568
  less_than: "Est inf\xE9rieure \xE0",
@@ -106406,6 +106585,7 @@ var fr_FR_default = {
106406
106585
  secondary: "Chargement des informations. Merci pour votre patience."
106407
106586
  },
106408
106587
  menuOptions: {
106588
+ ariaMenuColumn: "Appuyez sur Alt/Option + la fl\xE8che vers le bas pour ouvrir le menu de la colonne.",
106409
106589
  sortMenuItem: {
106410
106590
  label: "Trier cette colonne",
106411
106591
  sortAscItem: "Trier la colonne par ordre croissant",
@@ -106446,8 +106626,8 @@ var fr_FR_default = {
106446
106626
  },
106447
106627
  rowGroupToggle: {
106448
106628
  expandTierOne: "Ouvrez les premiers groupes du tableau.",
106449
- expandAll: "Ouvrez tous les groupes du tableau.",
106450
- collapseAll: "Fermer tous les groupes du tableau."
106629
+ expandAll: "Ouvrir tous les groupes du tableau",
106630
+ collapseAll: "Fermer tous les groupes du tableau"
106451
106631
  },
106452
106632
  columnGroupToggle: {
106453
106633
  collapse: "R\xE9duire le groupe de colonnes",
@@ -106460,6 +106640,9 @@ var fr_FR_default = {
106460
106640
  currencyCell: {
106461
106641
  placeholder: "Saisir la devise"
106462
106642
  },
106643
+ linkCell: {
106644
+ externalLabel: "Ouvrir le lien externe"
106645
+ },
106463
106646
  numberCell: {
106464
106647
  placeholder: "Saisir un num\xE9ro"
106465
106648
  },
@@ -106540,9 +106723,11 @@ var is_IS_default = {
106540
106723
  exporting: "Flytur \xFAt ...",
106541
106724
  filters: {
106542
106725
  filters: "S\xEDur",
106726
+ allFilters: "Allar s\xEDur",
106543
106727
  moreFilters: "Fleiri s\xEDur",
106544
106728
  clearAllFilters: "Hreinsa allar s\xEDur",
106545
106729
  close: "Loka\xF0u",
106730
+ removeFilterToken: "Fjarl\xE6gja %{name}",
106546
106731
  locationFilter: {
106547
106732
  selectAll: "Velja allt",
106548
106733
  includeSublocations: "L\xE1ttu undirlokanir fylgja me\xF0",
@@ -106558,6 +106743,7 @@ var is_IS_default = {
106558
106743
  options: {
106559
106744
  any_value: "Hva\xF0a gildi sem er",
106560
106745
  is_between: "Er \xE1 milli",
106746
+ is_equal_to: "Er jafnt",
106561
106747
  greater_than: "Er meiri en",
106562
106748
  greater_than_equal_to: "Er st\xE6rra en e\xF0a jafnt",
106563
106749
  less_than: "Er minna en",
@@ -106580,6 +106766,7 @@ var is_IS_default = {
106580
106766
  secondary: "Hle\xF0sla uppl\xFDsinga, takk fyrir \xFEolinm\xE6\xF0ina."
106581
106767
  },
106582
106768
  menuOptions: {
106769
+ ariaMenuColumn: "\xDDttu \xE1 Alt/Option+Down til a\xF0 opna d\xE1lkavalmyndina.",
106583
106770
  sortMenuItem: {
106584
106771
  label: "Ra\xF0a eftir \xFEessum d\xE1lki",
106585
106772
  sortAscItem: "Ra\xF0a d\xE1lki h\xE6kkandi",
@@ -106634,6 +106821,9 @@ var is_IS_default = {
106634
106821
  currencyCell: {
106635
106822
  placeholder: "Sl\xE1\xF0u inn gjaldmi\xF0il"
106636
106823
  },
106824
+ linkCell: {
106825
+ externalLabel: "Opna utana\xF0komandi tengil"
106826
+ },
106637
106827
  numberCell: {
106638
106828
  placeholder: "Sl\xE1\xF0u inn n\xFAmer"
106639
106829
  },
@@ -106714,9 +106904,11 @@ var it_IT_default = {
106714
106904
  exporting: "Esportazione in corso...",
106715
106905
  filters: {
106716
106906
  filters: "Filtri",
106907
+ allFilters: "Tutti i filtri",
106717
106908
  moreFilters: "Altri filtri",
106718
106909
  clearAllFilters: "Cancella tutti i filtri",
106719
106910
  close: "Chiudi",
106911
+ removeFilterToken: "Rimuovi %{name}",
106720
106912
  locationFilter: {
106721
106913
  selectAll: "Seleziona tutto",
106722
106914
  includeSublocations: "Includi posizioni secondarie",
@@ -106732,6 +106924,7 @@ var it_IT_default = {
106732
106924
  options: {
106733
106925
  any_value: "Qualsiasi valore",
106734
106926
  is_between: "\xC8 compreso tra",
106927
+ is_equal_to: "\xC8 uguale a",
106735
106928
  greater_than: "\xC8 maggiore di",
106736
106929
  greater_than_equal_to: "\xC8 maggiore o uguale a",
106737
106930
  less_than: "\xC8 minore di",
@@ -106754,6 +106947,7 @@ var it_IT_default = {
106754
106947
  secondary: "Caricamento delle informazioni in corso, grazie per la pazienza."
106755
106948
  },
106756
106949
  menuOptions: {
106950
+ ariaMenuColumn: "Premere Alt/Opzione+Freccia gi\xF9 per aprire il menu a colonna.",
106757
106951
  sortMenuItem: {
106758
106952
  label: "Ordina per questa colonna",
106759
106953
  sortAscItem: "Ordina colonna (crescente)",
@@ -106808,6 +107002,9 @@ var it_IT_default = {
106808
107002
  currencyCell: {
106809
107003
  placeholder: "Inserisci valuta"
106810
107004
  },
107005
+ linkCell: {
107006
+ externalLabel: "Apri collegamento esterno"
107007
+ },
106811
107008
  numberCell: {
106812
107009
  placeholder: "Inserisci numero"
106813
107010
  },
@@ -106888,9 +107085,11 @@ var ja_JP_default = {
106888
107085
  exporting: "\u30A8\u30AF\u30B9\u30DD\u30FC\u30C8\u4E2D...",
106889
107086
  filters: {
106890
107087
  filters: "\u30D5\u30A3\u30EB\u30BF",
107088
+ allFilters: "\u3059\u3079\u3066\u306E\u30D5\u30A3\u30EB\u30BF\u30FC",
106891
107089
  moreFilters: "\u305D\u306E\u4ED6\u306E\u30D5\u30A3\u30EB\u30BF",
106892
107090
  clearAllFilters: "\u3059\u3079\u3066\u306E\u30D5\u30A3\u30EB\u30BF\u3092\u6D88\u53BB",
106893
107091
  close: "\u7D42\u4E86",
107092
+ removeFilterToken: "%{name}\u524A\u9664",
106894
107093
  locationFilter: {
106895
107094
  selectAll: "\u3059\u3079\u3066\u9078\u629E",
106896
107095
  includeSublocations: "\u30B5\u30D6\u30ED\u30B1\u30FC\u30B7\u30E7\u30F3\u3092\u542B\u3081\u308B",
@@ -106906,6 +107105,7 @@ var ja_JP_default = {
106906
107105
  options: {
106907
107106
  any_value: "\u4EFB\u610F\u306E\u5024",
106908
107107
  is_between: "\u9593\u306B\u3042\u308B",
107108
+ is_equal_to: "\u7B49\u3057\u3044",
106909
107109
  greater_than: "\u3088\u308A\u5927\u304D\u3044",
106910
107110
  greater_than_equal_to: "\u4EE5\u4E0A\u3067\u3042\u308B",
106911
107111
  less_than: "\u672A\u6E80\u3067\u3042\u308B",
@@ -106928,6 +107128,7 @@ var ja_JP_default = {
106928
107128
  secondary: "\u60C5\u5831\u3092\u8AAD\u307F\u8FBC\u3093\u3067\u3044\u307E\u3059\u3002\u3057\u3070\u3089\u304F\u304A\u5F85\u3061\u304F\u3060\u3055\u3044\u3002"
106929
107129
  },
106930
107130
  menuOptions: {
107131
+ ariaMenuColumn: "Alt/Option\u30AD\u30FC\u3092\u62BC\u3057\u306A\u304C\u3089\u4E0B\u77E2\u5370\u30AD\u30FC\u3092\u62BC\u3059\u3068\u3001\u5217\u30E1\u30CB\u30E5\u30FC\u304C\u958B\u304D\u307E\u3059\u3002",
106931
107132
  sortMenuItem: {
106932
107133
  label: "\u3053\u306E\u5217\u3067\u4E26\u3079\u66FF\u3048\u308B",
106933
107134
  sortAscItem: "\u5217\u3092\u6607\u9806\u306B\u4E26\u3079\u66FF\u3048\u308B",
@@ -106982,6 +107183,9 @@ var ja_JP_default = {
106982
107183
  currencyCell: {
106983
107184
  placeholder: "\u901A\u8CA8\u3092\u5165\u529B"
106984
107185
  },
107186
+ linkCell: {
107187
+ externalLabel: "\u5916\u90E8\u30EA\u30F3\u30AF\u3092\u958B\u304F"
107188
+ },
106985
107189
  numberCell: {
106986
107190
  placeholder: "\u756A\u53F7\u3092\u5165\u529B"
106987
107191
  },
@@ -107025,13 +107229,13 @@ var nb_NO_default = {
107025
107229
  dataTable: {
107026
107230
  emptyState: {
107027
107231
  noFilteredResults: {
107028
- description: "Check your spelling and filter options, or search for a different keyword.",
107029
- title: "No Items Match Your Search",
107232
+ description: "Kontroller staving og filteralternativer, eller s\xF8k etter et annet n\xF8kkelord.",
107233
+ title: "Ingen enheter samsvarer med s\xF8ket ditt",
107030
107234
  itemsTitle: "No %{itemsLabel} Match Your Search"
107031
107235
  },
107032
107236
  noResults: {
107033
107237
  description: "Once your team creates these items, you can access them here. ",
107034
- title: "There Are No Items to Display Right Now",
107238
+ title: "Ingen enheter kan vises akkurat n\xE5",
107035
107239
  itemsTitle: "There Are No %{itemsLabel} to Display Right Now",
107036
107240
  tooltip: "The %{featureName} button will be enabled once you add information to the %{tableName}",
107037
107241
  searchTooltip: "Search will be enabled once you add information to the %{tableName}",
@@ -107045,7 +107249,7 @@ var nb_NO_default = {
107045
107249
  bulkActions: {
107046
107250
  apply: "Apply",
107047
107251
  bulkEdit: "Bulk Edit",
107048
- cancel: "Cancel",
107252
+ cancel: "Avbryt",
107049
107253
  editValues: "Edit Values",
107050
107254
  error: "Sorry, the items couldn't be updated. Try again.",
107051
107255
  placeholderForField: "Enter %{fieldName}",
@@ -107057,29 +107261,32 @@ var nb_NO_default = {
107057
107261
  },
107058
107262
  success: "The items were successfully updated.",
107059
107263
  one: "item",
107060
- many: "items"
107264
+ many: "Enheter"
107061
107265
  },
107062
107266
  exporting: "Exporting...",
107063
107267
  filters: {
107064
- filters: "Filters",
107268
+ filters: "Filtre",
107269
+ allFilters: "Alle filtre",
107065
107270
  moreFilters: "More Filters",
107066
- clearAllFilters: "Clear All Filters",
107271
+ clearAllFilters: "Fjern alle filtre",
107067
107272
  close: "Close",
107273
+ removeFilterToken: "Fjern %{name}",
107068
107274
  locationFilter: {
107069
- selectAll: "Select all",
107275
+ selectAll: "Velg alle",
107070
107276
  includeSublocations: "Include sublocations",
107071
107277
  searchLocations: "Search locations",
107072
107278
  locations: "Locations"
107073
107279
  },
107074
107280
  numberFilter: {
107075
107281
  labels: {
107076
- and: "and",
107282
+ and: "OG",
107077
107283
  input_placeholder: "Enter Value",
107078
107284
  placeholder: "Select an item"
107079
107285
  },
107080
107286
  options: {
107081
107287
  any_value: "Any Value",
107082
107288
  is_between: "Is Between",
107289
+ is_equal_to: "Is Equal To",
107083
107290
  greater_than: "Is Greater Than",
107084
107291
  greater_than_equal_to: "Is Greater Than or Equal To",
107085
107292
  less_than: "Is Less Than",
@@ -107102,11 +107309,15 @@ var nb_NO_default = {
107102
107309
  secondary: "Information loading, thanks for your patience."
107103
107310
  },
107104
107311
  menuOptions: {
107312
+ ariaMenuColumn: "Trykk p\xE5 Alt/Option og pil ned for \xE5 \xE5pne kolonnemenyen.",
107105
107313
  sortMenuItem: {
107106
107314
  label: "Sort By This Column",
107107
107315
  sortAscItem: "Sort Column Ascending",
107108
107316
  sortDescItem: "Sort Column Descending",
107109
- sortResetItem: "Column Not Sorted"
107317
+ sortResetItem: "Column Not Sorted",
107318
+ sortAscending: "sorted ascending",
107319
+ sortDescending: "sorted descending",
107320
+ sortCleared: "Sorting cleared"
107110
107321
  },
107111
107322
  expandAllGroups: "Expand All Groups",
107112
107323
  collapseAllGroups: "Collapse All Groups",
@@ -107117,12 +107328,12 @@ var nb_NO_default = {
107117
107328
  autoSizeThisColumn: "Autosize This Column",
107118
107329
  autoSizeAllColumns: "Autosize All Columns",
107119
107330
  hideColumn: "Hide Column",
107120
- resetColumns: "Reset Columns",
107331
+ resetColumns: "Tilbakestill kolonner",
107121
107332
  unGroupBy: "Un-Group by {{label}}",
107122
107333
  groupBy: "Group by {{label}}"
107123
107334
  },
107124
107335
  grandTotals: "Grand Totals",
107125
- search: "Search",
107336
+ search: "S\xF8k",
107126
107337
  subtotals: "Subtotals",
107127
107338
  tableSettings: {
107128
107339
  configureColumns: "Configure Columns",
@@ -107133,7 +107344,7 @@ var nb_NO_default = {
107133
107344
  large: "Large",
107134
107345
  tableSettings: "Table Settings",
107135
107346
  groupBy: "Group by:",
107136
- reset: "Reset",
107347
+ reset: "Tilbakestill",
107137
107348
  selectColumnGroup: "Select a column to group",
107138
107349
  configure: "Configure"
107139
107350
  },
@@ -107153,6 +107364,9 @@ var nb_NO_default = {
107153
107364
  currencyCell: {
107154
107365
  placeholder: "Enter currency"
107155
107366
  },
107367
+ linkCell: {
107368
+ externalLabel: "\xC5pne ekstern kobling"
107369
+ },
107156
107370
  numberCell: {
107157
107371
  placeholder: "Enter number"
107158
107372
  },
@@ -107170,8 +107384,8 @@ var nb_NO_default = {
107170
107384
  },
107171
107385
  booleanCell: {
107172
107386
  options: {
107173
- yes: "Yes",
107174
- no: "No"
107387
+ yes: "Ja",
107388
+ no: "Nei"
107175
107389
  }
107176
107390
  }
107177
107391
  },
@@ -107233,9 +107447,11 @@ var pl_PL_default = {
107233
107447
  exporting: "Eksportowanie...",
107234
107448
  filters: {
107235
107449
  filters: "Filtry",
107450
+ allFilters: "Wszystkie filtry",
107236
107451
  moreFilters: "Wi\u0119cej filtr\xF3w",
107237
107452
  clearAllFilters: "Wyczy\u015B\u0107 wszystkie filtry",
107238
107453
  close: "Zamknij",
107454
+ removeFilterToken: "Usu\u0144 %{name}",
107239
107455
  locationFilter: {
107240
107456
  selectAll: "Zaznacz wszystkie",
107241
107457
  includeSublocations: "Uwzgl\u0119dnij lokalizacje podrz\u0119dne",
@@ -107251,6 +107467,7 @@ var pl_PL_default = {
107251
107467
  options: {
107252
107468
  any_value: "Dowolna warto\u015B\u0107",
107253
107469
  is_between: "jest pomi\u0119dzy",
107470
+ is_equal_to: "jest r\xF3wne",
107254
107471
  greater_than: "jest wi\u0119ksze ni\u017C",
107255
107472
  greater_than_equal_to: "jest wi\u0119ksze ni\u017C lub r\xF3wne",
107256
107473
  less_than: "mniej ni\u017C",
@@ -107273,6 +107490,7 @@ var pl_PL_default = {
107273
107490
  secondary: "Trwa \u0142adowanie informacji. Prosimy o cierpliwo\u015B\u0107."
107274
107491
  },
107275
107492
  menuOptions: {
107493
+ ariaMenuColumn: "Naci\u015Bnij klawisze Alt/Option + strza\u0142ka w d\xF3\u0142, aby otworzy\u0107 menu kolumny.",
107276
107494
  sortMenuItem: {
107277
107495
  label: "Sortuj wed\u0142ug tej kolumny",
107278
107496
  sortAscItem: "Sortuj kolumny rosn\u0105co",
@@ -107327,6 +107545,9 @@ var pl_PL_default = {
107327
107545
  currencyCell: {
107328
107546
  placeholder: "Wprowad\u017A walut\u0119"
107329
107547
  },
107548
+ linkCell: {
107549
+ externalLabel: "Otw\xF3rz zewn\u0119trzne \u0142\u0105cze"
107550
+ },
107330
107551
  numberCell: {
107331
107552
  placeholder: "Wprowad\u017A numer"
107332
107553
  },
@@ -107407,6 +107628,7 @@ var pseudo_default = {
107407
107628
  exporting: "[\u1E16\u1E16\u1E16\u1E8B\u01A5\u01FF\u0159\u0167\u012B\u019E\u0260.....]",
107408
107629
  filters: {
107409
107630
  filters: "[\u0191\u0191\u012B\u0140\u0167\u1E17\u0159\u015F\u015F]",
107631
+ allFilters: "[\u0226\u0226\u0226\u0140\u0140 \xB7 \u0191\u012B\u0140\u0167\u1E17\u0159\u015F\u015F\u015F]",
107410
107632
  moreFilters: "[\u1E3E\u1E3E\u1E3E\u01FF\u0159\u1E17 \xB7 \u0191\u012B\u0140\u0167\u1E17\u0159\u015F\u015F\u015F]",
107411
107633
  clearAllFilters: "[\u0187\u0187\u0187\u0187\u0140\u1E17\u0227\u0159 \xB7 \u0226\u0140\u0140 \xB7 \u0191\u012B\u0140\u0167\u1E17\u0159\u015F\u015F\u015F\u015F]",
107412
107634
  close: "[\u0187\u0140\u01FF\u015F\u1E17]",
@@ -107426,6 +107648,7 @@ var pseudo_default = {
107426
107648
  options: {
107427
107649
  any_value: "[\u0226\u0226\u019E\u1E8F \xB7 \u1E7C\u0227\u0140\u016D\u1E17\u1E17]",
107428
107650
  is_between: "[\u012A\u012A\u015F \xB7 \u0181\u1E17\u0167\u1E87\u1E17\u1E17\u019E\u019E]",
107651
+ is_equal_to: "[\u012A\u012A\u012A\u015F \xB7 \u1E16\u024B\u016D\u0227\u0140 \xB7 \u0166\u01FF\u01FF\u01FF]",
107429
107652
  greater_than: "[\u012A\u012A\u012A\u015F \xB7 \u0193\u0159\u1E17\u0227\u0167\u1E17\u0159 \xB7 \u0166\u0127\u0227\u019E\u019E\u019E]",
107430
107653
  greater_than_equal_to: "[\u012A\u012A\u012A\u012A\u012A\u012A\u015F \xB7 \u0193\u0159\u1E17\u0227\u0167\u1E17\u0159 \xB7 \u0166\u0127\u0227\u019E \xB7 \u01FF\u0159 \xB7 \u1E16\u024B\u016D\u0227\u0140 \xB7 \u0166\u01FF\u01FF\u01FF\u01FF\u01FF\u01FF]",
107431
107654
  less_than: "[\u012A\u012A\u012A\u015F \xB7 \u013F\u1E17\u015F\u015F \xB7 \u0166\u0127\u0227\u019E\u019E\u019E]",
@@ -107503,6 +107726,9 @@ var pseudo_default = {
107503
107726
  currencyCell: {
107504
107727
  placeholder: "[\u1E16\u1E16\u1E16\u019E\u0167\u1E17\u0159 \xB7 \u0188\u016D\u0159\u0159\u1E17\u019E\u0188\u1E8F\u1E8F\u1E8F]"
107505
107728
  },
107729
+ linkCell: {
107730
+ 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]"
107731
+ },
107506
107732
  numberCell: {
107507
107733
  placeholder: "[\u1E16\u1E16\u1E16\u019E\u0167\u1E17\u0159 \xB7 \u019E\u016D\u1E3F\u0180\u1E17\u0159\u0159\u0159]"
107508
107734
  },
@@ -107583,9 +107809,11 @@ var pt_BR_default = {
107583
107809
  exporting: "Exportando...",
107584
107810
  filters: {
107585
107811
  filters: "Filtros",
107812
+ allFilters: "Todos os Filtros",
107586
107813
  moreFilters: "Mais Filtros",
107587
107814
  clearAllFilters: "Limpar Todos os Filtros",
107588
107815
  close: "Fechar",
107816
+ removeFilterToken: "Remover %{name}",
107589
107817
  locationFilter: {
107590
107818
  selectAll: "Selecionar tudo",
107591
107819
  includeSublocations: "Incluir Sublocais",
@@ -107601,6 +107829,7 @@ var pt_BR_default = {
107601
107829
  options: {
107602
107830
  any_value: "Qualquer Valor",
107603
107831
  is_between: "Est\xE1 entre",
107832
+ is_equal_to: "\xC9 igual a",
107604
107833
  greater_than: "\xC9 Maior Que",
107605
107834
  greater_than_equal_to: "\xC9 Maior Que ou Igual a",
107606
107835
  less_than: "\xC9 Menor Que",
@@ -107623,6 +107852,7 @@ var pt_BR_default = {
107623
107852
  secondary: "As informa\xE7\xF5es est\xE3o carregando, obrigado pela paci\xEAncia."
107624
107853
  },
107625
107854
  menuOptions: {
107855
+ ariaMenuColumn: "Pressione Alt/Option + Seta para baixo para abrir o menu de colunas.",
107626
107856
  sortMenuItem: {
107627
107857
  label: "Classificar por Esta Coluna",
107628
107858
  sortAscItem: "Classificar Coluna em Ordem Crescente",
@@ -107677,6 +107907,9 @@ var pt_BR_default = {
107677
107907
  currencyCell: {
107678
107908
  placeholder: "Insira moeda"
107679
107909
  },
107910
+ linkCell: {
107911
+ externalLabel: "Abrir link externo"
107912
+ },
107680
107913
  numberCell: {
107681
107914
  placeholder: "Inserir n\xFAmeros"
107682
107915
  },
@@ -107729,7 +107962,7 @@ var pt_PT_default = {
107729
107962
  title: "N\xE3o h\xE1 itens para apresentar neste momento",
107730
107963
  itemsTitle: "N\xE3o h\xE1 %{itemsLabel} para apresentar neste momento",
107731
107964
  tooltip: "O bot\xE3o %{featureName} ser\xE1 ativado quando adicionar informa\xE7\xF5es \xE0 tabela %{tableName}",
107732
- searchTooltip: "A pesquisa ser\xE1 ativada quando adicionar informa\xE7\xF5es \xE0 tabela %{tableName}",
107965
+ searchTooltip: "A pesquisa ser\xE1 ativada quando adicionar informa\xE7\xF5es a %{tableName}",
107733
107966
  featureFilter: "Filtro",
107734
107967
  featureQuickFilter: "Filtro r\xE1pido",
107735
107968
  featureGroupBy: "Agrupar por",
@@ -107757,9 +107990,11 @@ var pt_PT_default = {
107757
107990
  exporting: "A exportar...",
107758
107991
  filters: {
107759
107992
  filters: "Filtros",
107993
+ allFilters: "Todos os filtros",
107760
107994
  moreFilters: "Mais filtros",
107761
107995
  clearAllFilters: "Apagar todos os filtros",
107762
107996
  close: "Fechar",
107997
+ removeFilterToken: "Remover %{name}",
107763
107998
  locationFilter: {
107764
107999
  selectAll: "Selecionar tudo",
107765
108000
  includeSublocations: "Incluir locais secund\xE1rios",
@@ -107775,6 +108010,7 @@ var pt_PT_default = {
107775
108010
  options: {
107776
108011
  any_value: "Qualquer valor",
107777
108012
  is_between: "Est\xE1 entre",
108013
+ is_equal_to: "\xC9 igual a",
107778
108014
  greater_than: "\xC9 superior a",
107779
108015
  greater_than_equal_to: "\xC9 igual ou superior a",
107780
108016
  less_than: "\xC9 inferior a",
@@ -107797,6 +108033,7 @@ var pt_PT_default = {
107797
108033
  secondary: "A carregar informa\xE7\xF5es. Agradecemos a sua paci\xEAncia."
107798
108034
  },
107799
108035
  menuOptions: {
108036
+ ariaMenuColumn: "Pressionar Alt/Op\xE7\xE3o + Seta para baixo para abrir o menu da coluna.",
107800
108037
  sortMenuItem: {
107801
108038
  label: "Ordenar por esta coluna",
107802
108039
  sortAscItem: "Ordenar coluna por ordem ascendente",
@@ -107851,6 +108088,9 @@ var pt_PT_default = {
107851
108088
  currencyCell: {
107852
108089
  placeholder: "Introduzir moeda"
107853
108090
  },
108091
+ linkCell: {
108092
+ externalLabel: "Abrir liga\xE7\xE3o externa"
108093
+ },
107854
108094
  numberCell: {
107855
108095
  placeholder: "Introduzir n\xFAmero"
107856
108096
  },
@@ -107931,9 +108171,11 @@ var th_TH_default = {
107931
108171
  exporting: "\u0E01\u0E33\u0E25\u0E31\u0E07\u0E2A\u0E48\u0E07\u0E2D\u0E2D\u0E01...",
107932
108172
  filters: {
107933
108173
  filters: "\u0E15\u0E31\u0E27\u0E01\u0E23\u0E2D\u0E07",
108174
+ allFilters: "\u0E15\u0E31\u0E27\u0E01\u0E23\u0E2D\u0E07\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14",
107934
108175
  moreFilters: "\u0E15\u0E31\u0E27\u0E01\u0E23\u0E2D\u0E07\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E40\u0E15\u0E34\u0E21",
107935
108176
  clearAllFilters: "\u0E25\u0E49\u0E32\u0E07\u0E15\u0E31\u0E27\u0E01\u0E23\u0E2D\u0E07\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14",
107936
108177
  close: "\u0E1B\u0E34\u0E14",
108178
+ removeFilterToken: "\u0E25\u0E1A %{name}",
107937
108179
  locationFilter: {
107938
108180
  selectAll: "\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14",
107939
108181
  includeSublocations: "\u0E23\u0E27\u0E21\u0E15\u0E33\u0E41\u0E2B\u0E19\u0E48\u0E07\u0E22\u0E48\u0E2D\u0E22",
@@ -107949,6 +108191,7 @@ var th_TH_default = {
107949
108191
  options: {
107950
108192
  any_value: "\u0E04\u0E48\u0E32\u0E43\u0E14\u0E01\u0E47\u0E44\u0E14\u0E49",
107951
108193
  is_between: "\u0E2D\u0E22\u0E39\u0E48\u0E23\u0E30\u0E2B\u0E27\u0E48\u0E32\u0E07",
108194
+ is_equal_to: "\u0E40\u0E17\u0E48\u0E32\u0E01\u0E31\u0E1A",
107952
108195
  greater_than: "\u0E21\u0E32\u0E01\u0E01\u0E27\u0E48\u0E32",
107953
108196
  greater_than_equal_to: "\u0E21\u0E32\u0E01\u0E01\u0E27\u0E48\u0E32\u0E2B\u0E23\u0E37\u0E2D\u0E40\u0E17\u0E48\u0E32\u0E01\u0E31\u0E1A",
107954
108197
  less_than: "\u0E19\u0E49\u0E2D\u0E22\u0E01\u0E27\u0E48\u0E32",
@@ -107971,6 +108214,7 @@ var th_TH_default = {
107971
108214
  secondary: "\u0E01\u0E33\u0E25\u0E31\u0E07\u0E42\u0E2B\u0E25\u0E14\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25 \u0E02\u0E2D\u0E1A\u0E04\u0E38\u0E13\u0E17\u0E35\u0E48\u0E2D\u0E14\u0E17\u0E19\u0E23\u0E2D"
107972
108215
  },
107973
108216
  menuOptions: {
108217
+ ariaMenuColumn: "\u0E01\u0E14\u0E1B\u0E38\u0E48\u0E21 Alt/Option+Down \u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E40\u0E1B\u0E34\u0E14\u0E40\u0E21\u0E19\u0E39\u0E04\u0E2D\u0E25\u0E31\u0E21\u0E19\u0E4C",
107974
108218
  sortMenuItem: {
107975
108219
  label: "\u0E08\u0E31\u0E14\u0E40\u0E23\u0E35\u0E22\u0E07\u0E15\u0E32\u0E21\u0E04\u0E2D\u0E25\u0E31\u0E21\u0E19\u0E4C\u0E19\u0E35\u0E49",
107976
108220
  sortAscItem: "\u0E08\u0E31\u0E14\u0E40\u0E23\u0E35\u0E22\u0E07\u0E04\u0E2D\u0E25\u0E31\u0E21\u0E19\u0E4C\u0E08\u0E32\u0E01\u0E19\u0E49\u0E2D\u0E22\u0E44\u0E1B\u0E21\u0E32\u0E01",
@@ -108025,6 +108269,9 @@ var th_TH_default = {
108025
108269
  currencyCell: {
108026
108270
  placeholder: "\u0E1B\u0E49\u0E2D\u0E19\u0E2A\u0E01\u0E38\u0E25\u0E40\u0E07\u0E34\u0E19"
108027
108271
  },
108272
+ linkCell: {
108273
+ externalLabel: "\u0E40\u0E1B\u0E34\u0E14\u0E25\u0E34\u0E07\u0E01\u0E4C\u0E20\u0E32\u0E22\u0E19\u0E2D\u0E01"
108274
+ },
108028
108275
  numberCell: {
108029
108276
  placeholder: "\u0E1B\u0E49\u0E2D\u0E19\u0E2B\u0E21\u0E32\u0E22\u0E40\u0E25\u0E02"
108030
108277
  },
@@ -108105,9 +108352,11 @@ var zh_SG_default = {
108105
108352
  exporting: "\u6B63\u5728\u5BFC\u51FA...",
108106
108353
  filters: {
108107
108354
  filters: "\u7B5B\u9009\u5668",
108355
+ allFilters: "\u6240\u6709\u7B5B\u9009\u5668",
108108
108356
  moreFilters: "\u66F4\u591A\u7B5B\u9009\u5668",
108109
108357
  clearAllFilters: "\u6E05\u9664\u6240\u6709\u7B5B\u9009\u5668",
108110
108358
  close: "\u5173\u95ED",
108359
+ removeFilterToken: "\u79FB\u9664 %{name}",
108111
108360
  locationFilter: {
108112
108361
  selectAll: "\u5168\u9009",
108113
108362
  includeSublocations: "\u5305\u62EC\u5B50\u5730\u70B9",
@@ -108123,6 +108372,7 @@ var zh_SG_default = {
108123
108372
  options: {
108124
108373
  any_value: "\u4EFB\u610F\u503C",
108125
108374
  is_between: "\u4ECB\u4E8E",
108375
+ is_equal_to: "\u7B49\u4E8E",
108126
108376
  greater_than: "\u5927\u4E8E",
108127
108377
  greater_than_equal_to: "\u5927\u4E8E\u6216\u7B49\u4E8E",
108128
108378
  less_than: "\u5C0F\u4E8E",
@@ -108145,6 +108395,7 @@ var zh_SG_default = {
108145
108395
  secondary: "\u4FE1\u606F\u52A0\u8F7D\u4E2D\uFF0C\u8BF7\u7A0D\u7B49\u7247\u523B\u3002"
108146
108396
  },
108147
108397
  menuOptions: {
108398
+ ariaMenuColumn: "\u6309\u201CAlt/Option + \u5411\u4E0B\u7BAD\u5934\u952E\u201D\u6253\u5F00\u5217\u83DC\u5355\u3002",
108148
108399
  sortMenuItem: {
108149
108400
  label: "\u6309\u6B64\u5217\u6392\u5E8F",
108150
108401
  sortAscItem: "\u6309\u5347\u5E8F\u5BF9\u5217\u6392\u5E8F",
@@ -108199,6 +108450,9 @@ var zh_SG_default = {
108199
108450
  currencyCell: {
108200
108451
  placeholder: "\u8F93\u5165\u8D27\u5E01"
108201
108452
  },
108453
+ linkCell: {
108454
+ externalLabel: "\u6253\u5F00\u5916\u90E8\u94FE\u63A5"
108455
+ },
108202
108456
  numberCell: {
108203
108457
  placeholder: "\u8F93\u5165\u6570\u5B57"
108204
108458
  },
@@ -108279,9 +108533,11 @@ var zh_TW_default = {
108279
108533
  exporting: "\u532F\u51FA\u4E2D\u2026\u2026",
108280
108534
  filters: {
108281
108535
  filters: "\u7BE9\u9078\u689D\u4EF6",
108536
+ allFilters: "\u6240\u6709\u7BE9\u9078\u689D\u4EF6",
108282
108537
  moreFilters: "\u66F4\u591A\u7BE9\u9078\u689D\u4EF6",
108283
108538
  clearAllFilters: "\u6E05\u9664\u6240\u6709\u7BE9\u9078\u689D\u4EF6",
108284
108539
  close: "\u95DC\u9589",
108540
+ removeFilterToken: "\u79FB\u9664\u300C%{name}\u300D",
108285
108541
  locationFilter: {
108286
108542
  selectAll: "\u5168\u90E8\u9078\u53D6",
108287
108543
  includeSublocations: "\u5305\u62EC\u5B50\u4F4D\u7F6E",
@@ -108297,6 +108553,7 @@ var zh_TW_default = {
108297
108553
  options: {
108298
108554
  any_value: "\u4EFB\u4F55\u503C",
108299
108555
  is_between: "\u4ECB\u65BC",
108556
+ is_equal_to: "\u7B49\u65BC",
108300
108557
  greater_than: "\u5927\u65BC",
108301
108558
  greater_than_equal_to: "\u5927\u65BC\u6216\u7B49\u65BC",
108302
108559
  less_than: "\u5C0F\u65BC",
@@ -108319,6 +108576,7 @@ var zh_TW_default = {
108319
108576
  secondary: "\u6B63\u5728\u8F09\u5165\u8CC7\u8A0A\uFF0C\u611F\u8B1D\u60A8\u7684\u8010\u5FC3\u7B49\u5019\u3002"
108320
108577
  },
108321
108578
  menuOptions: {
108579
+ ariaMenuColumn: "\u6309\u4E0B Alt/Option+Down \u958B\u555F\u6B04\u4F4D\u9078\u55AE\u3002",
108322
108580
  sortMenuItem: {
108323
108581
  label: "\u4F9D\u6B64\u6B04\u4F4D\u6392\u5E8F",
108324
108582
  sortAscItem: "\u905E\u589E\u6392\u5E8F\u6B04\u4F4D",
@@ -108373,6 +108631,9 @@ var zh_TW_default = {
108373
108631
  currencyCell: {
108374
108632
  placeholder: "\u8F38\u5165\u8CA8\u5E63"
108375
108633
  },
108634
+ linkCell: {
108635
+ externalLabel: "\u958B\u555F\u5916\u90E8\u9023\u7D50"
108636
+ },
108376
108637
  numberCell: {
108377
108638
  placeholder: "\u8F38\u5165\u6578\u5B57"
108378
108639
  },
@@ -109411,6 +109672,8 @@ var DataTable = ({
109411
109672
  !initialTableConfig
109412
109673
  );
109413
109674
  const contextPanel = useContextPanel();
109675
+ const filtersPanelId = $bdb11010cef70236$export$f680877a34711e37();
109676
+ const filtersBodyId = $bdb11010cef70236$export$f680877a34711e37();
109414
109677
  const clientI18n = useI18nContext();
109415
109678
  const isCDNEnabled = isCDNFeatureFlagEnabled(clientI18n, enableCDN);
109416
109679
  const cdnTranslations = useRequestTranslations(
@@ -109658,7 +109921,9 @@ var DataTable = ({
109658
109921
  totalRowCount,
109659
109922
  setTotalRowCount,
109660
109923
  updateServerSideDataSource,
109661
- hasDuplicateRowIds
109924
+ hasDuplicateRowIds,
109925
+ filtersPanelId,
109926
+ filtersBodyId
109662
109927
  }
109663
109928
  },
109664
109929
  children
@@ -110972,7 +111237,7 @@ var BaseFiltersPanel = ({
110972
111237
  ...props
110973
111238
  }) => {
110974
111239
  const ref = React80.useRef(null);
110975
- const { contextPanel } = useInternalTableContext();
111240
+ const { contextPanel, filtersBodyId, filtersPanelId } = useInternalTableContext();
110976
111241
  const I18n = useI18nContext();
110977
111242
  const hidden = !contextPanel.isVisible || contextPanel.content !== "filters";
110978
111243
  React80.useLayoutEffect(() => {
@@ -110989,6 +111254,7 @@ var BaseFiltersPanel = ({
110989
111254
  "contextPanel--hidden": hidden
110990
111255
  }),
110991
111256
  "data-qa": "data-table-filters-context-panel",
111257
+ id: filtersPanelId,
110992
111258
  ...props
110993
111259
  },
110994
111260
  /* @__PURE__ */ React80.createElement(Box, { className: cx20("contextPanelWrapper"), display: "flex-column" }, /* @__PURE__ */ React80.createElement(Panel, null, /* @__PURE__ */ React80.createElement(Panel.Header, { onClose: contextPanel.hide }, /* @__PURE__ */ React80.createElement(Panel.Title, null, I18n.t("dataTable.filters.filters")), /* @__PURE__ */ React80.createElement(
@@ -111000,7 +111266,7 @@ var BaseFiltersPanel = ({
111000
111266
  variant: "tertiary"
111001
111267
  },
111002
111268
  I18n.t("dataTable.filters.clearAllFilters")
111003
- )), /* @__PURE__ */ React80.createElement(Panel.Body, { className: cx20("contextPanelBody") }, /* @__PURE__ */ React80.createElement(Panel.Section, null, children))))
111269
+ )), /* @__PURE__ */ React80.createElement(Panel.Body, { id: filtersBodyId, className: cx20("contextPanelBody") }, /* @__PURE__ */ React80.createElement(Panel.Section, null, children))))
111004
111270
  );
111005
111271
  };
111006
111272
  function ClientSideFiltersPanel(props) {
@@ -111727,6 +111993,23 @@ var getSuperSelectFilterPreset = (columnDefinition) => {
111727
111993
  } : void 0;
111728
111994
  return {
111729
111995
  components: {
111996
+ Clear: () => {
111997
+ const ctx = UNSAFE_useSuperSelectContext();
111998
+ const I18n = useI18nContext();
111999
+ return /* @__PURE__ */ React80.createElement(
112000
+ Button,
112001
+ {
112002
+ ...ctx.props.clear(),
112003
+ "aria-label": I18n.t("dataTable.filters.removeFilterToken", {
112004
+ name: filterName
112005
+ }),
112006
+ size: "sm",
112007
+ variant: "tertiary",
112008
+ disabled: ctx.config.disabled,
112009
+ icon: /* @__PURE__ */ React80.createElement(Clear, null)
112010
+ }
112011
+ );
112012
+ },
111730
112013
  Label: React80.forwardRef(() => {
111731
112014
  const ctx = UNSAFE_useSuperSelectContext();
111732
112015
  const isValueEmpty = ["", null, void 0].includes(
@@ -112145,10 +112428,26 @@ var SingleSelectQuickFilterRenderer = (props) => {
112145
112428
  return /* @__PURE__ */ React80.createElement(ClientSideSingleSelectQuickFilter, { ...props });
112146
112429
  };
112147
112430
  var SingleSelectQuickFilterRenderer_default = SingleSelectQuickFilterRenderer;
112148
- var FiltersPanelToggleButton = ({ hasSelectedFilters, hasDefinedFilters }) => {
112431
+ var FOCUSABLE_SELECTOR2 = 'button:not([disabled]), input:not([disabled]), select:not([disabled]), textarea:not([disabled]), [tabindex]:not([tabindex="-1"])';
112432
+ var FiltersPanelToggleButton = ({ hasDefinedFilters }) => {
112149
112433
  const I18n = useI18nContext();
112150
- const { contextPanel } = useInternalTableContext();
112434
+ const { contextPanel, filtersBodyId, filtersPanelId } = useInternalTableContext();
112151
112435
  const hasNoContent = useTableHasNoContent();
112436
+ const buttonRef = React80.useRef(null);
112437
+ const isFiltersOpen = contextPanel.content === "filters";
112438
+ const isMounted = React80.useRef(false);
112439
+ React80.useEffect(() => {
112440
+ if (!isMounted.current) {
112441
+ isMounted.current = true;
112442
+ return;
112443
+ }
112444
+ if (isFiltersOpen) {
112445
+ const panel = filtersBodyId ? document.getElementById(filtersBodyId) : null;
112446
+ panel?.querySelector(FOCUSABLE_SELECTOR2)?.focus();
112447
+ } else {
112448
+ buttonRef.current?.focus();
112449
+ }
112450
+ }, [isFiltersOpen, filtersBodyId]);
112152
112451
  if (!hasDefinedFilters) {
112153
112452
  return null;
112154
112453
  }
@@ -112161,46 +112460,37 @@ var FiltersPanelToggleButton = ({ hasSelectedFilters, hasDefinedFilters }) => {
112161
112460
  /* @__PURE__ */ React80.createElement(
112162
112461
  ToggleButton,
112163
112462
  {
112463
+ ref: buttonRef,
112164
112464
  "data-qa": "data-table-show-filters-button",
112165
112465
  disabled: hasNoContent,
112166
112466
  icon: /* @__PURE__ */ React80.createElement(FilterIcon, null),
112467
+ "aria-expanded": isFiltersOpen,
112468
+ "aria-controls": filtersPanelId,
112167
112469
  onClick: () => {
112168
- if (contextPanel.content === "filters") {
112169
- contextPanel.hide();
112170
- } else {
112470
+ if (!isFiltersOpen) {
112171
112471
  contextPanel.show("filters");
112472
+ } else {
112473
+ contextPanel.hide();
112172
112474
  }
112173
112475
  },
112174
- selected: contextPanel.content === "filters"
112476
+ selected: isFiltersOpen
112175
112477
  },
112176
- hasSelectedFilters ? I18n.t("dataTable.filters.moreFilters") : I18n.t("dataTable.filters.filters")
112478
+ I18n.t("dataTable.filters.allFilters")
112177
112479
  )
112178
112480
  );
112179
112481
  };
112180
112482
  var ServerSideFiltersPanelToggleButton = () => {
112181
112483
  const {
112182
- filterStorage: { hasDefinedFilters, hasSelectedFilters }
112484
+ filterStorage: { hasDefinedFilters }
112183
112485
  } = useInternalTableContext();
112184
- return /* @__PURE__ */ React80.createElement(
112185
- FiltersPanelToggleButton,
112186
- {
112187
- hasDefinedFilters,
112188
- hasSelectedFilters
112189
- }
112190
- );
112486
+ return /* @__PURE__ */ React80.createElement(FiltersPanelToggleButton, { hasDefinedFilters });
112191
112487
  };
112192
112488
  var ClientSideFiltersPanelToggleButton = () => {
112193
112489
  const { filterState } = useInternalTableContext();
112194
- const activeFilters = React80.useMemo(() => {
112195
- return filterState.allAvailableFilters.filter(({ instance }) => {
112196
- return instance.isFilterActive();
112197
- });
112198
- }, [filterState.allAvailableFilters]);
112199
112490
  return /* @__PURE__ */ React80.createElement(
112200
112491
  FiltersPanelToggleButton,
112201
112492
  {
112202
- hasDefinedFilters: filterState.allAvailableFilters.length > 0,
112203
- hasSelectedFilters: activeFilters.length > 0
112493
+ hasDefinedFilters: filterState.allAvailableFilters.length > 0
112204
112494
  }
112205
112495
  );
112206
112496
  };