@vchasno/ui-kit 0.4.79 → 0.4.80
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 +6 -0
- package/package.json +2 -5
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.4.80] - 2026-01-09
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- Loosen `engines` constraint to only require Node >=20 (removed upper bound and package manager restrictions that were affecting consumers)
|
|
15
|
+
|
|
10
16
|
## [0.4.79] - 2026-01-09
|
|
11
17
|
|
|
12
18
|
### Changed
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vchasno/ui-kit",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.80",
|
|
4
4
|
"description": "React UI components for Vchasno applications",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -108,9 +108,6 @@
|
|
|
108
108
|
"react-toastify": "9.1.3"
|
|
109
109
|
},
|
|
110
110
|
"engines": {
|
|
111
|
-
"node": ">=20.0.0
|
|
112
|
-
"npm": ">=10.0.0 <11.0.0",
|
|
113
|
-
"yarn": "please-use-npm",
|
|
114
|
-
"pnpm": "please-use-npm"
|
|
111
|
+
"node": ">=20.0.0"
|
|
115
112
|
}
|
|
116
113
|
}
|