@adia-ai/a2ui-runtime 0.5.20 → 0.6.0

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
@@ -12,6 +12,16 @@ Follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/) and
12
12
 
13
13
  _No pending changes._
14
14
 
15
+ ## [0.6.0] - 2026-05-18
16
+
17
+ _Lockstep ride-along (no source change in this package; companion to web-components v0.6.0 — see root CHANGELOG)._
18
+
19
+ **MINOR-line internal-dep range update:** internal `@adia-ai/*` dependency ranges move from `^0.5.0` to `^0.6.0` per AdiaUI lockstep policy.
20
+
21
+ ## [0.5.21] - 2026-05-18
22
+
23
+ _Lockstep ride-along (no source change in this package; companion to web-components v0.5.21 — see root CHANGELOG)._
24
+
15
25
  ## [0.5.20] - 2026-05-18
16
26
 
17
27
  _Lockstep ride-along (no source change in this package; companion to web-components v0.5.20 — see root CHANGELOG)._
@@ -0,0 +1,4 @@
1
+ // v0.5.21 hotfix stub — TS-migration Phase 1 (568bb998d) declared this
2
+ // types: export but Phase 2 hasn't generated real declarations yet.
3
+ // Replace with real type declarations when Phase 2 lands.
4
+ export {};
package/package.json CHANGED
@@ -1,16 +1,44 @@
1
1
  {
2
2
  "name": "@adia-ai/a2ui-runtime",
3
- "version": "0.5.20",
3
+ "version": "0.6.0",
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.",
5
5
  "type": "module",
6
6
  "exports": {
7
- ".": "./index.js",
8
- "./registry": "./registry.js",
9
- "./renderer": "./renderer.js",
10
- "./streams": "./stream.js",
11
- "./surface": "./surface.js",
12
- "./wiring": "./wiring-engine.js",
13
- "./dockables": "./dockables/index.js"
7
+ ".": {
8
+ "types": "./index.d.ts",
9
+ "import": "./index.js",
10
+ "default": "./index.js"
11
+ },
12
+ "./registry": {
13
+ "types": "./registry.d.ts",
14
+ "import": "./registry.js",
15
+ "default": "./registry.js"
16
+ },
17
+ "./renderer": {
18
+ "types": "./renderer.d.ts",
19
+ "import": "./renderer.js",
20
+ "default": "./renderer.js"
21
+ },
22
+ "./streams": {
23
+ "types": "./stream.d.ts",
24
+ "import": "./stream.js",
25
+ "default": "./stream.js"
26
+ },
27
+ "./surface": {
28
+ "types": "./surface.d.ts",
29
+ "import": "./surface.js",
30
+ "default": "./surface.js"
31
+ },
32
+ "./wiring": {
33
+ "types": "./wiring-engine.d.ts",
34
+ "import": "./wiring-engine.js",
35
+ "default": "./wiring-engine.js"
36
+ },
37
+ "./dockables": {
38
+ "types": "./dockables/index.d.ts",
39
+ "import": "./dockables/index.js",
40
+ "default": "./dockables/index.js"
41
+ }
14
42
  },
15
43
  "files": [
16
44
  "*.js",