@adia-ai/a2ui-compose 0.7.28 → 0.8.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
@@ -1,4 +1,8 @@
1
1
  # Changelog — @adia-ai/a2ui-compose
2
+ ## [0.8.0] — 2026-07-15
3
+
4
+ ### Changed
5
+ - **`strategies/monolithic/_shared.js` — token-name sweep** onto `--md-sys-color-*` (Material color-token adoption, lockstep with @adia-ai/web-components@0.8.0 — see that CHANGELOG + `.claude/docs/MIGRATION GUIDE.md` § v0.8.0).
2
6
  ## [0.7.28] — 2026-07-14
3
7
 
4
8
  A2UI pipeline overhaul (comparing gen-ui-kit's system against a sibling
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adia-ai/a2ui-compose",
3
- "version": "0.7.28",
3
+ "version": "0.8.0",
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": {
@@ -72,9 +72,9 @@
72
72
  "directory": "packages/a2ui/compose"
73
73
  },
74
74
  "dependencies": {
75
- "@adia-ai/a2ui-runtime": "^0.7.0",
76
- "@adia-ai/a2ui-retrieval": "^0.7.0",
77
- "@adia-ai/a2ui-validator": "^0.7.0",
78
- "@adia-ai/llm": "^0.7.0"
75
+ "@adia-ai/a2ui-runtime": "^0.8.0",
76
+ "@adia-ai/a2ui-retrieval": "^0.8.0",
77
+ "@adia-ai/a2ui-validator": "^0.8.0",
78
+ "@adia-ai/llm": "^0.8.0"
79
79
  }
80
80
  }
@@ -522,7 +522,7 @@ THEMING (apply to any container to theme its entire subtree):
522
522
  - Or use the theme-ui provider: { component: "Theme", preset: "ocean", children: [...] }
523
523
 
524
524
  TOKEN OVERRIDES (use style prop for precise control — sparingly):
525
- - { component: "Card", style: "--card-bg: var(--a-accent-muted)" } — override card background
525
+ - { component: "Card", style: "--card-bg: var(--md-sys-color-primary-container)" } — override card background
526
526
  - { component: "Button", style: "--button-radius: 999px" } — pill-shaped button
527
527
  - The renderer sets el.style.cssText for the style prop.
528
528
  - Prefer semantic attributes (variant, size, color) over style overrides.