@adia-ai/web-components 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.
Files changed (42) hide show
  1. package/CHANGELOG.md +17 -1
  2. package/README.md +2 -2
  3. package/USAGE.md +2 -2
  4. package/components/theme-provider/theme-provider.a2ui.json +88 -0
  5. package/components/theme-provider/theme-provider.class.js +134 -0
  6. package/components/theme-provider/theme-provider.css +18 -0
  7. package/components/theme-provider/theme-provider.d.ts +45 -0
  8. package/components/theme-provider/theme-provider.js +22 -0
  9. package/components/theme-provider/theme-provider.test.js +94 -0
  10. package/components/theme-provider/theme-provider.yaml +96 -0
  11. package/dist/host.min.css +1 -1
  12. package/dist/host.sheet.js +11 -0
  13. package/dist/prose.min.css +1 -0
  14. package/dist/prose.sheet.js +11 -0
  15. package/dist/themes.min.css +1 -0
  16. package/dist/themes.sheet.js +11 -0
  17. package/dist/verse.min.css +1 -0
  18. package/dist/verse.sheet.js +11 -0
  19. package/dist/web-components.min.css +1 -1
  20. package/dist/web-components.sheet.js +11 -0
  21. package/package.json +5 -1
  22. package/styles/README.md +1 -1
  23. package/styles/colors/parameters.css +1 -1
  24. package/styles/colors/primitives-accent.css +1 -1
  25. package/styles/colors/primitives-brand.css +1 -1
  26. package/styles/colors/primitives-danger.css +1 -1
  27. package/styles/colors/primitives-info.css +1 -1
  28. package/styles/colors/primitives-neutral.css +1 -1
  29. package/styles/colors/primitives-success.css +1 -1
  30. package/styles/colors/primitives-warning.css +1 -1
  31. package/styles/colors/scrims.css +1 -1
  32. package/styles/colors/semantics/aliases.css +1 -1
  33. package/styles/colors/semantics/buckets.css +1 -1
  34. package/styles/colors/semantics/core.css +1 -1
  35. package/styles/colors/semantics/data-viz.css +1 -1
  36. package/styles/colors/semantics/features.css +1 -1
  37. package/styles/colors/surfaces.css +1 -1
  38. package/styles/components.css +1 -0
  39. package/styles/design-tokens-export.js +1 -1
  40. package/styles/host.css +1 -1
  41. package/styles/prose.css +1 -1
  42. package/styles/themes.css +12 -12
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adia-ai/web-components",
3
- "version": "0.7.11",
3
+ "version": "0.7.12",
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",
@@ -21,6 +21,10 @@
21
21
  "types": "./css-module.d.ts",
22
22
  "default": "./dist/web-components.min.css"
23
23
  },
24
+ "./css/sheet": {
25
+ "import": "./dist/web-components.sheet.js",
26
+ "default": "./dist/web-components.sheet.js"
27
+ },
24
28
  "./js/bundled": {
25
29
  "types": "./index.d.ts",
26
30
  "import": "./dist/web-components.min.js",
package/styles/README.md CHANGED
@@ -296,7 +296,7 @@ styles/
296
296
  │ ├── text.css # [text-align] [weight] [color] [transform] [truncate]
297
297
  │ └── layout.css # [hidden] [nomargin] [grow]
298
298
 
299
- ├── themes.css # CONTEXT: 8 named themes + light/dark scheme overrides ([data-theme])
299
+ ├── themes.css # CONTEXT: 8 named themes + light/dark scheme overrides ([theme])
300
300
  ├── prose.css # CONTEXT: opt-in article typography ([prose])
301
301
  ├── resets.css # global RESET (box-sizing, scrollbar, focus, normalize)
302
302
  ├── fonts.css # @font-face declarations + font-family primitives
@@ -4,7 +4,7 @@
4
4
  Using @property for typed, animatable custom properties.
5
5
  syntax: "<number>" enables CSS transitions/animations on hue,
6
6
  chroma, and lightness parameters. inherits: true allows
7
- theme-ui and [data-theme] to override per-subtree.
7
+ theme-ui and [theme] to override per-subtree.
8
8
  ═══════════════════════════════════════════════════════════════ */
9
9
 
10
10
  /* ── System bounds ── */
@@ -5,7 +5,7 @@
5
5
  Requires primitives-shared.css and parameters.css.
6
6
  ═══════════════════════════════════════════════════════════════ */
7
7
 
8
- :root, theme-ui, [data-theme] {
8
+ :root, theme-ui, [theme], theme-provider {
9
9
  /* ── Accent tints (05 lightest → 95 darkest) ── */
10
10
  --a-accent-05-tint: oklch(calc(var(--a-color-l-max) - var(--_sf-05) * (var(--a-color-l-max) - var(--a-color-l-min))) calc(var(--a-accent-c-min) + var(--_cf-05) * (var(--a-accent-c-max) - var(--a-accent-c-min))) var(--a-accent-hue));
11
11
  --a-accent-10-tint: oklch(calc(var(--a-color-l-max) - var(--_sf-10) * (var(--a-color-l-max) - var(--a-color-l-min))) calc(var(--a-accent-c-min) + var(--_cf-10) * (var(--a-accent-c-max) - var(--a-accent-c-min))) var(--a-accent-hue));
@@ -5,7 +5,7 @@
5
5
  Requires primitives-shared.css and parameters.css.
6
6
  ═══════════════════════════════════════════════════════════════ */
7
7
 
8
- :root, theme-ui, [data-theme] {
8
+ :root, theme-ui, [theme], theme-provider {
9
9
  /* ── Brand tints (05 lightest → 95 darkest) ── */
10
10
  --a-brand-05-tint: oklch(calc(var(--a-color-l-max) - var(--_sf-05) * (var(--a-color-l-max) - var(--a-color-l-min))) calc(var(--a-brand-c-min) + var(--_cf-05) * (var(--a-brand-c-max) - var(--a-brand-c-min))) var(--a-brand-hue));
11
11
  --a-brand-10-tint: oklch(calc(var(--a-color-l-max) - var(--_sf-10) * (var(--a-color-l-max) - var(--a-color-l-min))) calc(var(--a-brand-c-min) + var(--_cf-10) * (var(--a-brand-c-max) - var(--a-brand-c-min))) var(--a-brand-hue));
@@ -5,7 +5,7 @@
5
5
  Requires primitives-shared.css and parameters.css.
6
6
  ═══════════════════════════════════════════════════════════════ */
7
7
 
8
- :root, theme-ui, [data-theme] {
8
+ :root, theme-ui, [theme], theme-provider {
9
9
  /* ── Danger tints (05 lightest → 95 darkest) ── */
10
10
  --a-danger-05-tint: oklch(calc(var(--a-color-l-max) - var(--_sf-05) * (var(--a-color-l-max) - var(--a-color-l-min))) calc(var(--a-danger-c-min) + var(--_cf-05) * (var(--a-danger-c-max) - var(--a-danger-c-min))) var(--a-danger-hue));
11
11
  --a-danger-10-tint: oklch(calc(var(--a-color-l-max) - var(--_sf-10) * (var(--a-color-l-max) - var(--a-color-l-min))) calc(var(--a-danger-c-min) + var(--_cf-10) * (var(--a-danger-c-max) - var(--a-danger-c-min))) var(--a-danger-hue));
@@ -5,7 +5,7 @@
5
5
  Requires primitives-shared.css and parameters.css.
6
6
  ═══════════════════════════════════════════════════════════════ */
7
7
 
8
- :root, theme-ui, [data-theme] {
8
+ :root, theme-ui, [theme], theme-provider {
9
9
  /* ── Info tints (05 lightest → 95 darkest) ── */
10
10
  --a-info-05-tint: oklch(calc(var(--a-color-l-max) - var(--_sf-05) * (var(--a-color-l-max) - var(--a-color-l-min))) calc(var(--a-info-c-min) + var(--_cf-05) * (var(--a-info-c-max) - var(--a-info-c-min))) var(--a-info-hue));
11
11
  --a-info-10-tint: oklch(calc(var(--a-color-l-max) - var(--_sf-10) * (var(--a-color-l-max) - var(--a-color-l-min))) calc(var(--a-info-c-min) + var(--_cf-10) * (var(--a-info-c-max) - var(--a-info-c-min))) var(--a-info-hue));
@@ -5,7 +5,7 @@
5
5
  Requires primitives-shared.css and parameters.css.
6
6
  ═══════════════════════════════════════════════════════════════ */
7
7
 
8
- :root, theme-ui, [data-theme] {
8
+ :root, theme-ui, [theme], theme-provider {
9
9
  /* ── Neutral tints (05 lightest → 95 darkest) ── */
10
10
  --a-neutral-05-tint: oklch(calc(var(--a-color-l-max) - var(--_sf-05) * (var(--a-color-l-max) - var(--a-color-l-min))) calc(var(--a-neutral-c-min) + var(--_cf-05) * (var(--a-neutral-c-max) - var(--a-neutral-c-min))) var(--a-neutral-hue));
11
11
  --a-neutral-10-tint: oklch(calc(var(--a-color-l-max) - var(--_sf-10) * (var(--a-color-l-max) - var(--a-color-l-min))) calc(var(--a-neutral-c-min) + var(--_cf-10) * (var(--a-neutral-c-max) - var(--a-neutral-c-min))) var(--a-neutral-hue));
@@ -5,7 +5,7 @@
5
5
  Requires primitives-shared.css and parameters.css.
6
6
  ═══════════════════════════════════════════════════════════════ */
7
7
 
8
- :root, theme-ui, [data-theme] {
8
+ :root, theme-ui, [theme], theme-provider {
9
9
  /* ── Success tints (05 lightest → 95 darkest) ── */
10
10
  --a-success-05-tint: oklch(calc(var(--a-color-l-max) - var(--_sf-05) * (var(--a-color-l-max) - var(--a-color-l-min))) calc(var(--a-success-c-min) + var(--_cf-05) * (var(--a-success-c-max) - var(--a-success-c-min))) var(--a-success-hue));
11
11
  --a-success-10-tint: oklch(calc(var(--a-color-l-max) - var(--_sf-10) * (var(--a-color-l-max) - var(--a-color-l-min))) calc(var(--a-success-c-min) + var(--_cf-10) * (var(--a-success-c-max) - var(--a-success-c-min))) var(--a-success-hue));
@@ -5,7 +5,7 @@
5
5
  Requires primitives-shared.css and parameters.css.
6
6
  ═══════════════════════════════════════════════════════════════ */
7
7
 
8
- :root, theme-ui, [data-theme] {
8
+ :root, theme-ui, [theme], theme-provider {
9
9
  /* ── Warning tints (05 lightest → 95 darkest) ── */
10
10
  --a-warning-05-tint: oklch(calc(var(--a-color-l-max) - var(--_sf-05) * (var(--a-color-l-max) - var(--a-color-l-min)) + var(--_sf-05) * var(--_cf-05) * var(--a-warning-l-lift)) calc(var(--a-warning-c-min) + var(--_cf-05) * (var(--a-warning-c-max) - var(--a-warning-c-min))) var(--a-warning-hue));
11
11
  --a-warning-10-tint: oklch(calc(var(--a-color-l-max) - var(--_sf-10) * (var(--a-color-l-max) - var(--a-color-l-min)) + var(--_sf-10) * var(--_cf-10) * var(--a-warning-l-lift)) calc(var(--a-warning-c-min) + var(--_cf-10) * (var(--a-warning-c-max) - var(--a-warning-c-min))) var(--a-warning-hue));
@@ -17,7 +17,7 @@
17
17
  Depends on: parameters.css
18
18
  ═══════════════════════════════════════════════════════════════ */
19
19
 
20
- :root, theme-ui, [data-theme] {
20
+ :root, theme-ui, [theme], theme-provider {
21
21
 
22
22
  /* ── Neutral ── */
23
23
  --a-neutral-0-tint-scrim: oklch(var(--a-color-tint-scrim-l) calc(var(--a-neutral-c-min) + 0.0000 * (var(--a-neutral-c-max) - var(--a-neutral-c-min))) var(--a-neutral-hue) / var(--_af-0));
@@ -6,7 +6,7 @@
6
6
  base tier deliberately. The base tokens are defined upstream in core.css,
7
7
  so removing the override is non-breaking.) */
8
8
 
9
- :root, theme-ui, [data-theme] {
9
+ :root, theme-ui, [theme], theme-provider {
10
10
  /* ══════════════════════════════════════════════════════════════
11
11
  SCRIMS — Role aliases. Map onto the 7-step adaptive scrim-0..6
12
12
  scale in scrims.css. Per-family semantic tiers (weak / default /
@@ -3,7 +3,7 @@
3
3
  within ONE family for heatmap/choropleth/treemap intensity.
4
4
  Split out of semantics.css (v0.6.48 reorg, ADR-0035). */
5
5
 
6
- :root, theme-ui, [data-theme] {
6
+ :root, theme-ui, [theme], theme-provider {
7
7
  /* ══════════════════════════════════════════════════════════════
8
8
  BUCKETS — sequential 5-step ramp per family for data-vis consumers
9
9
 
@@ -5,7 +5,7 @@
5
5
  the semantics.css barrel so the status-compat overrides in aliases.css
6
6
  (imported last) still win, exactly as in the original source order. */
7
7
 
8
- :root, theme-ui, [data-theme] {
8
+ :root, theme-ui, [theme], theme-provider {
9
9
 
10
10
  /* ══════════════════════════════════════════════════════════════
11
11
  CANVAS — Neutral text, borders, surfaces
@@ -48,7 +48,7 @@
48
48
  @property --a-data-8-hue { syntax: "<number>"; inherits: true; initial-value: 313; }
49
49
  @property --a-data-9-hue { syntax: "<number>"; inherits: true; initial-value: 335; }
50
50
 
51
- :root, theme-ui, [data-theme] {
51
+ :root, theme-ui, [theme], theme-provider {
52
52
  /* ══════════════════════════════════════════════════════════════
53
53
  DATA PALETTE — 10 categorical series colors for charts
54
54
 
@@ -4,7 +4,7 @@
4
4
  backgrounds). Contiguous in the original source; split out of
5
5
  semantics.css (v0.6.48 reorg, ADR-0035). */
6
6
 
7
- :root, theme-ui, [data-theme] {
7
+ :root, theme-ui, [theme], theme-provider {
8
8
  /* ══════════════════════════════════════════════════════════════
9
9
  FOCUS — canonical ring recipe shared by all form controls
10
10
  ══════════════════════════════════════════════════════════════
@@ -5,7 +5,7 @@
5
5
  Neutral role aliases (--a-scrim-dialog etc.) live in semantics.css.
6
6
  ═══════════════════════════════════════════════════════════════ */
7
7
 
8
- :root, theme-ui, [data-theme] {
8
+ :root, theme-ui, [theme], theme-provider {
9
9
 
10
10
  /* ══════════════════════════════════════════════════════════════
11
11
  Canvas — neutral surface, semantic alias of --a-neutral-{0-6}
@@ -129,3 +129,4 @@
129
129
  @import "../components/time-picker/time-picker.css";
130
130
  @import "../components/integration-card/integration-card.css";
131
131
  @import "../components/tags-input/tags-input.css";
132
+ @import "../components/theme-provider/theme-provider.css";
@@ -27,7 +27,7 @@ function buildCssVarMap() {
27
27
  // selectors like `[color="info"]` conditionally override --a-fg etc. and
28
28
  // must not leak into the default-state token map.
29
29
  function isAuthoritativeSelector(sel) {
30
- return /(^|,)\s*(:root|theme-ui|\[data-theme\])\b/i.test(sel);
30
+ return /(^|,)\s*(:root|theme-ui|\[theme\])\b/i.test(sel);
31
31
  }
32
32
  function walkRules(rules, map) {
33
33
  for (const rule of rules) {
package/styles/host.css CHANGED
@@ -20,7 +20,7 @@
20
20
  without a specificity fight.
21
21
 
22
22
  ── Opt-in add-ons (link separately when wanted) ─────────────────────
23
- styles/themes.css the [data-theme] preset switcher (@layer context)
23
+ styles/themes.css the [theme] preset switcher (@layer context)
24
24
  styles/prose.css the [prose] content context (@layer context)
25
25
  styles/verse.css the [verse] compact register (opt-in density)
26
26
 
package/styles/prose.css CHANGED
@@ -11,7 +11,7 @@
11
11
  ═══════════════════════════════════════════════════════════════ */
12
12
 
13
13
  /* All rules below are the `context` layer (ADR-0038 step 7): theme/prose
14
- context sits above `utilities`+`components`, so a [data-theme]/[prose] scope
14
+ context sits above `utilities`+`components`, so a [theme]/[prose] scope
15
15
  re-skins everything within it. The @layer order is declared by the co-loaded
16
16
  barrel (styles/index.css); this file only contributes to `context`. */
17
17
  @layer context {
package/styles/themes.css CHANGED
@@ -1,17 +1,17 @@
1
1
  /* ═══════════════════════════════════════════════════════════════
2
- Themes — CSS-only presets via [data-theme] attribute.
2
+ Themes — CSS-only presets via [theme] attribute.
3
3
  Zero JavaScript. Apply to any container element.
4
4
 
5
5
  Each theme overrides @property knobs: hues, chroma, radius, spacing.
6
6
  Downstream tokens (primitives, surfaces, semantics) recompute automatically.
7
7
 
8
8
  Usage:
9
- <div data-theme="ocean">...ocean themed...</div>
10
- <html data-theme="slate">...entire app...</html>
9
+ <div theme="ocean">...ocean themed...</div>
10
+ <html theme="slate">...entire app...</html>
11
11
  ═══════════════════════════════════════════════════════════════ */
12
12
 
13
13
  /* All rules below are the `context` layer (ADR-0038 step 7): theme/prose
14
- context sits above `utilities`+`components`, so a [data-theme]/[prose] scope
14
+ context sits above `utilities`+`components`, so a [theme]/[prose] scope
15
15
  re-skins everything within it. The @layer order is declared by the co-loaded
16
16
  barrel (styles/index.css); this file only contributes to `context`. */
17
17
  @layer context {
@@ -30,7 +30,7 @@
30
30
 
31
31
  /* ── Default (cool indigo, balanced) ── */
32
32
 
33
- [data-theme="default"] {
33
+ [theme="default"] {
34
34
  --a-neutral-hue: 225;
35
35
  --a-neutral-c-min: 0.010;
36
36
  --a-brand-hue: 225;
@@ -45,7 +45,7 @@
45
45
  }
46
46
 
47
47
  /* ── Ocean (cool teal, vivid, rounded, relaxed) ── */
48
- [data-theme="ocean"] {
48
+ [theme="ocean"] {
49
49
  --a-neutral-hue: 210;
50
50
  --a-neutral-c-min: 0.020;
51
51
  --a-brand-hue: 200;
@@ -61,7 +61,7 @@
61
61
  }
62
62
 
63
63
  /* ── Forest (earthy green, muted, compact) ── */
64
- [data-theme="forest"] {
64
+ [theme="forest"] {
65
65
  --a-neutral-hue: 150;
66
66
  --a-neutral-c-min: 0.018;
67
67
  --a-neutral-c-max: 0.030;
@@ -78,7 +78,7 @@
78
78
  }
79
79
 
80
80
  /* ── Sunset (warm amber, vivid, sharp) ── */
81
- [data-theme="sunset"] {
81
+ [theme="sunset"] {
82
82
  --a-neutral-hue: 30;
83
83
  --a-neutral-c-min: 0.022;
84
84
  --a-brand-hue: 20;
@@ -94,7 +94,7 @@
94
94
  }
95
95
 
96
96
  /* ── Lavender (soft purple, low chroma, pill radius) ── */
97
- [data-theme="lavender"] {
97
+ [theme="lavender"] {
98
98
  --a-neutral-hue: 280;
99
99
  --a-neutral-c-min: 0.018;
100
100
  --a-brand-hue: 270;
@@ -110,7 +110,7 @@
110
110
  }
111
111
 
112
112
  /* ── Rose (warm pink, medium chroma) ── */
113
- [data-theme="rose"] {
113
+ [theme="rose"] {
114
114
  --a-neutral-hue: 350;
115
115
  --a-neutral-c-min: 0.016;
116
116
  --a-brand-hue: 340;
@@ -126,7 +126,7 @@
126
126
  }
127
127
 
128
128
  /* ── Slate (desaturated grey-blue, sharp, tight) ── */
129
- [data-theme="slate"] {
129
+ [theme="slate"] {
130
130
  --a-neutral-hue: 220;
131
131
  --a-neutral-c-min: 0.008;
132
132
  --a-neutral-c-max: 0.015;
@@ -144,7 +144,7 @@
144
144
  }
145
145
 
146
146
  /* ── Midnight (deep indigo, high chroma, rounded, spacious) ── */
147
- [data-theme="midnight"] {
147
+ [theme="midnight"] {
148
148
  --a-neutral-hue: 250;
149
149
  --a-neutral-c-min: 0.020;
150
150
  --a-brand-hue: 240;