@zambon-dev/framework 1.2.0 → 1.2.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 +23 -5
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -23,6 +23,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
23
23
|
|
|
24
24
|
### ⚠ Breaking Changes / Migration
|
|
25
25
|
|
|
26
|
+
## [1.2.1] - 2026-07-29
|
|
27
|
+
|
|
28
|
+
### Fixed
|
|
29
|
+
|
|
30
|
+
- Lint configuration only: the library's ESLint selector rules now accept the `framework-` prefix
|
|
31
|
+
that every `@framework` component already uses. They previously still expected the Angular
|
|
32
|
+
scaffold's `lib` prefix, so the entire component surface reported
|
|
33
|
+
`@angular-eslint/component-selector` errors. No selector was renamed, and no published API or
|
|
34
|
+
runtime behavior changed — nothing to do on upgrade.
|
|
35
|
+
|
|
36
|
+
### ⚠ Breaking Changes / Migration
|
|
37
|
+
|
|
38
|
+
None.
|
|
39
|
+
|
|
26
40
|
## [1.2.0] - 2026-07-24
|
|
27
41
|
|
|
28
42
|
### Added
|
|
@@ -33,22 +47,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
33
47
|
Existing `new AppConfig(baseUrl)` calls continue to work unchanged (`notificationsEnabled`
|
|
34
48
|
defaults to `false`, other new fields to empty strings).
|
|
35
49
|
|
|
50
|
+
### ⚠ Breaking Changes / Migration
|
|
51
|
+
|
|
52
|
+
None.
|
|
53
|
+
|
|
54
|
+
## [1.1.1] - 2026-06-20
|
|
55
|
+
|
|
36
56
|
### Fixed
|
|
37
57
|
|
|
38
58
|
- `framework-button-export` now forwards its `iconSize` input to the underlying ribbon button,
|
|
39
59
|
so setting `iconSize` correctly resizes the export button's icon. Previously the input was
|
|
40
60
|
ignored and the icon always rendered at the default size.
|
|
41
61
|
|
|
42
|
-
### ⚠ Breaking Changes / Migration
|
|
43
|
-
|
|
44
|
-
None.
|
|
45
|
-
|
|
46
62
|
## [1.1.0] - 2026-06-02
|
|
47
63
|
|
|
48
64
|
- Baseline release: the changelog starts being tracked from this version. Earlier history is
|
|
49
65
|
available via [GitHub Releases](https://github.com/RicardoZambon/ZLibraries/releases) and the
|
|
50
66
|
`framework-v*` tags.
|
|
51
67
|
|
|
52
|
-
[Unreleased]: https://github.com/RicardoZambon/ZLibraries/compare/framework-v1.2.
|
|
68
|
+
[Unreleased]: https://github.com/RicardoZambon/ZLibraries/compare/framework-v1.2.1...HEAD
|
|
69
|
+
[1.2.1]: https://github.com/RicardoZambon/ZLibraries/releases/tag/framework-v1.2.1
|
|
53
70
|
[1.2.0]: https://github.com/RicardoZambon/ZLibraries/releases/tag/framework-v1.2.0
|
|
71
|
+
[1.1.1]: https://github.com/RicardoZambon/ZLibraries/releases/tag/framework-v1.1.1
|
|
54
72
|
[1.1.0]: https://github.com/RicardoZambon/ZLibraries/releases/tag/framework-v1.1.0
|