@adia-ai/web-modules 0.8.19 → 0.8.21
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 +17 -0
- package/dist/everything.min.js +15 -15
- package/form/form-popover/form-popover.a2ui.json +1 -1
- package/form/form-popover/form-popover.js +22 -9
- package/form/form-popover/form-popover.yaml +13 -11
- package/package.json +16 -1
- package/chat/chat-composer/chat-composer.test.js +0 -112
- package/chat/chat-sidebar/chat-sidebar.test.js +0 -110
- package/chat/chat-thread/chat-thread.test.js +0 -82
- package/editor/editor-canvas/editor-canvas.test.js +0 -100
- package/editor/editor-sidebar/editor-sidebar.test.js +0 -383
- package/editor/editor-toolbar/editor-toolbar.test.js +0 -99
- package/form/form-popover/form-popover.test.js +0 -95
- package/shell/admin-command/admin-command.test.js +0 -115
- package/shell/admin-shell/admin-shell.test.js +0 -185
- package/shell/admin-sidebar/admin-sidebar.test.js +0 -173
- package/shell/embed-shell/embed-shell.test.js +0 -127
- package/simple/simple-shell/simple-shell.test.js +0 -83
- package/theme/theme-panel/theme-panel.test.js +0 -431
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# Changelog — @adia-ai/web-modules
|
|
2
2
|
|
|
3
|
+
## [0.8.21] — 2026-07-28
|
|
4
|
+
|
|
5
|
+
### Changed
|
|
6
|
+
- **`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.
|
|
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.20] — 2026-07-28
|
|
12
|
+
|
|
13
|
+
### Fixed
|
|
14
|
+
- **The npm tarball no longer ships `*.test.js`** (gh#462) — the `files` roster excluded examples/html but never unit tests, so 13 test file(s) rode the 0.8.19 tarball. `!**/*.test.js` appended as the roster's LAST entry (npm's files globbing is order-sensitive — a leading exclude is overridden by later directory includes). Proof: `npm pack --dry-run` → 0 test files, runtime files intact.
|
|
15
|
+
- **The `form/` cluster is importable by subpath** (gh#457) — 0.8.19 shipped the files (gh#448) but the `exports` map was never extended, so `@adia-ai/web-modules/form/...` threw `ERR_PACKAGE_PATH_NOT_EXPORTED` and only the whole-package barrel reached `<form-popover-ui>`. Added the `./form`, `./form/*`, and `./form/*.css` stanzas mirroring every sibling cluster. Known residue, not fixed here: the module ships no `.d.ts`, so the `types` conditions point ahead of reality until types land.
|
|
16
|
+
|
|
17
|
+
### Maintenance
|
|
18
|
+
- **`dist/` bundles rebuilt** in this cut's window (1 file(s)) — regenerated from the source changes described above, not independent edits.
|
|
19
|
+
|
|
3
20
|
## [0.8.19] — 2026-07-27
|
|
4
21
|
|
|
5
22
|
### Fixed
|