@adia-ai/adia-ui-forge 0.8.42 → 0.8.43
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/.claude-plugin/plugin.json +2 -2
- package/CHANGELOG.md +11 -0
- package/package.json +1 -1
- package/skills/gen-ui-review/references/corpus-html-patterns.md +3 -3
- package/skills/gen-ui-review/scripts/gen-review-decompose.mjs +1 -1
- package/skills/primitive-authoring/references/primitive-audit.md +1 -1
- package/skills/primitive-authoring/references/svg-authoring.md +4 -4
- package/skills/primitive-authoring/references/token-contract.md +4 -4
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "adia-ui-kit-forge",
|
|
3
|
-
"version": "0.8.
|
|
4
|
-
"description": "Maintain the adia-ui (@adia-ai) framework itself \u2014 author primitives and shells, run the A2UI generation pipeline and its corpus, review gen-UI quality, sweep QA, cut releases, deploy. The maintainer counterpart to adia-factory (the consumer/app-author plugin).",
|
|
3
|
+
"version": "0.8.43",
|
|
4
|
+
"description": "Maintain the adia-ui (@adia-ai) framework itself \u2014 author primitives and shells, run the A2UI generation pipeline and its corpus, review gen-UI quality, sweep QA, cut releases, deploy. The maintainer counterpart to adia-ui-kit-factory (the consumer/app-author plugin).",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Kim",
|
|
7
7
|
"email": "kim.granlund@adia.ai"
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# Changelog — adia-ui-kit-forge
|
|
2
2
|
|
|
3
|
+
## [0.8.43] — 2026-08-18
|
|
4
|
+
|
|
5
|
+
### Changed
|
|
6
|
+
- Knowledge packs harvested for ADR-0061..0074: surface-lifecycle reference (a2ui-maintenance), site-package-registry playbook, attribute-grammar/role-class/tier-model sections, disabled-state token convention (gh#1564, #1609, #1625).
|
|
7
|
+
- primitive-authoring/gen-ui-review references migrated off cut attributes (`hide-*` → `no-*`) so agent-authored demos stop reintroducing them (gh#1617, #1626).
|
|
8
|
+
- token-selection references regenerated for the `--a-ui-bg-disabled` container-low retarget (gh#1596, #1599).
|
|
9
|
+
|
|
10
|
+
### Maintenance
|
|
11
|
+
- **`.claude-plugin/plugin.json` version bump** — moves in lockstep with package.json (the `/plugin update` cache key).
|
|
12
|
+
- **`skills/` touched in this release window** (5 file(s), e.g. `references/corpus-html-patterns.md`) — carried by the entries above.
|
|
13
|
+
|
|
3
14
|
## [0.8.42] — 2026-08-17
|
|
4
15
|
|
|
5
16
|
### Maintenance
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adia-ai/adia-ui-forge",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.43",
|
|
4
4
|
"description": "Maintain the adia-ui (@adia-ai) framework itself \u2014 author primitives and shells, run the A2UI generation pipeline and its corpus, review gen-UI quality, sweep QA, cut releases, deploy. The maintainer counterpart to adia-factory (the consumer/app-author plugin).",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"adia-ui",
|
|
@@ -139,12 +139,12 @@ col-ui midpoint, landing it beside the description instead of the title.
|
|
|
139
139
|
**WORKS** — the renderer JSON-parses string JS_PROPS before assignment:
|
|
140
140
|
|
|
141
141
|
```html
|
|
142
|
-
<chart-ui type="bar" x="month" y="revenue"
|
|
142
|
+
<chart-ui type="bar" x="month" y="revenue" no-values
|
|
143
143
|
data='[{"month":"Jan","revenue":3200},{"month":"Feb","revenue":4100}]'>
|
|
144
144
|
</chart-ui>
|
|
145
145
|
```
|
|
146
146
|
|
|
147
|
-
Include 4–6 data points; `
|
|
147
|
+
Include 4–6 data points; `no-values` when the canvas is too narrow for labels.
|
|
148
148
|
|
|
149
149
|
### image-ui: data URIs, never external URLs
|
|
150
150
|
|
|
@@ -153,7 +153,7 @@ rectangle. Use either a sparkline placeholder (renders immediately, no network):
|
|
|
153
153
|
|
|
154
154
|
```html
|
|
155
155
|
<section bleed>
|
|
156
|
-
<chart-ui type="sparkline" x="t" y="v" color="accent"
|
|
156
|
+
<chart-ui type="sparkline" x="t" y="v" color="accent" no-values
|
|
157
157
|
data='[{"t":1,"v":60},{"t":2,"v":80},{"t":3,"v":45}]'
|
|
158
158
|
style="height:160px"></chart-ui>
|
|
159
159
|
</section>
|
|
@@ -148,7 +148,7 @@ const TAG_TO_COMPONENT = {
|
|
|
148
148
|
'chat-input-ui': 'ChatInput',
|
|
149
149
|
'chat-thread-ui': 'ChatThread',
|
|
150
150
|
'color-input-ui': 'ColorInput',
|
|
151
|
-
'color-
|
|
151
|
+
'color-area-ui': 'ColorArea',
|
|
152
152
|
'command-ui': 'Command',
|
|
153
153
|
'context-menu-ui': 'ContextMenu',
|
|
154
154
|
'date-range-picker-ui': 'DateRangePicker',
|
|
@@ -66,7 +66,7 @@ Treat this as the default lookup table. **If your affordance maps to a row here,
|
|
|
66
66
|
| Modal / drawer / toast | `modal-ui` / `drawer-ui` / `toast-ui` |
|
|
67
67
|
| Switch / checkbox / radio / segmented / toggle group | `switch-ui` / `check-ui` / `radio-ui` / `segmented-ui` / `toggle-group-ui` |
|
|
68
68
|
| Avatar / avatar group | `avatar-ui` / `avatar-group-ui` |
|
|
69
|
-
| Color / calendar / OTP picker | `color-
|
|
69
|
+
| Color / calendar / OTP picker | `color-area-ui` / `calendar-picker-ui` / `otp-input-ui` |
|
|
70
70
|
| Stepper / timeline / progress / progress-row | `stepper-ui` / `timeline-ui` / `progress-ui` / `progress-row-ui` |
|
|
71
71
|
| Card with header / section / footer | `card-ui` (+ slot children) — don't roll a "panel" |
|
|
72
72
|
| Description-list (key/value) | `description-list-ui` |
|
|
@@ -90,9 +90,9 @@ chart's Y-axis labels clipped under a bled card's corner.
|
|
|
90
90
|
```css
|
|
91
91
|
/* Guide/value/legend safety inset (gh#1095) — [bleed]'s zero-inset is
|
|
92
92
|
only collision-free for the bare-marks case: a sparkline, or any other
|
|
93
|
-
chart-ui type with BOTH [
|
|
94
|
-
& > section[bleed]:has(> chart-ui:not([type="sparkline"]):not([
|
|
95
|
-
& > section[bleed]:has(> chart-ui:not([type="sparkline"]):not([
|
|
93
|
+
chart-ui type with BOTH [no-grid] and [no-values] set. */
|
|
94
|
+
& > section[bleed]:has(> chart-ui:not([type="sparkline"]):not([no-grid])),
|
|
95
|
+
& > section[bleed]:has(> chart-ui:not([type="sparkline"]):not([no-values])),
|
|
96
96
|
& > section[bleed]:has(> chart-legend-ui) {
|
|
97
97
|
margin: var(--card-inset);
|
|
98
98
|
padding: 0;
|
|
@@ -105,7 +105,7 @@ relying on every author to remember. `#renderSparkline()` is the ONLY
|
|
|
105
105
|
renderer that never emits axis ticks, gridlines, value text, or a legend
|
|
106
106
|
(`chart.class.js`'s sparkline branch) — it's the sole type where genuine
|
|
107
107
|
edge-to-edge bleed is collision-free with no attribute needed. Every other
|
|
108
|
-
type needs BOTH `[
|
|
108
|
+
type needs BOTH `[no-grid]` and `[no-values]` set to opt into true
|
|
109
109
|
bleed; short of that, the safety inset applies and the chart renders inset
|
|
110
110
|
like a normal card section — expected, not a bug.
|
|
111
111
|
|
|
@@ -180,10 +180,10 @@ ADR-0053/0054 don't cover. Any new attribute follows these:
|
|
|
180
180
|
composite** — never the inline substrate it composes. `color-picker-ui`
|
|
181
181
|
(the inline substrate) renames to `color-area-ui`.
|
|
182
182
|
|
|
183
|
-
The renames above
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
183
|
+
The renames above have LANDED: dual-read compat shims shipped via gh#1563,
|
|
184
|
+
and the breaking cut removed the old names in 0.8.43 (gh#1617). The new
|
|
185
|
+
spellings are the sole ones — a yaml or demo still showing an old name is
|
|
186
|
+
stale and should be fixed.
|
|
187
187
|
|
|
188
188
|
## When to update this reference
|
|
189
189
|
|