@geotab/zenith 3.7.0-beta.0 → 3.7.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.
Files changed (79) hide show
  1. package/README.md +1 -0
  2. package/dist/checkbox/checkbox.d.ts +3 -1
  3. package/dist/checkbox/checkbox.js +5 -8
  4. package/dist/checkboxListWithAction/checkboxListWithAction.d.ts +3 -1
  5. package/dist/checkboxListWithAction/checkboxListWithAction.js +185 -3
  6. package/dist/dropdown/dropdownPopup.d.ts +1 -1
  7. package/dist/dropdown/dropdownTrigger.d.ts +1 -1
  8. package/dist/dropdownRaw/dropdownList.d.ts +2 -1
  9. package/dist/dropdownRaw/dropdownList.js +15 -4
  10. package/dist/dropdownRaw/dropdownPopup.d.ts +3 -1
  11. package/dist/dropdownRaw/dropdownPopup.js +35 -5
  12. package/dist/dropdownRaw/dropdownRaw.js +82 -7
  13. package/dist/dropdownRaw/dropdownSearchableTrigger.d.ts +2 -1
  14. package/dist/dropdownRaw/dropdownSearchableTrigger.js +7 -2
  15. package/dist/dropdownRaw/dropdownTrigger.d.ts +2 -1
  16. package/dist/dropdownRaw/dropdownTrigger.js +3 -5
  17. package/dist/footerButtons/footerButtons.d.ts +6 -4
  18. package/dist/footerButtons/footerButtons.js +3 -8
  19. package/dist/groupsFilterRaw/groupsFilterInitialState.js +16 -0
  20. package/dist/groupsFilterRaw/groupsFilterTrigger.js +4 -0
  21. package/dist/index.css +14 -0
  22. package/dist/nav/navItem/navItem.d.ts +1 -0
  23. package/dist/nav/navItem/navItem.js +4 -1
  24. package/dist/utils/localization/translations/cs.json +2 -1
  25. package/dist/utils/localization/translations/de.json +2 -1
  26. package/dist/utils/localization/translations/en.json +2 -1
  27. package/dist/utils/localization/translations/es.json +2 -1
  28. package/dist/utils/localization/translations/fr-FR.json +2 -1
  29. package/dist/utils/localization/translations/fr.json +2 -1
  30. package/dist/utils/localization/translations/id.json +2 -1
  31. package/dist/utils/localization/translations/it.json +2 -1
  32. package/dist/utils/localization/translations/ja.json +2 -1
  33. package/dist/utils/localization/translations/ms.json +2 -1
  34. package/dist/utils/localization/translations/nl.json +2 -1
  35. package/dist/utils/localization/translations/pl.json +2 -1
  36. package/dist/utils/localization/translations/pt-BR.json +2 -1
  37. package/dist/utils/localization/translations/sv.json +2 -1
  38. package/dist/utils/localization/translations/th.json +2 -1
  39. package/dist/utils/localization/translations/tr.json +2 -1
  40. package/dist/utils/localization/translations/zh-Hans.json +2 -1
  41. package/esm/checkbox/checkbox.d.ts +3 -1
  42. package/esm/checkbox/checkbox.js +5 -8
  43. package/esm/checkboxListWithAction/checkboxListWithAction.d.ts +3 -1
  44. package/esm/checkboxListWithAction/checkboxListWithAction.js +186 -4
  45. package/esm/dropdown/dropdownPopup.d.ts +1 -1
  46. package/esm/dropdown/dropdownTrigger.d.ts +1 -1
  47. package/esm/dropdownRaw/dropdownList.d.ts +2 -1
  48. package/esm/dropdownRaw/dropdownList.js +16 -5
  49. package/esm/dropdownRaw/dropdownPopup.d.ts +3 -1
  50. package/esm/dropdownRaw/dropdownPopup.js +37 -7
  51. package/esm/dropdownRaw/dropdownRaw.js +82 -7
  52. package/esm/dropdownRaw/dropdownSearchableTrigger.d.ts +2 -1
  53. package/esm/dropdownRaw/dropdownSearchableTrigger.js +7 -2
  54. package/esm/dropdownRaw/dropdownTrigger.d.ts +2 -1
  55. package/esm/dropdownRaw/dropdownTrigger.js +3 -5
  56. package/esm/footerButtons/footerButtons.d.ts +6 -4
  57. package/esm/footerButtons/footerButtons.js +3 -8
  58. package/esm/groupsFilterRaw/groupsFilterInitialState.js +16 -0
  59. package/esm/groupsFilterRaw/groupsFilterTrigger.js +4 -0
  60. package/esm/nav/navItem/navItem.d.ts +1 -0
  61. package/esm/nav/navItem/navItem.js +5 -2
  62. package/esm/utils/localization/translations/cs.json +2 -1
  63. package/esm/utils/localization/translations/de.json +2 -1
  64. package/esm/utils/localization/translations/en.json +2 -1
  65. package/esm/utils/localization/translations/es.json +2 -1
  66. package/esm/utils/localization/translations/fr-FR.json +2 -1
  67. package/esm/utils/localization/translations/fr.json +2 -1
  68. package/esm/utils/localization/translations/id.json +2 -1
  69. package/esm/utils/localization/translations/it.json +2 -1
  70. package/esm/utils/localization/translations/ja.json +2 -1
  71. package/esm/utils/localization/translations/ms.json +2 -1
  72. package/esm/utils/localization/translations/nl.json +2 -1
  73. package/esm/utils/localization/translations/pl.json +2 -1
  74. package/esm/utils/localization/translations/pt-BR.json +2 -1
  75. package/esm/utils/localization/translations/sv.json +2 -1
  76. package/esm/utils/localization/translations/th.json +2 -1
  77. package/esm/utils/localization/translations/tr.json +2 -1
  78. package/esm/utils/localization/translations/zh-Hans.json +2 -1
  79. package/package.json +1 -4
@@ -141,9 +141,10 @@ export const DropdownSearchableTrigger = _a => {
141
141
  ref,
142
142
  name,
143
143
  onBlur,
144
- popupId
144
+ popupId,
145
+ handleFocusOnPopup
145
146
  } = _a,
146
- otherProps = __rest(_a, ["value", "className", "onChange", "placeholder", "isOpenPopup", "inputRef", "handleClick", "width", "title", "id", "disabled", "count", "currentSelection", "isError", "fullWidth", "ref", "name", "onBlur", "popupId"])
147
+ otherProps = __rest(_a, ["value", "className", "onChange", "placeholder", "isOpenPopup", "inputRef", "handleClick", "width", "title", "id", "disabled", "count", "currentSelection", "isError", "fullWidth", "ref", "name", "onBlur", "popupId", "handleFocusOnPopup"])
147
148
  // eslint-disable-next-line complexity
148
149
  ;
149
150
  const {
@@ -176,6 +177,10 @@ export const DropdownSearchableTrigger = _a => {
176
177
  if (e.key === " " && !isOpenPopup) {
177
178
  handleClick(true);
178
179
  }
180
+ if (e.key === "ArrowDown" && isOpenPopup) {
181
+ e.preventDefault();
182
+ handleFocusOnPopup === null || handleFocusOnPopup === void 0 ? void 0 : handleFocusOnPopup();
183
+ }
179
184
  };
180
185
  const clickHandler = e => {
181
186
  if (e.target === inputRef.current && isOpenPopup || e.target === clearRef.current && isOpenPopup) {
@@ -23,6 +23,7 @@ export interface IDropdownTrigger extends IZenComponentProps {
23
23
  name?: string;
24
24
  onBlur?: () => void;
25
25
  popupId?: string;
26
+ handleFocusOnPopup?: () => void;
26
27
  }
27
- export declare const DropdownTrigger: ({ name, onBlur, isActive, id, triggerRef, searchField, placeholder, disabled, fullWidth, currentSelection, handleClick, inputValue, className, onSearchChange, width, title, triggerAriaLabel, count, inputRef, buttonType, isError, popupId, ...otherProps }: IDropdownTrigger) => import("react/jsx-runtime").JSX.Element;
28
+ export declare const DropdownTrigger: ({ name, onBlur, isActive, id, triggerRef, searchField, placeholder, disabled, fullWidth, currentSelection, handleClick, inputValue, className, onSearchChange, width, title, triggerAriaLabel, count, inputRef, buttonType, isError, popupId, handleFocusOnPopup, ...otherProps }: IDropdownTrigger) => import("react/jsx-runtime").JSX.Element;
28
29
  export declare const TRANSLATIONS: string[];
@@ -15,13 +15,11 @@ import { FilterButton } from "../filterButton/filterButton";
15
15
  import { useRef } from "react";
16
16
  import { classNames } from "../commonHelpers/classNames/classNames";
17
17
  export const DropdownTrigger = (_a) => {
18
- var { name, onBlur, isActive, id, triggerRef, searchField, placeholder, disabled, fullWidth, currentSelection, handleClick, inputValue, className, onSearchChange = () => { }, width, title, triggerAriaLabel, count, inputRef, buttonType, isError, popupId } = _a, otherProps = __rest(_a, ["name", "onBlur", "isActive", "id", "triggerRef", "searchField", "placeholder", "disabled", "fullWidth", "currentSelection", "handleClick", "inputValue", "className", "onSearchChange", "width", "title", "triggerAriaLabel", "count", "inputRef", "buttonType", "isError", "popupId"]);
18
+ var { name, onBlur, isActive, id, triggerRef, searchField, placeholder, disabled, fullWidth, currentSelection, handleClick, inputValue, className, onSearchChange = () => { }, width, title, triggerAriaLabel, count, inputRef, buttonType, isError, popupId, handleFocusOnPopup } = _a, otherProps = __rest(_a, ["name", "onBlur", "isActive", "id", "triggerRef", "searchField", "placeholder", "disabled", "fullWidth", "currentSelection", "handleClick", "inputValue", "className", "onSearchChange", "width", "title", "triggerAriaLabel", "count", "inputRef", "buttonType", "isError", "popupId", "handleFocusOnPopup"]);
19
19
  const elInpRef = useRef(null);
20
20
  const handleButtonClick = () => {
21
21
  handleClick(!isActive);
22
22
  };
23
- return _jsx(_Fragment, { children: searchField ? _jsx(DropdownSearchableTrigger, Object.assign({ value: inputValue || "", name: name, onChange: onSearchChange, isOpenPopup: isActive, inputRef: inputRef || elInpRef, handleClick: handleClick, ref: triggerRef, width: width, placeholder: placeholder, disabled: disabled, id: id, title: title, count: count, currentSelection: currentSelection, className: className, isError: isError, fullWidth: fullWidth, popupId: popupId }, otherProps)) : _jsx(FilterButton, Object.assign({ ref: triggerRef, id: id, name: name, onBlur: onBlur, className: classNames(["zen-dropdown__trigger-button", isError ? "zen-dropdown__trigger-button--error" : "", className || ""]), onClick: handleButtonClick, disabled: disabled, isActive: isActive, fullWidth: width ? true : fullWidth, maxWidth: width, minWidth: width, quantity: count || undefined, type: buttonType, title: title, ariaLabel: triggerAriaLabel || placeholder, "aria-expanded": isActive, "aria-haspopup": "dialog", "data-role": "dialog", "aria-controls": popupId }, otherProps, { children: currentSelection ? _jsx("span", { className: classNames(["zen-dropdown__trigger-button-text", buttonType ? `zen-dropdown__trigger-button-text--${buttonType.toString()}` : ""]), children: currentSelection }) : placeholder })) });
23
+ return (_jsx(_Fragment, { children: searchField ? (_jsx(DropdownSearchableTrigger, Object.assign({ value: inputValue || "", name: name, onChange: onSearchChange, isOpenPopup: isActive, inputRef: inputRef || elInpRef, handleClick: handleClick, handleFocusOnPopup: handleFocusOnPopup, ref: triggerRef, width: width, placeholder: placeholder, disabled: disabled, id: id, title: title, count: count, currentSelection: currentSelection, className: className, isError: isError, fullWidth: fullWidth, popupId: popupId }, otherProps))) : (_jsx(FilterButton, Object.assign({ ref: triggerRef, id: id, name: name, onBlur: onBlur, className: classNames(["zen-dropdown__trigger-button", isError ? "zen-dropdown__trigger-button--error" : "", className || ""]), onClick: handleButtonClick, disabled: disabled, isActive: isActive, fullWidth: width ? true : fullWidth, maxWidth: width, minWidth: width, quantity: count || undefined, type: buttonType, title: title, ariaLabel: triggerAriaLabel || placeholder, "aria-expanded": isActive, "aria-haspopup": "dialog", "data-role": "dialog", "aria-controls": popupId }, otherProps, { children: currentSelection ? (_jsx("span", { className: classNames(["zen-dropdown__trigger-button-text", buttonType ? `zen-dropdown__trigger-button-text--${buttonType.toString()}` : ""]), children: currentSelection })) : (placeholder) }))) }));
24
24
  };
25
- export const TRANSLATIONS = [
26
- ...SearchableTriggerTranslations
27
- ];
25
+ export const TRANSLATIONS = [...SearchableTriggerTranslations];
@@ -1,3 +1,4 @@
1
+ import React from "react";
1
2
  import { IZenComponentProps } from "./../commonHelpers/zenComponent";
2
3
  import { ReactElement } from "react";
3
4
  import { IButton } from "../button/button";
@@ -5,10 +6,11 @@ import "./footerButtons.less";
5
6
  export interface IFooterButtons extends IZenComponentProps {
6
7
  children: ReactElement<IButton> | (ReactElement<IButton> | null | undefined)[];
7
8
  /**
8
- * @deprecated
9
- * @param stacked - will be removed in the next major release
10
- */
9
+ * @deprecated
10
+ * @param stacked - will be removed in the next major release
11
+ */
11
12
  stacked?: boolean;
12
13
  isSticky?: boolean;
14
+ ref?: React.Ref<HTMLDivElement>;
13
15
  }
14
- export declare const FooterButtons: ({ className, children, isSticky }: IFooterButtons) => import("react/jsx-runtime").JSX.Element;
16
+ export declare const FooterButtons: ({ className, children, isSticky, ref }: IFooterButtons) => import("react/jsx-runtime").JSX.Element;
@@ -9,7 +9,7 @@ const getChildren = (children) => {
9
9
  }
10
10
  return (React.Children.count(children) === 1 ? [children] : React.Children.toArray(children).filter((child) => React.isValidElement(child)));
11
11
  };
12
- export const FooterButtons = ({ className, children, isSticky = false }) => {
12
+ export const FooterButtons = ({ className, children, isSticky = false, ref }) => {
13
13
  const footerButtonsId = useUniqueId();
14
14
  const driveComponentClassName = useDriveClassName("zen-footer-buttons");
15
15
  const maxLength = 3;
@@ -28,11 +28,6 @@ export const FooterButtons = ({ className, children, isSticky = false }) => {
28
28
  });
29
29
  return clonedElements;
30
30
  }, [children, footerButtonsId]);
31
- const containerClassNames = classNames([
32
- "zen-footer-buttons",
33
- isSticky && driveComponentClassName ? "zen-footer-buttons--sticky" : "",
34
- driveComponentClassName || "",
35
- className || ""
36
- ]);
37
- return _jsx("div", { className: containerClassNames, children: childrenArray });
31
+ const containerClassNames = classNames(["zen-footer-buttons", isSticky && driveComponentClassName ? "zen-footer-buttons--sticky" : "", driveComponentClassName || "", className || ""]);
32
+ return (_jsx("div", { className: containerClassNames, ref: ref, children: childrenArray }));
38
33
  };
@@ -190,14 +190,30 @@ injectString("tr", "Select Filters:", "Se\xE7ili Filtreler:");
190
190
  injectString("zh-Hans", "Select Filters:", "\u9009\u4E2D\u7684\u7B5B\u9009\u5668\uFF1A");
191
191
  injectString("zh-TW", "Select Filters:", "\u9078\u64C7\u7BE9\u9078\u689D\u4EF6\uFF1A");
192
192
  injectString("ro-RO", "Select Filters:", "Selecta\u021Bi filtrele:");
193
+ injectString("cs", "Results", "V\xFDsledky");
193
194
  injectString("da-DK", "Results", "Resultater");
195
+ injectString("de", "Results", "Ergebnisse");
194
196
  injectString("en", "Results", "Results");
197
+ injectString("es", "Results", "Resultados");
195
198
  injectString("fi-FI", "Results", "Tulokset");
199
+ injectString("fr", "Results", "R\xE9sultats");
200
+ injectString("fr-FR", "Results", "R\xE9sultats");
196
201
  injectString("hu-HU", "Results", "Eredm\xE9nyek");
202
+ injectString("id", "Results", "Hasil");
203
+ injectString("it", "Results", "Risultati");
204
+ injectString("ja", "Results", "\u7D50\u679C");
197
205
  injectString("ko-KR", "Results", "\uACB0\uACFC");
206
+ injectString("ms", "Results", "Keputusan");
198
207
  injectString("nb-NO", "Results", "Resultater");
208
+ injectString("nl", "Results", "Resultaten");
209
+ injectString("pl", "Results", "Wyniki");
210
+ injectString("pt-BR", "Results", "Resultados");
199
211
  injectString("pt-PT", "Results", "Resultados");
200
212
  injectString("sk-SK", "Results", "V\xFDsledky");
213
+ injectString("sv", "Results", "Resultat");
214
+ injectString("th", "Results", "\u0E1C\u0E25\u0E25\u0E31\u0E1E\u0E18\u0E4C");
215
+ injectString("tr", "Results", "Sonu\xE7lar");
216
+ injectString("zh-Hans", "Results", "\u7ED3\u679C");
201
217
  injectString("zh-TW", "Results", "\u7D50\u679C");
202
218
  injectString("ro-RO", "Results", "Rezultate");
203
219
  export const GroupsFilterInitialState = ({
@@ -104,6 +104,10 @@ export const GroupsFilterTrigger = _a => {
104
104
  e.nativeEvent.stopImmediatePropagation();
105
105
  handleClick();
106
106
  }
107
+ if (e.key === "Tab" && isOpenPopup) {
108
+ e.preventDefault();
109
+ handleFocusOnPopup === null || handleFocusOnPopup === void 0 ? void 0 : handleFocusOnPopup();
110
+ }
107
111
  };
108
112
  const clickHandler = e => {
109
113
  if (e.target === inputRef.current && isOpenPopup) {
@@ -27,6 +27,7 @@ export interface ILinkNavItem extends INavItemCommon {
27
27
  export interface IButtonNavItem extends INavItemCommon {
28
28
  onClick?: () => void;
29
29
  menuAlignment?: TAlignment;
30
+ onDropdownStateChange?: (isOpen: boolean) => void;
30
31
  }
31
32
  interface INavItemContext {
32
33
  parentLevel?: number;
@@ -11,7 +11,7 @@ var __rest = (this && this.__rest) || function (s, e) {
11
11
  };
12
12
  import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
13
13
  import { classNames } from "../../commonHelpers/classNames/classNames";
14
- import { useRef, useState, Children, cloneElement, createContext, useContext } from "react";
14
+ import { useRef, useState, useEffect, Children, cloneElement, createContext, useContext } from "react";
15
15
  import { IconBeta } from "../../icons/iconBeta";
16
16
  import { IconChevronRight } from "../../icons/iconChevronRight";
17
17
  import { IconOpen2 } from "../../icons/iconOpen2";
@@ -70,9 +70,12 @@ const LinkNavItem = (_a) => {
70
70
  };
71
71
  LinkNavItem.displayName = "LinkNavItem";
72
72
  const ButtonNavItem = (_a) => {
73
- var { className, title, onClick, collapsed, active, children, tabIndex, menuAlignment = "right-top", isMenuItem = true, tooltipAlignment = defaultTooltipAlignment, actionIcon, actionIconTitle, onActionIconClick } = _a, rest = __rest(_a, ["className", "title", "onClick", "collapsed", "active", "children", "tabIndex", "menuAlignment", "isMenuItem", "tooltipAlignment", "actionIcon", "actionIconTitle", "onActionIconClick"]);
73
+ var { className, title, onClick, collapsed, active, children, tabIndex, menuAlignment = "right-top", isMenuItem = true, tooltipAlignment = defaultTooltipAlignment, actionIcon, actionIconTitle, onActionIconClick, onDropdownStateChange } = _a, rest = __rest(_a, ["className", "title", "onClick", "collapsed", "active", "children", "tabIndex", "menuAlignment", "isMenuItem", "tooltipAlignment", "actionIcon", "actionIconTitle", "onActionIconClick", "onDropdownStateChange"]);
74
74
  const [menuOpen, setMenuOpen] = useState(false);
75
75
  const { parentLevel = 0, closeParentMenu } = useContext(NavItemContext);
76
+ useEffect(() => {
77
+ onDropdownStateChange === null || onDropdownStateChange === void 0 ? void 0 : onDropdownStateChange(menuOpen);
78
+ }, [menuOpen, onDropdownStateChange]);
76
79
  const triggerRef = useRef(null);
77
80
  const currentLevel = parentLevel + 1;
78
81
  const validChildren = Children.toArray(children).filter(child => {
@@ -252,5 +252,6 @@
252
252
  "Year to date": "Od začátku roku",
253
253
  "Time": "Čas",
254
254
  "Apply filter": "Použít filtr",
255
- "Remove filter": "Odebrat filtr"
255
+ "Remove filter": "Odebrat filtr",
256
+ "Results": "Výsledky"
256
257
  }
@@ -252,5 +252,6 @@
252
252
  "Year to date": "Seit Jahresbeginn",
253
253
  "Time": "Zeit",
254
254
  "Apply filter": "Filter anwenden",
255
- "Remove filter": "Filter entfernen"
255
+ "Remove filter": "Filter entfernen",
256
+ "Results": "Ergebnisse"
256
257
  }
@@ -316,5 +316,6 @@
316
316
  "This filter is currently applied.": "This filter is currently applied.",
317
317
  "Remove filter": "Remove filter",
318
318
  "Exit full screen table view": "Exit full screen table view",
319
- "Close search": "Close search"
319
+ "Close search": "Close search",
320
+ "Has additional actions. Use right arrow to access button, left arrow to return.": "Has additional actions. Use right arrow to access button, left arrow to return."
320
321
  }
@@ -252,5 +252,6 @@
252
252
  "Year to date": "Año a la fecha",
253
253
  "Time": "Hora",
254
254
  "Apply filter": "Aplicar filtro",
255
- "Remove filter": "Eliminar filtro"
255
+ "Remove filter": "Eliminar filtro",
256
+ "Results": "Resultados"
256
257
  }
@@ -252,5 +252,6 @@
252
252
  "Year to date": "L’année passée",
253
253
  "Time": "Heure",
254
254
  "Apply filter": "Appliquer filtre",
255
- "Remove filter": "Supprimer filtre"
255
+ "Remove filter": "Supprimer filtre",
256
+ "Results": "Résultats"
256
257
  }
@@ -252,5 +252,6 @@
252
252
  "Year to date": "Cumul jusqu’à ce jour",
253
253
  "Time": "Heure",
254
254
  "Apply filter": "Appliquer les filtres",
255
- "Remove filter": "Supprimer le filtre"
255
+ "Remove filter": "Supprimer le filtre",
256
+ "Results": "Résultats"
256
257
  }
@@ -252,5 +252,6 @@
252
252
  "Year to date": "Tahun hingga saat ini",
253
253
  "Time": "Waktu",
254
254
  "Apply filter": "Terapkan filter",
255
- "Remove filter": "Hapus filter"
255
+ "Remove filter": "Hapus filter",
256
+ "Results": "Hasil"
256
257
  }
@@ -252,5 +252,6 @@
252
252
  "Year to date": "Dall'inizio dell'anno",
253
253
  "Time": "Tempo",
254
254
  "Apply filter": "Applicare filtro",
255
- "Remove filter": "Rimuovere filtro"
255
+ "Remove filter": "Rimuovere filtro",
256
+ "Results": "Risultati"
256
257
  }
@@ -252,5 +252,6 @@
252
252
  "Year to date": "累計",
253
253
  "Time": "時間",
254
254
  "Apply filter": "フィルターを適用",
255
- "Remove filter": "フィルターを削除"
255
+ "Remove filter": "フィルターを削除",
256
+ "Results": "結果"
256
257
  }
@@ -252,5 +252,6 @@
252
252
  "Year to date": "Tahun ini hingga tarikh ini",
253
253
  "Time": "Masa",
254
254
  "Apply filter": "Gunakan penyaring",
255
- "Remove filter": "Keluarkan penyaring"
255
+ "Remove filter": "Keluarkan penyaring",
256
+ "Results": "Keputusan"
256
257
  }
@@ -252,5 +252,6 @@
252
252
  "Year to date": "Jaar tot heden",
253
253
  "Time": "Tijd",
254
254
  "Apply filter": "Filter toepassen",
255
- "Remove filter": "Filter verwijderen"
255
+ "Remove filter": "Filter verwijderen",
256
+ "Results": "Resultaten"
256
257
  }
@@ -252,5 +252,6 @@
252
252
  "Year to date": "Od początku roku",
253
253
  "Time": "Czas",
254
254
  "Apply filter": "Zastosuj filtr",
255
- "Remove filter": "Usuń filtr"
255
+ "Remove filter": "Usuń filtr",
256
+ "Results": "Wyniki"
256
257
  }
@@ -252,5 +252,6 @@
252
252
  "Year to date": "Acumulado no ano",
253
253
  "Time": "Hora",
254
254
  "Apply filter": "Aplicar filtros",
255
- "Remove filter": "Remover filtro"
255
+ "Remove filter": "Remover filtro",
256
+ "Results": "Resultados"
256
257
  }
@@ -252,5 +252,6 @@
252
252
  "Year to date": "År till dagens datum",
253
253
  "Time": "Tid",
254
254
  "Apply filter": "Tillämpa filter",
255
- "Remove filter": "Ta bort filter"
255
+ "Remove filter": "Ta bort filter",
256
+ "Results": "Resultat"
256
257
  }
@@ -252,5 +252,6 @@
252
252
  "Year to date": "ต้นปีถึงปัจจุบัน",
253
253
  "Time": "เวลา",
254
254
  "Apply filter": "ใช้ตัวกรอง",
255
- "Remove filter": "ลบตัวกรอง"
255
+ "Remove filter": "ลบตัวกรอง",
256
+ "Results": "ผลลัพธ์"
256
257
  }
@@ -252,5 +252,6 @@
252
252
  "Year to date": "Yılbaşından bugüne kadar",
253
253
  "Time": "Zaman",
254
254
  "Apply filter": "Filtreyi uygula",
255
- "Remove filter": "Filtreyi kaldır"
255
+ "Remove filter": "Filtreyi kaldır",
256
+ "Results": "Sonuçlar"
256
257
  }
@@ -252,5 +252,6 @@
252
252
  "Year to date": "年初至今",
253
253
  "Time": "时间",
254
254
  "Apply filter": "应用筛选器",
255
- "Remove filter": "删除筛选器"
255
+ "Remove filter": "删除筛选器",
256
+ "Results": "结果"
256
257
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@geotab/zenith",
3
- "version": "3.7.0-beta.0",
3
+ "version": "3.7.0",
4
4
  "description": "Zenith components library on React",
5
5
  "main": "dist/index.js",
6
6
  "types": "esm/index.d.ts",
@@ -98,9 +98,6 @@
98
98
  "react": "^19.2.0",
99
99
  "react-dom": "^19.2.0"
100
100
  },
101
- "overrides": {
102
- "serialize-javascript": "^7.0.3"
103
- },
104
101
  "files": [
105
102
  "./dist/",
106
103
  "./esm"