@adia-ai/a2ui-corpus 0.5.12 → 0.5.13
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 +4 -0
- package/catalog-a2ui_0_9.json +50 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -18,6 +18,10 @@ gap registry. Consumed by `@adia-ai/a2ui-retrieval` and
|
|
|
18
18
|
|
|
19
19
|
_No pending changes._
|
|
20
20
|
|
|
21
|
+
## [0.5.13] - 2026-05-15
|
|
22
|
+
|
|
23
|
+
_Lockstep ride-along (no source change in this package; companion to web-components v0.5.13 — see root CHANGELOG)._
|
|
24
|
+
|
|
21
25
|
## [0.5.12] - 2026-05-15
|
|
22
26
|
|
|
23
27
|
_Lockstep ride-along (no source change in this package; companion to web-components v0.5.12 — see root CHANGELOG)._
|
package/catalog-a2ui_0_9.json
CHANGED
|
@@ -5376,6 +5376,11 @@
|
|
|
5376
5376
|
}
|
|
5377
5377
|
],
|
|
5378
5378
|
"properties": {
|
|
5379
|
+
"baseHue": {
|
|
5380
|
+
"description": "Reference hue (degrees) for the hueDriftMax constraint, forwarded to inner picker. Default NaN — picker falls back to its hue at first commit.",
|
|
5381
|
+
"type": "number",
|
|
5382
|
+
"default": "NaN"
|
|
5383
|
+
},
|
|
5379
5384
|
"component": {
|
|
5380
5385
|
"const": "ColorInput"
|
|
5381
5386
|
},
|
|
@@ -5393,6 +5398,26 @@
|
|
|
5393
5398
|
],
|
|
5394
5399
|
"default": "hex"
|
|
5395
5400
|
},
|
|
5401
|
+
"hueDriftMax": {
|
|
5402
|
+
"description": "Generation constraint forwarded to inner picker — maximum allowed signed-shortest-path hue deviation (degrees) from baseHue. Default NaN (no constraint).",
|
|
5403
|
+
"type": "number",
|
|
5404
|
+
"default": "NaN"
|
|
5405
|
+
},
|
|
5406
|
+
"maxChroma": {
|
|
5407
|
+
"description": "Generation constraint forwarded to the inner `<color-picker-ui>` (v0.5.13\n§-TBD, FB-33 §1). Clamp the OKLCH chroma channel to at most this value.\nDefault Infinity (no constraint).\n",
|
|
5408
|
+
"type": "number",
|
|
5409
|
+
"default": "Infinity"
|
|
5410
|
+
},
|
|
5411
|
+
"maxL": {
|
|
5412
|
+
"description": "Generation constraint forwarded to inner picker — clamp OKLCH lightness to at most this value (0..1). Default 1.",
|
|
5413
|
+
"type": "number",
|
|
5414
|
+
"default": 1
|
|
5415
|
+
},
|
|
5416
|
+
"minL": {
|
|
5417
|
+
"description": "Generation constraint forwarded to inner picker — clamp OKLCH lightness to at least this value (0..1). Default 0.",
|
|
5418
|
+
"type": "number",
|
|
5419
|
+
"default": 0
|
|
5420
|
+
},
|
|
5396
5421
|
"name": {
|
|
5397
5422
|
"description": "Form field name.",
|
|
5398
5423
|
"type": "string",
|
|
@@ -5440,10 +5465,22 @@
|
|
|
5440
5465
|
"change": {
|
|
5441
5466
|
"description": "Fired when the color is committed (pointerup / Enter / picker close). Bubbles from inner picker.",
|
|
5442
5467
|
"detail": {
|
|
5468
|
+
"c": {
|
|
5469
|
+
"description": "Parsed OKLCH chroma scalar.",
|
|
5470
|
+
"type": "number"
|
|
5471
|
+
},
|
|
5472
|
+
"h": {
|
|
5473
|
+
"description": "Parsed OKLCH hue scalar (degrees, NaN ok for achromatic).",
|
|
5474
|
+
"type": "number"
|
|
5475
|
+
},
|
|
5443
5476
|
"hex": {
|
|
5444
5477
|
"description": "Hex form (`#rrggbb`).",
|
|
5445
5478
|
"type": "string"
|
|
5446
5479
|
},
|
|
5480
|
+
"l": {
|
|
5481
|
+
"description": "Parsed OKLCH lightness scalar (0..1). v0.5.13 §-TBD (FB-33 §1-adjacent).",
|
|
5482
|
+
"type": "number"
|
|
5483
|
+
},
|
|
5447
5484
|
"oklch": {
|
|
5448
5485
|
"description": "OKLCH string (`oklch(L C H)`).",
|
|
5449
5486
|
"type": "string"
|
|
@@ -5457,9 +5494,18 @@
|
|
|
5457
5494
|
"input": {
|
|
5458
5495
|
"description": "Fired during continuous drag of the inner picker. Bubbles from inner picker.",
|
|
5459
5496
|
"detail": {
|
|
5497
|
+
"c": {
|
|
5498
|
+
"type": "number"
|
|
5499
|
+
},
|
|
5500
|
+
"h": {
|
|
5501
|
+
"type": "number"
|
|
5502
|
+
},
|
|
5460
5503
|
"hex": {
|
|
5461
5504
|
"type": "string"
|
|
5462
5505
|
},
|
|
5506
|
+
"l": {
|
|
5507
|
+
"type": "number"
|
|
5508
|
+
},
|
|
5463
5509
|
"oklch": {
|
|
5464
5510
|
"type": "string"
|
|
5465
5511
|
},
|
|
@@ -14280,7 +14326,10 @@
|
|
|
14280
14326
|
],
|
|
14281
14327
|
"slots": {
|
|
14282
14328
|
"default": {
|
|
14283
|
-
"description": "Optional rich label content. When present, replaces the [label]
|
|
14329
|
+
"description": "Optional rich label content. When present, replaces the [label]\nattribute's text. Consumer chrome positioned absolutely against the\nswatch tile should use `[slot=\"chrome\"]` instead — default-slot\nchildren are funneled into the label region.\n"
|
|
14330
|
+
},
|
|
14331
|
+
"chrome": {
|
|
14332
|
+
"description": "§-TBD (v0.5.13, FB-34 §1). Sibling-of-tile chrome — gamut badges,\noverride/tracked dots, custom indicators — that survives stamping as\na direct host sibling rather than being funneled into the label. Pair\nwith consumer-authored CSS `position: absolute` against the host\n(the host carries `position: relative` when `shape=\"block\"`, so\n`top/right/bottom/left` offsets anchor to the tile's geometry).\nCloses the C1.3 dogfood chrome-overlay composition gap.\n"
|
|
14284
14333
|
}
|
|
14285
14334
|
},
|
|
14286
14335
|
"states": [
|
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.13",
|
|
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": {
|