@adia-ai/a2ui 0.8.37

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.
Files changed (53) hide show
  1. package/CHANGELOG.md +1073 -0
  2. package/README.md +99 -0
  3. package/a2ui.schema.d.ts +192 -0
  4. package/controllers/accordion.js +73 -0
  5. package/controllers/base.js +68 -0
  6. package/controllers/data-stream.js +281 -0
  7. package/controllers/form.js +81 -0
  8. package/controllers/index.js +6 -0
  9. package/controllers/selection.js +82 -0
  10. package/controllers/state-machine.js +135 -0
  11. package/controllers/toggle.js +40 -0
  12. package/dockables/action.d.ts +55 -0
  13. package/dockables/action.js +152 -0
  14. package/dockables/base.d.ts +26 -0
  15. package/dockables/base.js +30 -0
  16. package/dockables/controller.d.ts +35 -0
  17. package/dockables/controller.js +97 -0
  18. package/dockables/data-source.d.ts +35 -0
  19. package/dockables/data-source.js +103 -0
  20. package/dockables/index.d.ts +21 -0
  21. package/dockables/index.js +6 -0
  22. package/dockables/lifecycle.d.ts +38 -0
  23. package/dockables/lifecycle.js +84 -0
  24. package/dockables/provider.d.ts +28 -0
  25. package/dockables/provider.js +59 -0
  26. package/index.d.ts +64 -0
  27. package/index.js +54 -0
  28. package/package.json +89 -0
  29. package/prop-apply.d.ts +13 -0
  30. package/prop-apply.js +113 -0
  31. package/registry.d.ts +17 -0
  32. package/registry.js +418 -0
  33. package/renderer.d.ts +67 -0
  34. package/renderer.js +715 -0
  35. package/stream.d.ts +62 -0
  36. package/stream.js +521 -0
  37. package/surface-manifest.d.ts +73 -0
  38. package/surface-manifest.js +294 -0
  39. package/surface.d.ts +72 -0
  40. package/surface.js +222 -0
  41. package/types.d.ts +26 -0
  42. package/validate/CHANGELOG.md +1005 -0
  43. package/validate/README.md +146 -0
  44. package/validate/index.d.ts +4 -0
  45. package/validate/index.js +12 -0
  46. package/validate/validator.d.ts +4 -0
  47. package/validate/validator.js +1232 -0
  48. package/wire-factory.d.ts +15 -0
  49. package/wire-factory.js +134 -0
  50. package/wiring-engine.d.ts +61 -0
  51. package/wiring-engine.js +209 -0
  52. package/wiring-registry.d.ts +80 -0
  53. package/wiring-registry.js +342 -0
@@ -0,0 +1,1005 @@
1
+ # Changelog — @adia-ai/a2ui/validate
2
+
3
+ > Formerly the `@adia-ai/a2ui-validator` package; renamed at ADR-0048 P3.
4
+ > Entries below 0.8.37 (the estate-split cut) were released under the old name
5
+ > and are kept verbatim,
6
+ > including entries for the catalog + semantic stages that moved to
7
+ > `@adia-ai/gen-ui/validate` in P1.
8
+
9
+ ## [0.8.36] — 2026-08-13
10
+
11
+ ### Added
12
+ - **`exports` gains `./semantic` and `./semantic/*` (gh#1186).** `semantic/` was already in `files`, so the code shipped but no consumer could name it — `@adia-ai/a2ui-mcp` and the eval scripts were reaching in by relative path instead. Additive; nothing existing moves.
13
+
14
+ ## [0.8.35] — 2026-08-13
15
+
16
+ ### Maintenance
17
+ - **Lockstep version bump only.** No source changes in this package; bumped to maintain the lockstep version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.8.35 work shipped in factory-DX program (scaffold boot+CSS fixes, class-B npm marketplace, consumer CI recipe, DX sweep) + audit-wave plugin hardening + ~20 component/pattern fixes. See `packages/plugins/adia-ui-factory/CHANGELOG.md#0835--2026-08-13` for details.
18
+
19
+ ## [0.8.34] — 2026-08-11
20
+
21
+ ### Maintenance
22
+ - **Lockstep version bump only.** No source changes in this package; bumped to maintain the lockstep version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.8.34 work shipped in date-range-picker unified selection, core boolean-reflect fix, nav state-color spec, component polish + docs repair wave. See `packages/web-components/CHANGELOG.md#0834--2026-08-11` for details.
23
+
24
+ ## [0.8.33] — 2026-08-11
25
+
26
+ ### Maintenance
27
+ - **Lockstep version bump only.** No source changes in this package; bumped to maintain the lockstep version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.8.33 work shipped in variant/color/tone convention completes on alert/mark/toast; combobox-ui gains real option/optgroup support; 22 registry entries close the last unmapped-tag class. See `packages/web-components/CHANGELOG.md#0833--2026-08-11` for details.
28
+
29
+ ## [0.8.32] — 2026-08-09
30
+
31
+ ### Fixed
32
+ - **Published tarballs validate out of the box (gh#748).** The catalog was only ever resolved as `../corpus/catalog-a2ui_0_9.json` relative to this module — a path that exists solely through this repo's workspace symlinks, so every npm consumer ran permanently degraded (fetch, JSON import attributes and the node fs read all missed). `@adia-ai/a2ui-corpus` is now a real dependency (`^0.8.0`, lockstep range) and the catalog loads via the bare specifier FIRST — that package's `.` export IS the catalog JSON. Node adds a `createRequire().resolve()` + `readFile` retry for runtimes that reject JSON import attributes. The gh#742 relative chain stays as the in-repo / browser fallback, so nothing regresses under Vite dev or the static deploy.
33
+ - `getCatalogStatus().source` gains `'package'` and `'package-fs'`.
34
+
35
+ ## [0.8.31] — 2026-08-07
36
+
37
+ ### Maintenance
38
+ - **Lockstep version bump only.** No source changes in this package; bumped to maintain the lockstep version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.8.31 work shipped in post-0.8.30 fix wave: double-submit boundaries, list-item render gate, segmented allow-empty + adapter kebab-case booleans, MCP multi-session + idle TTL, feedback signal:none, swatch auto-contrast, tabs strip-gap spacing + vertical clearance. See `packages/web-components/CHANGELOG.md#0831--2026-08-07` for details.
39
+
40
+ ## [0.8.30] — 2026-08-07
41
+
42
+ ### Maintenance
43
+ - **Lockstep version bump only.** No source changes in this package; bumped to maintain the lockstep version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.8.30 work shipped in agent-harness v1 wave: MCP-client mode, guardrails/tracing/memory hardening, auto engine, chat agent-event rendering, human feedback loop. See `packages/agent/CHANGELOG.md#0830--2026-08-07` for details.
44
+
45
+ ## [0.8.29] — 2026-08-06
46
+
47
+ ### Maintenance
48
+ - **Lockstep version bump only.** No source changes in this package; bumped to maintain the lockstep version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.8.29 work shipped in web-components (icon-ui tone prop gh#652) + web-modules (plan-envelope chrome gh#648) + a2ui-runtime (registry drift fix gh#645) + a2ui-compose (plan-turn executor gh#648) + a2ui-corpus (chunk re-harvest). See `0829--2026-08-06` for details.
49
+
50
+ ## [0.8.28] — 2026-08-05
51
+
52
+ ### Maintenance
53
+ - **Lockstep version bump only.** No source changes in this package; bumped to maintain the lockstep version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.8.28 work shipped in sideEffects tree-shaking fix + CSS barrel regen (gh#625/632). See `0828--2026-08-05` for details.
54
+
55
+ ## [0.8.27] — 2026-08-05
56
+
57
+ ### Maintenance
58
+ - **Lockstep version bump only.** No source changes in this package; bumped to maintain the lockstep version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.8.27 work shipped in menu subtitle + roster migration, agent model pins, proper deflake, release tooling (gh#614/616/617/618). See `packages/web-modules/CHANGELOG.md#0827--2026-08-05` for details.
59
+
60
+ ## [0.8.26] — 2026-08-05
61
+
62
+ ### Maintenance
63
+ - **Lockstep version bump only.** No source changes in this package; bumped to maintain the lockstep version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.8.26 work shipped in WCH chat-harness wave + genui conformance train; first publish of @adia-ai/agent + @adia-ai/persona. See `packages/web-modules/CHANGELOG.md#0826--2026-08-05` for details.
64
+
65
+ ## [0.8.25] — 2026-07-31
66
+
67
+ ### Maintenance
68
+ - **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.25 work shipped in theme-panel scoped-target [parametric] density/radius fix (gh#570) + System scheme option; anchor-bar-ui; stat-ui band chart layout; chart-ui dots/series-emphasis. See `packages/web-components/CHANGELOG.md#0825--2026-07-31` for details.
69
+
70
+ ## [0.8.24] — 2026-07-30
71
+
72
+ ### Maintenance
73
+ - **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.24 work shipped in requiredIcons drift cleared across 16 components + checker comment handling (gh#550), worktree bootstrap workspace-link hardening + retrieval corpus-pin fix (gh#554), list-item two-line icon centering (gh#558), card footer bottom-pinning (gh#559). See `packages/web-components/CHANGELOG.md#0824--2026-07-30` for details.
74
+
75
+ ## [0.8.23] — 2026-07-30
76
+
77
+ ### Maintenance
78
+ - **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.23 work shipped in operator-report day: 20+ fixes, BREAKING --a-font removal, deployed-site freeze fix, plugin rename to adia-ui-kit-*. See `packages/web-components/CHANGELOG.md#0823--2026-07-30` for details.
79
+
80
+ ## [0.8.22] — 2026-07-29
81
+
82
+ ### Maintenance
83
+ - **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.22 work shipped in select-ui aria-selected action-row fix, combobox radio indicator, form-popover summary hardening, resumable release Step 10. See `packages/web-components/CHANGELOG.md#0822--2026-07-29` for details.
84
+
85
+ ## [0.8.21] — 2026-07-28
86
+
87
+ ### Maintenance
88
+ - **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.21 work shipped in card/table/select/form-popover fixes from adia-v2 adoption + three drift gates (gh#473, gh#425, gh#435). See `packages/web-components/CHANGELOG.md#0821--2026-07-28` for details.
89
+
90
+ ## [0.8.20] — 2026-07-28
91
+
92
+ ### Fixed
93
+ - **The npm tarball no longer ships `*.test.js`** (gh#462) — the `files` roster excluded examples/html but never unit tests, so 1 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.
94
+
95
+ ## [0.8.19] — 2026-07-27
96
+
97
+ ### Maintenance
98
+ - **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.19 work shipped in form/ cluster publishes (form-popover-ui installable, gh#448) + select-ui summary-label (gh#442) + row-hover container-ladder token fix. See `packages/web-modules/CHANGELOG.md#0819--2026-07-27` for details.
99
+
100
+ ## [0.8.18] — 2026-07-27
101
+
102
+ ### Maintenance
103
+ - **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.18 work shipped in form-popover-ui rename + 9-test surface + first passing rendered-dom probe (harness repaired for all composites). See `packages/web-modules/CHANGELOG.md#0818--2026-07-27` for details.
104
+
105
+ ## [0.8.17] — 2026-07-27
106
+
107
+ ### Maintenance
108
+ - **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.17 work shipped in one selection language (radios + tonal + container tier) · form-popover module · check:demo-routes sweep. See `packages/web-components/CHANGELOG.md#0817--2026-07-27` for details.
109
+
110
+ ## [0.8.16] — 2026-07-26
111
+
112
+ ### Maintenance
113
+ - **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.16 work shipped in text-on-fill AA (90/90 pairs) + release-gate roster 18→22 + the theming guide. See `packages/web-components/CHANGELOG.md#0816--2026-07-26` for details.
114
+
115
+ ## [0.8.15] — 2026-07-26
116
+
117
+ ### Maintenance
118
+ - **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.15 work shipped in hover darkens in both schemes (600/550 role + filled-button wiring); find-unused adoption skill + measured routing evals. See `packages/web-components/CHANGELOG.md#0815--2026-07-26` for details.
119
+
120
+ ## [0.8.14] — 2026-07-25
121
+
122
+ ### Maintenance
123
+ - **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.14 work shipped in overlay surface plane + nav-item selected fill + theme neutral hues + examples.md drift gate. See `packages/web-components/CHANGELOG.md#0814--2026-07-25` for details.
124
+
125
+ ## [0.8.13] — 2026-07-25
126
+
127
+ ### Maintenance
128
+ - **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.13 work shipped in 12 named theme identities + select-menu Theme row in theme-panel; fixes scale.css wiring, Preset/Reset UX, and a Theme-select XSS finding. See `packages/web-modules/CHANGELOG.md#0813--2026-07-25` for details.
129
+
130
+ ## [0.8.12] — 2026-07-24
131
+
132
+ ### Maintenance
133
+ - **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.12 work shipped in tag-ui size parity (badge-ui sm/md/lg); plugin skills learn v0.8.11 size model; primitive count fix. See `packages/web-components/CHANGELOG.md#0812--2026-07-24` for details.
134
+
135
+ ## [0.8.11] — 2026-07-23
136
+
137
+ ### Maintenance
138
+ - **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.11 work shipped in sm/md/lg size model + ancestor [scale] context; adia-wordmark-ui; forge release-cycle hardening. See `packages/web-components/CHANGELOG.md#0811--2026-07-23` for details.
139
+
140
+ ## [0.8.10] — 2026-07-20
141
+
142
+ ### Maintenance
143
+ - **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.10 work shipped in tag-ui accent variant, dialog-scrim/card-ui fixes; adia-charts/adia-tables skills. See `packages/web-components/CHANGELOG.md#0810--2026-07-20` for details.
144
+
145
+ ## [0.8.9] — 2026-07-19
146
+
147
+ ### Maintenance
148
+ - **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.
149
+
150
+ ## [0.8.8] — 2026-07-19
151
+
152
+ ### Maintenance
153
+ - **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.8 work shipped in Type scale tightened one step (body 14px / ui 13px base); release machinery hardened (pr-bridge, mechanized pins, single-sourced roster). See `packages/web-components/CHANGELOG.md#088--2026-07-19` for details.
154
+
155
+ ## [0.8.7] — 2026-07-19
156
+
157
+ ### Maintenance
158
+ - **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.7 work shipped in factory enrichment (adia-patterns/adia-audit + harvests), forge dogfood/gate fixes, a2ui-corpus content-hash freshness, bundle rebuilds. See `packages/plugins/adia-ui-factory/CHANGELOG.md#087--2026-07-19` for details.
159
+
160
+ ## [0.8.6] — 2026-07-18
161
+
162
+ ### Maintenance
163
+ - **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.6 work shipped in SSR attribute-replay fix + table declarative data + token repoints (@adia-ai/web-components), gh#268 forge modernization campaign (adia-forge). See `packages/web-components/CHANGELOG.md#086--2026-07-18` for details.
164
+
165
+ ## [0.8.5] — 2026-07-17
166
+
167
+ ### Maintenance
168
+ - **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.8.5 work shipped in gemini production passthrough + hardening (@adia-ai/llm), SSR browser-API guards + gh issue 276 wave-4 button-ui/option-card-ui migrations (@adia-ai/web-components), admin-sidebar SSR collapse fix (@adia-ai/web-modules), kbd-ui A2UI-render fix (@adia-ai/a2ui-runtime), full chunk/embeddings regen (@adia-ai/a2ui-corpus). See `packages/llm/CHANGELOG.md#085--2026-07-17` for details.
169
+
170
+ ## [0.8.4] — 2026-07-16
171
+
172
+ ### Maintenance
173
+ - **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.8.4 work shipped in gen-UI provider routing by model id + gemini fixes (@adia-ai/llm), focus-ring/caret rulings + the button-ui purge (@adia-ai/web-components), chat-shell html messages (@adia-ai/web-modules). See `packages/llm/CHANGELOG.md#084--2026-07-16` for details.
174
+
175
+ ## [0.8.3] — 2026-07-16
176
+
177
+ ### Maintenance
178
+ - **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.3 work shipped in the two Claude Code plugins — the adia-tokens knowledge pack + command refresh (adia-ui-factory) and the release-tooling invariant-3 reconciliation (adia-ui-forge); see `packages/plugins/adia-ui-factory/CHANGELOG.md#083--2026-07-16`.
179
+ ## [0.8.2] — 2026-07-16
180
+
181
+ ### Maintenance
182
+ - **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.2 work — the `button-ui` ellipsis fix + tarball-shipped MIGRATION.md (@adia-ai/web-components) and the factory-plugin modernization campaign (adia-ui-factory; gh#259) — see `packages/web-components/CHANGELOG.md#082--2026-07-16`.
183
+ ## [0.8.1] — 2026-07-15
184
+
185
+ ### Maintenance
186
+ - **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.1 work — the `tags-input-ui` chip slot template (TKT-0023) + the `--a-link` AA contrast fix — shipped in @adia-ai/web-components; see `packages/web-components/CHANGELOG.md#081--2026-07-15`.
187
+ ## [0.8.0] — 2026-07-15
188
+
189
+ ### Maintenance
190
+ - **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.8.0 work — the Material color-token adoption (BREAKING; MIGRATION GUIDE § v0.8.0) — shipped in @adia-ai/web-components, @adia-ai/web-modules, @adia-ai/a2ui-corpus. See `packages/web-components/CHANGELOG.md#080--2026-07-15` for details.
191
+ ## [0.7.28] — 2026-07-14
192
+
193
+ ### Maintenance
194
+ - **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.7.28 work shipped in Chunk-zettel emits real component graphs (TKT-0009) + corpus admission-validation classes 1/3 fixed (TKT-0010) — see @adia-ai/a2ui-compose, @adia-ai/a2ui-corpus, @adia-ai/web-components CHANGELOGs. See `packages/a2ui/compose/CHANGELOG.md#0728--2026-07-14` for details.
195
+
196
+ ## [0.7.27] — 2026-07-12
197
+
198
+ ### Fixed
199
+ - **`interactiveHasLabel` accepts `aria-label` as an accessible name (TKT-0003).** The check only accepted `text`/`label`/`textContent`, which forced upstream transpilers to satisfy it by setting the VISIBLE `label` prop on controls already labelled by their wrapping `Field` — and the form controls render that attribute, so every transpiled form showed its labels twice. An `aria-label` is an accessible name; a Field-wrapped control needs no second visible one.
200
+ - **`noBareDivs` no longer hard-fails documents containing registered `Nav`/`Table` constructs.** The bare-HTML-type collision check lowercased registered A2UI type names onto the bare-tag set, so every document with a legitimate `Nav` or `Table` component could never validate. Registered types are now exempt.
201
+
202
+ ## [0.7.26] — 2026-07-04
203
+
204
+ ### Maintenance
205
+ - **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.7.26 work shipped in variant="outline" retired as the reach-for-secondary generation-time habit. See `packages/a2ui/compose/CHANGELOG.md#unreleased` for details.
206
+
207
+ ## [0.7.25] — 2026-07-03
208
+
209
+ ### Maintenance
210
+ - **Lockstep version bump.** No functional source changes; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.7.25 work shipped in accordion-ui variant="flat|contained" posture + 2 footnote fixes + keyboard a11y. See `packages/web-components/CHANGELOG.md#0725--2026-07-03` for details.
211
+ - **Doc-comment path references corrected** (`docs/specs/...` → `.claude/docs/specs/...`) across `semantic/` (`classify-intent.js`, `index.js`, `intent-specs.js`, `judge.js`) — propagated from the repo-wide `docs/` → `.claude/docs/` migration (2026-07-01); no functional change.
212
+
213
+ ## [0.7.24] — 2026-07-01
214
+
215
+ ### Maintenance
216
+ - **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.7.24 work shipped in @adia-ai/web-components upstream consumer findings F1/F2/F4/F5/F6 — icon-ui fail-loud registry wiring, @phosphor-icons/core direct dep, custom-elements.json de-fabrication, new display-field-ui primitive, table-ui rowExpandable per-row gate. See `packages/web-components/CHANGELOG.md#0724--2026-07-01` for details.
217
+
218
+ ## [0.7.23] — 2026-06-30
219
+
220
+ ### Maintenance
221
+ - **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.7.23 work shipped in @adia-ai/web-components button-ui child-text label parity + accordion-ui block-flow gap. See `packages/web-components/CHANGELOG.md#0723--2026-06-30` for details.
222
+
223
+ ## [0.7.22] — 2026-06-16
224
+
225
+ ### Maintenance
226
+ - **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.7.22 work shipped in the @adia-ai/web-components + @adia-ai/web-modules surface-token alignment (symmetric canvas ramp). See `packages/web-components/CHANGELOG.md#0722--2026-06-16` for details.
227
+
228
+ ## [0.7.21] — 2026-06-10
229
+
230
+ ### Maintenance
231
+ - **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.7.21 work shipped in corpus harvester scope expansion (gated web-components examples root) + 26 curated chunks (368->394). See `packages/a2ui/corpus/CHANGELOG.md#0721--2026-06-10` for details.
232
+
233
+ ## [0.7.20] — 2026-06-10
234
+
235
+ ### Maintenance
236
+ - **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.7.20 work shipped in gen-UI form-quality arc (anti-pattern rules + field-ui hardening + validation fold-in) + static-site corpus retrieval (tri-mode loaders) + corpus 308->356. See `packages/web-components/CHANGELOG.md#0720--2026-06-10` for details.
237
+
238
+ ## [0.7.19] — 2026-06-10
239
+
240
+ ### Maintenance
241
+ - **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.7.19 work shipped in icon-ui standalone-import paint fix + late-connect retry (web-components); full 308-chunk embedding vectors (a2ui-corpus). See `packages/web-components/CHANGELOG.md#0719--2026-06-10` for details.
242
+
243
+ ## [0.7.18] — 2026-06-09
244
+
245
+ ### Maintenance
246
+ - **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.7.18 work shipped in combobox menu-overflow fix + max-visible-items + the dropdown-family caret OPEN state + the theme-provider CDN bundle (web-components); corpus regrowth batch 1, +24 chunks (a2ui-corpus). See `packages/web-components/CHANGELOG.md#0718--2026-06-09` for details.
247
+
248
+ ## [0.7.17] — 2026-06-08
249
+
250
+ ### Maintenance
251
+ - **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.7.17 work shipped in badge-ui/tag-ui icon-spacing fix — icon-bearing chips no longer inflate row height + tighter [icon]-gated spacing. See `packages/web-components/CHANGELOG.md#0717--2026-06-08` for details.
252
+
253
+ ## [0.7.16] — 2026-06-08
254
+
255
+ ### Maintenance
256
+ - **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.7.16 work shipped in the dist CSS + JS bundle refresh. See `packages/web-components/CHANGELOG.md (0.7.16)` for details.
257
+
258
+ ## [0.7.15] — 2026-06-08
259
+
260
+ ### Maintenance
261
+ - **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.7.15 work shipped in the menu-label-ui new component + badge/tag padding. See `packages/web-components/CHANGELOG.md (0.7.15)` for details.
262
+
263
+ ## [0.7.14] — 2026-06-08
264
+
265
+ ### Maintenance
266
+ - **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.7.14 work shipped in input-ui/textarea-ui .value upgrade-safety fix. See `packages/web-components/CHANGELOG.md (0.7.14)` for details.
267
+
268
+ ## [0.7.13] — 2026-06-06
269
+
270
+ ### Maintenance
271
+ - **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.7.13 work: the `./css/sheet` exports `types` fix (`@adia-ai/web-components` + `@adia-ai/web-modules`) + a corpus re-harvest (`@adia-ai/a2ui-corpus`). See `packages/web-components/CHANGELOG.md` for details.
272
+
273
+ ## [0.7.12] — 2026-06-04
274
+
275
+ ### Maintenance
276
+ - **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.7.12 work: the BREAKING `data-theme`→`theme` token-attribute rename + the new `<theme-provider>` element + CDN `.sheet.js` twins (`@adia-ai/web-components`), and a corpus re-harvest. See `packages/web-components/CHANGELOG.md` for details.
277
+
278
+ ## [0.7.11] — 2026-06-04
279
+
280
+ ### Maintenance
281
+ - **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.7.11 work: the `<frame-ui>` slot-override regions + `button-ui` hover `-strong` step + `resizable` trait corner handles + `list-item-ui` / `<preview-ui>` fixes (`@adia-ai/web-components`), `<embed-shell>` extending `UIElement` to compose the `resizable` trait (`@adia-ai/web-modules`), and a corpus re-harvest. See `packages/web-components/CHANGELOG.md` for details.
282
+
283
+ ## [0.7.10] — 2026-06-03
284
+
285
+ ### Maintenance
286
+ - **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.7.10 work: the `<frame-ui>` layout primitive + `list-item-ui` grid fix + `[verse]` type-tier bump (`@adia-ai/web-components`), the new `<embed-shell>` (`@adia-ai/web-modules`), and a corpus re-harvest. See `packages/web-components/CHANGELOG.md` for details.
287
+
288
+ ## [0.7.9] — 2026-06-03
289
+
290
+ ### Maintenance
291
+ - **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.7.9 work shipped in Lockstep release — no package-specific source changes this cut; substantive v0.7.9 work in `@adia-ai/web-components` (verse control/chrome tier bump + semantic color cusp-lift) + root tooling (PLAN-claim trip-wire, slot-vocab + foundation-layer gate fixes).. See `packages/web-components/CHANGELOG.md#079--2026-06-03` for details.
292
+
293
+ ## [0.7.8] — 2026-06-02
294
+
295
+ ### Maintenance
296
+ - **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.7.8 work shipped in Lockstep release — no package-specific source changes this cut; substantive v0.7.8 work in `@adia-ai/web-components` (wrapper-trap arm-2 drain: 14 consumer-slot reads pierced via the new `core/logical-children.js` helper).. See `packages/web-components/CHANGELOG.md#078--2026-06-02` for details.
297
+
298
+ ## [0.7.7] — 2026-06-02
299
+
300
+ ### Maintenance
301
+ - **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.7.7 work shipped in Lockstep release — no package-specific source changes this cut; substantive v0.7.7 work in `@adia-ai/web-components` (drawer/verse register-aware insets + agent-artifact wrapper-pierce).. See `packages/web-components/CHANGELOG.md#077--2026-06-02` for details.
302
+
303
+ ## [0.7.6] — 2026-06-02
304
+
305
+ ### Maintenance
306
+ - **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.7.6 work shipped in Lockstep release — no package-specific source changes this cut; substantive v0.7.6 work in `@adia-ai/web-components` (block-ui, parametric [padding]/[margin] scale, host.css barrel split, FB-97/98 + command wrapper-trap fixes).. See `packages/web-components/CHANGELOG.md#076--2026-06-02` for details.
307
+
308
+ ## [0.7.5] — 2026-06-02
309
+
310
+ ### Maintenance
311
+ - **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.7.5 work shipped in Lockstep release — no package-specific source changes this cut; the substantive v0.7.5 fix is in `@adia-ai/web-components` (button-ui colored-variant: readable solid text + outline composes + excluded from the `[color]` text utility).. See `packages/web-components/CHANGELOG.md#075--2026-06-02` for details.
312
+
313
+ ## [0.7.4] — 2026-06-02
314
+
315
+ ### Maintenance
316
+ - **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.7.4 work shipped in Lockstep release — no package-specific source changes this cut; substantive work in `@adia-ai/web-components` + `@adia-ai/web-modules` (verse register, OD-5 `-default` revert, grid align/justify, font-family floor).. See `packages/web-components/CHANGELOG.md#074--2026-06-02` for details.
317
+
318
+ ## [0.7.3] — 2026-06-01
319
+
320
+ ### Maintenance
321
+ - **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.7.3 work shipped in @adia-ai/web-components parametric named gap scale (xs–xl) + explicit/ambient [gap] split (no leak) + FB-96 tree slot-adopt. See `packages/web-components/CHANGELOG.md#073--2026-06-01` for details.
322
+
323
+ ## [0.7.2] — 2026-06-01
324
+
325
+ ### Maintenance
326
+ - **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.7.2 work shipped in @adia-ai/web-components template-engine ARIA-transparent wrapper spans (FB-94) + menu-item orphan fix (FB-95) + tokens cascade-layer; @adia-ai/web-modules admin-page-footer sticky band (bug-54). See `packages/web-components/CHANGELOG.md#072--2026-06-01` for details.
327
+
328
+ ## [0.7.1] — 2026-05-31
329
+
330
+ ### Maintenance
331
+ - **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.7.1 work shipped in @adia-ai/web-components a11y/reactivity fixes — input-ui affordance centering (bug-60), tree-ui role=group WAI-ARIA (FB-91), menu-ui dynamic items (FB-92), input-ui reactive prefix/suffix (FB-93). See `packages/web-components/CHANGELOG.md#071--2026-05-31` for details.
332
+
333
+ ## [0.7.0] — 2026-05-31
334
+
335
+ ### Maintenance
336
+ - **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.7.0 work shipped in MINOR: @adia-ai/web-components BREAKING removals (avatar-ui [name] alias, chart-ui [aspect]/[heading]) + docs-QA pass (bug-21, bug-50..55) + new features (stat [bleed], page regions, kbd lg); @adia-ai/web-modules dialog/plan-picker/onboarding/integrations fixes. See `packages/web-components/CHANGELOG.md#070--2026-05-31` for details.
337
+
338
+ ## [0.6.50] — 2026-05-30
339
+
340
+ ### Maintenance
341
+ - **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.6.50 work shipped in @adia-ai/web-components slot="caret" disclosure convention + tree-item-ui adopt-or-stamp (FEEDBACK-89, ADR-0036); @adia-ai/a2ui-corpus catalog regen for the renamed slot vocabulary. See `packages/web-components/CHANGELOG.md#0650--2026-05-30` for details.
342
+
343
+ ## [0.6.49] — 2026-05-30
344
+
345
+ ### Maintenance
346
+
347
+ - **Lockstep version bump only.** Substantive v0.6.49 in `@adia-ai/web-components` (date-range-picker two-month fix + calendar `month` prop + card-ui demo slot sweep) and `@adia-ai/a2ui-corpus` (corpus + catalog regen). See those packages CHANGELOGs.
348
+
349
+ ## [0.6.48] — 2026-05-29
350
+
351
+ ### Maintenance
352
+ - **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.6.48 work shipped in foundation-styles dimension×layer reorg (ADR-0035) + library-wide demo consolidation + date-range-picker popover fix + corpus re-harvest. See `packages/web-components/CHANGELOG.md#0648--2026-05-29` for details.
353
+
354
+ ## [0.6.47] — 2026-05-29
355
+
356
+ ### Maintenance
357
+
358
+ - **Lockstep version bump only.** Substantive v0.6.47 in `@adia-ai/web-components` (`<card-ui>` `[grow]` section attribute) and `@adia-ai/a2ui-corpus` (chunk re-harvest). See those packages CHANGELOGs.
359
+
360
+ ## [0.6.46] — 2026-05-29
361
+
362
+ ### Maintenance
363
+
364
+ - **Lockstep version bump only.** Substantive v0.6.46 in `@adia-ai/web-components` (56 trait pages + slot docs + bleed/token fixes) and `@adia-ai/a2ui-corpus` (chunk re-harvest). See those packages CHANGELOGs.
365
+
366
+ ## [0.6.45] — 2026-05-29
367
+
368
+ ### Maintenance
369
+
370
+ - **Lockstep version bump only.** Substantive v0.6.45 in `@adia-ai/web-components` (FB-85 canvas-ui bare-specifier + FB-88 select-ui accessible name). See its CHANGELOG.
371
+
372
+ ## [0.6.44] — 2026-05-28
373
+
374
+ ### Maintenance
375
+
376
+ - **Lockstep version bump only.** Substantive v0.6.44 in `@adia-ai/web-components` (FB-81 canvas-ui decouple), `@adia-ai/a2ui-compose` (FB-79 select-options transpiler), `@adia-ai/a2ui-corpus` (FB-79/80 re-harvest + embeddings regen). See those packages' CHANGELOGs.
377
+
378
+ ## [0.6.43] — 2026-05-27
379
+
380
+ ### Maintenance
381
+
382
+ - **Lockstep version bump only.** Substantive v0.6.43 in `@adia-ai/web-components` (`<list-ui contained>` yaml + button/card/alert RL+RL2 substrate fixes), `@adia-ai/a2ui-compose` (transpiler RL+RL2 sweeps), `@adia-ai/a2ui-corpus` (chunk re-harvest absorbing the substrate fixes). See those packages' CHANGELOGs.
383
+
384
+ ## [0.6.42] — 2026-05-26
385
+
386
+ ### Maintenance
387
+
388
+ - **Lockstep version bump only.** Substantive v0.6.42: `@adia-ai/a2ui-corpus` (gen-review cycles 8-17 — chunk count 240 → 284, +44 new training chunks + chunk-embeddings regen 6.92 → 8.19 MB), `@adia-ai/web-components` (yaml/sidecar polish for description-list/table/upload + core/provider.js), `@adia-ai/web-modules` (admin-page-header yaml header-anatomy fix), `@adia-ai/a2ui-runtime` (registry.js + renderer.js polish). See those packages' CHANGELOGs.
389
+
390
+ ## [0.6.41] — 2026-05-26
391
+
392
+ ### Maintenance
393
+
394
+ - **Lockstep version bump only — pure ride-along.** No source changes in any of the 9 packages this cycle. Substantive v0.6.41 work is REPO-LEVEL: adia-ui-release skill v1.8.0 → v1.9.0 (catalog-drift recurring graduation — §Step 5.5 pre-commit trip-wire + supersedes-WT contract + §Step 5 allowlist convention; closes FEEDBACK-75). Version bump preserves 9-package lockstep coherence; published tarballs identical to v0.6.40 modulo version metadata.
395
+
396
+ ## [0.6.40] — 2026-05-26
397
+
398
+ ### Maintenance
399
+
400
+ - **Lockstep version bump only.** Substantive v0.6.40 in `@adia-ai/web-components` (index.js barrel side-effect-imports `core/provider.js` — cold-start `<router-ui>` registration, FB-69-class fix) and `@adia-ai/web-modules` (`<admin-entity-item>` `<span slot="icon">` wrap — mirrors `<nav-item-ui>`).
401
+
402
+ ## [0.6.39] — 2026-05-26
403
+
404
+ ### Maintenance
405
+
406
+ - **Lockstep version bump only.** Substantive v0.6.39 in `@adia-ai/web-components` (<tour-ui> primitive — Wave 5e last P1, #259 + substrate slot-selector defensive sweep + admin-entity-item icon-size parity + list-item-ui slot=action declaration). `@adia-ai/web-modules` ships dist rebuild only.
407
+
408
+ ## [0.6.38] — 2026-05-26
409
+
410
+ ### Maintenance
411
+
412
+ - **Lockstep version bump only.** No source changes in this package. Substantive v0.6.38: `@adia-ai/web-components` (Wave 5e — mark-ui + inline-edit-ui + feed-ui deep-link demo + list-item-ui/segmented-ui/stat-ui/toolbar-ui fixes + slot-vocab-vs-css backlog closure), `@adia-ai/web-modules` (catalog/ui-patterns import-mapping + saas/billing cancellation save-offer + onboarding-checklist demo), `@adia-ai/a2ui-corpus` (240 chunks + catalog regen for Wave 5e cohort).
413
+
414
+ ## [0.6.37] — 2026-05-25
415
+
416
+ ### Maintenance
417
+
418
+ - **Lockstep version bump only.** No source changes in this package. Substantive v0.6.37: `@adia-ai/web-components` (Wave 1+2+3+4 cohort — blockquote, slider dual-thumb, password-strength, qr-code, toc, relative-time, number-format, anchor-link, number-stepper, pagination, toast-undo, blockquote, table demos column-resize/sticky-header/virtualized, alert-dialog destructive-confirm, context-menu, visually-hidden, skip-nav + FB-67/68/69/70/71 close + popover-ui/pagination/slider/qr-code fixes + --a-warning-bg redirect + 5 new audits) and `@adia-ai/web-modules` (Wave 3+4 pattern demos + brand-chrome canonicals + integration-card/segmented console-warn silence).
419
+
420
+ ## [0.6.36] — 2026-05-24
421
+
422
+ ### Maintenance
423
+
424
+ - **Lockstep version bump only.** No source changes in this package. Substantive v0.6.36: `@adia-ai/web-components` (tag-ui solid-default flip + [tone] prop + dismiss X variant inheritance + tag.warning amber fix + caret-at-content-start fix for input/textarea/combobox/tags-input + post-v0.6.35 QA sweep), `@adia-ai/web-modules` (Wave A+B+C+D demos via authoring v1.8.0 Mode 8 + payment-method-form recursion guard + payment-method-list card-ui rewrite + billing-overview/dashboard-layout fixes), `@adia-ai/a2ui-corpus` (catalog regen for tag-ui solid-default flip).
425
+
426
+ ## [0.6.35] — 2026-05-24
427
+
428
+ ### Maintenance
429
+
430
+ - **Lockstep version bump only.** No source changes in this package; bumped to maintain 9-package coherence. Substantive v0.6.35: `@adia-ai/web-components` (Waves A+B+C — 14 P1 component implementations + FB-57/61/62/63 substrate sweep + class.js → <slug>.class.js refactor + spinner/calendar-grid fixes), `@adia-ai/web-modules` (FB-55 admin-shell warn + delegation refactor + Wave A+B+C cluster work), `@adia-ai/llm` (server.js SIGINT/SIGTERM handlers — dev-only fix), `@adia-ai/a2ui-corpus` (catalog regen absorbing FB-61/62/63 yaml backfills).
431
+
432
+ ## [0.6.34] — 2026-05-23
433
+
434
+ ### Maintenance
435
+
436
+ - **Lockstep version bump only.** No source changes in this package; bumped to maintain 9-package coherence. Substantive v0.6.34: `@adia-ai/web-components` (Wave 1 + Wave 2 — 10 P1 components shipped from SPECs + OD-5 `-default` token sweep across 98 components + `<calendar-grid-ui>` substrate primitive), `@adia-ai/web-modules` (Wave 1/2 cluster registrations + `everything.min.js` rebuild), `@adia-ai/a2ui-runtime` (Phase 1 CSS channel: `updateStyles`/`removeStyles`), `@adia-ai/a2ui-corpus` (`playground-css-channel` chunk + embeddings regen). See those packages' CHANGELOGs.
437
+
438
+ ## [0.6.33] — 2026-05-23
439
+
440
+ ### Maintenance
441
+
442
+ - **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.6.33 work shipped in `@adia-ai/web-components` (FB-53 §2 table[raw] short-circuit + FB-54 field row-gap :has gate + tabs --tabs-button-height anchor + dist icons-manifest header refresh) and `@adia-ai/web-modules` (FB-53 §1 CDN icons-manifest co-emit to web-modules/dist/) and `@adia-ai/a2ui-runtime` (card-ui body-slot drift fix). See those packages' CHANGELOGs for details.
443
+
444
+ ## [0.6.31] — 2026-05-23
445
+
446
+ ### Maintenance
447
+
448
+ - **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.6.31 work shipped in `@adia-ai/web-modules` (`admin-shell.examples` taming CSS + README canonical-hierarchy example) and `@adia-ai/web-components` (3 legacy `patterns/*` hubs rewritten). Docs-and-skills scrub — see those packages' CHANGELOGs for details.
449
+
450
+ ## [0.6.30] — 2026-05-23
451
+
452
+ ### Maintenance
453
+ - **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.6.30 work shipped in CDN-ready JS bundles (web-components.min.js primitives + 4 per-shell + everything.min.js kitchen-sink for CodePen); new ./js/bundled + ./everything + 4 */js-bundled exports; check:js-bundles-fresh pre-flight gate; README + site CDN docs + AI-agent discoverability; examples/codepen.html template. See `packages/web-components/CHANGELOG.md#0630--2026-05-23` for details.
454
+
455
+ ## [0.6.29] — 2026-05-23
456
+
457
+ ### Maintenance
458
+ - **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.6.29 work shipped in CDN-ready rolled-up CSS bundles (web-components + 4 web-modules shells); ./css/bundled + per-shell /bundled exports; check:css-bundles-fresh pre-flight gate. See `packages/web-components/CHANGELOG.md#0629--2026-05-23` for details.
459
+
460
+ ## [0.6.28] — 2026-05-23
461
+
462
+ ### Maintenance
463
+ - **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.6.28 work shipped in editor-sidebar rAF debounce for wide->narrow display-flip transient (FB-50, 3rd iteration of the latch saga; belt-and-braces with v0.6.26 width guard + v0.6.27 computedStyle guard). See `packages/web-modules/CHANGELOG.md#0628--2026-05-23` for details.
464
+
465
+ ## [0.6.27] — 2026-05-22
466
+
467
+ ### Maintenance
468
+ - **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.6.27 work shipped in chart-ui[loading] skeleton placeholder (FB-12); admin-shell CSS pitfall fix (FB-04); responsive horizontal-scroll for kanban + pricing tables; editor-sidebar computedStyle guard for small-nonzero transients (FB-49); a2ui-corpus catalog tracks chart-ui[loading]. See `packages/web-components/CHANGELOG.md#0627--2026-05-22` for details.
469
+
470
+ ## [0.6.26] — 2026-05-22
471
+
472
+ ### Maintenance
473
+ - **Lockstep version bump only.** No source changes. Substantive v0.6.26 work in `@adia-ai/web-modules`.
474
+
475
+ ## [0.6.25] — 2026-05-22
476
+
477
+ ### Maintenance
478
+ - **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.6.25 work shipped in select-ui[multiple] pre-init via <option selected> + .value= setter (FB-46); table-ui Enter key activates focused body cell (FB-47); corpus select-multiple-preselected exemplar chunk + harvest refresh. See `packages/web-components/CHANGELOG.md#0625--2026-05-22` for details.
479
+
480
+ ## [0.6.24] — 2026-05-22
481
+
482
+ ### Maintenance
483
+ - **Lockstep version bump only.** No source changes in this package; bumped to maintain 9-package version coherence. Substantive v0.6.24 work: `slider-ui` label/suffix reactive binding fix (FB-45), `editor-shell` `--a-font-mono` token rename (FB-43), `toast-ui` demo shell `feed.css` import. See `packages/web-components/CHANGELOG.md#0624` for details.
484
+
485
+ ## [0.6.23] — 2026-05-22
486
+
487
+ ### Maintenance
488
+ - **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.6.23 work shipped in row-ui wrap-at='bp' responsive flex-wrap (@adia-ai/web-components) + 4 new v053-coverage-fill training chunks for empty-state danger/warning/minimal + responsive-kpi-grid (@adia-ai/a2ui-corpus). See `packages/web-components/CHANGELOG.md#0623--2026-05-22` for details.
489
+
490
+ ## [0.6.22] — 2026-05-22
491
+
492
+ ### Maintenance
493
+ - **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.6.22 work shipped in @bp responsive attribute system (grid/col/row/text/block accept @bp), empty-state-ui variant=danger|warning, alert/segmented/stat/table truncation fixes, UI inset/gap scale reduction, 21 component example pages corrected; @adia-ai/web-modules admin-topbar/statusbar padding + admin-page-header/body breakpoint refinements. See `packages/web-components/CHANGELOG.md#0622--2026-05-22` for details.
494
+
495
+ ## [0.6.21] — 2026-05-21
496
+
497
+ ### Maintenance
498
+ - **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.6.21 work shipped in `@adia-ai/web-components` (`table-ui` truncate-by-default + `[wrap]` opt-in §403; toast / feed-item variant text colour; `input-ui` slot-label crowding fix) and `@adia-ai/web-modules` (`<admin-entity-item>` row-inset alignment; FEEDBACK-37 retraction — spurious slot-contract `console.warn` removed; page-header title row no longer stacks under `?chunks` dev overlay). See `packages/web-modules/CHANGELOG.md#0621--2026-05-21` for details.
499
+
500
+ ## [0.6.20] — 2026-05-21
501
+
502
+ ### Maintenance
503
+ - **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.6.20 work shipped in `@adia-ai/web-components` + `@adia-ai/web-modules` — the claims-ui-v5 inbound feedback batch (FEEDBACK-34…39: `table-ui` / `select-ui` / `chart-ui` fixes, the new `<admin-entity-item>` shell primitive, `admin-topbar` / `admin-statusbar` slot diagnostics) plus the `<admin-page-header>` `--a-canvas-0` rebase. See `packages/web-modules/CHANGELOG.md#0620--2026-05-21` for details.
504
+
505
+ ## [0.6.19] — 2026-05-21
506
+
507
+ ### Maintenance
508
+ - **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.6.19 work shipped in `@adia-ai/web-components` + `@adia-ai/web-modules` — the claims-ui-v4 inbound feedback batch (FEEDBACK-22…33: `drawer-ui` / `chart-ui` / `segmented-ui` fixes, `UIElement` lifecycle, exports-map `types` conditions) — plus an `@adia-ai/a2ui-corpus` drift remediation. See `packages/web-components/CHANGELOG.md#0619--2026-05-21` for details.
509
+
510
+ ## [0.6.18] — 2026-05-21
511
+
512
+ ### Maintenance
513
+ - **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.6.18 work shipped in `@adia-ai/web-components` — `stat-ui` + `table-ui` `loading` props (FB-12 P2) and `text-ui` `size` / `color` / `weight` / `text-align` overlay attributes (FB-10). See `packages/web-components/CHANGELOG.md#0618--2026-05-21` for details.
514
+
515
+ ## [0.6.17] — 2026-05-21
516
+
517
+ ### Maintenance
518
+ - **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.6.17 work shipped in `@adia-ai/web-modules` — collapsed-sidebar rules grew a forgiving fallback block for vanilla HTML consumers (`<button class="nav-item">`, `[slot="heading"]`) so text labels don't overflow the 48px rail. See `packages/web-modules/CHANGELOG.md#0617--2026-05-21` for details.
519
+
520
+ ## [0.6.16] — 2026-05-21
521
+
522
+ ### Maintenance
523
+ - **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.6.16 work shipped in `@adia-ai/web-modules`: (1) `<admin-page>` selector relaxed to descendant combinator so router-wrapped layouts no longer collapse to `display: inline` at narrow viewports (was the root of the page-header/KPI overlap regression); (2) `--page-content-header-bg` rebased from `--a-canvas-2` to `--a-canvas-1` so the page-header reads as shell-chrome continuation. See `packages/web-modules/CHANGELOG.md#0616--2026-05-21` for details.
524
+
525
+ ## [0.6.15] — 2026-05-21
526
+
527
+ ### Maintenance
528
+ - **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.6.15 work shipped in `@adia-ai/web-components` — `installIconLoaders` shape-detects malformed flat globs (FB-07 auto-promote + warn), `icons-phosphor.js` surfaces silent-fail diagnostics (FB-08), and .claude/docs/skill examples corrected (FB-09). See `packages/web-components/CHANGELOG.md#0615--2026-05-21` for details.
529
+
530
+ ## [0.6.14] — 2026-05-21
531
+
532
+ ### Maintenance
533
+ - **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.6.14 work shipped in `@adia-ai/web-modules` — `<admin-page-header>` now uses `var(--page-content-header-bg)` (= `--a-canvas-2`) + `var(--a-shadow-sm)` so the page-header band reads as elevated chrome over the body canvas. See `packages/web-modules/CHANGELOG.md#0614--2026-05-21` for details.
534
+
535
+ ## [0.6.13] — 2026-05-20
536
+
537
+ ### Maintenance
538
+ - **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.6.13 work shipped in `@adia-ai/web-modules` — `<admin-shell>` default `mode` is now `"rounded borderless"` (bare-tag auto-promote on connect; any explicit `mode` attribute still wins). See `packages/web-modules/CHANGELOG.md#0613--2026-05-20` for details.
539
+
540
+ ## [0.6.12] — 2026-05-20
541
+
542
+ ### Maintenance
543
+ - **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.6.12 work shipped in `@adia-ai/web-modules` — admin-shell legacy CSS bridges retired per ADR-0032 (continuation of ADR-0023 + ADR-0024). See `packages/web-modules/CHANGELOG.md#0612--2026-05-20` for the breaking-change details + migration path.
544
+
545
+ ## [0.6.11] — 2026-05-20
546
+
547
+ ### Maintenance
548
+ - **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.6.11 work shipped in `@adia-ai/web-components` (`<canvas-ui>` `.d.ts` hand-author covering 9 imperative runtime methods, claims-ui-v2 inbound FB-02 finding 2 closure) and `adia-ui-kit` skill v2.8.0 bundled feedback close (FB-01, FB-02 findings 1+3, FB-03; graduated `/with-css` opt-in docs + `ADIA_TICKETS_DIR` central-inbound workflow).
549
+
550
+ ## [0.6.10] — 2026-05-21
551
+
552
+ ### Maintenance
553
+ - **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.6.10 work shipped in `@adia-ai/web-modules` (4 shell `/with-css` opt-in companion subpaths, claims-ui FB-06 closure, ADR-0030) and `@adia-ai/web-components` (`<table-toolbar-ui>` unknown-attr `console.warn`, FB-04 enhancement; release-gate hygiene).
554
+
555
+ ## [0.6.9] — 2026-05-21
556
+
557
+ ### Maintenance
558
+ - **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.6.9 work shipped in `@adia-ai/web-components` (CSS `@scope` codemod, F-002) and `@adia-ai/web-modules` (cross-package subpath docs, FB-08).
559
+
560
+ ## [0.6.8] — 2026-05-20
561
+
562
+ - Lockstep version bump. Headlining work in `@adia-ai/web-components`
563
+ (FB-55 `.camelCaseProp=${expr}` two-layer name resolution + FB-57
564
+ SVG/MathML namespace-aware `mount()` + USAGE.md docs cluster) and
565
+ `@adia-ai/web-modules` (claims-ui F-001 chat-shell.js barrel-import
566
+ fix + F-006 required-CSS callouts). No source changes in this package.
567
+
568
+ ## [0.6.7] — 2026-05-19
569
+
570
+ - Lockstep version bump; no source changes.
571
+
572
+ ## [0.6.6] — 2026-05-18
573
+
574
+ ### Changed
575
+ - Lockstep version bump for §304 `<field-ui align>` prop.
576
+ ## [0.6.5] — 2026-05-18
577
+
578
+ ### Changed
579
+ - Lockstep version bump for TS Phase 6 sealing (ADR-0029).
580
+ Follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/) and
581
+ [Semantic Versioning](https://semver.org/).
582
+ ## [0.6.32] — 2026-05-23
583
+
584
+ _No pending changes._
585
+
586
+ ## [0.6.4] - 2026-05-18
587
+
588
+ ### v0.6.4 — Lockstep ride-along
589
+
590
+ TS Phase 5: a2ui.schema.json schema-driven codegen (§359). No source changes in this package.
591
+
592
+ ## [0.6.3] - 2026-05-18
593
+
594
+ ### v0.6.3 — Lockstep ride-along
595
+
596
+ TS Phase 5: runtime real declarations (§358) + compose branded IDs.
597
+ No source changes in this package. Internal dep ranges stay at `^0.6.0`.
598
+
599
+ ## [0.6.2] - 2026-05-18
600
+
601
+ ### v0.6.2 — Lockstep ride-along
602
+
603
+ TS Phase 4: retrieval (§356) + mcp (§357) `.ts` sources + TS-MIG-001 closed.
604
+ No source changes in this package. Internal dep ranges stay at `^0.6.0`.
605
+
606
+ ## [0.6.1] - 2026-05-18
607
+
608
+ ### v0.6.1 — Lockstep ride-along
609
+
610
+ `@adia-ai/llm` TS Phase 2 (§353) + `<link-ui>` token rename (§354) +
611
+ `@adia-ai/a2ui-compose` TS Phase 3 (§355). No source changes in this package.
612
+ Internal dep ranges stay at `^0.6.0`.
613
+
614
+ ## [0.6.0] - 2026-05-18
615
+
616
+ _Lockstep ride-along (no source change in this package; companion to web-components v0.6.0 — see root CHANGELOG)._
617
+
618
+ **MINOR-line internal-dep range update:** internal `@adia-ai/*` dependency ranges move from `^0.5.0` to `^0.6.0` per AdiaUI lockstep policy.
619
+
620
+ ## [0.5.21] - 2026-05-18
621
+
622
+ _Lockstep ride-along (no source change in this package; companion to web-components v0.5.21 — see root CHANGELOG)._
623
+
624
+ ## [0.5.20] - 2026-05-18
625
+
626
+ _Lockstep ride-along (no source change in this package; companion to web-components v0.5.20 — see root CHANGELOG)._
627
+
628
+ ## [0.5.19] - 2026-05-17
629
+
630
+ _Lockstep ride-along (no source change in this package; companion to web-components v0.5.19 — see root CHANGELOG)._
631
+
632
+ ## [0.5.18] - 2026-05-16
633
+
634
+ _Lockstep ride-along (no source change in this package; companion to web-components v0.5.18 — see root CHANGELOG)._
635
+
636
+ ## [0.5.17] - 2026-05-16
637
+
638
+ _Lockstep ride-along (no source change in this package; companion to web-components v0.5.17 — see root CHANGELOG)._
639
+
640
+ ## [0.5.16] - 2026-05-16
641
+
642
+ _Lockstep ride-along (no source change in this package; companion to web-components v0.5.16 — see root CHANGELOG)._
643
+
644
+ ## [0.5.15] - 2026-05-16
645
+
646
+ _Lockstep ride-along (no source change in this package; companion to web-components v0.5.15 — see root CHANGELOG)._
647
+
648
+ ## [0.5.14] - 2026-05-15
649
+
650
+ _Lockstep ride-along (no source change in this package; companion to web-components v0.5.14 — see root CHANGELOG)._
651
+
652
+ ## [0.5.13] - 2026-05-15
653
+
654
+ _Lockstep ride-along (no source change in this package; companion to web-components v0.5.13 — see root CHANGELOG)._
655
+
656
+ ## [0.5.12] - 2026-05-15
657
+
658
+ _Lockstep ride-along (no source change in this package; companion to web-components v0.5.12 — see root CHANGELOG)._
659
+
660
+ ## [0.5.11] - 2026-05-15
661
+
662
+ _Lockstep ride-along (no source change)._
663
+
664
+ ## [0.5.10] - 2026-05-15
665
+
666
+ _Lockstep ride-along (no source change)._
667
+
668
+ ## [0.5.9] - 2026-05-15
669
+
670
+ _Lockstep ride-along (no source change)._
671
+
672
+ ## [0.5.8] - 2026-05-15
673
+
674
+ _Lockstep ride-along (no source change)._
675
+
676
+ ## [0.5.7] - 2026-05-15
677
+
678
+ _Lockstep ride-along (no source change)._
679
+
680
+ ## [0.5.6] - 2026-05-14
681
+
682
+ _Lockstep ride-along (no source change)._
683
+ ## [0.5.5] - 2026-05-14
684
+
685
+ ### Changed — lockstep ride-along; no source changes
686
+
687
+ `version`: `0.5.4` → `0.5.5`. Source byte-identical to `0.5.4`.
688
+
689
+ Tracking the v0.5.5 cycle's detector-driven cleanup arcs (§176-§179) + exe.dev LLM Gateway migration (§181-§188) + FEEDBACK-08 closure (§184): see root `CHANGELOG.md` for the full narrative. This package carries no source changes this cycle.
690
+ ## [0.5.4] - 2026-05-14
691
+
692
+ ### Added — §165 validator check #19 `componentsHaveRenderableContent` — the 3rd safety layer (v0.5.4)
693
+
694
+ `packages/a2ui/validator/validator.js:516-616` — new validator check
695
+ firing on every `updateComponents` message tree. Closes the
696
+ "registered + valid + visually empty" gap diagnosed 2026-05-14:
697
+ pre-§165 the validator had 18 checks but ZERO coverage of components
698
+ that pass type registration + schema validation and still render
699
+ blank rectangles because leaf interactive primitives carry no
700
+ content-bearing props.
701
+
702
+ **The 3-layer safety net**:
703
+
704
+ Layer 1 — Type registration (renderer.js:141 resolveTag → element upgrade)
705
+ Layer 2 — Schema validation (18 checks)
706
+ Layer 3 — Visual integrity (this check, NEW)
707
+
708
+ Audits every component in the tree:
709
+
710
+ - **Interactive leaf types** (Button, Input/TextField/TextArea,
711
+ CheckBox/Check/Toggle/Switch/Radio, Select/ChoicePicker, Slider/
712
+ Range/Rating, Search/OtpInput/CalendarPicker/DateTimeInput/
713
+ ColorPicker/Upload) must have at least one of `label`, `placeholder`,
714
+ `text`, `aria-label`, `icon`, `textContent`, `value`, `alt`, `src`,
715
+ OR have non-empty `children[]`.
716
+ - **Text** must have `textContent` OR non-empty `children[]`.
717
+ - **Image** must have `src`.
718
+ - Container nodes (Card / Section / Header / Column / Row / etc.) are
719
+ not in scope — they pass on structural grounds.
720
+
721
+ **Broader than existing `interactiveHasLabel` check (#12)**: #12's
722
+ INTERACTIVE_TYPES set uses Check/Toggle but skips Input/CheckBox/Switch
723
+ (the registry-aliased forms the harvester emits) — that's why
724
+ auth-signin-card-password slipped through pre-§165. #19's set covers
725
+ both alias forms + 19 total interactive types + accepts icon-only Buttons
726
+ via `icon` OR `aria-label`.
727
+
728
+ Score weight: 6 (between `noBareDivs:7` and `flatAdjacency:5`). Per-violation
729
+ deduction. Doesn't flip overall validity unless 4+ leaf types are empty.
730
+
731
+ ### Added — `components-have-renderable-content.test.js` (+281 LOC, 20 tests, NEW)
732
+
733
+ `packages/a2ui/validator/components-have-renderable-content.test.js`
734
+ pins the §165 check across 8 describe groups:
735
+
736
+ - 19 standalone fixtures asserting check FAILS pre-content + PASSES
737
+ post-content for Input/CheckBox/Switch/Button/Text/Image
738
+ - Icon-only Button + aria-label-only Button pass
739
+ - Container nodes (Card/Column/Row/Section) untouched
740
+ - Full pre-§163 `auth-signin-card-password` tree FAILS with all 5
741
+ expected violations called out by id
742
+ - Post-§163 tree PASSES
743
+
744
+ ### Changed — `version`: `0.5.3` → `0.5.4`.
745
+ ## [0.5.3] - 2026-05-14
746
+
747
+ _No pending changes._
748
+ ## [0.5.2] - 2026-05-13
749
+
750
+ _Lockstep ride-along (no source change)._
751
+ ## [0.5.1] - 2026-05-13
752
+
753
+ _Lockstep ride-along (no source change)._
754
+ ## [0.5.0] - 2026-05-13
755
+
756
+ _Lockstep ride-along (no source change)._
757
+ ## [0.4.9] - 2026-05-13
758
+
759
+ _No pending changes._
760
+ ## [0.4.8] - 2026-05-12
761
+
762
+ ### Ride-along (no source changes)
763
+
764
+ Lockstep PATCH cut alongside `@adia-ai/web-components@0.4.8` (§80 event-types codegen for 38 non-form primitives + §85 class-subpath script fix + §89 icons.js split + B+C+D consumer-friction infra), `@adia-ai/web-modules@0.4.8` (FEEDBACK-02 #1 `.d.ts` shipment + `composes:` ADR-0027 wiring), `@adia-ai/a2ui-compose@0.4.8` (§87 zettel `ensureBooted()` race fix + §88 free-form composition mode), `@adia-ai/a2ui-corpus@0.4.8` (catalog regen ride-along), `@adia-ai/a2ui-mcp@0.4.8` (§87 eval threshold rebaseline). Source byte-identical to v0.4.7.
765
+
766
+ 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.8]`](../../../CHANGELOG.md) for the cut narrative.
767
+ ## [0.4.7] - 2026-05-12
768
+
769
+ ### Ride-along (no source changes)
770
+
771
+ Lockstep PATCH cut alongside `@adia-ai/web-components@0.4.7` (§74 `.d.ts` codegen for 73 non-form primitives + §77 non-side-effect `class` subpath per component + class.js helper extractions in agent + toolbar primitives), `@adia-ai/web-modules@0.4.7`, `@adia-ai/a2ui-compose@0.4.7` (§72 `getComponentCatalog()` reads canonical catalog), `@adia-ai/a2ui-corpus@0.4.7` (§72 `corpus/patterns/` + `corpus/compositions/` retired from disk + tarball — v0.4.6 §65 carry-over closed), `@adia-ai/a2ui-mcp@0.4.7`, `@adia-ai/a2ui-retrieval@0.4.7` (§72 vocab reads canonical catalog + dead pattern-embeddings retired). Source byte-identical to v0.4.6.
772
+
773
+ 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.7]`](../../../CHANGELOG.md) for the cut narrative.
774
+ ## [0.4.6] - 2026-05-12
775
+
776
+ ### Ride-along (no source changes)
777
+
778
+ Lockstep PATCH cut alongside `@adia-ai/web-components@0.4.6` (§68 .d.ts shipment + USAGE.md + `defineIfFree` + NEW `<toggle-scheme-ui>` primitive + `<pane-ui>` resize tracking 1:1), `@adia-ai/web-modules@0.4.6` (`<editor-sidebar>` resize-state detection widened via `:has()`), `@adia-ai/a2ui-compose@0.4.6` (§66 canonical `.a2ui.json` sidecars in `buildSystemPrompt` + §64 composition-library canonical retrieval), `@adia-ai/a2ui-corpus@0.4.6` (§63 settings-admin-page Mode A + 12 antipattern fixes + chunk re-harvest), `@adia-ai/a2ui-retrieval@0.4.6` (§64 pattern-library retirement, consumers migrated to composition-library), `@adia-ai/a2ui-mcp@0.4.6` (§64 step 5 patterns surface retired from server.js + eval-fix.mjs). Source byte-identical to v0.4.5.
779
+
780
+ 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.6]`](../../../CHANGELOG.md) for the cut narrative.
781
+ ## [0.4.5] - 2026-05-12
782
+
783
+ ### Ride-along (no source changes)
784
+
785
+ Lockstep PATCH cut alongside `@adia-ai/web-components@0.4.5` (§61 CSS subpath exports + CustomEvent.detail sweep across 17 form-bearing primitives + slider reactivity test lock-in + §52 design-tokens export module + UI), `@adia-ai/web-modules@0.4.5` (§61 CSS subpath exports — six cluster `*.css` exports), `@adia-ai/a2ui-compose@0.4.5` (§56 system-prompt CORPUS CONTEXT block in monolithic strategies), `@adia-ai/llm@0.4.5` (§54 doc-comment path refresh). Source byte-identical to v0.4.4.
786
+
787
+ 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.5]`](../../../CHANGELOG.md) for the cut narrative.
788
+ ## [0.4.4] - 2026-05-12
789
+
790
+ ### Ride-along (no source changes)
791
+
792
+ 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.
793
+
794
+ 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.
795
+ ## [0.4.3] - 2026-05-11
796
+
797
+ ### Ride-along (no source changes)
798
+
799
+ Lockstep PATCH cut alongside `@adia-ai/web-components@0.4.3` (input-ui type=number locale + thousands grouping + hold-to-repeat) + `@adia-ai/a2ui-compose@0.4.3` + `@adia-ai/a2ui-retrieval@0.4.3` (process.env browser-compat fix) + `@adia-ai/a2ui-corpus@0.4.3` (catalog regen + chunks re-harvest with new settings-appearance pattern). Source byte-identical to v0.4.2.
800
+
801
+ 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.3]`](../../../CHANGELOG.md) for the cut narrative.
802
+ ## [0.4.2] - 2026-05-11
803
+
804
+ ### Ride-along (no source changes)
805
+
806
+ Lockstep PATCH cut alongside `@adia-ai/web-components@0.4.2` (`<input-ui type="number">` rewrite drops native `<input type=number>` wrapping) + `@adia-ai/web-modules@0.4.2` (`<editor-sidebar>` grid-track width-mirror fix). Source byte-identical to v0.4.1.
807
+
808
+ 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.2]`](../../../CHANGELOG.md) for the cut narrative.
809
+ ## [0.4.1] - 2026-05-10
810
+
811
+ ### Added
812
+
813
+ - **Semantic-validator Phase 3 foundation** (per [.claude/docs/specs/semantic-validator.md](../../../.claude/docs/specs/semantic-validator.md) § Phase 3 — rule-based fast-path):
814
+ - `semantic/intent-specs.js` — registry of 10 `IntentSpec` entries covering dominant intent classes: `auth.signup`, `auth.signin`, `auth.password-reset`, `dashboard.analytics`, `data-table.list`, `form.settings`, `form.contact`, `chat.conversation`, `commerce.cart`, `errors.not-found`.
815
+ - `semantic/classify-intent.js` — `classifyIntent()` regex classifier + `scoreAgainstSpec()` deterministic A2UI-tree scorer. Returns rule verdict with certainty 0..1 (≥ 0.9 = LLM-skip eligible per spec § 3c hybrid).
816
+ - 18 unit tests covering registry hygiene, regex match against 6 dominant intents, clean-pass / clean-fail / partial-verdict scoring, nested A2UI tree traversal.
817
+
818
+ ### Changed
819
+
820
+ - Spec status updated in `.claude/docs/specs/semantic-validator.md` to reflect Phase 3 foundation shipped (NOT yet wired into `validateSemantics()` — integration deferred until shadow-compare runs prove ≥ 95% agreement with LLM judge).
821
+
822
+ ### Notes
823
+
824
+ - The classifier is NOT yet called from `validateSemantics()`. Phase 3 integration requires (a) the shadow-compare runs from the spec's exit criteria, and (b) a `judge.js` extension to accept rule-verdict hints when falling through to LLM. Both planned for a follow-up cut.
825
+ ## [0.4.0] - 2026-05-10
826
+
827
+ ### Ride-along (no source changes)
828
+
829
+ Lockstep MINOR cut alongside `@adia-ai/web-modules@0.4.0` (ADR-0024 legacy shell shapes retired). Source byte-identical to v0.3.6.
830
+
831
+ Internal `@adia-ai/*` dep ranges bumped from `^0.3.0` to `^0.4.0`. See root [CHANGELOG.md `## [0.4.0]`](../../../CHANGELOG.md) for the cut narrative.
832
+ ## [0.3.6] - 2026-05-10
833
+
834
+ ### Ride-along (no source changes)
835
+
836
+ Lockstep version bump only — source byte-identical to v0.3.5. Internal `@adia-ai/*` dep ranges remain at `^0.3.0`. See root [CHANGELOG.md `## [0.3.6]`](../../../CHANGELOG.md) for the cut narrative.
837
+ ## [0.3.5] - 2026-05-07
838
+
839
+ ### Ride-along (no source changes)
840
+
841
+ Lockstep version bump only — source byte-identical to v0.3.4. Internal `@adia-ai/*` dep ranges remain at `^0.3.0`. See root [CHANGELOG.md `## [0.3.5]`](../../../CHANGELOG.md) for the cut narrative.
842
+ ## [0.3.4] - 2026-05-07
843
+
844
+ ### Ride-along (no source changes)
845
+
846
+ Lockstep version bump only — source byte-identical to v0.3.3. Internal `@adia-ai/*` dep ranges remain at `^0.3.0`. See root [CHANGELOG.md `## [0.3.4]`](../../../CHANGELOG.md) for the cut narrative.
847
+ ## [0.3.3] - 2026-05-07
848
+
849
+ **Lockstep cut.** All 9 published `@adia-ai/*` packages now share version `0.3.3`, governed by [`.claude/docs/specs/package-architecture.md` § 15](../../../.claude/docs/specs/package-architecture.md#15-versioning-policy).
850
+
851
+ ### Changed
852
+
853
+ - `version`: `0.3.2` → `0.3.3`.
854
+ - `dependencies["@adia-ai/...]`: `^0.3.0` (patch-cut asymmetry — caret already covers 0.3.x; ranges unchanged).
855
+
856
+ ### No source changes
857
+
858
+ `@adia-ai/a2ui-validator` source is byte-identical to `0.3.2`. The cut is a version bump + ride-along on the lockstep policy.
859
+ ## [0.3.2] - 2026-05-06
860
+
861
+ **9-package lockstep patch cut to v0.3.2.** All lockstep members share
862
+ one version per [`.claude/docs/specs/package-architecture.md` § 15](../../../.claude/docs/specs/package-architecture.md#15-versioning-policy).
863
+ Internal `@adia-ai/*` dep ranges unchanged at `^0.3.0`.
864
+
865
+ ### No source changes
866
+
867
+ This package's source is byte-identical to v0.3.1. The cut bumps
868
+ version only.
869
+
870
+ ### Changed
871
+
872
+ - `version`: `0.3.1` → `0.3.2`.
873
+ ## [0.3.1] - 2026-05-06
874
+
875
+ **9-package lockstep patch cut.** All 9 published `@adia-ai/*` packages bump 0.3.0 → 0.3.1 per [`.claude/docs/specs/package-architecture.md` § 15](../../../.claude/docs/specs/package-architecture.md#15-versioning-policy). Internal `@adia-ai/*` dep ranges remain at `^0.3.0` (covers `0.3.1` under semver — patch-cut asymmetry).
876
+
877
+ This package itself ships **no source changes** in v0.3.1. The cut bumps version only — substantive content lives in [`@adia-ai/web-components`](https://github.com/adiahealth/gen-ui-kit/releases/tag/web-components-v0.3.1) (folder-per-trait restructure; barrel API unchanged).
878
+
879
+ ### Changed
880
+
881
+ - `version`: `0.3.0` → `0.3.1`.
882
+ - Internal `@adia-ai/*` dep ranges: unchanged at `^0.3.0` (covers `0.3.1` under semver — patch-cut asymmetry).
883
+ ## [0.3.0] - 2026-05-05
884
+
885
+ **9-package lockstep cut.** All 9 published `@adia-ai/*` packages bump 0.2.5 → 0.3.0 per [`.claude/docs/specs/package-architecture.md` § 15](../../../.claude/docs/specs/package-architecture.md#15-versioning-policy). Internal `@adia-ai/*` dep ranges bump `^0.2.0` → `^0.3.0`.
886
+
887
+ The lockstep policy expanded from 8 to 9 packages with this cut — `@adia-ai/llm` joins as a 9th member, and `@adia-ai/a2ui-utils` was renamed to `@adia-ai/a2ui-runtime`. This package's `dependencies` updated accordingly.
888
+
889
+ This package itself ships **no source changes** in v0.3.0. The cut bumps version + dep range only.
890
+
891
+ ### Changed
892
+
893
+ - `dependencies["@adia-ai/a2ui-utils"]` removed; replaced by `dependencies["@adia-ai/a2ui-runtime"]: ^0.3.0` (rename + bump).
894
+ - `version`: `0.2.5` → `0.3.0`.
895
+ ## [0.2.5] - 2026-05-04
896
+
897
+ **8-package lockstep cut.** All 8 published `@adia-ai/*` packages bump 0.2.4 → 0.2.5 per [`.claude/docs/specs/package-architecture.md` § 15](../../../.claude/docs/specs/package-architecture.md#15-versioning-policy). Internal `@adia-ai/*` dep ranges remain at `^0.2.0` (covers 0.2.5 under semver — patch-cut asymmetry).
898
+
899
+ This is a **patch cut on top of v0.2.4, no BREAKING changes.** Substantive content lives in `web-components` (new `<fields-ui>` form-grid primitive + `draggable-list-item` last-item drop-zone fix, both surfaced by the Tasks UI Playground at `.claude/docs/projects/tasks-playground/`); `a2ui-corpus` ships a catalog regen for the new `<fields-ui>` yaml. `a2ui-validator` rides along at version bump only — no source change.
900
+
901
+ ### Changed
902
+
903
+ - `version`: `0.2.4` → `0.2.5`.
904
+ - Internal `@adia-ai/*` dep ranges: unchanged at `^0.2.0` (covers `0.2.5` under semver — patch-cut asymmetry).
905
+ ## [0.2.4] - 2026-05-04
906
+
907
+ **8-package lockstep cut.** All 8 published `@adia-ai/*` packages bump 0.2.3 → 0.2.4 per [`.claude/docs/specs/package-architecture.md` § 15](../../../.claude/docs/specs/package-architecture.md#15-versioning-policy). Internal `@adia-ai/*` dep ranges remain at `^0.2.0` (covers 0.2.4 under semver — patch-cut asymmetry).
908
+
909
+ This is a **patch cut on top of v0.2.3, no BREAKING changes.** Substantive content lives in `web-components` (Tier 4 trait library lift, 11 new traits + 2 architectural rewrites, plus accumulated bug fixes); `a2ui-corpus` ships a catalog regen for the new `<demo-toggle-ui>` primitive. Six packages ride along at version + dep-range bump.
910
+
911
+ ### Changed
912
+
913
+ - `version`: `0.2.3` → `0.2.4`.
914
+ - `dependencies["@adia-ai/a2ui-utils"]`: `^0.2.0` (covers `0.2.4`).
915
+
916
+ This package's source tree is byte-identical to 0.2.3. The cut bumps version + the internal dep range only, per the lockstep policy.
917
+
918
+ _Nothing yet._
919
+
920
+ ---
921
+
922
+ ---
923
+ ## [0.2.3] - 2026-05-04
924
+
925
+ **Lockstep cut.** All 8 published `@adia-ai/*` packages bump
926
+ 0.2.2 → 0.2.3 per
927
+ [`.claude/docs/specs/package-architecture.md` § 15](../../../.claude/docs/specs/package-architecture.md#15-versioning-policy).
928
+ Patch cut — no breaking changes.
929
+
930
+ ### Changed
931
+
932
+ - `version`: `0.2.2` → `0.2.3`.
933
+
934
+ ### No source changes
935
+
936
+ `@adia-ai/a2ui-validator` source is byte-identical to `0.2.2`. The cut bumps version only.
937
+ ## [0.2.2] - 2026-05-02
938
+
939
+ **Lockstep cut.** All 8 published `@adia-ai/*` packages bump 0.2.1 → 0.2.2 per [`.claude/docs/specs/package-architecture.md` § 15](../../../.claude/docs/specs/package-architecture.md#15-versioning-policy). Patch cut — no breaking changes.
940
+
941
+ ### Changed
942
+
943
+ - `version`: `0.2.1` → `0.2.2`.
944
+
945
+ ### No source changes
946
+
947
+ `a2ui-validator` source is byte-identical to `0.2.1`. The cut bumps version only.
948
+
949
+ ---
950
+ ## [0.2.1] - 2026-05-02
951
+
952
+ **Lockstep cut.** All 8 published `@adia-ai/*` packages bump 0.2.0 → 0.2.1 per [`.claude/docs/specs/package-architecture.md` § 15](../../../.claude/docs/specs/package-architecture.md#15-versioning-policy). Patch cut — no breaking changes.
953
+
954
+ ### Changed
955
+
956
+ - `version`: `0.2.0` → `0.2.1`.
957
+
958
+ ### No source changes
959
+
960
+ `a2ui-validator` source is byte-identical to `0.2.0`. The cut bumps version only.
961
+
962
+ ---
963
+ ## [0.2.0] - 2026-05-02
964
+
965
+ **Lockstep cut.** All 8 published `@adia-ai/*` packages now share one
966
+ version, governed by [`.claude/docs/specs/package-architecture.md` § 15
967
+ (Versioning Policy)](../../../.claude/docs/specs/package-architecture.md#15-versioning-policy).
968
+
969
+ ### Changed
970
+
971
+ - `version`: `0.0.1` → `0.2.0`.
972
+ - `dependencies["@adia-ai/a2ui-utils"]`: `^0.0.2` → `^0.2.0`.
973
+
974
+ ### No source changes
975
+
976
+ Validator source (JSON-Schema validator + catalog-aware semantic
977
+ validator + 17 rule modules) is byte-identical to 0.0.1. The cut
978
+ bumps version + the internal dep range only.
979
+
980
+ ---
981
+ ## [0.0.1] - 2026-04-24
982
+
983
+ First public release. Extracted from
984
+ [`@adia-ai/a2ui-compose`](../../gen-ui/compose/) during the 2026-04-24
985
+ consolidation.
986
+
987
+ ### Included
988
+
989
+ - **Structural validator** (`validator.js`) — JSON Schema validation
990
+ against the A2UI protocol schema via `ajv` + `ajv-formats`. Returns
991
+ `{ valid, errors }`.
992
+ - **Catalog validator** (`catalog-validator.js`) — semantic checks:
993
+ component-exists, props-match-YAML, references-resolve. Consumed by
994
+ the compose engine's post-generation validator pass and by CI
995
+ drift gates.
996
+ - **Semantic validator** (`semantic/`) — optional LLM-judged rubric
997
+ scoring in shadow mode. Disk-cached by content hash; gated behind
998
+ `--semantic` flag in `eval-diff.mjs`. See
999
+ [`.claude/docs/specs/semantic-validator.md`](https://github.com/adiahealth/gen-ui-kit/blob/main/docs/specs/semantic-validator.md).
1000
+
1001
+ ### Dependencies
1002
+
1003
+ - `@adia-ai/a2ui-utils` — A2UI registry + runtime primitives.
1004
+ - `ajv` ^8 — JSON Schema validator.
1005
+ - `ajv-formats` ^3 — standard format validators (uri, date, etc.).