@adia-ai/a2ui-corpus 0.7.20 → 0.7.22

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.
Files changed (43) hide show
  1. package/CHANGELOG.md +17 -0
  2. package/chunk-embeddings.json +1 -1
  3. package/chunks/_index.json +2130 -807
  4. package/chunks/admin-shell-rounded-borderless.json +280 -0
  5. package/chunks/admin-shell-standard.json +303 -0
  6. package/chunks/avatar-stack-overflow.json +124 -0
  7. package/chunks/bulk-selection-actions-bar.json +161 -0
  8. package/chunks/card-with-empty-state.json +96 -0
  9. package/chunks/card-with-form.json +143 -0
  10. package/chunks/card-with-sparkline.json +90 -0
  11. package/chunks/card-with-stat-kpi.json +95 -0
  12. package/chunks/col-form-stack.json +93 -0
  13. package/chunks/col-heading-body-action.json +79 -0
  14. package/chunks/col-stat-label.json +72 -0
  15. package/chunks/cta-banner-centered.json +102 -0
  16. package/chunks/drawer-record-detail.json +44 -0
  17. package/chunks/drawer-with-create-form.json +43 -0
  18. package/chunks/feature-grid-three-cards.json +187 -0
  19. package/chunks/grid-2col-entry-cards.json +158 -0
  20. package/chunks/grid-kpi-4col.json +164 -0
  21. package/chunks/grid-responsive-kpi.json +165 -0
  22. package/chunks/key-value-detail-list.json +172 -0
  23. package/chunks/logo-cloud-trusted-by.json +235 -0
  24. package/chunks/marketing-page-shell.json +45 -11
  25. package/chunks/order-confirmation-success-card.json +177 -0
  26. package/chunks/rating-stars-review-summary.json +258 -0
  27. package/chunks/responsive-shell-sidebar.json +79 -0
  28. package/chunks/row-action-cluster.json +54 -0
  29. package/chunks/row-avatar-name-role.json +71 -0
  30. package/chunks/row-icon-label.json +52 -0
  31. package/chunks/row-spread-label-value.json +54 -0
  32. package/chunks/row-wrap-tags.json +112 -0
  33. package/chunks/stack-avatar-badge-overlay.json +53 -0
  34. package/chunks/stack-image-shimmer.json +51 -0
  35. package/chunks/stats-band-big-numbers.json +175 -0
  36. package/chunks/subscription-status-renewal-card.json +229 -0
  37. package/chunks/table-empty-state.json +116 -0
  38. package/chunks/table-toolbar-no-search.json +38 -0
  39. package/chunks/table-toolbar-with-table.json +231 -0
  40. package/chunks/table-with-toolbar-card.json +76 -0
  41. package/chunks/testimonial-pull-quote.json +129 -0
  42. package/chunks/usage-quota-meter-card.json +217 -0
  43. package/package.json +1 -1
@@ -0,0 +1,52 @@
1
+ {
2
+ "name": "row-icon-label",
3
+ "kind": "block",
4
+ "primary": "div",
5
+ "page": "/packages/web-components/components/row/row.examples.html",
6
+ "slots": [],
7
+ "nested": [],
8
+ "attrs": {
9
+ "data-artifact-item": "",
10
+ "data-artifact-label": "icon + label inline"
11
+ },
12
+ "html": "<row-ui gap=\"2\" align=\"center\">\n <icon-ui name=\"check-circle\" style=\"color:var(--a-success)\"></icon-ui>\n <text-ui>Payment confirmed</text-ui>\n </row-ui>",
13
+ "source": "packages/web-components/components/row/row.examples.html",
14
+ "metadata": {
15
+ "domain": "layout",
16
+ "description": "Icon beside text label — status indicator row with leading icon and text.",
17
+ "keywords": [
18
+ "row",
19
+ "icon",
20
+ "label",
21
+ "status",
22
+ "indicator",
23
+ "inline",
24
+ "leading",
25
+ "icon-text",
26
+ "horizontal"
27
+ ]
28
+ },
29
+ "captured_at": "2026-06-10T20:25:14.783Z",
30
+ "template": [
31
+ {
32
+ "id": "check-circle",
33
+ "component": "Icon",
34
+ "name": "check-circle"
35
+ },
36
+ {
37
+ "id": "text",
38
+ "component": "Text",
39
+ "textContent": "Payment confirmed"
40
+ },
41
+ {
42
+ "id": "root",
43
+ "component": "Row",
44
+ "align": "center",
45
+ "gap": "2",
46
+ "children": [
47
+ "check-circle",
48
+ "text"
49
+ ]
50
+ }
51
+ ]
52
+ }
@@ -0,0 +1,54 @@
1
+ {
2
+ "name": "row-spread-label-value",
3
+ "kind": "block",
4
+ "primary": "div",
5
+ "page": "/packages/web-components/components/row/row.examples.html",
6
+ "slots": [],
7
+ "nested": [],
8
+ "attrs": {
9
+ "data-artifact-item": "",
10
+ "data-artifact-label": "spread — label + value"
11
+ },
12
+ "html": "<row-ui justify=\"space-between\" align=\"center\">\n <text-ui>Monthly total</text-ui>\n <text-ui strong>$12,400</text-ui>\n </row-ui>",
13
+ "source": "packages/web-components/components/row/row.examples.html",
14
+ "metadata": {
15
+ "domain": "layout",
16
+ "description": "Spread row — label pushed left, value pushed right via justify=space-between. Common in summary rows and list items.",
17
+ "keywords": [
18
+ "row",
19
+ "spread",
20
+ "justify",
21
+ "space-between",
22
+ "label",
23
+ "value",
24
+ "summary",
25
+ "stat",
26
+ "horizontal",
27
+ "flex"
28
+ ]
29
+ },
30
+ "captured_at": "2026-06-10T20:25:14.783Z",
31
+ "template": [
32
+ {
33
+ "id": "text",
34
+ "component": "Text",
35
+ "textContent": "Monthly total"
36
+ },
37
+ {
38
+ "id": "text-2",
39
+ "component": "Text",
40
+ "strong": true,
41
+ "textContent": "$12,400"
42
+ },
43
+ {
44
+ "id": "root",
45
+ "component": "Row",
46
+ "align": "center",
47
+ "justify": "space-between",
48
+ "children": [
49
+ "text",
50
+ "text-2"
51
+ ]
52
+ }
53
+ ]
54
+ }
@@ -0,0 +1,112 @@
1
+ {
2
+ "name": "row-wrap-tags",
3
+ "kind": "block",
4
+ "primary": "div",
5
+ "page": "/packages/web-components/components/row/row.examples.html",
6
+ "slots": [],
7
+ "nested": [],
8
+ "attrs": {
9
+ "data-artifact-item": "",
10
+ "data-artifact-label": "wrapping tag cluster"
11
+ },
12
+ "html": "<row-ui gap=\"2\" wrap>\n <tag-ui>Design</tag-ui>\n <tag-ui>Engineering</tag-ui>\n <tag-ui>Product</tag-ui>\n <tag-ui>Marketing</tag-ui>\n <tag-ui>Sales</tag-ui>\n </row-ui>",
13
+ "source": "packages/web-components/components/row/row.examples.html",
14
+ "metadata": {
15
+ "domain": "layout",
16
+ "description": "Wrapping badge/tag row — chip group that wraps to new lines when overflow occurs.",
17
+ "keywords": [
18
+ "row",
19
+ "wrap",
20
+ "tags",
21
+ "badges",
22
+ "chips",
23
+ "cluster",
24
+ "horizontal",
25
+ "flex-wrap",
26
+ "overflow",
27
+ "categories",
28
+ "filters"
29
+ ]
30
+ },
31
+ "captured_at": "2026-06-10T20:25:14.783Z",
32
+ "template": [
33
+ {
34
+ "id": "text",
35
+ "component": "Text",
36
+ "textContent": "Design",
37
+ "variant": "body"
38
+ },
39
+ {
40
+ "id": "tag",
41
+ "component": "Tag",
42
+ "children": [
43
+ "text"
44
+ ]
45
+ },
46
+ {
47
+ "id": "text-2",
48
+ "component": "Text",
49
+ "textContent": "Engineering",
50
+ "variant": "body"
51
+ },
52
+ {
53
+ "id": "tag-2",
54
+ "component": "Tag",
55
+ "children": [
56
+ "text-2"
57
+ ]
58
+ },
59
+ {
60
+ "id": "text-3",
61
+ "component": "Text",
62
+ "textContent": "Product",
63
+ "variant": "body"
64
+ },
65
+ {
66
+ "id": "tag-3",
67
+ "component": "Tag",
68
+ "children": [
69
+ "text-3"
70
+ ]
71
+ },
72
+ {
73
+ "id": "text-4",
74
+ "component": "Text",
75
+ "textContent": "Marketing",
76
+ "variant": "body"
77
+ },
78
+ {
79
+ "id": "tag-4",
80
+ "component": "Tag",
81
+ "children": [
82
+ "text-4"
83
+ ]
84
+ },
85
+ {
86
+ "id": "text-5",
87
+ "component": "Text",
88
+ "textContent": "Sales",
89
+ "variant": "body"
90
+ },
91
+ {
92
+ "id": "tag-5",
93
+ "component": "Tag",
94
+ "children": [
95
+ "text-5"
96
+ ]
97
+ },
98
+ {
99
+ "id": "root",
100
+ "component": "Row",
101
+ "gap": "2",
102
+ "wrap": true,
103
+ "children": [
104
+ "tag",
105
+ "tag-2",
106
+ "tag-3",
107
+ "tag-4",
108
+ "tag-5"
109
+ ]
110
+ }
111
+ ]
112
+ }
@@ -0,0 +1,53 @@
1
+ {
2
+ "name": "stack-avatar-badge-overlay",
3
+ "kind": "block",
4
+ "primary": "div",
5
+ "page": "/packages/web-components/components/stack/stack.examples.html",
6
+ "slots": [],
7
+ "nested": [],
8
+ "attrs": {
9
+ "data-artifact-item": "",
10
+ "data-artifact-label": "avatar with badge overlay"
11
+ },
12
+ "html": "<stack-ui style=\"width:fit-content\">\n <avatar-ui text=\"KG\" size=\"md\"></avatar-ui>\n <badge-ui text=\"3\" variant=\"danger\" style=\"position:absolute;top:-4px;right:-4px;\"></badge-ui>\n </stack-ui>",
13
+ "source": "packages/web-components/components/stack/stack.examples.html",
14
+ "metadata": {
15
+ "domain": "layout",
16
+ "description": "Overlay stack — avatar with a status badge overlaid at a corner. Classic notification indicator pattern.",
17
+ "keywords": [
18
+ "stack",
19
+ "overlay",
20
+ "z-axis",
21
+ "avatar",
22
+ "badge",
23
+ "status",
24
+ "indicator",
25
+ "notification",
26
+ "overlay",
27
+ "position"
28
+ ]
29
+ },
30
+ "captured_at": "2026-06-10T20:25:14.783Z",
31
+ "template": [
32
+ {
33
+ "id": "avatar",
34
+ "component": "Avatar",
35
+ "size": "md",
36
+ "text": "KG"
37
+ },
38
+ {
39
+ "id": "badge",
40
+ "component": "Badge",
41
+ "text": "3",
42
+ "variant": "danger"
43
+ },
44
+ {
45
+ "id": "root",
46
+ "component": "Stack",
47
+ "children": [
48
+ "avatar",
49
+ "badge"
50
+ ]
51
+ }
52
+ ]
53
+ }
@@ -0,0 +1,51 @@
1
+ {
2
+ "name": "stack-image-shimmer",
3
+ "kind": "block",
4
+ "primary": "div",
5
+ "page": "/packages/web-components/components/stack/stack.examples.html",
6
+ "slots": [],
7
+ "nested": [],
8
+ "attrs": {
9
+ "data-artifact-item": "",
10
+ "data-artifact-label": "image with shimmer overlay"
11
+ },
12
+ "html": "<stack-ui style=\"width:240px;height:120px;border-radius:var(--a-radius-md);overflow:hidden;background:var(--a-canvas-2)\">\n <div style=\"width:100%;height:100%;display:flex;align-items:center;justify-content:center;color:var(--a-fg-muted)\">Content</div>\n <skeleton-ui style=\"position:absolute;inset:0;border-radius:0\"></skeleton-ui>\n </stack-ui>",
13
+ "source": "packages/web-components/components/stack/stack.examples.html",
14
+ "metadata": {
15
+ "domain": "layout",
16
+ "description": "Loading overlay — content placeholder with shimmer overlaid on top of image or card content.",
17
+ "keywords": [
18
+ "stack",
19
+ "overlay",
20
+ "shimmer",
21
+ "loading",
22
+ "skeleton",
23
+ "placeholder",
24
+ "image",
25
+ "card",
26
+ "overlay",
27
+ "z-axis"
28
+ ]
29
+ },
30
+ "captured_at": "2026-06-10T20:25:14.783Z",
31
+ "template": [
32
+ {
33
+ "id": "text",
34
+ "component": "Text",
35
+ "textContent": "Content",
36
+ "variant": "body"
37
+ },
38
+ {
39
+ "id": "skeleton",
40
+ "component": "Skeleton"
41
+ },
42
+ {
43
+ "id": "root",
44
+ "component": "Stack",
45
+ "children": [
46
+ "text",
47
+ "skeleton"
48
+ ]
49
+ }
50
+ ]
51
+ }
@@ -0,0 +1,175 @@
1
+ {
2
+ "name": "stats-band-big-numbers",
3
+ "kind": "block",
4
+ "primary": "section",
5
+ "page": "/catalog/ui-patterns/v050-content-blocks/v050-content-blocks.contents.html",
6
+ "slots": [],
7
+ "nested": [],
8
+ "attrs": {},
9
+ "html": "<section>\n <grid-ui columns=\"2 4@md\" gap=\"4\">\n <col-ui gap=\"0\" align=\"center\">\n <text-ui variant=\"display\" size=\"lg\" color=\"accent\">99.99%</text-ui>\n <text-ui size=\"sm\" color=\"subtle\">Uptime SLA</text-ui>\n </col-ui>\n <col-ui gap=\"0\" align=\"center\">\n <text-ui variant=\"display\" size=\"lg\" color=\"accent\">12,000+</text-ui>\n <text-ui size=\"sm\" color=\"subtle\">Teams shipping</text-ui>\n </col-ui>\n <col-ui gap=\"0\" align=\"center\">\n <text-ui variant=\"display\" size=\"lg\" color=\"accent\">4.2B</text-ui>\n <text-ui size=\"sm\" color=\"subtle\">Requests / month</text-ui>\n </col-ui>\n <col-ui gap=\"0\" align=\"center\">\n <text-ui variant=\"display\" size=\"lg\" color=\"accent\">86</text-ui>\n <text-ui size=\"sm\" color=\"subtle\">Countries</text-ui>\n </col-ui>\n </grid-ui>\n </section>",
10
+ "source": "catalog/ui-patterns/v050-content-blocks/v050-content-blocks.contents.html",
11
+ "metadata": {
12
+ "domain": "marketing",
13
+ "description": "Marketing stats band — a horizontal row of three or four big headline numbers, each a large display figure over a short caption (uptime, customers, requests, countries). The 'by the numbers / trusted at scale' proof band that sits between a hero and the features on a landing page.",
14
+ "keywords": [
15
+ "stats",
16
+ "band",
17
+ "big",
18
+ "numbers",
19
+ "metrics",
20
+ "marketing",
21
+ "proof",
22
+ "social",
23
+ "proof",
24
+ "by",
25
+ "the",
26
+ "numbers",
27
+ "at",
28
+ "scale",
29
+ "headline",
30
+ "figures",
31
+ "uptime",
32
+ "customers",
33
+ "users",
34
+ "requests",
35
+ "countries",
36
+ "growth",
37
+ "display",
38
+ "stats",
39
+ "row",
40
+ "landing",
41
+ "page",
42
+ "trust",
43
+ "signals",
44
+ "key",
45
+ "metrics",
46
+ "impressive",
47
+ "numbers",
48
+ "statistics",
49
+ "band",
50
+ "achievements"
51
+ ]
52
+ },
53
+ "captured_at": "2026-06-10T19:45:40.486Z",
54
+ "template": [
55
+ {
56
+ "id": "text",
57
+ "component": "Text",
58
+ "color": "accent",
59
+ "size": "lg",
60
+ "variant": "display",
61
+ "textContent": "99.99%"
62
+ },
63
+ {
64
+ "id": "text-2",
65
+ "component": "Text",
66
+ "color": "subtle",
67
+ "size": "sm",
68
+ "textContent": "Uptime SLA"
69
+ },
70
+ {
71
+ "id": "column",
72
+ "component": "Column",
73
+ "align": "center",
74
+ "gap": "0",
75
+ "children": [
76
+ "text",
77
+ "text-2"
78
+ ]
79
+ },
80
+ {
81
+ "id": "text-3",
82
+ "component": "Text",
83
+ "color": "accent",
84
+ "size": "lg",
85
+ "variant": "display",
86
+ "textContent": "12,000+"
87
+ },
88
+ {
89
+ "id": "text-4",
90
+ "component": "Text",
91
+ "color": "subtle",
92
+ "size": "sm",
93
+ "textContent": "Teams shipping"
94
+ },
95
+ {
96
+ "id": "column-2",
97
+ "component": "Column",
98
+ "align": "center",
99
+ "gap": "0",
100
+ "children": [
101
+ "text-3",
102
+ "text-4"
103
+ ]
104
+ },
105
+ {
106
+ "id": "text-5",
107
+ "component": "Text",
108
+ "color": "accent",
109
+ "size": "lg",
110
+ "variant": "display",
111
+ "textContent": "4.2B"
112
+ },
113
+ {
114
+ "id": "text-6",
115
+ "component": "Text",
116
+ "color": "subtle",
117
+ "size": "sm",
118
+ "textContent": "Requests / month"
119
+ },
120
+ {
121
+ "id": "column-3",
122
+ "component": "Column",
123
+ "align": "center",
124
+ "gap": "0",
125
+ "children": [
126
+ "text-5",
127
+ "text-6"
128
+ ]
129
+ },
130
+ {
131
+ "id": "text-7",
132
+ "component": "Text",
133
+ "color": "accent",
134
+ "size": "lg",
135
+ "variant": "display",
136
+ "textContent": "86"
137
+ },
138
+ {
139
+ "id": "text-8",
140
+ "component": "Text",
141
+ "color": "subtle",
142
+ "size": "sm",
143
+ "textContent": "Countries"
144
+ },
145
+ {
146
+ "id": "column-4",
147
+ "component": "Column",
148
+ "align": "center",
149
+ "gap": "0",
150
+ "children": [
151
+ "text-7",
152
+ "text-8"
153
+ ]
154
+ },
155
+ {
156
+ "id": "grid",
157
+ "component": "Grid",
158
+ "columns": "2 4@md",
159
+ "gap": "4",
160
+ "children": [
161
+ "column",
162
+ "column-2",
163
+ "column-3",
164
+ "column-4"
165
+ ]
166
+ },
167
+ {
168
+ "id": "root",
169
+ "component": "Section",
170
+ "children": [
171
+ "grid"
172
+ ]
173
+ }
174
+ ]
175
+ }