@adia-ai/a2ui-corpus 0.7.18 → 0.7.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 +10 -0
- package/chunk-embeddings.json +1 -1
- package/chunks/_index.json +2176 -64
- package/chunks/agent-artifact-stub-card.json +115 -0
- package/chunks/agent-citations-source-chips.json +78 -0
- package/chunks/agent-pipeline-status-stages.json +69 -0
- package/chunks/agent-tool-call-accordion.json +109 -0
- package/chunks/billing-cancel-subscription-danger.json +61 -0
- package/chunks/billing-invoice-history-table.json +75 -0
- package/chunks/billing-payment-method-card-on-file.json +157 -0
- package/chunks/business-address-form.json +950 -0
- package/chunks/chat-empty-state-hero.json +102 -0
- package/chunks/chat-message-assistant-byline.json +85 -0
- package/chunks/chat-message-user-byline.json +84 -0
- package/chunks/checkout-order-summary-card.json +140 -0
- package/chunks/contact-form-card.json +197 -0
- package/chunks/contact-support-form.json +699 -0
- package/chunks/data-import-wizard.json +12 -3
- package/chunks/departments-checkbox-form.json +387 -0
- package/chunks/editor-statusbar-ready.json +99 -0
- package/chunks/editor-toolbar-import-export.json +195 -0
- package/chunks/extended-profile-form.json +509 -0
- package/chunks/feature-toggle-switch-grid.json +213 -0
- package/chunks/file-upload-field.json +97 -0
- package/chunks/file-upload-form.json +248 -0
- package/chunks/form-field-with-error.json +151 -0
- package/chunks/image-thumbnail-grid.json +77 -0
- package/chunks/integrations-api-keys-card-list.json +475 -0
- package/chunks/integrations-connect-form.json +547 -0
- package/chunks/integrations-webhooks-empty-state.json +66 -0
- package/chunks/library-browser-search-filter.json +109 -0
- package/chunks/login-form-card.json +207 -0
- package/chunks/map-with-location-list.json +291 -0
- package/chunks/members-active-table-search-filter.json +184 -0
- package/chunks/members-pending-invites-cards.json +251 -0
- package/chunks/members-roles-permissions-list.json +104 -0
- package/chunks/multi-field-form-validation.json +391 -0
- package/chunks/payment-checkout-form.json +338 -0
- package/chunks/plan-selection-form.json +526 -0
- package/chunks/reg-step-shell.json +12 -3
- package/chunks/schedule-meeting-form-card.json +229 -0
- package/chunks/searchable-picker-modal.json +164 -0
- package/chunks/security-active-sessions-devices.json +287 -0
- package/chunks/security-change-password-form.json +102 -0
- package/chunks/security-delete-account-danger.json +79 -0
- package/chunks/settings-admin-page.json +61 -34
- package/chunks/settings-danger-zone-delete-workspace.json +93 -0
- package/chunks/settings-notification-activity-checkboxes.json +108 -0
- package/chunks/settings-notification-channels-switches.json +101 -0
- package/chunks/signup-form-card.json +218 -0
- package/chunks/signup-team-size-form.json +256 -0
- package/chunks/single-select-card-form.json +228 -0
- package/chunks/team-invite-form.json +377 -0
- package/chunks/url-import-form.json +725 -0
- package/package.json +1 -1
|
@@ -0,0 +1,151 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "form-field-with-error",
|
|
3
|
+
"kind": "block",
|
|
4
|
+
"primary": "card-ui",
|
|
5
|
+
"page": "/catalog/ui-patterns/v050-form-blocks/v050-form-blocks.contents.html",
|
|
6
|
+
"slots": [],
|
|
7
|
+
"nested": [],
|
|
8
|
+
"attrs": {},
|
|
9
|
+
"html": "<card-ui>\n <header>\n <h3>Validation states</h3>\n <p slot=\"description\">Error messages live on the control via the error attribute.</p>\n </header>\n <section>\n <col-ui gap=\"4\">\n <field-ui label=\"Email\" required>\n <input-ui type=\"email\" name=\"email\" value=\"jane@\" error=\"Enter a valid email address.\" required></input-ui>\n </field-ui>\n <field-ui label=\"Username\" hint=\"Letters, numbers, and underscores only.\">\n <input-ui name=\"username\" value=\"jane_doe\" autocomplete=\"username\"></input-ui>\n </field-ui>\n <field-ui label=\"Password\" required>\n <input-ui type=\"password\" name=\"password\" value=\"abc\" error=\"Password must be at least 8 characters.\" required></input-ui>\n </field-ui>\n </col-ui>\n </section>\n <footer>\n <button-ui text=\"Save changes\" variant=\"primary\" type=\"submit\" stretch></button-ui>\n </footer>\n </card-ui>",
|
|
10
|
+
"source": "catalog/ui-patterns/v050-form-blocks/v050-form-blocks.contents.html",
|
|
11
|
+
"metadata": {
|
|
12
|
+
"domain": "forms",
|
|
13
|
+
"description": "Form fields showing the canonical validation-error shape — a field-ui whose slotted input-ui carries an `error` message (the error renders below the control in danger style, NOT as a sibling element), shown next to a valid field with a hint for contrast. Use for 'form with validation errors', 'invalid field state', 'form field error message'.",
|
|
14
|
+
"keywords": [
|
|
15
|
+
"form",
|
|
16
|
+
"field",
|
|
17
|
+
"validation",
|
|
18
|
+
"error",
|
|
19
|
+
"invalid",
|
|
20
|
+
"danger",
|
|
21
|
+
"message",
|
|
22
|
+
"hint",
|
|
23
|
+
"required",
|
|
24
|
+
"input",
|
|
25
|
+
"field-ui",
|
|
26
|
+
"error-state",
|
|
27
|
+
"inline-error",
|
|
28
|
+
"feedback",
|
|
29
|
+
"aria",
|
|
30
|
+
"validation-message",
|
|
31
|
+
"canonical"
|
|
32
|
+
]
|
|
33
|
+
},
|
|
34
|
+
"captured_at": "2026-06-10T14:28:57.979Z",
|
|
35
|
+
"template": [
|
|
36
|
+
{
|
|
37
|
+
"id": "text",
|
|
38
|
+
"component": "Text",
|
|
39
|
+
"variant": "heading",
|
|
40
|
+
"textContent": "Validation states"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"id": "text-2",
|
|
44
|
+
"component": "Text",
|
|
45
|
+
"variant": "body",
|
|
46
|
+
"slot": "description",
|
|
47
|
+
"textContent": "Error messages live on the control via the error attribute."
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"id": "header",
|
|
51
|
+
"component": "Header",
|
|
52
|
+
"children": [
|
|
53
|
+
"text",
|
|
54
|
+
"text-2"
|
|
55
|
+
]
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"id": "email",
|
|
59
|
+
"component": "Input",
|
|
60
|
+
"type": "email",
|
|
61
|
+
"required": true,
|
|
62
|
+
"error": "Enter a valid email address.",
|
|
63
|
+
"name": "email",
|
|
64
|
+
"value": "jane@"
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"id": "field",
|
|
68
|
+
"component": "Field",
|
|
69
|
+
"required": true,
|
|
70
|
+
"label": "Email",
|
|
71
|
+
"children": [
|
|
72
|
+
"email"
|
|
73
|
+
]
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"id": "username",
|
|
77
|
+
"component": "Input",
|
|
78
|
+
"autocomplete": "username",
|
|
79
|
+
"name": "username",
|
|
80
|
+
"value": "jane_doe"
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"id": "field-2",
|
|
84
|
+
"component": "Field",
|
|
85
|
+
"hint": "Letters, numbers, and underscores only.",
|
|
86
|
+
"label": "Username",
|
|
87
|
+
"children": [
|
|
88
|
+
"username"
|
|
89
|
+
]
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"id": "password",
|
|
93
|
+
"component": "Input",
|
|
94
|
+
"type": "password",
|
|
95
|
+
"required": true,
|
|
96
|
+
"error": "Password must be at least 8 characters.",
|
|
97
|
+
"name": "password",
|
|
98
|
+
"value": "abc"
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"id": "field-3",
|
|
102
|
+
"component": "Field",
|
|
103
|
+
"required": true,
|
|
104
|
+
"label": "Password",
|
|
105
|
+
"children": [
|
|
106
|
+
"password"
|
|
107
|
+
]
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"id": "column",
|
|
111
|
+
"component": "Column",
|
|
112
|
+
"gap": "4",
|
|
113
|
+
"children": [
|
|
114
|
+
"field",
|
|
115
|
+
"field-2",
|
|
116
|
+
"field-3"
|
|
117
|
+
]
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"id": "section",
|
|
121
|
+
"component": "Section",
|
|
122
|
+
"children": [
|
|
123
|
+
"column"
|
|
124
|
+
]
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
"id": "button",
|
|
128
|
+
"component": "Button",
|
|
129
|
+
"type": "submit",
|
|
130
|
+
"stretch": true,
|
|
131
|
+
"text": "Save changes",
|
|
132
|
+
"variant": "primary"
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
"id": "footer",
|
|
136
|
+
"component": "Footer",
|
|
137
|
+
"children": [
|
|
138
|
+
"button"
|
|
139
|
+
]
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"id": "root",
|
|
143
|
+
"component": "Card",
|
|
144
|
+
"children": [
|
|
145
|
+
"header",
|
|
146
|
+
"section",
|
|
147
|
+
"footer"
|
|
148
|
+
]
|
|
149
|
+
}
|
|
150
|
+
]
|
|
151
|
+
}
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "image-thumbnail-grid",
|
|
3
|
+
"kind": "block",
|
|
4
|
+
"primary": "grid-ui",
|
|
5
|
+
"page": "/apps/genui/app/gen-ui-feed/gen-ui-feed.contents.html",
|
|
6
|
+
"slots": [],
|
|
7
|
+
"nested": [],
|
|
8
|
+
"attrs": {
|
|
9
|
+
"columns": "1 3@md",
|
|
10
|
+
"gap": "3"
|
|
11
|
+
},
|
|
12
|
+
"html": "<grid-ui\n columns=\"1 3@md\"\n gap=\"3\">\n <image-ui src=\"https://picsum.photos/seed/rev-1/480/320\" alt=\"Quarterly chart export\" radius=\"md\" style=\"aspect-ratio: 3/2\"></image-ui>\n <image-ui src=\"https://picsum.photos/seed/rev-2/480/320\" alt=\"Top account visualization\" radius=\"md\" style=\"aspect-ratio: 3/2\"></image-ui>\n <image-ui src=\"https://picsum.photos/seed/rev-3/480/320\" alt=\"Regional breakdown\" radius=\"md\" style=\"aspect-ratio: 3/2\"></image-ui>\n </grid-ui>",
|
|
13
|
+
"source": "apps/genui/app/gen-ui-feed/gen-ui-feed.contents.html",
|
|
14
|
+
"metadata": {
|
|
15
|
+
"domain": "display",
|
|
16
|
+
"description": "Image thumbnail grid — a responsive three-column grid of rounded images at a fixed aspect ratio, collapsing to one column on small screens. A compact photo / screenshot gallery for attaching visual results.",
|
|
17
|
+
"keywords": [
|
|
18
|
+
"image",
|
|
19
|
+
"thumbnail",
|
|
20
|
+
"grid",
|
|
21
|
+
"photo",
|
|
22
|
+
"gallery",
|
|
23
|
+
"screenshots",
|
|
24
|
+
"pictures",
|
|
25
|
+
"responsive",
|
|
26
|
+
"three",
|
|
27
|
+
"column",
|
|
28
|
+
"rounded",
|
|
29
|
+
"aspect",
|
|
30
|
+
"ratio",
|
|
31
|
+
"media",
|
|
32
|
+
"attachments",
|
|
33
|
+
"visual",
|
|
34
|
+
"exports",
|
|
35
|
+
"tiles",
|
|
36
|
+
"picture",
|
|
37
|
+
"grid",
|
|
38
|
+
"photo",
|
|
39
|
+
"grid"
|
|
40
|
+
]
|
|
41
|
+
},
|
|
42
|
+
"captured_at": "2026-06-10T16:56:21.616Z",
|
|
43
|
+
"template": [
|
|
44
|
+
{
|
|
45
|
+
"id": "image",
|
|
46
|
+
"component": "Image",
|
|
47
|
+
"alt": "Quarterly chart export",
|
|
48
|
+
"radius": "md",
|
|
49
|
+
"src": "https://picsum.photos/seed/rev-1/480/320"
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"id": "image-2",
|
|
53
|
+
"component": "Image",
|
|
54
|
+
"alt": "Top account visualization",
|
|
55
|
+
"radius": "md",
|
|
56
|
+
"src": "https://picsum.photos/seed/rev-2/480/320"
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"id": "image-3",
|
|
60
|
+
"component": "Image",
|
|
61
|
+
"alt": "Regional breakdown",
|
|
62
|
+
"radius": "md",
|
|
63
|
+
"src": "https://picsum.photos/seed/rev-3/480/320"
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"id": "root",
|
|
67
|
+
"component": "Grid",
|
|
68
|
+
"columns": "1 3@md",
|
|
69
|
+
"gap": "3",
|
|
70
|
+
"children": [
|
|
71
|
+
"image",
|
|
72
|
+
"image-2",
|
|
73
|
+
"image-3"
|
|
74
|
+
]
|
|
75
|
+
}
|
|
76
|
+
]
|
|
77
|
+
}
|
|
@@ -0,0 +1,475 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "integrations-api-keys-card-list",
|
|
3
|
+
"kind": "block",
|
|
4
|
+
"primary": "div",
|
|
5
|
+
"page": "/apps/saas/app/integrations/integrations.contents.html",
|
|
6
|
+
"slots": [],
|
|
7
|
+
"nested": [],
|
|
8
|
+
"attrs": {
|
|
9
|
+
"data-col": ""
|
|
10
|
+
},
|
|
11
|
+
"html": "<div data-col>\n <row-ui justify=\"space-between\" align=\"center\">\n <text-ui color=\"subtle\">3 active keys</text-ui>\n <button-ui text=\"+ Create key\" variant=\"primary\"></button-ui>\n </row-ui>\n <card-ui>\n <header>\n <span slot=\"heading\">\n <text-ui strong>Production</text-ui>\n <badge-ui text=\"Read/Write\" variant=\"accent\"></badge-ui>\n </span>\n <span slot=\"action\">\n <button-ui text=\"Reveal\" variant=\"ghost\" icon=\"eye\"></button-ui>\n <button-ui text=\"Rotate\"></button-ui>\n </span>\n </header>\n <section>\n <code-ui>\n <header>\n <span slot=\"label\">Key</span>\n <div role=\"button\" tabindex=\"0\" slot=\"copy\">Copy</div>\n </header>\n <pre><code>sk_live_••••••••••••4f72</code></pre>\n <footer>Created Jan 14, 2026 · Last used 3m ago</footer>\n </code-ui>\n </section>\n </card-ui>\n <card-ui>\n <header>\n <span slot=\"heading\">\n <text-ui strong>Staging</text-ui>\n <badge-ui text=\"Read/Write\" variant=\"accent\"></badge-ui>\n </span>\n <span slot=\"action\">\n <button-ui text=\"Reveal\" variant=\"ghost\" icon=\"eye\"></button-ui>\n <button-ui text=\"Rotate\"></button-ui>\n </span>\n </header>\n <section>\n <code-ui>\n <header>\n <span slot=\"label\">Key</span>\n <div role=\"button\" tabindex=\"0\" slot=\"copy\">Copy</div>\n </header>\n <pre><code>sk_test_••••••••••••9a1c</code></pre>\n <footer>Created Feb 28, 2026 · Last used 2h ago</footer>\n </code-ui>\n </section>\n </card-ui>\n <card-ui>\n <header>\n <span slot=\"heading\">\n <text-ui strong>Analytics read-only</text-ui>\n <badge-ui text=\"Read only\" variant=\"muted\"></badge-ui>\n </span>\n <span slot=\"action\">\n <button-ui text=\"Reveal\" variant=\"ghost\" icon=\"eye\"></button-ui>\n <button-ui text=\"Rotate\"></button-ui>\n </span>\n </header>\n <section>\n <code-ui>\n <header>\n <span slot=\"label\">Key</span>\n <div role=\"button\" tabindex=\"0\" slot=\"copy\">Copy</div>\n </header>\n <pre><code>sk_ro_••••••••••••b240</code></pre>\n <footer>Created Mar 12, 2026 · Last used yesterday</footer>\n </code-ui>\n </section>\n </card-ui>\n <alert-ui variant=\"info\" icon=\"info\" text=\"Keys grant full API access. Store them in your secrets manager — never commit to source control.\"></alert-ui>\n </div>",
|
|
12
|
+
"source": "apps/saas/app/integrations/integrations.contents.html",
|
|
13
|
+
"metadata": {
|
|
14
|
+
"domain": "data",
|
|
15
|
+
"description": "API keys list — a count-plus-Create-key header above card-ui rows, each showing a key name, read/write scope badge, masked secret in a copyable code-ui block, and Reveal/Rotate actions. The programmatic-access section of an integrations or developer settings page.",
|
|
16
|
+
"keywords": [
|
|
17
|
+
"api",
|
|
18
|
+
"keys",
|
|
19
|
+
"secret",
|
|
20
|
+
"tokens",
|
|
21
|
+
"card-ui",
|
|
22
|
+
"code-ui",
|
|
23
|
+
"reveal",
|
|
24
|
+
"rotate",
|
|
25
|
+
"copy",
|
|
26
|
+
"masked",
|
|
27
|
+
"production",
|
|
28
|
+
"staging",
|
|
29
|
+
"read-write",
|
|
30
|
+
"scope",
|
|
31
|
+
"badge",
|
|
32
|
+
"create-key",
|
|
33
|
+
"programmatic",
|
|
34
|
+
"access",
|
|
35
|
+
"developer",
|
|
36
|
+
"settings",
|
|
37
|
+
"credentials",
|
|
38
|
+
"data"
|
|
39
|
+
]
|
|
40
|
+
},
|
|
41
|
+
"captured_at": "2026-06-10T13:16:11.236Z",
|
|
42
|
+
"template": [
|
|
43
|
+
{
|
|
44
|
+
"id": "text",
|
|
45
|
+
"component": "Text",
|
|
46
|
+
"color": "subtle",
|
|
47
|
+
"textContent": "3 active keys"
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"id": "button",
|
|
51
|
+
"component": "Button",
|
|
52
|
+
"text": "+ Create key",
|
|
53
|
+
"variant": "primary"
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"id": "row",
|
|
57
|
+
"component": "Row",
|
|
58
|
+
"align": "center",
|
|
59
|
+
"justify": "space-between",
|
|
60
|
+
"children": [
|
|
61
|
+
"text",
|
|
62
|
+
"button"
|
|
63
|
+
]
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"id": "text-3",
|
|
67
|
+
"component": "Text",
|
|
68
|
+
"strong": true,
|
|
69
|
+
"textContent": "Production"
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"id": "badge",
|
|
73
|
+
"component": "Badge",
|
|
74
|
+
"text": "Read/Write",
|
|
75
|
+
"variant": "accent"
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"id": "text-2",
|
|
79
|
+
"component": "Text",
|
|
80
|
+
"variant": "body",
|
|
81
|
+
"slot": "heading",
|
|
82
|
+
"children": [
|
|
83
|
+
"text-3",
|
|
84
|
+
"badge"
|
|
85
|
+
]
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"id": "button-2",
|
|
89
|
+
"component": "Button",
|
|
90
|
+
"icon": "eye",
|
|
91
|
+
"text": "Reveal",
|
|
92
|
+
"variant": "ghost"
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"id": "button-3",
|
|
96
|
+
"component": "Button",
|
|
97
|
+
"text": "Rotate"
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"id": "text-4",
|
|
101
|
+
"component": "Text",
|
|
102
|
+
"variant": "body",
|
|
103
|
+
"slot": "action",
|
|
104
|
+
"children": [
|
|
105
|
+
"button-2",
|
|
106
|
+
"button-3"
|
|
107
|
+
]
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"id": "header",
|
|
111
|
+
"component": "Header",
|
|
112
|
+
"children": [
|
|
113
|
+
"text-2",
|
|
114
|
+
"text-4"
|
|
115
|
+
]
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"id": "text-5",
|
|
119
|
+
"component": "Text",
|
|
120
|
+
"variant": "body",
|
|
121
|
+
"slot": "label",
|
|
122
|
+
"textContent": "Key"
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"id": "text-6",
|
|
126
|
+
"component": "Text",
|
|
127
|
+
"variant": "body",
|
|
128
|
+
"slot": "copy",
|
|
129
|
+
"textContent": "Copy"
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"id": "header-2",
|
|
133
|
+
"component": "Header",
|
|
134
|
+
"children": [
|
|
135
|
+
"text-5",
|
|
136
|
+
"text-6"
|
|
137
|
+
]
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
"id": "code-3",
|
|
141
|
+
"component": "Code",
|
|
142
|
+
"textContent": "sk_live_••••••••••••4f72"
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
"id": "code-2",
|
|
146
|
+
"component": "Code",
|
|
147
|
+
"children": [
|
|
148
|
+
"code-3"
|
|
149
|
+
]
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
"id": "text-7",
|
|
153
|
+
"component": "Text",
|
|
154
|
+
"textContent": "Created Jan 14, 2026 · Last used 3m ago",
|
|
155
|
+
"variant": "body"
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
"id": "footer",
|
|
159
|
+
"component": "Footer",
|
|
160
|
+
"children": [
|
|
161
|
+
"text-7"
|
|
162
|
+
]
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
"id": "code",
|
|
166
|
+
"component": "Code",
|
|
167
|
+
"children": [
|
|
168
|
+
"header-2",
|
|
169
|
+
"code-2",
|
|
170
|
+
"footer"
|
|
171
|
+
]
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
"id": "section",
|
|
175
|
+
"component": "Section",
|
|
176
|
+
"children": [
|
|
177
|
+
"column"
|
|
178
|
+
]
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
"id": "column",
|
|
182
|
+
"component": "Column",
|
|
183
|
+
"children": [
|
|
184
|
+
"code"
|
|
185
|
+
]
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"id": "card",
|
|
189
|
+
"component": "Card",
|
|
190
|
+
"children": [
|
|
191
|
+
"header",
|
|
192
|
+
"section"
|
|
193
|
+
]
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
"id": "text-9",
|
|
197
|
+
"component": "Text",
|
|
198
|
+
"strong": true,
|
|
199
|
+
"textContent": "Staging"
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
"id": "badge-2",
|
|
203
|
+
"component": "Badge",
|
|
204
|
+
"text": "Read/Write",
|
|
205
|
+
"variant": "accent"
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
"id": "text-8",
|
|
209
|
+
"component": "Text",
|
|
210
|
+
"variant": "body",
|
|
211
|
+
"slot": "heading",
|
|
212
|
+
"children": [
|
|
213
|
+
"text-9",
|
|
214
|
+
"badge-2"
|
|
215
|
+
]
|
|
216
|
+
},
|
|
217
|
+
{
|
|
218
|
+
"id": "button-4",
|
|
219
|
+
"component": "Button",
|
|
220
|
+
"icon": "eye",
|
|
221
|
+
"text": "Reveal",
|
|
222
|
+
"variant": "ghost"
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
"id": "button-5",
|
|
226
|
+
"component": "Button",
|
|
227
|
+
"text": "Rotate"
|
|
228
|
+
},
|
|
229
|
+
{
|
|
230
|
+
"id": "text-10",
|
|
231
|
+
"component": "Text",
|
|
232
|
+
"variant": "body",
|
|
233
|
+
"slot": "action",
|
|
234
|
+
"children": [
|
|
235
|
+
"button-4",
|
|
236
|
+
"button-5"
|
|
237
|
+
]
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
"id": "header-3",
|
|
241
|
+
"component": "Header",
|
|
242
|
+
"children": [
|
|
243
|
+
"text-8",
|
|
244
|
+
"text-10"
|
|
245
|
+
]
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
"id": "text-11",
|
|
249
|
+
"component": "Text",
|
|
250
|
+
"variant": "body",
|
|
251
|
+
"slot": "label",
|
|
252
|
+
"textContent": "Key"
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
"id": "text-12",
|
|
256
|
+
"component": "Text",
|
|
257
|
+
"variant": "body",
|
|
258
|
+
"slot": "copy",
|
|
259
|
+
"textContent": "Copy"
|
|
260
|
+
},
|
|
261
|
+
{
|
|
262
|
+
"id": "header-4",
|
|
263
|
+
"component": "Header",
|
|
264
|
+
"children": [
|
|
265
|
+
"text-11",
|
|
266
|
+
"text-12"
|
|
267
|
+
]
|
|
268
|
+
},
|
|
269
|
+
{
|
|
270
|
+
"id": "code-6",
|
|
271
|
+
"component": "Code",
|
|
272
|
+
"textContent": "sk_test_••••••••••••9a1c"
|
|
273
|
+
},
|
|
274
|
+
{
|
|
275
|
+
"id": "code-5",
|
|
276
|
+
"component": "Code",
|
|
277
|
+
"children": [
|
|
278
|
+
"code-6"
|
|
279
|
+
]
|
|
280
|
+
},
|
|
281
|
+
{
|
|
282
|
+
"id": "text-13",
|
|
283
|
+
"component": "Text",
|
|
284
|
+
"textContent": "Created Feb 28, 2026 · Last used 2h ago",
|
|
285
|
+
"variant": "body"
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
"id": "footer-2",
|
|
289
|
+
"component": "Footer",
|
|
290
|
+
"children": [
|
|
291
|
+
"text-13"
|
|
292
|
+
]
|
|
293
|
+
},
|
|
294
|
+
{
|
|
295
|
+
"id": "code-4",
|
|
296
|
+
"component": "Code",
|
|
297
|
+
"children": [
|
|
298
|
+
"header-4",
|
|
299
|
+
"code-5",
|
|
300
|
+
"footer-2"
|
|
301
|
+
]
|
|
302
|
+
},
|
|
303
|
+
{
|
|
304
|
+
"id": "section-2",
|
|
305
|
+
"component": "Section",
|
|
306
|
+
"children": [
|
|
307
|
+
"column-2"
|
|
308
|
+
]
|
|
309
|
+
},
|
|
310
|
+
{
|
|
311
|
+
"id": "column-2",
|
|
312
|
+
"component": "Column",
|
|
313
|
+
"children": [
|
|
314
|
+
"code-4"
|
|
315
|
+
]
|
|
316
|
+
},
|
|
317
|
+
{
|
|
318
|
+
"id": "card-2",
|
|
319
|
+
"component": "Card",
|
|
320
|
+
"children": [
|
|
321
|
+
"header-3",
|
|
322
|
+
"section-2"
|
|
323
|
+
]
|
|
324
|
+
},
|
|
325
|
+
{
|
|
326
|
+
"id": "text-15",
|
|
327
|
+
"component": "Text",
|
|
328
|
+
"strong": true,
|
|
329
|
+
"textContent": "Analytics read-only"
|
|
330
|
+
},
|
|
331
|
+
{
|
|
332
|
+
"id": "badge-3",
|
|
333
|
+
"component": "Badge",
|
|
334
|
+
"text": "Read only",
|
|
335
|
+
"variant": "muted"
|
|
336
|
+
},
|
|
337
|
+
{
|
|
338
|
+
"id": "text-14",
|
|
339
|
+
"component": "Text",
|
|
340
|
+
"variant": "body",
|
|
341
|
+
"slot": "heading",
|
|
342
|
+
"children": [
|
|
343
|
+
"text-15",
|
|
344
|
+
"badge-3"
|
|
345
|
+
]
|
|
346
|
+
},
|
|
347
|
+
{
|
|
348
|
+
"id": "button-6",
|
|
349
|
+
"component": "Button",
|
|
350
|
+
"icon": "eye",
|
|
351
|
+
"text": "Reveal",
|
|
352
|
+
"variant": "ghost"
|
|
353
|
+
},
|
|
354
|
+
{
|
|
355
|
+
"id": "button-7",
|
|
356
|
+
"component": "Button",
|
|
357
|
+
"text": "Rotate"
|
|
358
|
+
},
|
|
359
|
+
{
|
|
360
|
+
"id": "text-16",
|
|
361
|
+
"component": "Text",
|
|
362
|
+
"variant": "body",
|
|
363
|
+
"slot": "action",
|
|
364
|
+
"children": [
|
|
365
|
+
"button-6",
|
|
366
|
+
"button-7"
|
|
367
|
+
]
|
|
368
|
+
},
|
|
369
|
+
{
|
|
370
|
+
"id": "header-5",
|
|
371
|
+
"component": "Header",
|
|
372
|
+
"children": [
|
|
373
|
+
"text-14",
|
|
374
|
+
"text-16"
|
|
375
|
+
]
|
|
376
|
+
},
|
|
377
|
+
{
|
|
378
|
+
"id": "text-17",
|
|
379
|
+
"component": "Text",
|
|
380
|
+
"variant": "body",
|
|
381
|
+
"slot": "label",
|
|
382
|
+
"textContent": "Key"
|
|
383
|
+
},
|
|
384
|
+
{
|
|
385
|
+
"id": "text-18",
|
|
386
|
+
"component": "Text",
|
|
387
|
+
"variant": "body",
|
|
388
|
+
"slot": "copy",
|
|
389
|
+
"textContent": "Copy"
|
|
390
|
+
},
|
|
391
|
+
{
|
|
392
|
+
"id": "header-6",
|
|
393
|
+
"component": "Header",
|
|
394
|
+
"children": [
|
|
395
|
+
"text-17",
|
|
396
|
+
"text-18"
|
|
397
|
+
]
|
|
398
|
+
},
|
|
399
|
+
{
|
|
400
|
+
"id": "code-9",
|
|
401
|
+
"component": "Code",
|
|
402
|
+
"textContent": "sk_ro_••••••••••••b240"
|
|
403
|
+
},
|
|
404
|
+
{
|
|
405
|
+
"id": "code-8",
|
|
406
|
+
"component": "Code",
|
|
407
|
+
"children": [
|
|
408
|
+
"code-9"
|
|
409
|
+
]
|
|
410
|
+
},
|
|
411
|
+
{
|
|
412
|
+
"id": "text-19",
|
|
413
|
+
"component": "Text",
|
|
414
|
+
"textContent": "Created Mar 12, 2026 · Last used yesterday",
|
|
415
|
+
"variant": "body"
|
|
416
|
+
},
|
|
417
|
+
{
|
|
418
|
+
"id": "footer-3",
|
|
419
|
+
"component": "Footer",
|
|
420
|
+
"children": [
|
|
421
|
+
"text-19"
|
|
422
|
+
]
|
|
423
|
+
},
|
|
424
|
+
{
|
|
425
|
+
"id": "code-7",
|
|
426
|
+
"component": "Code",
|
|
427
|
+
"children": [
|
|
428
|
+
"header-6",
|
|
429
|
+
"code-8",
|
|
430
|
+
"footer-3"
|
|
431
|
+
]
|
|
432
|
+
},
|
|
433
|
+
{
|
|
434
|
+
"id": "section-3",
|
|
435
|
+
"component": "Section",
|
|
436
|
+
"children": [
|
|
437
|
+
"column-3"
|
|
438
|
+
]
|
|
439
|
+
},
|
|
440
|
+
{
|
|
441
|
+
"id": "column-3",
|
|
442
|
+
"component": "Column",
|
|
443
|
+
"children": [
|
|
444
|
+
"code-7"
|
|
445
|
+
]
|
|
446
|
+
},
|
|
447
|
+
{
|
|
448
|
+
"id": "card-3",
|
|
449
|
+
"component": "Card",
|
|
450
|
+
"children": [
|
|
451
|
+
"header-5",
|
|
452
|
+
"section-3"
|
|
453
|
+
]
|
|
454
|
+
},
|
|
455
|
+
{
|
|
456
|
+
"id": "alert",
|
|
457
|
+
"component": "Alert",
|
|
458
|
+
"icon": "info",
|
|
459
|
+
"text": "Keys grant full API access. Store them in your secrets manager — never commit to source control.",
|
|
460
|
+
"variant": "info"
|
|
461
|
+
},
|
|
462
|
+
{
|
|
463
|
+
"id": "root",
|
|
464
|
+
"component": "Column",
|
|
465
|
+
"data-col": "",
|
|
466
|
+
"children": [
|
|
467
|
+
"row",
|
|
468
|
+
"card",
|
|
469
|
+
"card-2",
|
|
470
|
+
"card-3",
|
|
471
|
+
"alert"
|
|
472
|
+
]
|
|
473
|
+
}
|
|
474
|
+
]
|
|
475
|
+
}
|