@adia-ai/a2ui-compose 0.7.11 → 0.7.12

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
@@ -1,5 +1,10 @@
1
1
  # Changelog — @adia-ai/a2ui-compose
2
2
 
3
+ ## [0.7.12] — 2026-06-04
4
+
5
+ ### Changed
6
+ - **`data-theme` → `theme` in the monolithic compose strategy's LLM prompt** (`strategies/monolithic/_shared.js`) — the repo-wide token-attribute rename (see `@adia-ai/web-components`) reached the compose guidance, so generated UIs emit `theme="…"` not `data-theme="…"`. Otherwise a lockstep version bump (9-package coherence per `scripts/release/check-lockstep.mjs`).
7
+
3
8
  ## [0.7.11] — 2026-06-04
4
9
 
5
10
  ### Maintenance
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adia-ai/a2ui-compose",
3
- "version": "0.7.11",
3
+ "version": "0.7.12",
4
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": {
@@ -516,7 +516,7 @@ APPEARANCE ATTRIBUTES (set directly on component props):
516
516
  - align: "left|center|right" — text/content alignment
517
517
 
518
518
  THEMING (apply to any container to theme its entire subtree):
519
- - { component: "Column", "data-theme": "ocean" } — named theme (ocean, forest, sunset, lavender, rose, slate, midnight)
519
+ - { component: "Column", "theme": "ocean" } — named theme (ocean, forest, sunset, lavender, rose, slate, midnight)
520
520
  - Or use the theme-ui provider: { component: "Theme", preset: "ocean", children: [...] }
521
521
 
522
522
  TOKEN OVERRIDES (use style prop for precise control — sparingly):