@zambon-dev/library 1.6.4 → 2.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 CHANGED
@@ -23,6 +23,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
23
23
 
24
24
  ### ⚠ Breaking Changes / Migration
25
25
 
26
+ ## [2.0.0] - 2026-09-21
27
+
28
+ ### Changed
29
+
30
+ - **Accessibility.** Every interactive element that previously responded only to a mouse is now
31
+ reachable and operable by keyboard. `RibbonButtonComponent` (button, dropdown toggle and each
32
+ option), `GroupAccordionComponent`, `GroupScrollSpyComponent`, `SidebarItemComponent` and the
33
+ `MultiSelectComponent` result grid gained focus, `Enter`/`Space` activation and the matching ARIA
34
+ roles and state. `CatalogSelectComponent` status rows are now `role="presentation"`; its retry
35
+ action is a real button.
36
+ - `MultiEditorComponent` and the multi-select result grid render their actions as `<button>`
37
+ rather than `<a>`. They are styled identically but now honour `disabled` natively.
38
+
26
39
  ## [1.6.4] - 2026-09-21
27
40
 
28
41
  ### Fixed
@@ -39,6 +52,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
39
52
  `@zambon-dev/library` on its own left the dependency unresolved.
40
53
  - Added a README to the published package.
41
54
 
55
+ ### ⚠ Breaking Changes / Migration
56
+
57
+ **`FormInputComponent` outputs renamed.** Four outputs were named after native DOM events. Because
58
+ `<lib-form-input>` is a real element, `(change)` and `(input)` fired a consumer's handler twice --
59
+ once from the native event bubbling out of the inner control, once from the component -- and
60
+ `(blur)`/`(focus)` shadowed the native events. All four are typed `any`, so TypeScript could not
61
+ catch the mismatch.
62
+
63
+ Rename the bindings in your templates:
64
+
65
+ | Before | After |
66
+ | --- | --- |
67
+ | `(blur)` | `(blurred)` |
68
+ | `(change)` | `(changed)` |
69
+ | `(focus)` | `(focused)` |
70
+ | `(input)` | `(inputChanged)` |
71
+
72
+ `(fixedValueChanged)` is unchanged, but its payload type is now `string` instead of `any` --
73
+ matching what it always emitted.
74
+
75
+ If you were relying on the double-fire, expect one call per event now instead of two.
42
76
  ## [1.6.2] - 2026-09-20
43
77
 
44
78
  ### Fixed
@@ -331,7 +365,8 @@ config options and the `getUserProfile()` method still exist but are no longer c
331
365
  available via [GitHub Releases](https://github.com/RicardoZambon/ZLibraries/releases) and the
332
366
  `library-v*` tags.
333
367
 
334
- [Unreleased]: https://github.com/RicardoZambon/ZLibraries/compare/library-v1.6.4...HEAD
368
+ [Unreleased]: https://github.com/RicardoZambon/ZLibraries/compare/library-v2.0.0...HEAD
369
+ [2.0.0]: https://github.com/RicardoZambon/ZLibraries/releases/tag/library-v2.0.0
335
370
  [1.6.4]: https://github.com/RicardoZambon/ZLibraries/releases/tag/library-v1.6.4
336
371
  [1.6.3]: https://github.com/RicardoZambon/ZLibraries/releases/tag/library-v1.6.3
337
372
  [1.6.2]: https://github.com/RicardoZambon/ZLibraries/releases/tag/library-v1.6.2
package/README.md CHANGED
@@ -74,7 +74,9 @@ Helpers, models, configuration providers, services and validators are exported f
74
74
 
75
75
  ## Documentation
76
76
 
77
- Component behaviour and variants are documented as Storybook stories alongside the source. To browse them:
77
+ Browse the published Storybook at [https://ricardozambon.github.io/ZLibraries/library/](https://ricardozambon.github.io/ZLibraries/library/).
78
+
79
+ Component behaviour and variants are documented as stories alongside the source. To run it locally:
78
80
 
79
81
  ```bash
80
82
  npm run storybook:library