@adia-ai/a2ui-corpus 0.6.35 → 0.6.36

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,11 @@
1
1
  # Changelog — @adia-ai/a2ui-corpus
2
2
 
3
+ ## [0.6.36] — 2026-05-24
4
+
5
+ ### Changed — catalog absorbs `<tag-ui>` solid-default flip + `[tone]` prop
6
+
7
+ - **`<tag-ui>` family variants now default to solid fill** (saturated bg + on-strong text — `--a-{family}-bg` + `--a-{family}-fg` pair). The new `[tone]` enum prop (`solid` | `muted`) opts each family variant back to the canonical muted pair when the chip is metadata rather than a status stamp. Catalog tag prop block + rules text regenerated to surface the new prop + the new default rendering in the LLM training corpus.
8
+
3
9
  ## [0.6.35] — 2026-05-24
4
10
 
5
11
  ### Changed — `catalog-a2ui_0_9.{json,_rules.txt}` regen absorbs FB-61/62/63 yaml backfills
@@ -7387,7 +7387,7 @@
7387
7387
  "wrong": "<dashboard-layout-ui>\n <dashboard-layout-ui slot=\"charts\">...</dashboard-layout-ui>\n</dashboard-layout-ui>\n"
7388
7388
  },
7389
7389
  {
7390
- "description": "kpi-columns out of range. Eight cards in a row produces KPI\ncards narrower than --dashboard-layout-kpi-min (16em); the\ncontainer-query collapse misfires.\n",
7390
+ "description": "kpi-columns out of range. Eight cards in a row is too narrow\nto be legible at typical container widths; the container-query\ncollapse (≤48em → 2 cols, ≤32em → 1 col) won't help when N is\nalready that large at desktop.\n",
7391
7391
  "right": "<dashboard-layout-ui kpi-columns=\"4\">...</dashboard-layout-ui>\n",
7392
7392
  "rule": "kpi-columns ∈ {2,3,4,5,6}. Split into 2 rows of 4 by composing\n2 DashboardLayouts vertically if 8 cards are truly necessary.\n",
7393
7393
  "wrong": "<dashboard-layout-ui kpi-columns=\"8\">...</dashboard-layout-ui>\n"
@@ -7541,10 +7541,6 @@
7541
7541
  "description": "Inter-card gap inside the chart band.",
7542
7542
  "default": "var(--a-space-4)"
7543
7543
  },
7544
- "--dashboard-layout-chart-min": {
7545
- "description": "Minimum chart card inline-size.",
7546
- "default": "22em"
7547
- },
7548
7544
  "--dashboard-layout-gap": {
7549
7545
  "description": "Band-to-band vertical gap.",
7550
7546
  "default": "var(--a-space-4)"
@@ -7553,10 +7549,6 @@
7553
7549
  "description": "Inter-card gap inside the KPI band.",
7554
7550
  "default": "var(--a-space-2)"
7555
7551
  },
7556
- "--dashboard-layout-kpi-min": {
7557
- "description": "Minimum KPI card inline-size before container-query collapse.",
7558
- "default": "16em"
7559
- },
7560
7552
  "--dashboard-layout-padding": {
7561
7553
  "description": "Outer padding around the composite.",
7562
7554
  "default": "0"
@@ -22199,6 +22191,15 @@
22199
22191
  "description": "Tag label. Renderer routes this to the `text` attribute, rendered via CSS attr(text) on ::after.",
22200
22192
  "$ref": "#/$defs/DynamicString"
22201
22193
  },
22194
+ "tone": {
22195
+ "description": "Fill style — orthogonal to [variant]. Default (`solid`) for family\nvariants is a saturated bg with on-strong (near-white) text — the\nchip IS the state. Opt-out via `tone=\"muted\"` for a tinted bg with\nscheme-paired text (matches <badge-ui>'s default look) when the\nchip is metadata in a dense list rather than a status stamp. The\n`default` variant stays quiet chrome regardless of tone unless\n`tone=\"solid\"` is set explicitly (high-contrast neutral inverse).\n",
22196
+ "type": "string",
22197
+ "enum": [
22198
+ "solid",
22199
+ "muted"
22200
+ ],
22201
+ "default": "solid"
22202
+ },
22202
22203
  "variant": {
22203
22204
  "description": "Semantic variant — `default | info | success | warning | danger`.",
22204
22205
  "type": "string",
@@ -812,8 +812,9 @@
812
812
  Children without a [slot] attribute will not render in any band.
813
813
 
814
814
  - DashboardLayout[kpi-columns] MUST be 2-6. Out-of-range values
815
- fall back to the default 4. Eight cards in a row produces a
816
- KPI card narrower than --dashboard-layout-kpi-min.
815
+ fall back to the default 4. Eight cards in a row is too narrow
816
+ to be legible at typical container widths; container queries
817
+ collapse the band to 2 columns ≤48em and 1 column ≤32em.
817
818
 
818
819
  - DashboardLayout[chart-split] MUST be one of the documented
819
820
  enum strings — "" (full-width) / 2 / 2:1 / 3:2 / 3:1.