@adia-ai/a2ui-corpus 0.5.15 → 0.5.17
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 +8 -0
- package/catalog-a2ui_0_9.json +30 -5
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -18,6 +18,14 @@ gap registry. Consumed by `@adia-ai/a2ui-retrieval` and
|
|
|
18
18
|
|
|
19
19
|
_No pending changes._
|
|
20
20
|
|
|
21
|
+
## [0.5.17] - 2026-05-16
|
|
22
|
+
|
|
23
|
+
_Lockstep ride-along (no source change in this package; companion to web-components v0.5.17 — see root CHANGELOG)._
|
|
24
|
+
|
|
25
|
+
## [0.5.16] - 2026-05-16
|
|
26
|
+
|
|
27
|
+
_Lockstep ride-along (no source change in this package; companion to web-components v0.5.16 — see root CHANGELOG)._
|
|
28
|
+
|
|
21
29
|
## [0.5.15] - 2026-05-16
|
|
22
30
|
|
|
23
31
|
_Lockstep ride-along (no source change in this package; companion to web-components v0.5.15 — see root CHANGELOG)._
|
package/catalog-a2ui_0_9.json
CHANGED
|
@@ -5192,7 +5192,7 @@
|
|
|
5192
5192
|
],
|
|
5193
5193
|
"slots": {
|
|
5194
5194
|
"default": {
|
|
5195
|
-
"description": "Raw text fallback when the text property is not set"
|
|
5195
|
+
"description": "Raw text fallback when the text property is not set. Two authoring shapes:\n(a) HTML-entity-escaped text (`<nav-ui>`) — same constraint as `<pre><code>`,\nsince the HTML parser treats unescaped tags as child elements; or\n(b) a `<template>` child whose `innerHTML` carries the literal source —\nescape-free authoring path. Indentation is dedented from the wrapper\ncolumn so the template's inner block reads at column 0. (v0.5.x §329)\n"
|
|
5196
5196
|
}
|
|
5197
5197
|
},
|
|
5198
5198
|
"states": [
|
|
@@ -13510,13 +13510,19 @@
|
|
|
13510
13510
|
"tag": "slider-ui",
|
|
13511
13511
|
"tokens": {
|
|
13512
13512
|
"--slider-fill": {
|
|
13513
|
-
"description": "Filled
|
|
13513
|
+
"description": "Filled portion / progress color (was mixed accent, now primary)"
|
|
13514
13514
|
},
|
|
13515
|
-
"--slider-thumb-
|
|
13516
|
-
"description": "Thumb
|
|
13515
|
+
"--slider-thumb-height": {
|
|
13516
|
+
"description": "Thumb pill height (track-height − 2× inset)"
|
|
13517
|
+
},
|
|
13518
|
+
"--slider-thumb-width": {
|
|
13519
|
+
"description": "Thumb pill width (2× thumb-height, driven by track-height)"
|
|
13517
13520
|
},
|
|
13518
13521
|
"--slider-track": {
|
|
13519
|
-
"description": "
|
|
13522
|
+
"description": "Unfilled track background color"
|
|
13523
|
+
},
|
|
13524
|
+
"--slider-track-height": {
|
|
13525
|
+
"description": "Full track height (scales via universal [size] attribute)"
|
|
13520
13526
|
}
|
|
13521
13527
|
},
|
|
13522
13528
|
"traits": [],
|
|
@@ -14407,9 +14413,23 @@
|
|
|
14407
14413
|
"type": "boolean",
|
|
14408
14414
|
"default": false
|
|
14409
14415
|
},
|
|
14416
|
+
"chrome": {
|
|
14417
|
+
"description": "Pagination chrome layout. `default` (overlay paddles + centered dots below) or `toolbar` (header row with label + paddles, footer row with counter + dots).",
|
|
14418
|
+
"type": "string",
|
|
14419
|
+
"enum": [
|
|
14420
|
+
"default",
|
|
14421
|
+
"toolbar"
|
|
14422
|
+
],
|
|
14423
|
+
"default": "default"
|
|
14424
|
+
},
|
|
14410
14425
|
"component": {
|
|
14411
14426
|
"const": "Swiper"
|
|
14412
14427
|
},
|
|
14428
|
+
"counter": {
|
|
14429
|
+
"description": "When `chrome=\"toolbar\"`, show a \"current / total\" page counter in the footer (left).",
|
|
14430
|
+
"type": "boolean",
|
|
14431
|
+
"default": false
|
|
14432
|
+
},
|
|
14413
14433
|
"gap": {
|
|
14414
14434
|
"description": "Gap between slides (token: sm, md, lg)",
|
|
14415
14435
|
"type": "string",
|
|
@@ -14420,6 +14440,11 @@
|
|
|
14420
14440
|
"type": "number",
|
|
14421
14441
|
"default": 5000
|
|
14422
14442
|
},
|
|
14443
|
+
"label": {
|
|
14444
|
+
"description": "Title rendered in the toolbar header (left). Only used when `chrome=\"toolbar\"`.",
|
|
14445
|
+
"type": "string",
|
|
14446
|
+
"default": ""
|
|
14447
|
+
},
|
|
14423
14448
|
"loop": {
|
|
14424
14449
|
"description": "Infinite loop",
|
|
14425
14450
|
"type": "boolean",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adia-ai/a2ui-corpus",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.17",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "AdiaUI A2UI training corpus — canonical v0.9 catalog + chunks + eval fixtures + feedback + gap registry. Consumed by the compose engine's retrieval layer + the MCP pipeline.",
|
|
6
6
|
"exports": {
|