@janiscommerce/ui-web 1.5.0 → 1.6.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/CHANGELOG.md +91 -0
- package/dist/index.esm.js +1041 -610
- package/dist/index.esm.js.map +1 -1
- package/dist/index.umd.js +1046 -614
- package/dist/index.umd.js.map +1 -1
- package/package.json +13 -6
- package/dist/package.json +0 -28
package/CHANGELOG.md
CHANGED
|
@@ -7,12 +7,103 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [1.6.0] - 2025-11-28
|
|
11
|
+
|
|
10
12
|
### Added
|
|
11
13
|
|
|
14
|
+
- npm-publish-beta workflow for pre-release tags (_-beta_, _-alpha_, _-rc_)
|
|
15
|
+
|
|
16
|
+
### Changed
|
|
17
|
+
|
|
18
|
+
- Webpack 5 compatibility: added explicit `require` mapping in package.json exports field
|
|
19
|
+
- Peer dependencies: updated React/React-DOM to support `^16.8.0 || ^17.0.0 || ^18.0.0`
|
|
20
|
+
- package.json: added `module` field for better tree-shaking support
|
|
21
|
+
- package.json exports: now provides both `import` (ESM) and `require` (CommonJS) mappings
|
|
22
|
+
- rollup config: dist/package.json now includes `module` and `exports` fields for consistency
|
|
23
|
+
- GitHub Actions workflows: updated Node.js versions from 12.x/14.x (EOL) to 18.x/20.x (LTS)
|
|
24
|
+
- GitHub Actions: updated all action versions from v1/v2 to v4
|
|
25
|
+
- GitHub Actions: added yarn cache to improve CI/CD performance
|
|
26
|
+
- react-collapsed: now bundled within ui-web to prevent version conflicts with consuming projects
|
|
27
|
+
- rollup config: excludes bundled dependencies from dist/package.json
|
|
28
|
+
|
|
29
|
+
### Fixed
|
|
30
|
+
|
|
31
|
+
- react-collapsed dependency: moved from peerDependencies to dependencies and bundled to avoid version conflicts
|
|
32
|
+
- Package structure: removed duplicate package.json generation in dist folder to avoid conflicts when publishing
|
|
33
|
+
- Error optional chain with plugins
|
|
34
|
+
- Add mjs extension in plugins
|
|
35
|
+
|
|
12
36
|
## [1.5.0] - 2025-11-27
|
|
13
37
|
|
|
14
38
|
- Added `chevron_down` and `chevron_up` icons as available options for Collapse component toggle icons
|
|
15
39
|
|
|
40
|
+
## [1.5.0-beta.8] - 2025-11-26
|
|
41
|
+
|
|
42
|
+
### Changed
|
|
43
|
+
|
|
44
|
+
- Node version reverted from 20 to 14 to maintain compatibility with projects not yet migrated
|
|
45
|
+
|
|
46
|
+
## [1.5.0-beta.7] - 2025-11-26
|
|
47
|
+
|
|
48
|
+
### Fixed
|
|
49
|
+
|
|
50
|
+
- Package structure: removed duplicate package.json generation in dist folder to avoid conflicts when publishing
|
|
51
|
+
|
|
52
|
+
## [1.5.0-beta.6] - 2025-11-26
|
|
53
|
+
|
|
54
|
+
### Fixed
|
|
55
|
+
|
|
56
|
+
- react-collapsed dependency: restored as regular dependency to ensure consuming projects have access to the library
|
|
57
|
+
|
|
58
|
+
## [1.5.0-beta.5] - 2025-11-20
|
|
59
|
+
|
|
60
|
+
### Changed
|
|
61
|
+
|
|
62
|
+
- Node version from 14 to 20
|
|
63
|
+
|
|
64
|
+
## [1.5.0-beta.4] - 2025-11-20
|
|
65
|
+
|
|
66
|
+
### Fixed
|
|
67
|
+
|
|
68
|
+
- Add mjs extension in plugins
|
|
69
|
+
|
|
70
|
+
## [1.5.0-beta.3] - 2025-11-20
|
|
71
|
+
|
|
72
|
+
### Fixed
|
|
73
|
+
|
|
74
|
+
- Error optional chain with plugins
|
|
75
|
+
|
|
76
|
+
## [1.5.0-beta.2] - 2025-11-14
|
|
77
|
+
|
|
78
|
+
### Fixed
|
|
79
|
+
|
|
80
|
+
- react-collapsed dependency conflict: moved from peerDependencies to dependencies and bundled to avoid version conflicts with consuming projects
|
|
81
|
+
|
|
82
|
+
### Changed
|
|
83
|
+
|
|
84
|
+
- react-collapsed: now bundled within ui-web to prevent conflicts with projects using different versions (v3.x vs v4.x)
|
|
85
|
+
- rollup config: excludes bundled dependencies (react-collapsed) from dist/package.json
|
|
86
|
+
|
|
87
|
+
## [1.5.0-beta.1] - 2025-11-14
|
|
88
|
+
|
|
89
|
+
### Fixed
|
|
90
|
+
|
|
91
|
+
- Webpack 5 compatibility: added explicit `require` mapping in package.json exports field
|
|
92
|
+
- Peer dependencies version conflicts: updated React/React-DOM to support `^16.8.0 || ^17.0.0 || ^18.0.0` (previously `>= 17.x` syntax was invalid)
|
|
93
|
+
|
|
94
|
+
### Changed
|
|
95
|
+
|
|
96
|
+
- package.json: added `module` field for better tree-shaking support
|
|
97
|
+
- package.json exports: now provides both `import` (ESM) and `require` (CommonJS) mappings
|
|
98
|
+
- rollup config: dist/package.json now includes `module` and `exports` fields for consistency
|
|
99
|
+
- GitHub Actions workflows: updated Node.js versions from 12.x/14.x (EOL) to 18.x/20.x (LTS)
|
|
100
|
+
- GitHub Actions: updated all action versions from v1/v2 to v4
|
|
101
|
+
- GitHub Actions: added yarn cache to improve CI/CD performance
|
|
102
|
+
|
|
103
|
+
### Added
|
|
104
|
+
|
|
105
|
+
- npm-publish-beta workflow for pre-release tags (_-beta_, _-alpha_, _-rc_)
|
|
106
|
+
|
|
16
107
|
## [1.4.0] - 2025-11-12
|
|
17
108
|
|
|
18
109
|
### Added
|