@adia-ai/web-modules 0.6.8 → 0.6.9
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 +5 -0
- package/README.md +11 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Changelog — @adia-ai/web-modules
|
|
2
2
|
|
|
3
|
+
## [0.6.9] — 2026-05-21
|
|
4
|
+
|
|
5
|
+
### Documentation
|
|
6
|
+
- **`README.md` — new "Cross-package convenience subpaths" subsection.** Documents the `generative` cross-package subpath (`@adia-ai/web-modules/generative`) that re-exports generative-UI primitives from `@adia-ai/a2ui-runtime`. Surfaces a doc-path that previously required reading the package.json `exports` map to discover. Closes claims-ui FEEDBACK-08 (`generative` subpath was undocumented; per-cluster Clusters table at `README.md:71-79` already covered the 5 internal clusters but did not list cross-package convenience subpaths).
|
|
7
|
+
|
|
3
8
|
## [0.6.8] — 2026-05-20
|
|
4
9
|
|
|
5
10
|
### Fixed
|
package/README.md
CHANGED
|
@@ -78,6 +78,17 @@ elements with state-as-attribute semantics) per [ADR-0023](../../.brain/adrs/002
|
|
|
78
78
|
| `runtime` | `<gen-root>`, `<a2ui-root>` | — | Render roots that turn JSON or gen-UI intents into live DOM. |
|
|
79
79
|
| `theme` | — (controls-only) | `<theme-panel>` (JS-bearing); 1 child total | Appearance-preferences control surface — `[data-theme]` named themes, `--a-density` / `--a-radius-k` parametric overrides, `color-scheme` light/dark, opt-in `[persist]`. Drops into any consumer's `<popover-ui slot="content">` topbar. Spec: [`docs/specs/theme-panel-module.md`](../../docs/specs/theme-panel-module.md). |
|
|
80
80
|
|
|
81
|
+
### Cross-package convenience subpaths
|
|
82
|
+
|
|
83
|
+
`generative` is not a web-modules cluster — it's a convenience barrel
|
|
84
|
+
that pulls in two `@adia-ai/web-components` primitives needed by every
|
|
85
|
+
generative-UI surface. Subpath listed here so consumers don't have to
|
|
86
|
+
hunt for it:
|
|
87
|
+
|
|
88
|
+
| Subpath | Registers | Notes |
|
|
89
|
+
|---|---|---|
|
|
90
|
+
| `@adia-ai/web-modules/generative` | `<canvas-ui>`, `<a2ui-root>` | Cross-package — these live in `@adia-ai/web-components` but compose so frequently for generative UI that we ship the registration barrel here. Per ADR-0027, primitives that compose cross-package are not in the default catalog barrel; `generative` is the explicit opt-in. |
|
|
91
|
+
|
|
81
92
|
Future clusters on the strategic horizon: `data` (kanban, filters,
|
|
82
93
|
table-toolbar), `agent` (agent-trace, reasoning panels).
|
|
83
94
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adia-ai/web-modules",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.9",
|
|
4
4
|
"description": "AdiaUI composite custom elements \u2014 shell, chat, editor, runtime clusters built from @adia-ai/web-components primitives. Subpath exports per cluster.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|