@adia-ai/a2ui-runtime 0.5.3 → 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 +22 -0
- package/package.json +2 -2
- package/registry.js +5 -1
package/CHANGELOG.md
CHANGED
|
@@ -13,6 +13,28 @@ 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
|
+
|
|
26
|
+
## [0.5.4] - 2026-05-14
|
|
27
|
+
|
|
28
|
+
### Changed — lockstep ride-along; no source changes
|
|
29
|
+
|
|
30
|
+
`version`: `0.5.3` → `0.5.4`. Source byte-identical to `0.5.3`.
|
|
31
|
+
Tarball changes: none.
|
|
32
|
+
|
|
33
|
+
Tracking the v0.5.4 cycle's prop-fidelity arcs (§163 transpiler fix,
|
|
34
|
+
§164 chunk re-harvest, §165 validator check #19, §166a/b/c audit-script
|
|
35
|
+
family slots 12+13 + smoke shift-left): see root `CHANGELOG.md` for the
|
|
36
|
+
full narrative. This package carries no source changes this cycle.
|
|
37
|
+
|
|
16
38
|
## [0.5.3] - 2026-05-14
|
|
17
39
|
|
|
18
40
|
_No pending changes._
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adia-ai/a2ui-runtime",
|
|
3
|
-
"version": "0.5.
|
|
4
|
-
"description": "A2UI runtime
|
|
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',
|
|
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'],
|