@adia-ai/a2ui-runtime 0.5.4 → 0.5.5

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
@@ -13,6 +13,16 @@ Follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/) and
13
13
 
14
14
  _No pending changes._
15
15
 
16
+ ## [0.5.5] - 2026-05-14
17
+
18
+ ### Changed — §176 (v0.5.5) — legacy registry alias removal
19
+
20
+ Removed `['Chat', 'chat-ui']` entry from `registry.js`. Renamed to `chat-thread-ui` in pre-0.2.0; zero current usage in codebase (verified by grep). Was a §175 baseline orphan; removing the registry entry closes it cleanly.
21
+
22
+ Net: -1 entry; **192 total registry entries** at v0.5.5.
23
+
24
+ Commit `443365913`. See root CHANGELOG and journal §176 for full context.
25
+
16
26
  ## [0.5.4] - 2026-05-14
17
27
 
18
28
  ### Changed — lockstep ride-along; no source changes
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@adia-ai/a2ui-runtime",
3
- "version": "0.5.4",
4
- "description": "A2UI runtime renderer, registry, streams, surface manifest, and wiring primitives for the A2UI (Agent-to-UI) protocol. Framework-agnostic; pairs with any A2UI-conformant component set.",
3
+ "version": "0.5.5",
4
+ "description": "A2UI runtime \u2014 renderer, registry, streams, surface manifest, and wiring primitives for the A2UI (Agent-to-UI) protocol. Framework-agnostic; pairs with any A2UI-conformant component set.",
5
5
  "type": "module",
6
6
  "exports": {
7
7
  ".": "./index.js",
package/registry.js CHANGED
@@ -205,7 +205,11 @@ export const registry = new Map([
205
205
  ['ActionList', 'action-list-ui'],
206
206
  ['Inspector', 'inspector-ui'],
207
207
  ['Heatmap', 'heatmap-ui'],
208
- ['Chat', 'chat-ui'],
208
+ // §176 (v0.5.5): removed legacy `['Chat', 'chat-ui']` alias. Renamed
209
+ // to chat-thread-ui in pre-0.2.0; zero usage in current codebase
210
+ // (verified with `grep -rE '<chat-ui|\\bChat\\b\\s*\\(' packages apps`
211
+ // returning no real callers). Was a §175 baseline orphan; removing
212
+ // the registry entry closes it cleanly.
209
213
  ['ChatThread', 'chat-thread'], // §49 — re-routed to the chat web-module (was: chat-thread-ui primitive). The module owns scroll-to-bottom + streaming; primitive remains accessible via bare `chat-thread-ui` tag.
210
214
  ['ChatInput', 'chat-input-ui'],
211
215
  ['OptionCard', 'option-card-ui'],