@janiscommerce/ui-web 1.5.0 → 1.6.0-beta.1

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