@adia-ai/web-modules 0.8.7 → 0.8.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 +11 -0
- package/README.md +9 -9
- package/dist/everything.min.js +22 -22
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# Changelog — @adia-ai/web-modules
|
|
2
2
|
|
|
3
|
+
## [0.8.9] — 2026-07-19
|
|
4
|
+
|
|
5
|
+
### Maintenance
|
|
6
|
+
- **Lockstep version bump only.** No source changes in this package; bumped to maintain the 11-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.8.9 work shipped in select-ui mark visual (gh#339); release-tooling hardened (branch creation, settle-wait poll, pr-bridge draft guard). See `packages/web-components/CHANGELOG.md#unreleased` for details.
|
|
7
|
+
- **`dist/` bundles rebuilt** in this cut's window (1 file(s)) — regenerated from the source changes described above, not independent edits.
|
|
8
|
+
|
|
9
|
+
## [0.8.8] — 2026-07-19
|
|
10
|
+
|
|
11
|
+
### Maintenance
|
|
12
|
+
- **README CDN pins un-drifted**: `@0.7` → `@0.8` (9 pins across the install/CDN examples) — they had shipped a full minor stale for the entire 0.8 line (caught by the newly-wired repo cut-hygiene gate). No source change; the type-scale change this cycle lives in `@adia-ai/web-components` (`styles/type/roles.css`) and flows through the tokens web-modules composites consume.
|
|
13
|
+
|
|
3
14
|
## [0.8.7] — 2026-07-19
|
|
4
15
|
|
|
5
16
|
### Changed
|
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.
|
|
23
|
-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@adia-ai/web-modules@0.
|
|
22
|
+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@adia-ai/web-components@0.8/dist/web-components.min.css">
|
|
23
|
+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@adia-ai/web-modules@0.8/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.
|
|
26
|
+
<script type="module" src="https://cdn.jsdelivr.net/npm/@adia-ai/web-modules@0.8/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.
|
|
85
|
-
<script type="module" src="https://cdn.jsdelivr.net/npm/@adia-ai/web-modules@0.
|
|
84
|
+
<script type="module" src="https://cdn.jsdelivr.net/npm/@adia-ai/web-components@0.8/dist/web-components.min.js"></script>
|
|
85
|
+
<script type="module" src="https://cdn.jsdelivr.net/npm/@adia-ai/web-modules@0.8/dist/shell/admin-shell.min.js"></script>
|
|
86
86
|
```
|
|
87
87
|
|
|
88
88
|
| Bundle | Path | Gzipped | Contents | When to use |
|
|
@@ -96,10 +96,10 @@ Since **v0.6.30**, both this package and `@adia-ai/web-components` ship pre-flat
|
|
|
96
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
97
|
|
|
98
98
|
```html
|
|
99
|
-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@adia-ai/web-modules@0.
|
|
100
|
-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@adia-ai/web-modules@0.
|
|
101
|
-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@adia-ai/web-modules@0.
|
|
102
|
-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@adia-ai/web-modules@0.
|
|
99
|
+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@adia-ai/web-modules@0.8/dist/shell/admin-shell.min.css">
|
|
100
|
+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@adia-ai/web-modules@0.8/dist/chat/chat-shell.min.css">
|
|
101
|
+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@adia-ai/web-modules@0.8/dist/editor/editor-shell.min.css">
|
|
102
|
+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@adia-ai/web-modules@0.8/dist/simple/simple-shell.min.css">
|
|
103
103
|
```
|
|
104
104
|
|
|
105
105
|
The `@0.7` range tracks the latest `0.6.x` patch (won't jump to a breaking `0.8`); pin an exact version (e.g. `@0.7.13`) for reproducible builds.
|