@janiscommerce/ui-web 1.5.0-beta.8 → 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 CHANGED
@@ -7,6 +7,36 @@ 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
+
12
+ ### Added
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
+
36
+ ## [1.5.0] - 2025-11-27
37
+
38
+ - Added `chevron_down` and `chevron_up` icons as available options for Collapse component toggle icons
39
+
10
40
  ## [1.5.0-beta.8] - 2025-11-26
11
41
 
12
42
  ### Changed
package/dist/index.esm.js CHANGED
@@ -36260,7 +36260,7 @@ var styled = {
36260
36260
  ContentWrapper: ContentWrapper
36261
36261
  };
36262
36262
 
36263
- var AVAILABLE_ICONS = ['minus_big_light', 'plus_big_light', 'arrow_down_flat', 'arrow_up_flat'];
36263
+ var AVAILABLE_ICONS = ['minus_big_light', 'plus_big_light', 'arrow_down_flat', 'arrow_up_flat', 'chevron_down', 'chevron_up'];
36264
36264
  var DEFAULT_TOGGLE_ICON = {
36265
36265
  iconNames: {
36266
36266
  opened: 'minus_big_light',