@adia-ai/a2ui-corpus 0.5.19 → 0.5.20

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
@@ -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.20] - 2026-05-18
22
+
23
+ _Lockstep ride-along (no source change in this package; companion to web-components v0.5.20 — see root CHANGELOG)._
24
+
21
25
  ## [0.5.19] - 2026-05-17
22
26
 
23
27
  _Lockstep ride-along (no source change in this package; companion to web-components v0.5.19 — see root CHANGELOG)._
@@ -6558,6 +6558,7 @@
6558
6558
  "related": [
6559
6559
  "EditorShell",
6560
6560
  "EditorCanvasEmpty",
6561
+ "EditorCanvasToolbar",
6561
6562
  "EditorToolbar",
6562
6563
  "EditorSidebar"
6563
6564
  ],
@@ -6664,6 +6665,85 @@
6664
6665
  "version": 1
6665
6666
  }
6666
6667
  },
6668
+ "EditorCanvasToolbar": {
6669
+ "title": "EditorCanvasToolbar",
6670
+ "description": "Module-tier canvas toolbar — chrome bar that sits at the top of\n<editor-canvas>, above the content body. Holds view-mode tabs\n(preview / schema / DOM, etc.), breadcrumbs, or trailing actions\nscoped to the canvas region. CSS-only — no behavior, no JS.\n\nReplaces the ad-hoc <div data-view-strip> pattern used by editor\nconsumers. Sits flush against the inside top of <editor-canvas>\nand is sticky to the canvas scroll surface, so tabs stay visible\nwhile the canvas body scrolls.\n\nDistinct from <editor-toolbar>: that is app-scope (top of\n<editor-shell>, document-wide actions), while\n<editor-canvas-toolbar> is canvas-scope (top of <editor-canvas>,\nview-mode affordances).\n",
6671
+ "type": "object",
6672
+ "allOf": [
6673
+ {
6674
+ "$ref": "#/$defs/ComponentCommon"
6675
+ },
6676
+ {
6677
+ "$ref": "#/$defs/CatalogComponentCommon"
6678
+ }
6679
+ ],
6680
+ "properties": {
6681
+ "component": {
6682
+ "const": "EditorCanvasToolbar"
6683
+ }
6684
+ },
6685
+ "required": [
6686
+ "component"
6687
+ ],
6688
+ "unevaluatedProperties": false,
6689
+ "x-adiaui": {
6690
+ "anti_patterns": [],
6691
+ "category": "layout",
6692
+ "composes": [],
6693
+ "events": {},
6694
+ "examples": [],
6695
+ "keywords": [
6696
+ "editor-canvas-toolbar",
6697
+ "canvas-toolbar",
6698
+ "canvas-header",
6699
+ "view-strip",
6700
+ "view-tabs",
6701
+ "canvas-tabs",
6702
+ "tab-strip"
6703
+ ],
6704
+ "name": "EditorCanvasToolbar",
6705
+ "related": [
6706
+ "EditorShell",
6707
+ "EditorCanvas",
6708
+ "EditorToolbar",
6709
+ "EditorStatusbar",
6710
+ "Tabs"
6711
+ ],
6712
+ "slots": {
6713
+ "title": {
6714
+ "description": "Optional leading title cluster."
6715
+ },
6716
+ "default": {
6717
+ "description": "Default — ad-hoc inline content (typically a <tabs-ui> with view-mode tabs, or a breadcrumb / segmented control)."
6718
+ },
6719
+ "action": {
6720
+ "description": "Trailing action cluster (view-mode toggles, overflow menu)."
6721
+ },
6722
+ "action-leading": {
6723
+ "description": "Leading action cluster (back, view switcher, breadcrumb)."
6724
+ }
6725
+ },
6726
+ "states": [
6727
+ {
6728
+ "description": "Default, the only state.",
6729
+ "name": "idle"
6730
+ }
6731
+ ],
6732
+ "synonyms": {
6733
+ "editor-canvas-toolbar": [
6734
+ "canvas-toolbar",
6735
+ "canvas-header",
6736
+ "view-strip",
6737
+ "view-tabs",
6738
+ "tab-strip"
6739
+ ]
6740
+ },
6741
+ "tag": "editor-canvas-toolbar",
6742
+ "tokens": {},
6743
+ "traits": [],
6744
+ "version": 1
6745
+ }
6746
+ },
6667
6747
  "EditorShell": {
6668
6748
  "title": "EditorShell",
6669
6749
  "description": "Behavior-only editor shell module for design-tool layouts. Author\nprovides the structural DOM — header (topbar), [data-editor-body] with\npane-ui children ([data-left], [data-right]), [data-canvas] for the\ncentral surface, and a footer (statusbar). editor-shell wires\nselect-ui[data-options] for JSON-parsed option lists.\n",
@@ -66,9 +66,15 @@
66
66
  ## EditorCanvasEmpty
67
67
  - editor-canvas-empty is the bespoke empty-state slot for <editor-canvas>. Place as the first child of <editor-canvas>; visibility is automatic via the [empty] reflected attribute.
68
68
 
69
+ ## EditorCanvasToolbar
70
+ - editor-canvas-toolbar is the bespoke chrome strip for the <editor-canvas> top edge. Use it to hold view-mode tabs (preview / schema / DOM) or breadcrumb-style navigation scoped to the canvas region.
71
+ - Place as the first child of <editor-canvas>; the canvas's flex-column layout positions the toolbar above the content body automatically, and the toolbar is sticky to keep tabs visible during canvas scroll.
72
+ - Distinct from <editor-toolbar> (app-scope, top of <editor-shell>) — this is canvas-scope, holding view-mode affordances rather than document-wide actions.
73
+
69
74
  ## EditorCanvas
70
75
  - editor-canvas is the bespoke replacement for legacy <div data-canvas> inside <editor-shell>. Use it as the central content region for editor work surfaces.
71
76
  - Place <editor-canvas-empty> as an optional first child for the empty state; the [empty] reflected attribute drives its visibility via CSS (no JS toggling).
77
+ - Place <editor-canvas-toolbar> as the first child to mount view-mode tabs (preview / schema / DOM, etc.), breadcrumbs, or canvas-scoped actions above the content body. Replaces the ad-hoc <div data-view-strip> pattern. Distinct from <editor-toolbar> (app-scope) — this is canvas-scope.
72
78
 
73
79
  ## EditorShell
74
80
  - editor-shell is a layout skeleton. Children must follow the documented structural DOM; the element wires behavior, not content.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adia-ai/a2ui-corpus",
3
- "version": "0.5.19",
3
+ "version": "0.5.20",
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": {