@adia-ai/web-components 0.7.9 → 0.7.10

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adia-ai/web-components",
3
- "version": "0.7.9",
3
+ "version": "0.7.10",
4
4
  "description": "AdiaUI web components \u2014 vanilla custom elements. A2UI runtime (renderer, registry, streams, wiring) lives in @adia-ai/a2ui-runtime.",
5
5
  "type": "module",
6
6
  "types": "./index.d.ts",
@@ -47,6 +47,7 @@
47
47
  @import "../components/timeline/timeline.css";
48
48
  @import "../components/upload/upload.css";
49
49
  @import "../components/card/card.css";
50
+ @import "../components/frame/frame.css";
50
51
  @import "../components/avatar/avatar.css";
51
52
  @import "../components/progress/progress.css";
52
53
  @import "../components/skeleton/skeleton.css";
package/styles/verse.css CHANGED
@@ -50,7 +50,7 @@
50
50
  /* ── Radius — verse register: tighter bounds (max 16px). Re-declares the
51
51
  clamps so they resolve verse's min/max (base clamps compute at :root). ── */
52
52
  --a-radius-min: 0.25rem; /* 4px */
53
- --a-radius-max: 1rem; /* 16px */
53
+ --a-radius-max: 0.75rem; /* 16px */
54
54
  --a-radius-xs: clamp(var(--a-radius-min), calc(var(--a-radius-k) * var(--a-radius-max) * var(--a-radius-xs-k)), var(--a-radius-max));
55
55
  --a-radius-sm: clamp(var(--a-radius-min), calc(var(--a-radius-k) * var(--a-radius-max) * var(--a-radius-sm-k)), var(--a-radius-max));
56
56
  --a-radius-md: clamp(var(--a-radius-min), calc(var(--a-radius-k) * var(--a-radius-max) * var(--a-radius-md-k)), var(--a-radius-max));
@@ -109,10 +109,10 @@
109
109
  roles → -sm, text/data roles → -md. The global [size] rules override these
110
110
  on [size]-bearing elements (resolving verse's sm/lg token values). */
111
111
  [verse]:not([size]) {
112
- --a-display-size: var(--a-display-sm);
113
- --a-title-size: var(--a-title-sm);
114
- --a-heading-size: var(--a-heading-sm);
115
- --a-section-size: var(--a-section-sm);
112
+ --a-display-size: var(--a-display-md);
113
+ --a-title-size: var(--a-title-md);
114
+ --a-heading-size: var(--a-heading-md);
115
+ --a-section-size: var(--a-section-md);
116
116
  --a-subsection-size: var(--a-subsection-md);
117
117
  --a-body-size: var(--a-body-md);
118
118
  --a-deck-size: var(--a-deck-md);