@umami/react-zen 0.207.0 → 0.208.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -34147,8 +34147,8 @@ function NavbarItem({ label, children, className, ...props }) {
34147
34147
  }
34148
34148
 
34149
34149
  // src/components/NavMenu.tsx
34150
- var import_react198 = require("react");
34151
34150
  var import_classnames39 = __toESM(require_classnames());
34151
+ var import_react198 = require("react");
34152
34152
 
34153
34153
  // css-modules:E:\dev\umami-react-zen\src\components\NavMenu.module.css
34154
34154
  var NavMenu_default = { "navmenu": "NavMenu_navmenu__MzRmN", "item": "NavMenu_item__ZWRjZ", "selected": "NavMenu_selected__ZDU1N", "muted": "NavMenu_muted__MTgxN", "title": "NavMenu_title__ZjJhN", "clickable": "NavMenu_clickable__Mjg0O" };
@@ -34207,7 +34207,10 @@ function NavMenuGroup({
34207
34207
  onClick: handleClick,
34208
34208
  children: [
34209
34209
  /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(Text, { className: NavMenu_default.title, children: title }),
34210
- allowMinimize && /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(Icon2, { rotate: minimized ? 0 : 90, color: "muted", children: /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(ChevronDown, {}) })
34210
+ allowMinimize && /* @__PURE__ */ (0, import_jsx_runtime52.jsxs)(Icon2, { rotate: minimized ? -90 : 0, color: "muted", children: [
34211
+ "3+ 6.",
34212
+ /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(ChevronDown, {})
34213
+ ] })
34211
34214
  ]
34212
34215
  }
34213
34216
  ),
package/dist/index.mjs CHANGED
@@ -34086,7 +34086,10 @@ function NavMenuGroup({
34086
34086
  onClick: handleClick,
34087
34087
  children: [
34088
34088
  /* @__PURE__ */ jsx52(Text, { className: NavMenu_default.title, children: title }),
34089
- allowMinimize && /* @__PURE__ */ jsx52(Icon2, { rotate: minimized ? 0 : 90, color: "muted", children: /* @__PURE__ */ jsx52(ChevronDown, {}) })
34089
+ allowMinimize && /* @__PURE__ */ jsxs29(Icon2, { rotate: minimized ? -90 : 0, color: "muted", children: [
34090
+ "3+ 6.",
34091
+ /* @__PURE__ */ jsx52(ChevronDown, {})
34092
+ ] })
34090
34093
  ]
34091
34094
  }
34092
34095
  ),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@umami/react-zen",
3
- "version": "0.207.0",
3
+ "version": "0.208.0",
4
4
  "description": "Modern, minimalist React component library",
5
5
  "author": "Umami <hello@umami.is>",
6
6
  "license": "MIT",
@@ -32,16 +32,8 @@
32
32
  "bundle": "npm-run-all types esbuild css"
33
33
  },
34
34
  "lint-staged": {
35
- "**/*.{js,jsx,ts,tsx}": [
36
- "prettier --write",
37
- "eslint"
38
- ],
39
- "**/*.css": [
40
- "stylelint --fix",
41
- "prettier --write"
42
- ],
43
- "**/*.json": [
44
- "prettier --write"
35
+ "**/*.{js,jsx,ts,tsx,json,css}": [
36
+ "biome check --apply"
45
37
  ]
46
38
  },
47
39
  "dependencies": {
@@ -63,6 +55,7 @@
63
55
  "zustand": "^5.0.8"
64
56
  },
65
57
  "devDependencies": {
58
+ "@biomejs/biome": "^2.3.5",
66
59
  "@hyrious/esbuild-plugin-commonjs": "^0.2.6",
67
60
  "@rollup/plugin-alias": "^5.1.0",
68
61
  "@rollup/plugin-commonjs": "^25.0.7",
@@ -80,16 +73,9 @@
80
73
  "esbuild-css-modules-plugin": "^3.1.5",
81
74
  "esbuild-plugin-svgr": "^3.1.1",
82
75
  "esbuild-postcss": "^0.0.4",
83
- "eslint": "^8.16.0",
84
- "eslint-config-next": "15.2.2",
85
- "eslint-config-prettier": "^10.1.8",
86
- "eslint-import-resolver-alias": "^1.1.2",
87
- "eslint-plugin-import": "^2.32.0",
88
- "eslint-plugin-prettier": "^5.5.4",
89
76
  "husky": "^9.1.1",
90
77
  "lint-staged": "^15.5.2",
91
78
  "npm-run-all": "^4.1.5",
92
- "prettier": "^3.6.2",
93
79
  "rollup": "^4.52.4",
94
80
  "rollup-plugin-copy": "^3.5.0",
95
81
  "rollup-plugin-delete": "^2.0.0",
@@ -103,7 +89,6 @@
103
89
  },
104
90
  "pnpm": {
105
91
  "onlyBuiltDependencies": [
106
- "esbuild",
107
92
  "sharp"
108
93
  ]
109
94
  }