@zanichelli/albe-web-components 20.0.0-RC1 → 20.0.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 +26 -0
- package/package.json +2 -3
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,32 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
## [20.0.0](https://github.com/ZanichelliEditore/design-system/compare/v19.6.1...v20.0.0) (2026-07-09)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### ⚠ BREAKING CHANGES
|
|
9
|
+
|
|
10
|
+
* delete z-panel-elem component
|
|
11
|
+
* rename a11y props to avoid confusing screen readers with duplicate native HTML attributes
|
|
12
|
+
* make z-select items required
|
|
13
|
+
|
|
14
|
+
* delete z-panel-elem component ([4de2714](https://github.com/ZanichelliEditore/design-system/commit/4de271461203ed3fc3b8b0253b06bd0bbb177748))
|
|
15
|
+
* rename a11y props to avoid confusing screen readers with duplicate native HTML attributes ([4600d65](https://github.com/ZanichelliEditore/design-system/commit/4600d65854b4c84cd9da7d06d2635a99be483712))
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Features
|
|
19
|
+
|
|
20
|
+
* make z-select items required ([870c746](https://github.com/ZanichelliEditore/design-system/commit/870c7464c189721d0642f52895c3778aeaedb413))
|
|
21
|
+
* new props and css variable to customize the info box ([cbb842f](https://github.com/ZanichelliEditore/design-system/commit/cbb842f1ab401e0d615ef4c992214a3941c5163e))
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
### Bug Fixes
|
|
25
|
+
|
|
26
|
+
* info box top and bottom padding ([a7dd910](https://github.com/ZanichelliEditore/design-system/commit/a7dd9105af43e60d062ef01110d483554d37fc24))
|
|
27
|
+
* legacy icons pointing to wrong icons; z-icon css props doc ([264602b](https://github.com/ZanichelliEditore/design-system/commit/264602b3281100a79a09af37b5943a7227630c00))
|
|
28
|
+
* remove ZMyzCardList ([d12c86b](https://github.com/ZanichelliEditore/design-system/commit/d12c86b9f3aa93beb5888746338ff18d9e346d5b))
|
|
29
|
+
* remove ZToggleButton ZMyzCardAlert ZMyzCardFooter ZMyzCardIcon ([1f0c976](https://github.com/ZanichelliEditore/design-system/commit/1f0c976647fd77b7ad63fb5d39a02a2b439755d3))
|
|
30
|
+
|
|
5
31
|
## [19.6.1](https://github.com/ZanichelliEditore/design-system/compare/v19.6.0...v19.6.1) (2026-07-02)
|
|
6
32
|
|
|
7
33
|
## [19.6.0](https://github.com/ZanichelliEditore/design-system/compare/v19.5.0...v19.6.0) (2026-07-01)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zanichelli/albe-web-components",
|
|
3
|
-
"version": "20.0.0
|
|
3
|
+
"version": "20.0.0",
|
|
4
4
|
"description": "The Web Components implementation of Albe, the Zanichelli's design system.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "dist/index.cjs.js",
|
|
@@ -107,6 +107,5 @@
|
|
|
107
107
|
"collection:main": "dist/collection/index.js",
|
|
108
108
|
"es2015": "dist/esm/index.mjs",
|
|
109
109
|
"es2017": "dist/esm/index.mjs",
|
|
110
|
-
"packageManager": "yarn@4.10.3"
|
|
111
|
-
"stableVersion": "19.6.1"
|
|
110
|
+
"packageManager": "yarn@4.10.3"
|
|
112
111
|
}
|