@adia-ai/web-modules 0.8.20 → 0.8.22
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
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog — @adia-ai/web-modules
|
|
2
2
|
|
|
3
|
+
## [0.8.22] — 2026-07-29
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
- **`form-popover-ui`'s summary tracks programmatic `checked` mutations** (independent-review finding, 2026-07-29). The module listened only to bubbling change/input, but `el.checked = true` reflects the attribute without any event — so the trigger text went stale, contradicting the module's own "DOM is the source of truth" rule. A MutationObserver on the body element (subtree, `[checked]` filter + childList) now covers the non-event paths, including check-ui rows added or removed after stamping; scoped to the body so the module's own trigger writes can't feed back. Disconnect symmetric. Tests 11 → 13.
|
|
7
|
+
|
|
8
|
+
### Maintenance
|
|
9
|
+
- **`dist/` bundles rebuilt** in this cut's window (1 file(s)) — regenerated from the source changes described above, not independent edits.
|
|
10
|
+
|
|
11
|
+
## [0.8.21] — 2026-07-28
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
- **`form-popover-ui`'s trigger summary adopts `select-ui[summary-label]`'s ruled format** (gh#474, reported from the adiav2 admin filter bar). Two components solved the same multi-select-trigger problem two ways: this module read `"{label} · N selected"` / `"{label} · N total"`, while `select-ui[summary-label]` (gh#442) implements the operator-ruled contract — one selection shows its own label, more show `"Label (N)"`, none shows the placeholder. A consumer following the ruling therefore could not swap its hand-rolled composition for this module without regressing the trigger. The module now speaks the same language: none checked → the bare `{label}` (which doubles as the placeholder, since `[label]` is required here), exactly one → that `check-ui`'s own label, more → `{label} (N)`. Breaking for the summary TEXT only — `summary-change`'s `detail: { selected, total }` is unchanged, and the module is still `experimental` with no known consumers on the old format. Tests 9 → 11.
|
|
15
|
+
|
|
16
|
+
### Maintenance
|
|
17
|
+
- **`dist/` bundles rebuilt** in this cut's window (1 file(s)) — regenerated from the source changes described above, not independent edits.
|
|
18
|
+
|
|
3
19
|
## [0.8.20] — 2026-07-28
|
|
4
20
|
|
|
5
21
|
### Fixed
|