@vchasno/ui-kit 0.4.80 → 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.
- package/CHANGELOG.md +9 -0
- package/package.json +7 -16
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,15 @@ 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
|
+
|
|
10
19
|
## [0.4.80] - 2026-01-09
|
|
11
20
|
|
|
12
21
|
### Fixed
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vchasno/ui-kit",
|
|
3
|
-
"version": "0.4.
|
|
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": "
|
|
51
|
-
"@storybook/addon-
|
|
52
|
-
"@storybook/addon-
|
|
53
|
-
"@storybook/
|
|
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": "
|
|
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
|
-
"
|
|
78
|
+
"vite": "7.3.0"
|
|
88
79
|
},
|
|
89
80
|
"peerDependencies": {
|
|
90
81
|
"react": "^16.8.0 || ^17 || ^18 || ^19",
|