@adia-ai/web-modules 0.8.18 → 0.8.20
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 +21 -21
- package/form/form-popover/form-popover.a2ui.json +75 -0
- package/form/form-popover/form-popover.css +48 -0
- package/form/form-popover/form-popover.js +140 -0
- package/form/form-popover/form-popover.yaml +123 -0
- package/form/index.js +1 -0
- package/package.json +20 -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/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.20] — 2026-07-28
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
- **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.
|
|
7
|
+
- **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.
|
|
8
|
+
|
|
9
|
+
### Maintenance
|
|
10
|
+
- **`dist/` bundles rebuilt** in this cut's window (1 file(s)) — regenerated from the source changes described above, not independent edits.
|
|
11
|
+
|
|
12
|
+
## [0.8.19] — 2026-07-27
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
- **The `form/` cluster now actually publishes** (gh#448) — announced in 0.8.17, renamed and tested in 0.8.18, yet absent from both published tarballs: the package's `files` array was never extended with `"form/"`, so `<form-popover-ui>` stayed documented-but-uninstallable across two releases (found by the adiav2 adoption attempt). Added `"form/"` plus the standard examples/html excludes; `npm pack --dry-run` now lists the form-popover-ui files.
|
|
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.18] — 2026-07-27
|
|
4
21
|
|
|
5
22
|
### Added
|