@adia-ai/web-modules 0.6.45 → 0.6.46

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,13 @@
1
1
  # Changelog — @adia-ai/web-modules
2
2
 
3
+ ## [0.6.46] — 2026-05-29
4
+
5
+ ### Maintenance
6
+
7
+ - **Lockstep version bump.** Substantive v0.6.46: `@adia-ai/web-components` (56 trait pages + slot docs + bleed/token fixes; see its CHANGELOG), `@adia-ai/a2ui-corpus` (chunk re-harvest absorbing the above).
8
+ - **`packages/web-modules/README.md`** — CDN example URLs updated from frozen `@0.6.30` to `@0.6` minor-range (auto-tracks latest 0.6.x). Shell CSS links for all four shells (`admin-shell`, `chat-shell`, `editor-shell`, `simple-shell`) added to the per-shell table.
9
+ - **`dist/everything.min.js` + `dist/icons-manifest.js`** — bundle rebuild.
10
+
3
11
  ## [0.6.45] — 2026-05-29
4
12
 
5
13
  ### Maintenance
package/README.md CHANGED
@@ -19,11 +19,11 @@ Since **v0.6.30**, both this package and `@adia-ai/web-components` ship pre-flat
19
19
 
20
20
  ```html
21
21
  <!-- CSS: all primitives + the shell tier you use -->
22
- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@adia-ai/web-components@0.6.30/dist/web-components.min.css">
23
- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@adia-ai/web-modules@0.6.30/dist/shell/admin-shell.min.css">
22
+ <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@adia-ai/web-components@0.6/dist/web-components.min.css">
23
+ <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@adia-ai/web-modules@0.6/dist/shell/admin-shell.min.css">
24
24
 
25
25
  <!-- JS: everything in one bundle (primitives + all 4 shells + a2ui-runtime; ~190 KB gzipped) -->
26
- <script type="module" src="https://cdn.jsdelivr.net/npm/@adia-ai/web-modules@0.6.30/dist/everything.min.js"></script>
26
+ <script type="module" src="https://cdn.jsdelivr.net/npm/@adia-ai/web-modules@0.6/dist/everything.min.js"></script>
27
27
 
28
28
  <admin-shell mode="rounded borderless">
29
29
  <admin-sidebar slot="leading" resizable collapsible>
@@ -81,8 +81,8 @@ Since **v0.6.30**, both this package and `@adia-ai/web-components` ship pre-flat
81
81
  **Per-shell setup (advanced — only one shell tier loaded):**
82
82
 
83
83
  ```html
84
- <script type="module" src="https://cdn.jsdelivr.net/npm/@adia-ai/web-components@0.6.30/dist/web-components.min.js"></script>
85
- <script type="module" src="https://cdn.jsdelivr.net/npm/@adia-ai/web-modules@0.6.30/dist/shell/admin-shell.min.js"></script>
84
+ <script type="module" src="https://cdn.jsdelivr.net/npm/@adia-ai/web-components@0.6/dist/web-components.min.js"></script>
85
+ <script type="module" src="https://cdn.jsdelivr.net/npm/@adia-ai/web-modules@0.6/dist/shell/admin-shell.min.js"></script>
86
86
  ```
87
87
 
88
88
  | Bundle | Path | Gzipped | Contents | When to use |
@@ -93,6 +93,17 @@ Since **v0.6.30**, both this package and `@adia-ai/web-components` ship pre-flat
93
93
  | Editor shell | `/dist/editor/editor-shell.min.js` | ~6 KB | Shell registration; needs primitives first | Editor surface |
94
94
  | Simple shell | `/dist/simple/simple-shell.min.js` | ~5.6 KB | Shell registration; needs primitives first | Settings / forms |
95
95
 
96
+ **Each shell needs its matching CSS** (the kitchen-sink example above loads only `admin-shell.min.css`). Mirror the JS path — swap the shell tier:
97
+
98
+ ```html
99
+ <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@adia-ai/web-modules@0.6/dist/shell/admin-shell.min.css">
100
+ <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@adia-ai/web-modules@0.6/dist/chat/chat-shell.min.css">
101
+ <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@adia-ai/web-modules@0.6/dist/editor/editor-shell.min.css">
102
+ <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@adia-ai/web-modules@0.6/dist/simple/simple-shell.min.css">
103
+ ```
104
+
105
+ The `@0.6` range tracks the latest `0.6.x` patch (won't jump to a breaking `0.7`); pin an exact version (e.g. `@0.6.45`) for reproducible builds.
106
+
96
107
  **Pick ONE bundle path.** Mixing `everything.min.js` with a separate `web-components.min.js` causes `customElements.define` to throw "name already defined". For CodePen the kitchen-sink path is correct.
97
108
 
98
109
  **npm-installed consumers stay on the existing cluster exports** (`./shell`, `./chat`, etc.). The new `*/bundled` (CSS) and `*/js-bundled` + `./everything` (JS) exports are additive — only consumers without a bundler need them.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adia-ai/web-modules",
3
- "version": "0.6.45",
3
+ "version": "0.6.46",
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": {