@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.
Files changed (55) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/chunk-embeddings.json +1 -1
  3. package/chunks/_index.json +2176 -64
  4. package/chunks/agent-artifact-stub-card.json +115 -0
  5. package/chunks/agent-citations-source-chips.json +78 -0
  6. package/chunks/agent-pipeline-status-stages.json +69 -0
  7. package/chunks/agent-tool-call-accordion.json +109 -0
  8. package/chunks/billing-cancel-subscription-danger.json +61 -0
  9. package/chunks/billing-invoice-history-table.json +75 -0
  10. package/chunks/billing-payment-method-card-on-file.json +157 -0
  11. package/chunks/business-address-form.json +950 -0
  12. package/chunks/chat-empty-state-hero.json +102 -0
  13. package/chunks/chat-message-assistant-byline.json +85 -0
  14. package/chunks/chat-message-user-byline.json +84 -0
  15. package/chunks/checkout-order-summary-card.json +140 -0
  16. package/chunks/contact-form-card.json +197 -0
  17. package/chunks/contact-support-form.json +699 -0
  18. package/chunks/data-import-wizard.json +12 -3
  19. package/chunks/departments-checkbox-form.json +387 -0
  20. package/chunks/editor-statusbar-ready.json +99 -0
  21. package/chunks/editor-toolbar-import-export.json +195 -0
  22. package/chunks/extended-profile-form.json +509 -0
  23. package/chunks/feature-toggle-switch-grid.json +213 -0
  24. package/chunks/file-upload-field.json +97 -0
  25. package/chunks/file-upload-form.json +248 -0
  26. package/chunks/form-field-with-error.json +151 -0
  27. package/chunks/image-thumbnail-grid.json +77 -0
  28. package/chunks/integrations-api-keys-card-list.json +475 -0
  29. package/chunks/integrations-connect-form.json +547 -0
  30. package/chunks/integrations-webhooks-empty-state.json +66 -0
  31. package/chunks/library-browser-search-filter.json +109 -0
  32. package/chunks/login-form-card.json +207 -0
  33. package/chunks/map-with-location-list.json +291 -0
  34. package/chunks/members-active-table-search-filter.json +184 -0
  35. package/chunks/members-pending-invites-cards.json +251 -0
  36. package/chunks/members-roles-permissions-list.json +104 -0
  37. package/chunks/multi-field-form-validation.json +391 -0
  38. package/chunks/payment-checkout-form.json +338 -0
  39. package/chunks/plan-selection-form.json +526 -0
  40. package/chunks/reg-step-shell.json +12 -3
  41. package/chunks/schedule-meeting-form-card.json +229 -0
  42. package/chunks/searchable-picker-modal.json +164 -0
  43. package/chunks/security-active-sessions-devices.json +287 -0
  44. package/chunks/security-change-password-form.json +102 -0
  45. package/chunks/security-delete-account-danger.json +79 -0
  46. package/chunks/settings-admin-page.json +61 -34
  47. package/chunks/settings-danger-zone-delete-workspace.json +93 -0
  48. package/chunks/settings-notification-activity-checkboxes.json +108 -0
  49. package/chunks/settings-notification-channels-switches.json +101 -0
  50. package/chunks/signup-form-card.json +218 -0
  51. package/chunks/signup-team-size-form.json +256 -0
  52. package/chunks/single-select-card-form.json +228 -0
  53. package/chunks/team-invite-form.json +377 -0
  54. package/chunks/url-import-form.json +725 -0
  55. package/package.json +1 -1
@@ -0,0 +1,108 @@
1
+ {
2
+ "name": "settings-notification-activity-checkboxes",
3
+ "kind": "block",
4
+ "primary": "div",
5
+ "page": "/apps/saas/app/settings-page/settings-page.contents.html",
6
+ "slots": [],
7
+ "nested": [],
8
+ "attrs": {
9
+ "data-section": ""
10
+ },
11
+ "html": "<div data-section>\n <aside>\n <h3>Activity</h3>\n <p>What types of events trigger notifications.</p>\n </aside>\n <div data-col>\n <check-ui label=\"New team member joins\" checked></check-ui>\n <check-ui label=\"API key rotated\" checked></check-ui>\n <check-ui label=\"Usage threshold reached\" checked></check-ui>\n <check-ui label=\"Billing changes\"></check-ui>\n <check-ui label=\"Deployment completed\"></check-ui>\n </div>\n </div>",
12
+ "source": "apps/saas/app/settings-page/settings-page.contents.html",
13
+ "metadata": {
14
+ "domain": "settings",
15
+ "description": "Notification activity triggers — a column of check-ui checkboxes selecting which event types (member joins, key rotated, threshold reached, billing, deploys) fire notifications. The event-filter half of a notifications settings section.",
16
+ "keywords": [
17
+ "settings",
18
+ "notifications",
19
+ "activity",
20
+ "events",
21
+ "check-ui",
22
+ "checkbox",
23
+ "triggers",
24
+ "member-joins",
25
+ "api-key-rotated",
26
+ "usage-threshold",
27
+ "billing",
28
+ "deployment",
29
+ "opt-in",
30
+ "event-types",
31
+ "notification-settings",
32
+ "workspace",
33
+ "preferences"
34
+ ]
35
+ },
36
+ "captured_at": "2026-06-10T13:16:11.236Z",
37
+ "template": [
38
+ {
39
+ "id": "text",
40
+ "component": "Text",
41
+ "variant": "heading",
42
+ "textContent": "Activity"
43
+ },
44
+ {
45
+ "id": "text-2",
46
+ "component": "Text",
47
+ "variant": "body",
48
+ "textContent": "What types of events trigger notifications."
49
+ },
50
+ {
51
+ "id": "sidebar",
52
+ "component": "Sidebar",
53
+ "children": [
54
+ "text",
55
+ "text-2"
56
+ ]
57
+ },
58
+ {
59
+ "id": "check-box",
60
+ "component": "CheckBox",
61
+ "checked": true,
62
+ "label": "New team member joins"
63
+ },
64
+ {
65
+ "id": "check-box-2",
66
+ "component": "CheckBox",
67
+ "checked": true,
68
+ "label": "API key rotated"
69
+ },
70
+ {
71
+ "id": "check-box-3",
72
+ "component": "CheckBox",
73
+ "checked": true,
74
+ "label": "Usage threshold reached"
75
+ },
76
+ {
77
+ "id": "check-box-4",
78
+ "component": "CheckBox",
79
+ "label": "Billing changes"
80
+ },
81
+ {
82
+ "id": "check-box-5",
83
+ "component": "CheckBox",
84
+ "label": "Deployment completed"
85
+ },
86
+ {
87
+ "id": "column",
88
+ "component": "Column",
89
+ "data-col": "",
90
+ "children": [
91
+ "check-box",
92
+ "check-box-2",
93
+ "check-box-3",
94
+ "check-box-4",
95
+ "check-box-5"
96
+ ]
97
+ },
98
+ {
99
+ "id": "root",
100
+ "component": "Column",
101
+ "data-section": "",
102
+ "children": [
103
+ "sidebar",
104
+ "column"
105
+ ]
106
+ }
107
+ ]
108
+ }
@@ -0,0 +1,101 @@
1
+ {
2
+ "name": "settings-notification-channels-switches",
3
+ "kind": "block",
4
+ "primary": "div",
5
+ "page": "/apps/saas/app/settings-page/settings-page.contents.html",
6
+ "slots": [],
7
+ "nested": [],
8
+ "attrs": {
9
+ "data-section": ""
10
+ },
11
+ "html": "<div data-section>\n <aside>\n <h3>Channels</h3>\n <p>Choose how you receive notifications for workspace activity.</p>\n </aside>\n <div data-col>\n <switch-ui label=\"Email notifications\" checked></switch-ui>\n <switch-ui label=\"Push notifications\"></switch-ui>\n <switch-ui label=\"Weekly digest\" checked></switch-ui>\n <switch-ui label=\"SMS alerts\"></switch-ui>\n </div>\n </div>",
12
+ "source": "apps/saas/app/settings-page/settings-page.contents.html",
13
+ "metadata": {
14
+ "domain": "settings",
15
+ "description": "Notification channels — a column of switch-ui toggles for the delivery channels (email, push, weekly digest, SMS) of a notifications settings section. Instant on/off per channel, no submit.",
16
+ "keywords": [
17
+ "settings",
18
+ "notifications",
19
+ "channels",
20
+ "switch-ui",
21
+ "toggle",
22
+ "email",
23
+ "push",
24
+ "weekly-digest",
25
+ "sms",
26
+ "alerts",
27
+ "delivery",
28
+ "preferences",
29
+ "instant",
30
+ "on-off",
31
+ "notification-settings",
32
+ "workspace",
33
+ "activity"
34
+ ]
35
+ },
36
+ "captured_at": "2026-06-10T13:16:11.236Z",
37
+ "template": [
38
+ {
39
+ "id": "text",
40
+ "component": "Text",
41
+ "variant": "heading",
42
+ "textContent": "Channels"
43
+ },
44
+ {
45
+ "id": "text-2",
46
+ "component": "Text",
47
+ "variant": "body",
48
+ "textContent": "Choose how you receive notifications for workspace activity."
49
+ },
50
+ {
51
+ "id": "sidebar",
52
+ "component": "Sidebar",
53
+ "children": [
54
+ "text",
55
+ "text-2"
56
+ ]
57
+ },
58
+ {
59
+ "id": "toggle",
60
+ "component": "Toggle",
61
+ "checked": true,
62
+ "label": "Email notifications"
63
+ },
64
+ {
65
+ "id": "toggle-2",
66
+ "component": "Toggle",
67
+ "label": "Push notifications"
68
+ },
69
+ {
70
+ "id": "toggle-3",
71
+ "component": "Toggle",
72
+ "checked": true,
73
+ "label": "Weekly digest"
74
+ },
75
+ {
76
+ "id": "toggle-4",
77
+ "component": "Toggle",
78
+ "label": "SMS alerts"
79
+ },
80
+ {
81
+ "id": "column",
82
+ "component": "Column",
83
+ "data-col": "",
84
+ "children": [
85
+ "toggle",
86
+ "toggle-2",
87
+ "toggle-3",
88
+ "toggle-4"
89
+ ]
90
+ },
91
+ {
92
+ "id": "root",
93
+ "component": "Column",
94
+ "data-section": "",
95
+ "children": [
96
+ "sidebar",
97
+ "column"
98
+ ]
99
+ }
100
+ ]
101
+ }
@@ -0,0 +1,218 @@
1
+ {
2
+ "name": "signup-form-card",
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>Create your account</h3>\n <p slot=\"description\">Start your 14-day free trial. No credit card required.</p>\n </header>\n <section>\n <col-ui gap=\"4\">\n <field-ui label=\"Full name\">\n <input-ui name=\"name\" autocomplete=\"name\" placeholder=\"Jane Doe\" required></input-ui>\n </field-ui>\n <field-ui label=\"Work email\">\n <input-ui type=\"email\" name=\"email\" autocomplete=\"email\" placeholder=\"jane@acme.com\" required></input-ui>\n </field-ui>\n <field-ui label=\"Password\" hint=\"At least 8 characters with a number and a symbol.\">\n <input-ui type=\"password\" name=\"password\" autocomplete=\"new-password\" placeholder=\"••••••••\" required></input-ui>\n </field-ui>\n <field-ui label=\"Confirm password\">\n <input-ui type=\"password\" name=\"confirm\" autocomplete=\"new-password\" placeholder=\"••••••••\" required></input-ui>\n </field-ui>\n <check-ui name=\"terms\" label=\"I agree to the Terms of Service and Privacy Policy\" required></check-ui>\n </col-ui>\n </section>\n <footer>\n <col-ui gap=\"3\">\n <button-ui text=\"Create account\" variant=\"primary\" type=\"submit\" stretch></button-ui>\n <text-ui text-align=\"center\" color=\"subtle\" size=\"sm\">Already have an account? <a href=\"#\">Sign in</a></text-ui>\n </col-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": "Canonical full signup / create-account form card — heading and subheading, then name, email, password, and confirm-password fields each as a field-ui label wrapping an input-ui, a terms-acceptance checkbox, and a footer with a full-width Create account button plus a sign-in link. The complete form composition (header + fields + actions footer). Use for 'signup form', 'create account form', 'registration form', 'sign up'.",
14
+ "keywords": [
15
+ "signup",
16
+ "form",
17
+ "create",
18
+ "account",
19
+ "register",
20
+ "registration",
21
+ "sign",
22
+ "up",
23
+ "name",
24
+ "email",
25
+ "password",
26
+ "confirm",
27
+ "terms",
28
+ "checkbox",
29
+ "field",
30
+ "input",
31
+ "label",
32
+ "complete",
33
+ "card",
34
+ "heading",
35
+ "footer",
36
+ "submit",
37
+ "button",
38
+ "full-form"
39
+ ]
40
+ },
41
+ "captured_at": "2026-06-10T14:28:57.979Z",
42
+ "template": [
43
+ {
44
+ "id": "text",
45
+ "component": "Text",
46
+ "variant": "heading",
47
+ "textContent": "Create your account"
48
+ },
49
+ {
50
+ "id": "text-2",
51
+ "component": "Text",
52
+ "variant": "body",
53
+ "slot": "description",
54
+ "textContent": "Start your 14-day free trial. No credit card required."
55
+ },
56
+ {
57
+ "id": "header",
58
+ "component": "Header",
59
+ "children": [
60
+ "text",
61
+ "text-2"
62
+ ]
63
+ },
64
+ {
65
+ "id": "name",
66
+ "component": "Input",
67
+ "required": true,
68
+ "autocomplete": "name",
69
+ "name": "name",
70
+ "placeholder": "Jane Doe"
71
+ },
72
+ {
73
+ "id": "field",
74
+ "component": "Field",
75
+ "label": "Full name",
76
+ "children": [
77
+ "name"
78
+ ]
79
+ },
80
+ {
81
+ "id": "email",
82
+ "component": "Input",
83
+ "type": "email",
84
+ "required": true,
85
+ "autocomplete": "email",
86
+ "name": "email",
87
+ "placeholder": "jane@acme.com"
88
+ },
89
+ {
90
+ "id": "field-2",
91
+ "component": "Field",
92
+ "label": "Work email",
93
+ "children": [
94
+ "email"
95
+ ]
96
+ },
97
+ {
98
+ "id": "password",
99
+ "component": "Input",
100
+ "type": "password",
101
+ "required": true,
102
+ "autocomplete": "new-password",
103
+ "name": "password",
104
+ "placeholder": "••••••••"
105
+ },
106
+ {
107
+ "id": "field-3",
108
+ "component": "Field",
109
+ "hint": "At least 8 characters with a number and a symbol.",
110
+ "label": "Password",
111
+ "children": [
112
+ "password"
113
+ ]
114
+ },
115
+ {
116
+ "id": "confirm",
117
+ "component": "Input",
118
+ "type": "password",
119
+ "required": true,
120
+ "autocomplete": "new-password",
121
+ "name": "confirm",
122
+ "placeholder": "••••••••"
123
+ },
124
+ {
125
+ "id": "field-4",
126
+ "component": "Field",
127
+ "label": "Confirm password",
128
+ "children": [
129
+ "confirm"
130
+ ]
131
+ },
132
+ {
133
+ "id": "terms",
134
+ "component": "CheckBox",
135
+ "required": true,
136
+ "label": "I agree to the Terms of Service and Privacy Policy",
137
+ "name": "terms"
138
+ },
139
+ {
140
+ "id": "column",
141
+ "component": "Column",
142
+ "gap": "4",
143
+ "children": [
144
+ "field",
145
+ "field-2",
146
+ "field-3",
147
+ "field-4",
148
+ "terms"
149
+ ]
150
+ },
151
+ {
152
+ "id": "section",
153
+ "component": "Section",
154
+ "children": [
155
+ "column"
156
+ ]
157
+ },
158
+ {
159
+ "id": "button",
160
+ "component": "Button",
161
+ "type": "submit",
162
+ "stretch": true,
163
+ "text": "Create account",
164
+ "variant": "primary"
165
+ },
166
+ {
167
+ "id": "text-4",
168
+ "component": "Text",
169
+ "textContent": "Sign in",
170
+ "variant": "body"
171
+ },
172
+ {
173
+ "id": "link",
174
+ "component": "Link",
175
+ "href": "#",
176
+ "text": "Sign in",
177
+ "children": [
178
+ "text-4"
179
+ ]
180
+ },
181
+ {
182
+ "id": "text-3",
183
+ "component": "Text",
184
+ "color": "subtle",
185
+ "size": "sm",
186
+ "text-align": "center",
187
+ "textContent": "Already have an account?",
188
+ "children": [
189
+ "link"
190
+ ]
191
+ },
192
+ {
193
+ "id": "column-2",
194
+ "component": "Column",
195
+ "gap": "3",
196
+ "children": [
197
+ "button",
198
+ "text-3"
199
+ ]
200
+ },
201
+ {
202
+ "id": "footer",
203
+ "component": "Footer",
204
+ "children": [
205
+ "column-2"
206
+ ]
207
+ },
208
+ {
209
+ "id": "root",
210
+ "component": "Card",
211
+ "children": [
212
+ "header",
213
+ "section",
214
+ "footer"
215
+ ]
216
+ }
217
+ ]
218
+ }
@@ -0,0 +1,256 @@
1
+ {
2
+ "name": "signup-team-size-form",
3
+ "kind": "block",
4
+ "primary": "form",
5
+ "page": "/apps/user-flow/app/registration/team-size/team-size.contents.html",
6
+ "slots": [],
7
+ "nested": [
8
+ "reg-step-header",
9
+ "reg-team-size",
10
+ "reg-step-footer",
11
+ "reg-step-progress"
12
+ ],
13
+ "attrs": {
14
+ "data-reg-input": "",
15
+ "action": "/site/examples/registration/invite",
16
+ "method": "get"
17
+ },
18
+ "html": "<form data-reg-input action=\"/site/examples/registration/invite\" method=\"get\">\n <header data-reg-heading><!-- nested: reg-step-header --></header>\n\n <section data-reg-form><!-- nested: reg-team-size --></section>\n\n <footer><!-- nested: reg-step-footer --></footer>\n </form>",
19
+ "source": "apps/user-flow/app/registration/team-size/team-size.contents.html",
20
+ "metadata": {
21
+ "domain": "forms",
22
+ "description": "Complete onboarding / signup step form — heading, a segmented control for team-size headcount range, an industry select with a hint, and a submit footer. Compact full form composition (header + fields + actions) typical of a signup wizard step. Use for 'signup form', 'onboarding step form', 'team size form', 'form with segmented control'.",
23
+ "keywords": [
24
+ "signup",
25
+ "form",
26
+ "onboarding",
27
+ "step",
28
+ "team",
29
+ "size",
30
+ "headcount",
31
+ "range",
32
+ "segmented",
33
+ "control",
34
+ "industry",
35
+ "select",
36
+ "hint",
37
+ "complete",
38
+ "card",
39
+ "heading",
40
+ "footer",
41
+ "submit",
42
+ "continue",
43
+ "wizard",
44
+ "full-form"
45
+ ],
46
+ "related": [
47
+ "reg-team-size",
48
+ "segmented-control-billing-tabs",
49
+ "reg-step-footer"
50
+ ],
51
+ "tags": {
52
+ "complexity": "simple",
53
+ "form": "signup"
54
+ }
55
+ },
56
+ "captured_at": "2026-06-10T14:28:57.979Z",
57
+ "template": [
58
+ {
59
+ "id": "text",
60
+ "component": "Text",
61
+ "variant": "display",
62
+ "textContent": "How big is your team?"
63
+ },
64
+ {
65
+ "id": "text-2",
66
+ "component": "Text",
67
+ "color": "subtle",
68
+ "textContent": "We'll right-size your defaults to match."
69
+ },
70
+ {
71
+ "id": "header-2",
72
+ "component": "Header",
73
+ "data-reg-heading": "",
74
+ "children": [
75
+ "text",
76
+ "text-2"
77
+ ]
78
+ },
79
+ {
80
+ "id": "header",
81
+ "component": "Header",
82
+ "data-reg-heading": "",
83
+ "children": [
84
+ "header-2"
85
+ ]
86
+ },
87
+ {
88
+ "id": "segment",
89
+ "component": "Segment",
90
+ "text": "2–10",
91
+ "value": "2-10"
92
+ },
93
+ {
94
+ "id": "segment-2",
95
+ "component": "Segment",
96
+ "text": "11–50",
97
+ "value": "11-50"
98
+ },
99
+ {
100
+ "id": "segment-3",
101
+ "component": "Segment",
102
+ "text": "50+",
103
+ "value": "20+"
104
+ },
105
+ {
106
+ "id": "team-size",
107
+ "component": "SegmentedControl",
108
+ "value": "2-10",
109
+ "children": [
110
+ "segment",
111
+ "segment-2",
112
+ "segment-3"
113
+ ]
114
+ },
115
+ {
116
+ "id": "field",
117
+ "component": "Field",
118
+ "inline": true,
119
+ "label": "Team Size",
120
+ "children": [
121
+ "team-size"
122
+ ]
123
+ },
124
+ {
125
+ "id": "industry",
126
+ "component": "ChoicePicker",
127
+ "name": "industry",
128
+ "options": [
129
+ {
130
+ "value": "",
131
+ "label": "Choose…"
132
+ },
133
+ {
134
+ "value": "software",
135
+ "label": "Software · SaaS"
136
+ },
137
+ {
138
+ "value": "design",
139
+ "label": "Design · Creative"
140
+ },
141
+ {
142
+ "value": "marketing",
143
+ "label": "Marketing · Growth"
144
+ },
145
+ {
146
+ "value": "ecommerce",
147
+ "label": "E-commerce · Retail"
148
+ },
149
+ {
150
+ "value": "finance",
151
+ "label": "Finance · Fintech"
152
+ },
153
+ {
154
+ "value": "education",
155
+ "label": "Education · Research"
156
+ },
157
+ {
158
+ "value": "healthcare",
159
+ "label": "Healthcare · Biotech"
160
+ },
161
+ {
162
+ "value": "other",
163
+ "label": "Something else"
164
+ }
165
+ ]
166
+ },
167
+ {
168
+ "id": "field-2",
169
+ "component": "Field",
170
+ "hint": "Optional. Helps us recommend relevant templates.",
171
+ "inline": true,
172
+ "label": "Industry",
173
+ "children": [
174
+ "industry"
175
+ ]
176
+ },
177
+ {
178
+ "id": "section-2",
179
+ "component": "Section",
180
+ "data-reg-form": "",
181
+ "children": [
182
+ "field",
183
+ "field-2"
184
+ ]
185
+ },
186
+ {
187
+ "id": "section",
188
+ "component": "Section",
189
+ "data-reg-form": "",
190
+ "children": [
191
+ "section-2"
192
+ ]
193
+ },
194
+ {
195
+ "id": "column",
196
+ "component": "Column"
197
+ },
198
+ {
199
+ "id": "text-3",
200
+ "component": "Text",
201
+ "textContent": "Back",
202
+ "variant": "body"
203
+ },
204
+ {
205
+ "id": "link",
206
+ "component": "Link",
207
+ "href": "/site/examples/registration/use-case",
208
+ "text": "Back",
209
+ "data-reg-back": "",
210
+ "children": [
211
+ "text-3"
212
+ ]
213
+ },
214
+ {
215
+ "id": "button",
216
+ "component": "Button",
217
+ "type": "submit",
218
+ "text": "Continue",
219
+ "variant": "primary"
220
+ },
221
+ {
222
+ "id": "column-2",
223
+ "component": "Column",
224
+ "data-reg-actions": "",
225
+ "children": [
226
+ "link",
227
+ "button"
228
+ ]
229
+ },
230
+ {
231
+ "id": "footer-2",
232
+ "component": "Footer",
233
+ "children": [
234
+ "column",
235
+ "column-2"
236
+ ]
237
+ },
238
+ {
239
+ "id": "footer",
240
+ "component": "Footer",
241
+ "children": [
242
+ "footer-2"
243
+ ]
244
+ },
245
+ {
246
+ "id": "root",
247
+ "component": "FormContainer",
248
+ "data-reg-input": "",
249
+ "children": [
250
+ "header",
251
+ "section",
252
+ "footer"
253
+ ]
254
+ }
255
+ ]
256
+ }