@adia-ai/web-modules 0.4.2 → 0.4.4
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 +18 -0
- package/README.md +22 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -11,6 +11,24 @@ Built from `@adia-ai/web-components` primitives.
|
|
|
11
11
|
|
|
12
12
|
_No pending changes._
|
|
13
13
|
|
|
14
|
+
## [0.4.4] - 2026-05-12
|
|
15
|
+
|
|
16
|
+
### Ride-along (no source changes)
|
|
17
|
+
|
|
18
|
+
Lockstep PATCH cut alongside `@adia-ai/web-components@0.4.4` (14 yaml gap closures from corpus simplification arc), `@adia-ai/a2ui-runtime@0.4.4` (registry expansion +27 web-modules + renderer kebab-case fix), `@adia-ai/a2ui-compose@0.4.4` (composition-library rename + transpiler `<a>` → Link), `@adia-ai/a2ui-corpus@0.4.4` (corpus simplification arc §36–§51), `@adia-ai/a2ui-mcp@0.4.4` (`get_fragment` tool retirement). Source byte-identical to v0.4.3.
|
|
19
|
+
|
|
20
|
+
Internal `@adia-ai/*` dep ranges stay at `^0.4.0` (patch-cut asymmetry — `^0.4.0` covers `0.4.x` under semver). See root [CHANGELOG.md `## [0.4.4]`](../../../CHANGELOG.md) for the cut narrative.
|
|
21
|
+
|
|
22
|
+
## [0.4.3] - 2026-05-11
|
|
23
|
+
|
|
24
|
+
### Documentation
|
|
25
|
+
|
|
26
|
+
- `README.md` — currency sweep mentioning the `theme` cluster + `@adia-ai/web-modules/theme` subpath export shipped in v0.4.2 (peer-agent cleanup; source unchanged).
|
|
27
|
+
|
|
28
|
+
### Lockstep
|
|
29
|
+
|
|
30
|
+
9-package coordinated PATCH cut to v0.4.3. Internal `@adia-ai/*` dep ranges stay at `^0.4.0` (patch-cut asymmetry). No source change to any web-module element — `README.md` doc-only. See root [CHANGELOG.md `## [0.4.3]`](../../CHANGELOG.md).
|
|
31
|
+
|
|
14
32
|
## [0.4.2] - 2026-05-11
|
|
15
33
|
|
|
16
34
|
### Added
|
package/README.md
CHANGED
|
@@ -5,6 +5,24 @@ Composite custom elements built from
|
|
|
5
5
|
into clusters by use case; each cluster ships as a subpath export so
|
|
6
6
|
consumers install only what they need.
|
|
7
7
|
|
|
8
|
+
## Install
|
|
9
|
+
|
|
10
|
+
```bash
|
|
11
|
+
npm install @adia-ai/web-modules @adia-ai/web-components
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
`@adia-ai/web-components` is a peer dependency (modules compose primitives at runtime). Consumers can import the full barrel or a specific cluster subpath:
|
|
15
|
+
|
|
16
|
+
```js
|
|
17
|
+
import '@adia-ai/web-modules'; // every cluster
|
|
18
|
+
import '@adia-ai/web-modules/shell'; // admin-shell + admin-sidebar + admin-command
|
|
19
|
+
import '@adia-ai/web-modules/chat'; // chat-shell + chat-thread + chat-composer + …
|
|
20
|
+
import '@adia-ai/web-modules/editor'; // editor-shell + editor-canvas + editor-sidebar + …
|
|
21
|
+
import '@adia-ai/web-modules/simple'; // simple-shell + simple-content + simple-hero
|
|
22
|
+
import '@adia-ai/web-modules/theme'; // theme-panel
|
|
23
|
+
import '@adia-ai/web-modules/runtime'; // gen-root + a2ui-root
|
|
24
|
+
```
|
|
25
|
+
|
|
8
26
|
Each cluster carries a **shell host** (behavior-only orchestrator) plus
|
|
9
27
|
a **family of bespoke shell-tier children** (cluster-namespaced custom
|
|
10
28
|
elements with state-as-attribute semantics) per [ADR-0023](../../.brain/adrs/0023-bespoke-shell-tier-children.md). The bespoke vocabulary is the only recognized authoring shape since v0.4.0 ([ADR-0024](../../.brain/adrs/0024-legacy-shell-shapes-retired.md)).
|
|
@@ -23,6 +41,7 @@ elements with state-as-attribute semantics) per [ADR-0023](../../.brain/adrs/002
|
|
|
23
41
|
| `chat` | `<chat-shell>` | `<chat-thread>`, `<chat-composer>`, `<chat-sidebar>` (JS-bearing); `<chat-empty>`, `<chat-header>`, `<chat-status>` (CSS-only); 6 children total | Conversational surface — streaming messages, composer with `[disabled]` propagation, scroll-to-bottom thread, `[streaming]` reflected. |
|
|
24
42
|
| `editor` | `<editor-shell>` | `<editor-toolbar>`, `<editor-canvas>`, `<editor-sidebar>` (JS-bearing); `<editor-statusbar>`, `<editor-canvas-empty>` (CSS-only); 5 children total | Design-tool surface — toolbar with `[full-screen]`, central canvas with `[focused]`/`[empty]`, sidebar wraps `<pane-ui resizable>` for delegation. |
|
|
25
43
|
| `runtime` | `<gen-root>`, `<a2ui-root>` | — | Render roots that turn JSON or gen-UI intents into live DOM. |
|
|
44
|
+
| `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). |
|
|
26
45
|
|
|
27
46
|
Future clusters on the strategic horizon: `data` (kanban, filters,
|
|
28
47
|
table-toolbar), `agent` (agent-trace, reasoning panels).
|
|
@@ -44,6 +63,7 @@ See [`bespoke-shell-children` skill](../../.agents/skills/bespoke-shell-children
|
|
|
44
63
|
import '@adia-ai/web-modules/chat'; // chat-shell + bespoke children
|
|
45
64
|
import '@adia-ai/web-modules/editor'; // editor-shell + bespoke children
|
|
46
65
|
import '@adia-ai/web-modules/runtime'; // gen-root, a2ui-root
|
|
66
|
+
import '@adia-ai/web-modules/theme'; // theme-panel (appearance prefs)
|
|
47
67
|
</script>
|
|
48
68
|
|
|
49
69
|
<!-- Bespoke shape (canonical since v0.4.0): -->
|
|
@@ -118,6 +138,8 @@ web-modules/
|
|
|
118
138
|
├── runtime/
|
|
119
139
|
│ ├── gen-ui/ <gen-ui> render root
|
|
120
140
|
│ └── a2ui-root/ <a2ui-root> A2UI render root
|
|
141
|
+
├── theme/
|
|
142
|
+
│ └── theme-panel/ <theme-panel> appearance-preferences control surface
|
|
121
143
|
└── index.js barrel re-export of every cluster
|
|
122
144
|
```
|
|
123
145
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adia-ai/web-modules",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.4",
|
|
4
4
|
"description": "AdiaUI composite custom elements — shell, chat, editor, runtime clusters built from @adia-ai/web-components primitives. Subpath exports per cluster.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|