@geotab/zenith 1.26.6-beta.2 → 1.26.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -42,7 +42,6 @@ Zenith library provides components defined in Zenith Design System. It includes
42
42
 
43
43
  ### 1.26.6
44
44
 
45
- * Add esm support to Zenith npm package
46
45
  * Improve `Chart` accessibility
47
46
  * Fix accessibility issues in `FiltersBar`
48
47
  * Fix jumping focus in `FiltersBar`
@@ -17,7 +17,7 @@ exports.PillExpandableSimple = (0, react_1.forwardRef)(({ onExpand, expandAriaTe
17
17
  const ChevronIcon = expanded ? iconChevronTop_1.IconChevronTop : iconChevronBottom_1.IconChevronBottom;
18
18
  const defaultIconSize = iconDriveClassName ? "huge" : "large";
19
19
  const iconSize = isBeta ? "big" : defaultIconSize;
20
- const hasText = text.trim().length > 0;
20
+ const hasText = (text || "").trim().length > 0;
21
21
  return (0, jsx_runtime_1.jsxs)("button", { type: "button", className: (0, classNames_1.classNames)([
22
22
  "zen-status-pill__container", `zen-status-pill__container--${type}`, containerDriveClassName || "", "zen-ellipsis"
23
23
  ]), ref: ref, onClick: onExpandHandler, tabIndex: !includeExpandIcon ? -1 : undefined, children: [icon !== false && (0, jsx_runtime_1.jsx)("div", { className: (0, classNames_1.classNames)([
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@geotab/zenith",
3
- "version": "1.26.6-beta.2",
3
+ "version": "1.26.6",
4
4
  "description": "Zenith components library on React",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -41,6 +41,7 @@
41
41
  "@babel/preset-env": "^7.24.3",
42
42
  "@babel/preset-react": "^7.24.1",
43
43
  "@babel/preset-typescript": "^7.24.1",
44
+ "@storybook/addon-docs": "^9.1.15",
44
45
  "@storybook/addon-links": "^9.1.15",
45
46
  "@storybook/addon-webpack5-compiler-babel": "^3.0.6",
46
47
  "@storybook/react-webpack5": "^9.1.15",
@@ -67,8 +68,7 @@
67
68
  "style-loader": "^4.0.0",
68
69
  "typescript": "^5.4.3",
69
70
  "webpack": "^5.96.1",
70
- "xml2js": "^0.6.0",
71
- "@storybook/addon-docs": "^9.1.15"
71
+ "xml2js": "^0.6.0"
72
72
  },
73
73
  "dependencies": {
74
74
  "chart.js": "^4.4.6",
@@ -94,5 +94,8 @@
94
94
  "last 1 firefox version",
95
95
  "last 1 safari version"
96
96
  ]
97
+ },
98
+ "publishConfig": {
99
+ "access": "public"
97
100
  }
98
101
  }