@adia-ai/a2ui-compose 0.2.4 → 0.2.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/package.json +13 -13
package/CHANGELOG.md CHANGED
@@ -12,6 +12,17 @@ generator graph.
12
12
 
13
13
  _No pending changes._
14
14
 
15
+ ## [0.2.5] - 2026-05-04
16
+
17
+ **8-package lockstep cut.** All 8 published `@adia-ai/*` packages bump 0.2.4 → 0.2.5 per [`docs/specs/package-architecture.md` § 15](../../../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).
18
+
19
+ 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 `docs/projects/tasks-playground/`); `a2ui-corpus` ships a catalog regen for the new `<fields-ui>` yaml. `a2ui-compose` rides along at version bump only — no source change.
20
+
21
+ ### Changed
22
+
23
+ - `version`: `0.2.4` → `0.2.5`.
24
+ - Internal `@adia-ai/*` dep ranges: unchanged at `^0.2.0` (covers `0.2.5` under semver — patch-cut asymmetry).
25
+
15
26
  ## [0.2.4] - 2026-05-04
16
27
 
17
28
  **8-package lockstep cut.** All 8 published `@adia-ai/*` packages bump 0.2.3 → 0.2.4 per [`docs/specs/package-architecture.md` § 15](../../../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).
package/package.json CHANGED
@@ -1,20 +1,20 @@
1
1
  {
2
2
  "name": "@adia-ai/a2ui-compose",
3
- "version": "0.2.4",
4
- "description": "AdiaUI A2UI compose engine framework-agnostic. Takes natural-language intents + a catalog and produces A2UI protocol messages. Pairs with `@adia-ai/a2ui-retrieval` (intent classification, catalog lookup) and `@adia-ai/a2ui-validator` (schema + semantic checks).",
3
+ "version": "0.2.5",
4
+ "description": "AdiaUI A2UI compose engine \u2014 framework-agnostic. Takes natural-language intents + a catalog and produces A2UI protocol messages. Pairs with `@adia-ai/a2ui-retrieval` (intent classification, catalog lookup) and `@adia-ai/a2ui-validator` (schema + semantic checks).",
5
5
  "type": "module",
6
6
  "exports": {
7
- ".": "./index.js",
8
- "./core": "./core/generator.js",
9
- "./strategies/zettel": "./strategies/zettel/generator-adapter.js",
10
- "./strategies/registry": "./strategies/registry.js",
11
- "./llm": "./llm/llm-bridge.js",
12
- "./llm/*": "./llm/*.js",
13
- "./transpiler": "./transpiler/transpiler.js",
14
- "./evals": "./evals/harness.mjs",
15
- "./engine": "./core/generator.js",
16
- "./engines/zettel": "./strategies/zettel/generator-adapter.js",
17
- "./engines/registry": "./strategies/registry.js"
7
+ ".": "./index.js",
8
+ "./core": "./core/generator.js",
9
+ "./strategies/zettel": "./strategies/zettel/generator-adapter.js",
10
+ "./strategies/registry": "./strategies/registry.js",
11
+ "./llm": "./llm/llm-bridge.js",
12
+ "./llm/*": "./llm/*.js",
13
+ "./transpiler": "./transpiler/transpiler.js",
14
+ "./evals": "./evals/harness.mjs",
15
+ "./engine": "./core/generator.js",
16
+ "./engines/zettel": "./strategies/zettel/generator-adapter.js",
17
+ "./engines/registry": "./strategies/registry.js"
18
18
  },
19
19
  "files": [
20
20
  "core/",