@vchasno/ui-kit 0.4.79 → 0.4.81

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 (2) hide show
  1. package/CHANGELOG.md +15 -0
  2. package/package.json +8 -20
package/CHANGELOG.md CHANGED
@@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.4.81] - 2026-01-09
11
+
12
+ ### Changed
13
+
14
+ - Upgrade Storybook from 8.5.0 to 10.1.11
15
+ - Migrate Storybook from Webpack to Vite for faster development builds
16
+ - Simplify Storybook addon configuration (removed essentials, onboarding, interactions in favor of explicit addons)
17
+ - Replace Babel presets with Vite (removed @babel/preset-env, @babel/preset-react, @babel/preset-typescript)
18
+
19
+ ## [0.4.80] - 2026-01-09
20
+
21
+ ### Fixed
22
+
23
+ - Loosen `engines` constraint to only require Node >=20 (removed upper bound and package manager restrictions that were affecting consumers)
24
+
10
25
  ## [0.4.79] - 2026-01-09
11
26
 
12
27
  ### Changed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vchasno/ui-kit",
3
- "version": "0.4.79",
3
+ "version": "0.4.81",
4
4
  "description": "React UI components for Vchasno applications",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",
@@ -41,22 +41,13 @@
41
41
  "@vchasno:registry": "https://registry.npmjs.org/"
42
42
  },
43
43
  "devDependencies": {
44
- "@babel/preset-env": "7.25.7",
45
- "@babel/preset-react": "7.25.7",
46
- "@babel/preset-typescript": "7.25.7",
47
44
  "@rollup/plugin-commonjs": "25.0.8",
48
45
  "@rollup/plugin-image": "3.0.3",
49
46
  "@rollup/plugin-node-resolve": "15.2.3",
50
- "@storybook/addon-a11y": "8.5.0",
51
- "@storybook/addon-essentials": "8.5.0",
52
- "@storybook/addon-interactions": "8.5.0",
53
- "@storybook/addon-links": "8.5.0",
54
- "@storybook/addon-onboarding": "8.5.0",
55
- "@storybook/addon-webpack5-compiler-babel": "3.0.5",
56
- "@storybook/blocks": "8.5.0",
57
- "@storybook/react": "8.5.0",
58
- "@storybook/react-webpack5": "8.5.0",
59
- "@storybook/test": "8.5.0",
47
+ "@storybook/addon-a11y": "10.1.11",
48
+ "@storybook/addon-docs": "10.1.11",
49
+ "@storybook/addon-links": "10.1.11",
50
+ "@storybook/react-vite": "10.1.11",
60
51
  "@swc/core": "1.10.7",
61
52
  "@trivago/prettier-plugin-sort-imports": "4.3.0",
62
53
  "@types/react": "17.0.80",
@@ -77,14 +68,14 @@
77
68
  "rollup-plugin-node-externals": "7.1.3",
78
69
  "rollup-plugin-postcss": "4.0.2",
79
70
  "rollup-plugin-swc3": "0.12.1",
80
- "storybook": "8.5.0",
71
+ "storybook": "10.1.11",
81
72
  "stylelint": "16.9.0",
82
73
  "stylelint-config-idiomatic-order": "10.0.0",
83
74
  "stylelint-config-standard": "36.0.1",
84
75
  "ts-node": "10.9.2",
85
76
  "tslib": "2.7.0",
86
77
  "typescript": "5.7.3",
87
- "webpack": "5.97.1"
78
+ "vite": "7.3.0"
88
79
  },
89
80
  "peerDependencies": {
90
81
  "react": "^16.8.0 || ^17 || ^18 || ^19",
@@ -108,9 +99,6 @@
108
99
  "react-toastify": "9.1.3"
109
100
  },
110
101
  "engines": {
111
- "node": ">=20.0.0 <21.0.0",
112
- "npm": ">=10.0.0 <11.0.0",
113
- "yarn": "please-use-npm",
114
- "pnpm": "please-use-npm"
102
+ "node": ">=20.0.0"
115
103
  }
116
104
  }