@vmz/ui 0.0.3 → 0.1.0
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/README.md +28 -1
- package/conformance/fixtures/button-control-motion.json +22 -0
- package/conformance/fixtures/dialog-overlay-motion.json +27 -0
- package/conformance/fixtures/drawer-overlay-motion.json +27 -0
- package/conformance/pack.v0.json +7 -0
- package/contracts/token-requirements.v0.json +643 -2
- package/package.json +50 -2
- package/presets/web-surface.v0.json +34 -0
- package/src/components/Accordion.vmz +112 -0
- package/src/components/Alert.vmz +84 -0
- package/src/components/AppShell.vmz +97 -0
- package/src/components/Autocomplete.vmz +176 -0
- package/src/components/Badge.vmz +63 -0
- package/src/components/Breadcrumb.vmz +66 -0
- package/src/components/BulkActions.vmz +52 -0
- package/src/components/Button.vmz +78 -5
- package/src/components/Callout.vmz +80 -0
- package/src/components/Card.vmz +80 -0
- package/src/components/Checkbox.vmz +69 -0
- package/src/components/CodeBlock.vmz +67 -0
- package/src/components/ConsoleShell.vmz +127 -0
- package/src/components/DataTable.vmz +220 -0
- package/src/components/DatePicker.vmz +591 -0
- package/src/components/Dialog.vmz +442 -0
- package/src/components/Drawer.vmz +435 -0
- package/src/components/Empty.vmz +52 -0
- package/src/components/Field.vmz +88 -0
- package/src/components/FilterBar.vmz +27 -0
- package/src/components/Form.vmz +72 -0
- package/src/components/FormItem.vmz +78 -0
- package/src/components/Link.vmz +48 -0
- package/src/components/List.vmz +116 -0
- package/src/components/Menu.vmz +270 -0
- package/src/components/Notification.vmz +83 -0
- package/src/components/Pagination.vmz +81 -0
- package/src/components/Popover.vmz +253 -0
- package/src/components/Prose.vmz +83 -0
- package/src/components/QueryForm.vmz +39 -0
- package/src/components/RadioGroup.vmz +135 -0
- package/src/components/Result.vmz +84 -0
- package/src/components/Select.vmz +355 -0
- package/src/components/Skeleton.vmz +80 -0
- package/src/components/Spinner.vmz +45 -0
- package/src/components/Steps.vmz +107 -0
- package/src/components/Switch.vmz +109 -0
- package/src/components/Table.vmz +134 -0
- package/src/components/Tabs.vmz +132 -0
- package/src/components/TextArea.vmz +91 -0
- package/src/components/Timeline.vmz +67 -0
- package/src/components/Toc.vmz +77 -0
- package/src/components/Tooltip.vmz +68 -0
- package/src/components/Tree.vmz +215 -0
- package/src/components/Upload.vmz +1233 -0
|
@@ -10,8 +10,649 @@
|
|
|
10
10
|
"Button": {
|
|
11
11
|
"source": "src/components/Button.vmz",
|
|
12
12
|
"stableHint": "ui.Button",
|
|
13
|
-
"tokens": [
|
|
14
|
-
|
|
13
|
+
"tokens": [
|
|
14
|
+
"action.primary.background",
|
|
15
|
+
"action.primary.foreground",
|
|
16
|
+
"action.primary.hover",
|
|
17
|
+
"action.primary.active",
|
|
18
|
+
"action.secondary.background",
|
|
19
|
+
"action.secondary.foreground",
|
|
20
|
+
"action.secondary.border",
|
|
21
|
+
"action.secondary.hover",
|
|
22
|
+
"status.danger.accent",
|
|
23
|
+
"status.danger.foreground",
|
|
24
|
+
"surface.mist",
|
|
25
|
+
"text.ink",
|
|
26
|
+
"focus.ring",
|
|
27
|
+
"motion.control.duration",
|
|
28
|
+
"motion.control.easing",
|
|
29
|
+
"density.control.padding-y",
|
|
30
|
+
"density.control.padding-x",
|
|
31
|
+
"density.compact.padding-y",
|
|
32
|
+
"density.compact.padding-x",
|
|
33
|
+
"density.dense.padding-y",
|
|
34
|
+
"density.dense.padding-x"
|
|
35
|
+
],
|
|
36
|
+
"surfaces": ["WebSurface"],
|
|
37
|
+
"contracts": ["immediate-feedback", "reduced-motion", "density-control", "variants"]
|
|
38
|
+
},
|
|
39
|
+
"Link": {
|
|
40
|
+
"source": "src/components/Link.vmz",
|
|
41
|
+
"stableHint": "ui.Link",
|
|
42
|
+
"tokens": ["action.primary.background", "action.primary.hover", "action.primary.active", "focus.ring"],
|
|
43
|
+
"surfaces": ["WebSurface"],
|
|
44
|
+
"contracts": ["inline-navigation", "focus-visible"]
|
|
45
|
+
},
|
|
46
|
+
"Badge": {
|
|
47
|
+
"source": "src/components/Badge.vmz",
|
|
48
|
+
"stableHint": "ui.Badge",
|
|
49
|
+
"tokens": [
|
|
50
|
+
"action.primary.background",
|
|
51
|
+
"action.primary.active",
|
|
52
|
+
"surface.paper",
|
|
53
|
+
"surface.mist",
|
|
54
|
+
"text.ink",
|
|
55
|
+
"line.default",
|
|
56
|
+
"status.info.accent",
|
|
57
|
+
"status.info.foreground",
|
|
58
|
+
"status.success.accent",
|
|
59
|
+
"status.success.foreground",
|
|
60
|
+
"status.warning.accent",
|
|
61
|
+
"status.warning.foreground",
|
|
62
|
+
"status.danger.accent",
|
|
63
|
+
"status.danger.foreground"
|
|
64
|
+
],
|
|
65
|
+
"surfaces": ["WebSurface"],
|
|
66
|
+
"contracts": ["status-chip", "tone-matrix"]
|
|
67
|
+
},
|
|
68
|
+
"Spinner": {
|
|
69
|
+
"source": "src/components/Spinner.vmz",
|
|
70
|
+
"stableHint": "ui.Spinner",
|
|
71
|
+
"tokens": ["action.primary.background", "motion.overlay.duration", "motion.overlay.easing"],
|
|
72
|
+
"surfaces": ["WebSurface"],
|
|
73
|
+
"contracts": ["loading-indicator", "reduced-motion"]
|
|
74
|
+
},
|
|
75
|
+
"Tooltip": {
|
|
76
|
+
"source": "src/components/Tooltip.vmz",
|
|
77
|
+
"stableHint": "ui.Tooltip",
|
|
78
|
+
"tokens": ["surface.paper", "text.ink", "line.default", "focus.ring"],
|
|
79
|
+
"surfaces": ["WebSurface"],
|
|
80
|
+
"contracts": ["parent-owned-open", "tooltip-content"]
|
|
81
|
+
},
|
|
82
|
+
"Autocomplete": {
|
|
83
|
+
"source": "src/components/Autocomplete.vmz",
|
|
84
|
+
"stableHint": "ui.Autocomplete",
|
|
85
|
+
"tokens": [
|
|
86
|
+
"action.primary.background",
|
|
87
|
+
"status.danger.accent",
|
|
88
|
+
"status.danger.foreground",
|
|
89
|
+
"surface.paper",
|
|
90
|
+
"surface.mist",
|
|
91
|
+
"text.ink",
|
|
92
|
+
"text.steel",
|
|
93
|
+
"line.default",
|
|
94
|
+
"focus.ring",
|
|
95
|
+
"density.control.padding-y",
|
|
96
|
+
"density.control.padding-x"
|
|
97
|
+
],
|
|
98
|
+
"surfaces": ["WebSurface"],
|
|
99
|
+
"contracts": [
|
|
100
|
+
"label",
|
|
101
|
+
"description",
|
|
102
|
+
"error",
|
|
103
|
+
"parent-owned-value",
|
|
104
|
+
"parent-owned-options",
|
|
105
|
+
"listbox",
|
|
106
|
+
"escape-close",
|
|
107
|
+
"no-parallel-query-store"
|
|
108
|
+
]
|
|
109
|
+
},
|
|
110
|
+
"DatePicker": {
|
|
111
|
+
"source": "src/components/DatePicker.vmz",
|
|
112
|
+
"stableHint": "ui.DatePicker",
|
|
113
|
+
"tokens": [
|
|
114
|
+
"action.primary.background",
|
|
115
|
+
"status.danger.accent",
|
|
116
|
+
"status.danger.foreground",
|
|
117
|
+
"focus.ring",
|
|
118
|
+
"density.control.padding-y",
|
|
119
|
+
"density.control.padding-x",
|
|
120
|
+
"surface.paper"
|
|
121
|
+
],
|
|
122
|
+
"surfaces": ["WebSurface"],
|
|
123
|
+
"contracts": [
|
|
124
|
+
"label",
|
|
125
|
+
"description",
|
|
126
|
+
"error",
|
|
127
|
+
"calendar-overlay",
|
|
128
|
+
"no-native-date-popup",
|
|
129
|
+
"parent-owned-value",
|
|
130
|
+
"overlay-escape-outside"
|
|
131
|
+
]
|
|
132
|
+
},
|
|
133
|
+
"Upload": {
|
|
134
|
+
"source": "src/components/Upload.vmz",
|
|
135
|
+
"stableHint": "ui.Upload",
|
|
136
|
+
"tokens": [
|
|
137
|
+
"status.danger.foreground",
|
|
138
|
+
"status.success.foreground",
|
|
139
|
+
"action.primary.background",
|
|
140
|
+
"surface.paper",
|
|
141
|
+
"line.default",
|
|
142
|
+
"text.ink",
|
|
143
|
+
"text.steel",
|
|
144
|
+
"font.mono",
|
|
145
|
+
"focus.ring",
|
|
146
|
+
"density.control.padding-y",
|
|
147
|
+
"density.compact.padding-y",
|
|
148
|
+
"density.compact.padding-x",
|
|
149
|
+
"motion.control.duration",
|
|
150
|
+
"motion.control.easing"
|
|
151
|
+
],
|
|
152
|
+
"surfaces": ["WebSurface"],
|
|
153
|
+
"contracts": [
|
|
154
|
+
"label",
|
|
155
|
+
"description",
|
|
156
|
+
"error",
|
|
157
|
+
"drop-zone",
|
|
158
|
+
"selection-constraints",
|
|
159
|
+
"queue",
|
|
160
|
+
"progress",
|
|
161
|
+
"cancel",
|
|
162
|
+
"destination-client",
|
|
163
|
+
"destination-server",
|
|
164
|
+
"destination-object",
|
|
165
|
+
"all-in-one-transport",
|
|
166
|
+
"parent-owned-result-value",
|
|
167
|
+
"no-useUpload"
|
|
168
|
+
]
|
|
169
|
+
},
|
|
170
|
+
"Field": {
|
|
171
|
+
"source": "src/components/Field.vmz",
|
|
172
|
+
"stableHint": "ui.Field",
|
|
173
|
+
"tokens": [
|
|
174
|
+
"action.primary.background",
|
|
175
|
+
"status.danger.accent",
|
|
176
|
+
"status.danger.foreground",
|
|
177
|
+
"focus.ring",
|
|
178
|
+
"density.control.padding-y",
|
|
179
|
+
"density.control.padding-x"
|
|
180
|
+
],
|
|
181
|
+
"surfaces": ["WebSurface"],
|
|
182
|
+
"contracts": ["label", "description", "error", "focus-visible", "validation-presentation"]
|
|
183
|
+
},
|
|
184
|
+
"Form": {
|
|
185
|
+
"source": "src/components/Form.vmz",
|
|
186
|
+
"stableHint": "ui.Form",
|
|
187
|
+
"tokens": [
|
|
188
|
+
"status.danger.accent",
|
|
189
|
+
"status.danger.foreground",
|
|
190
|
+
"density.control.gap",
|
|
191
|
+
"density.control.padding-y",
|
|
192
|
+
"density.control.padding-x"
|
|
193
|
+
],
|
|
194
|
+
"surfaces": ["WebSurface"],
|
|
195
|
+
"contracts": ["submit-reset", "error-summary", "no-parallel-form-store", "novalidate"]
|
|
196
|
+
},
|
|
197
|
+
"FormItem": {
|
|
198
|
+
"source": "src/components/FormItem.vmz",
|
|
199
|
+
"stableHint": "ui.FormItem",
|
|
200
|
+
"tokens": ["status.danger.accent", "status.danger.foreground"],
|
|
201
|
+
"surfaces": ["WebSurface"],
|
|
202
|
+
"contracts": ["label", "description", "error", "required-marker"]
|
|
203
|
+
},
|
|
204
|
+
"TextArea": {
|
|
205
|
+
"source": "src/components/TextArea.vmz",
|
|
206
|
+
"stableHint": "ui.TextArea",
|
|
207
|
+
"tokens": [
|
|
208
|
+
"action.primary.background",
|
|
209
|
+
"status.danger.accent",
|
|
210
|
+
"status.danger.foreground",
|
|
211
|
+
"focus.ring",
|
|
212
|
+
"density.control.padding-y",
|
|
213
|
+
"density.control.padding-x"
|
|
214
|
+
],
|
|
215
|
+
"surfaces": ["WebSurface"],
|
|
216
|
+
"contracts": ["label", "description", "error", "focus-visible"]
|
|
217
|
+
},
|
|
218
|
+
"Select": {
|
|
219
|
+
"source": "src/components/Select.vmz",
|
|
220
|
+
"stableHint": "ui.Select",
|
|
221
|
+
"tokens": [
|
|
222
|
+
"action.primary.background",
|
|
223
|
+
"status.danger.accent",
|
|
224
|
+
"status.danger.foreground",
|
|
225
|
+
"focus.ring",
|
|
226
|
+
"density.control.padding-y",
|
|
227
|
+
"density.control.padding-x"
|
|
228
|
+
],
|
|
229
|
+
"surfaces": ["WebSurface"],
|
|
230
|
+
"contracts": ["label", "description", "error", "options", "focus-visible"]
|
|
231
|
+
},
|
|
232
|
+
"RadioGroup": {
|
|
233
|
+
"source": "src/components/RadioGroup.vmz",
|
|
234
|
+
"stableHint": "ui.RadioGroup",
|
|
235
|
+
"tokens": ["action.primary.background", "status.danger.foreground", "focus.ring"],
|
|
236
|
+
"surfaces": ["WebSurface"],
|
|
237
|
+
"contracts": ["legend", "live-value-prop", "no-parallel-form-store", "focus-visible"]
|
|
238
|
+
},
|
|
239
|
+
"Dialog": {
|
|
240
|
+
"source": "src/components/Dialog.vmz",
|
|
241
|
+
"stableHint": "ui.Dialog",
|
|
242
|
+
"tokens": [
|
|
243
|
+
"action.primary.background",
|
|
244
|
+
"action.primary.foreground",
|
|
245
|
+
"action.primary.active",
|
|
246
|
+
"focus.ring",
|
|
247
|
+
"motion.overlay.duration",
|
|
248
|
+
"motion.overlay.easing"
|
|
249
|
+
],
|
|
250
|
+
"surfaces": ["WebSurface"],
|
|
251
|
+
"contracts": [
|
|
252
|
+
"overlay-ownership",
|
|
253
|
+
"outside-dismiss",
|
|
254
|
+
"focus-enter",
|
|
255
|
+
"focus-loop",
|
|
256
|
+
"focus-restore",
|
|
257
|
+
"escape-dismiss",
|
|
258
|
+
"live-open-prop",
|
|
259
|
+
"overlay-enter-motion",
|
|
260
|
+
"overlay-exit-motion",
|
|
261
|
+
"resume-adopt-stable",
|
|
262
|
+
"reduced-motion",
|
|
263
|
+
"overlay-stacking"
|
|
264
|
+
]
|
|
265
|
+
},
|
|
266
|
+
"Checkbox": {
|
|
267
|
+
"source": "src/components/Checkbox.vmz",
|
|
268
|
+
"stableHint": "ui.Checkbox",
|
|
269
|
+
"tokens": ["action.primary.background", "focus.ring"],
|
|
270
|
+
"surfaces": ["WebSurface"],
|
|
271
|
+
"contracts": ["label", "live-checked-prop", "no-parallel-form-store"]
|
|
272
|
+
},
|
|
273
|
+
"Switch": {
|
|
274
|
+
"source": "src/components/Switch.vmz",
|
|
275
|
+
"stableHint": "ui.Switch",
|
|
276
|
+
"tokens": [
|
|
277
|
+
"action.primary.background",
|
|
278
|
+
"action.primary.foreground",
|
|
279
|
+
"focus.ring",
|
|
280
|
+
"motion.control.duration",
|
|
281
|
+
"motion.control.easing"
|
|
282
|
+
],
|
|
283
|
+
"surfaces": ["WebSurface"],
|
|
284
|
+
"contracts": ["role-switch", "live-checked-prop", "keyboard-toggle", "no-parallel-form-store", "reduced-motion"]
|
|
285
|
+
},
|
|
286
|
+
"Tabs": {
|
|
287
|
+
"source": "src/components/Tabs.vmz",
|
|
288
|
+
"stableHint": "ui.Tabs",
|
|
289
|
+
"tokens": ["action.primary.background", "action.primary.foreground", "focus.ring"],
|
|
290
|
+
"surfaces": ["WebSurface"],
|
|
291
|
+
"contracts": ["tablist", "keyboard-roving", "live-selected-prop"]
|
|
292
|
+
},
|
|
293
|
+
"Menu": {
|
|
294
|
+
"source": "src/components/Menu.vmz",
|
|
295
|
+
"stableHint": "ui.Menu",
|
|
296
|
+
"tokens": ["action.primary.background", "action.primary.foreground", "action.primary.active", "focus.ring"],
|
|
297
|
+
"surfaces": ["WebSurface"],
|
|
298
|
+
"contracts": ["overlay-ownership", "escape-dismiss", "focus-restore", "outside-dismiss", "live-open-prop"]
|
|
299
|
+
},
|
|
300
|
+
"Drawer": {
|
|
301
|
+
"source": "src/components/Drawer.vmz",
|
|
302
|
+
"stableHint": "ui.Drawer",
|
|
303
|
+
"tokens": [
|
|
304
|
+
"action.primary.background",
|
|
305
|
+
"action.primary.foreground",
|
|
306
|
+
"action.primary.active",
|
|
307
|
+
"focus.ring",
|
|
308
|
+
"motion.overlay.duration",
|
|
309
|
+
"motion.overlay.easing"
|
|
310
|
+
],
|
|
311
|
+
"surfaces": ["WebSurface"],
|
|
312
|
+
"contracts": [
|
|
313
|
+
"overlay-ownership",
|
|
314
|
+
"outside-dismiss",
|
|
315
|
+
"focus-enter",
|
|
316
|
+
"focus-loop",
|
|
317
|
+
"focus-restore",
|
|
318
|
+
"escape-dismiss",
|
|
319
|
+
"live-open-prop",
|
|
320
|
+
"overlay-enter-motion",
|
|
321
|
+
"overlay-exit-motion",
|
|
322
|
+
"resume-adopt-stable",
|
|
323
|
+
"reduced-motion",
|
|
324
|
+
"overlay-stacking"
|
|
325
|
+
]
|
|
326
|
+
},
|
|
327
|
+
"Popover": {
|
|
328
|
+
"source": "src/components/Popover.vmz",
|
|
329
|
+
"stableHint": "ui.Popover",
|
|
330
|
+
"tokens": ["action.primary.background", "action.primary.foreground", "action.primary.active", "focus.ring"],
|
|
331
|
+
"surfaces": ["WebSurface"],
|
|
332
|
+
"contracts": [
|
|
333
|
+
"overlay-ownership",
|
|
334
|
+
"outside-dismiss",
|
|
335
|
+
"focus-enter",
|
|
336
|
+
"focus-restore",
|
|
337
|
+
"escape-dismiss",
|
|
338
|
+
"non-modal",
|
|
339
|
+
"live-open-prop",
|
|
340
|
+
"overlay-stacking"
|
|
341
|
+
]
|
|
342
|
+
},
|
|
343
|
+
"AppShell": {
|
|
344
|
+
"source": "src/components/AppShell.vmz",
|
|
345
|
+
"stableHint": "ui.AppShell",
|
|
346
|
+
"tokens": [
|
|
347
|
+
"action.primary.background",
|
|
348
|
+
"action.primary.active",
|
|
349
|
+
"surface.paper",
|
|
350
|
+
"text.ink",
|
|
351
|
+
"text.steel",
|
|
352
|
+
"line.default",
|
|
353
|
+
"font.display",
|
|
354
|
+
"focus.ring"
|
|
355
|
+
],
|
|
356
|
+
"surfaces": ["WebSurface"],
|
|
357
|
+
"contracts": ["landmark-header", "landmark-main", "nav-items"]
|
|
358
|
+
},
|
|
359
|
+
"Card": {
|
|
360
|
+
"source": "src/components/Card.vmz",
|
|
361
|
+
"stableHint": "ui.Card",
|
|
362
|
+
"tokens": [
|
|
363
|
+
"surface.paper",
|
|
364
|
+
"text.ink",
|
|
365
|
+
"text.steel",
|
|
366
|
+
"line.default",
|
|
367
|
+
"font.display",
|
|
368
|
+
"density.control.gap",
|
|
369
|
+
"density.control.padding-y",
|
|
370
|
+
"density.control.padding-x",
|
|
371
|
+
"density.compact.gap",
|
|
372
|
+
"density.compact.padding-y",
|
|
373
|
+
"density.compact.padding-x",
|
|
374
|
+
"density.dense.gap",
|
|
375
|
+
"density.dense.padding-y",
|
|
376
|
+
"density.dense.padding-x"
|
|
377
|
+
],
|
|
378
|
+
"surfaces": ["WebSurface"],
|
|
379
|
+
"contracts": ["surface-container", "density-control"]
|
|
380
|
+
},
|
|
381
|
+
"Alert": {
|
|
382
|
+
"source": "src/components/Alert.vmz",
|
|
383
|
+
"stableHint": "ui.Alert",
|
|
384
|
+
"tokens": [
|
|
385
|
+
"status.info.accent",
|
|
386
|
+
"status.info.foreground",
|
|
387
|
+
"status.success.accent",
|
|
388
|
+
"status.success.foreground",
|
|
389
|
+
"status.warning.accent",
|
|
390
|
+
"status.warning.foreground",
|
|
391
|
+
"status.danger.accent",
|
|
392
|
+
"status.danger.foreground",
|
|
393
|
+
"density.control.gap",
|
|
394
|
+
"density.control.padding-y",
|
|
395
|
+
"density.control.padding-x"
|
|
396
|
+
],
|
|
397
|
+
"surfaces": ["WebSurface"],
|
|
398
|
+
"contracts": ["inline-feedback", "tone-matrix", "status-tokens"]
|
|
399
|
+
},
|
|
400
|
+
"Empty": {
|
|
401
|
+
"source": "src/components/Empty.vmz",
|
|
402
|
+
"stableHint": "ui.Empty",
|
|
403
|
+
"tokens": ["surface.paper", "surface.mist", "text.ink", "text.steel", "line.default", "font.display"],
|
|
404
|
+
"surfaces": ["WebSurface"],
|
|
405
|
+
"contracts": ["zero-state", "action-slot"]
|
|
406
|
+
},
|
|
407
|
+
"Notification": {
|
|
408
|
+
"source": "src/components/Notification.vmz",
|
|
409
|
+
"stableHint": "ui.Notification",
|
|
410
|
+
"tokens": [
|
|
411
|
+
"status.info.accent",
|
|
412
|
+
"status.info.foreground",
|
|
413
|
+
"status.success.accent",
|
|
414
|
+
"status.success.foreground",
|
|
415
|
+
"status.warning.accent",
|
|
416
|
+
"status.warning.foreground",
|
|
417
|
+
"status.danger.accent",
|
|
418
|
+
"status.danger.foreground",
|
|
419
|
+
"density.control.gap",
|
|
420
|
+
"density.control.padding-y",
|
|
421
|
+
"density.control.padding-x"
|
|
422
|
+
],
|
|
423
|
+
"surfaces": ["WebSurface"],
|
|
424
|
+
"contracts": ["ephemeral-feedback", "tone-matrix", "status-tokens"]
|
|
425
|
+
},
|
|
426
|
+
"Result": {
|
|
427
|
+
"source": "src/components/Result.vmz",
|
|
428
|
+
"stableHint": "ui.Result",
|
|
429
|
+
"tokens": [
|
|
430
|
+
"status.info.accent",
|
|
431
|
+
"status.info.foreground",
|
|
432
|
+
"status.success.accent",
|
|
433
|
+
"status.success.foreground",
|
|
434
|
+
"status.warning.accent",
|
|
435
|
+
"status.warning.foreground",
|
|
436
|
+
"status.danger.accent",
|
|
437
|
+
"status.danger.foreground",
|
|
438
|
+
"density.control.gap",
|
|
439
|
+
"density.control.padding-y",
|
|
440
|
+
"density.control.padding-x"
|
|
441
|
+
],
|
|
442
|
+
"surfaces": ["WebSurface"],
|
|
443
|
+
"contracts": ["outcome-block", "status-tokens"]
|
|
444
|
+
},
|
|
445
|
+
"Prose": {
|
|
446
|
+
"source": "src/components/Prose.vmz",
|
|
447
|
+
"stableHint": "ui.Prose",
|
|
448
|
+
"tokens": [
|
|
449
|
+
"text.ink",
|
|
450
|
+
"text.steel",
|
|
451
|
+
"font.sans",
|
|
452
|
+
"font.display",
|
|
453
|
+
"line.default",
|
|
454
|
+
"action.primary.background",
|
|
455
|
+
"action.primary.hover"
|
|
456
|
+
],
|
|
457
|
+
"surfaces": ["WebSurface"],
|
|
458
|
+
"contracts": ["document-measure", "zero-js-readable"]
|
|
459
|
+
},
|
|
460
|
+
"Toc": {
|
|
461
|
+
"source": "src/components/Toc.vmz",
|
|
462
|
+
"stableHint": "ui.Toc",
|
|
463
|
+
"tokens": [
|
|
464
|
+
"surface.mist",
|
|
465
|
+
"text.ink",
|
|
466
|
+
"text.steel",
|
|
467
|
+
"line.default",
|
|
468
|
+
"font.display",
|
|
469
|
+
"action.primary.background",
|
|
470
|
+
"action.primary.active",
|
|
471
|
+
"focus.ring"
|
|
472
|
+
],
|
|
473
|
+
"surfaces": ["WebSurface"],
|
|
474
|
+
"contracts": ["document-outline", "zero-js-readable"]
|
|
475
|
+
},
|
|
476
|
+
"Callout": {
|
|
477
|
+
"source": "src/components/Callout.vmz",
|
|
478
|
+
"stableHint": "ui.Callout",
|
|
479
|
+
"tokens": [
|
|
480
|
+
"surface.paper",
|
|
481
|
+
"font.display",
|
|
482
|
+
"status.info.accent",
|
|
483
|
+
"status.info.foreground",
|
|
484
|
+
"status.success.accent",
|
|
485
|
+
"status.success.foreground",
|
|
486
|
+
"status.warning.accent",
|
|
487
|
+
"status.warning.foreground",
|
|
488
|
+
"status.danger.accent",
|
|
489
|
+
"status.danger.foreground",
|
|
490
|
+
"density.control.padding-y",
|
|
491
|
+
"density.control.padding-x"
|
|
492
|
+
],
|
|
493
|
+
"surfaces": ["WebSurface"],
|
|
494
|
+
"contracts": ["document-callout", "tone-matrix", "status-tokens"]
|
|
495
|
+
},
|
|
496
|
+
"CodeBlock": {
|
|
497
|
+
"source": "src/components/CodeBlock.vmz",
|
|
498
|
+
"stableHint": "ui.CodeBlock",
|
|
499
|
+
"tokens": ["surface.paper", "surface.mist", "text.ink", "text.steel", "line.default", "font.mono"],
|
|
500
|
+
"surfaces": ["WebSurface"],
|
|
501
|
+
"contracts": ["source-readable", "copy-action", "zero-js-readable"]
|
|
502
|
+
},
|
|
503
|
+
"ConsoleShell": {
|
|
504
|
+
"source": "src/components/ConsoleShell.vmz",
|
|
505
|
+
"stableHint": "ui.ConsoleShell",
|
|
506
|
+
"tokens": ["action.primary.background", "action.primary.active", "focus.ring"],
|
|
507
|
+
"surfaces": ["WebSurface"],
|
|
508
|
+
"contracts": ["landmark-sidebar", "landmark-header", "landmark-main", "nav-items"]
|
|
509
|
+
},
|
|
510
|
+
"FilterBar": {
|
|
511
|
+
"source": "src/components/FilterBar.vmz",
|
|
512
|
+
"stableHint": "ui.FilterBar",
|
|
513
|
+
"tokens": ["action.primary.background"],
|
|
514
|
+
"surfaces": ["WebSurface"],
|
|
515
|
+
"contracts": ["dense-filter-landmark"]
|
|
516
|
+
},
|
|
517
|
+
"Table": {
|
|
518
|
+
"source": "src/components/Table.vmz",
|
|
519
|
+
"stableHint": "ui.Table",
|
|
520
|
+
"tokens": [
|
|
521
|
+
"action.primary.background",
|
|
522
|
+
"action.primary.active",
|
|
523
|
+
"focus.ring",
|
|
524
|
+
"density.compact.padding-y",
|
|
525
|
+
"density.compact.padding-x"
|
|
526
|
+
],
|
|
527
|
+
"surfaces": ["WebSurface"],
|
|
528
|
+
"contracts": ["column-header", "row-action", "column-sort", "permission-disabled"]
|
|
529
|
+
},
|
|
530
|
+
"BulkActions": {
|
|
531
|
+
"source": "src/components/BulkActions.vmz",
|
|
532
|
+
"stableHint": "ui.BulkActions",
|
|
533
|
+
"tokens": ["action.primary.background", "action.primary.active"],
|
|
534
|
+
"surfaces": ["WebSurface"],
|
|
535
|
+
"contracts": ["selection-toolbar"]
|
|
536
|
+
},
|
|
537
|
+
"Pagination": {
|
|
538
|
+
"source": "src/components/Pagination.vmz",
|
|
539
|
+
"stableHint": "ui.Pagination",
|
|
540
|
+
"tokens": ["action.primary.background", "action.primary.active", "focus.ring"],
|
|
541
|
+
"surfaces": ["WebSurface"],
|
|
542
|
+
"contracts": ["page-nav"]
|
|
543
|
+
},
|
|
544
|
+
"Breadcrumb": {
|
|
545
|
+
"source": "src/components/Breadcrumb.vmz",
|
|
546
|
+
"stableHint": "ui.Breadcrumb",
|
|
547
|
+
"tokens": ["action.primary.background", "action.primary.active", "focus.ring"],
|
|
548
|
+
"surfaces": ["WebSurface"],
|
|
549
|
+
"contracts": ["console-path"]
|
|
550
|
+
},
|
|
551
|
+
"QueryForm": {
|
|
552
|
+
"source": "src/components/QueryForm.vmz",
|
|
553
|
+
"stableHint": "ui.QueryForm",
|
|
554
|
+
"tokens": ["action.primary.background", "density.compact.gap", "density.compact.padding-y", "density.compact.padding-x"],
|
|
555
|
+
"surfaces": ["WebSurface"],
|
|
556
|
+
"contracts": ["dense-query", "submit-guard"]
|
|
557
|
+
},
|
|
558
|
+
"Skeleton": {
|
|
559
|
+
"source": "src/components/Skeleton.vmz",
|
|
560
|
+
"stableHint": "ui.Skeleton",
|
|
561
|
+
"tokens": ["action.primary.background", "density.compact.gap", "motion.overlay.duration", "motion.overlay.easing"],
|
|
562
|
+
"surfaces": ["WebSurface"],
|
|
563
|
+
"contracts": ["loading-placeholder", "layout-stability", "reduced-motion"]
|
|
564
|
+
},
|
|
565
|
+
"Timeline": {
|
|
566
|
+
"source": "src/components/Timeline.vmz",
|
|
567
|
+
"stableHint": "ui.Timeline",
|
|
568
|
+
"tokens": ["action.primary.background", "action.primary.active", "density.compact.gap"],
|
|
569
|
+
"surfaces": ["WebSurface"],
|
|
570
|
+
"contracts": ["audit-trail"]
|
|
571
|
+
},
|
|
572
|
+
"DataTable": {
|
|
573
|
+
"source": "src/components/DataTable.vmz",
|
|
574
|
+
"stableHint": "ui.DataTable",
|
|
575
|
+
"tokens": [
|
|
576
|
+
"surface.paper",
|
|
577
|
+
"surface.mist",
|
|
578
|
+
"text.ink",
|
|
579
|
+
"line.default",
|
|
580
|
+
"action.primary.background",
|
|
581
|
+
"action.primary.active",
|
|
582
|
+
"focus.ring",
|
|
583
|
+
"density.compact.padding-y",
|
|
584
|
+
"density.compact.padding-x"
|
|
585
|
+
],
|
|
586
|
+
"surfaces": ["WebSurface"],
|
|
587
|
+
"contracts": ["parent-owned-selection", "column-sort", "row-action", "sticky-header", "ordinary-html-table", "not-data-grid"]
|
|
588
|
+
},
|
|
589
|
+
"Accordion": {
|
|
590
|
+
"source": "src/components/Accordion.vmz",
|
|
591
|
+
"stableHint": "ui.Accordion",
|
|
592
|
+
"tokens": [
|
|
593
|
+
"surface.paper",
|
|
594
|
+
"surface.mist",
|
|
595
|
+
"text.ink",
|
|
596
|
+
"text.steel",
|
|
597
|
+
"line.default",
|
|
598
|
+
"action.primary.active",
|
|
599
|
+
"focus.ring",
|
|
600
|
+
"density.control.padding-y",
|
|
601
|
+
"density.control.padding-x"
|
|
602
|
+
],
|
|
603
|
+
"surfaces": ["WebSurface"],
|
|
604
|
+
"contracts": ["exclusive-disclosure", "parent-owned-open"]
|
|
605
|
+
},
|
|
606
|
+
"Steps": {
|
|
607
|
+
"source": "src/components/Steps.vmz",
|
|
608
|
+
"stableHint": "ui.Steps",
|
|
609
|
+
"tokens": [
|
|
610
|
+
"text.steel",
|
|
611
|
+
"line.default",
|
|
612
|
+
"action.primary.background",
|
|
613
|
+
"action.primary.foreground",
|
|
614
|
+
"action.primary.active",
|
|
615
|
+
"status.success.accent",
|
|
616
|
+
"status.success.foreground",
|
|
617
|
+
"density.control.gap"
|
|
618
|
+
],
|
|
619
|
+
"surfaces": ["WebSurface"],
|
|
620
|
+
"contracts": ["wizard-status", "parent-owned-current"]
|
|
621
|
+
},
|
|
622
|
+
"List": {
|
|
623
|
+
"source": "src/components/List.vmz",
|
|
624
|
+
"stableHint": "ui.List",
|
|
625
|
+
"tokens": [
|
|
626
|
+
"surface.paper",
|
|
627
|
+
"text.ink",
|
|
628
|
+
"line.default",
|
|
629
|
+
"action.primary.background",
|
|
630
|
+
"action.primary.foreground",
|
|
631
|
+
"action.primary.hover",
|
|
632
|
+
"focus.ring",
|
|
633
|
+
"density.control.padding-y",
|
|
634
|
+
"density.control.padding-x"
|
|
635
|
+
],
|
|
636
|
+
"surfaces": ["WebSurface"],
|
|
637
|
+
"contracts": ["selectable-listbox", "parent-owned-selection", "keyboard-nav"]
|
|
638
|
+
},
|
|
639
|
+
"Tree": {
|
|
640
|
+
"source": "src/components/Tree.vmz",
|
|
641
|
+
"stableHint": "ui.Tree",
|
|
642
|
+
"tokens": [
|
|
643
|
+
"surface.paper",
|
|
644
|
+
"surface.mist",
|
|
645
|
+
"text.ink",
|
|
646
|
+
"line.default",
|
|
647
|
+
"action.primary.background",
|
|
648
|
+
"action.primary.foreground",
|
|
649
|
+
"action.primary.hover",
|
|
650
|
+
"focus.ring",
|
|
651
|
+
"density.compact.padding-y",
|
|
652
|
+
"density.compact.padding-x"
|
|
653
|
+
],
|
|
654
|
+
"surfaces": ["WebSurface"],
|
|
655
|
+
"contracts": ["hierarchy-rows", "parent-owned-expand", "parent-owned-selection", "keyboard-nav"]
|
|
15
656
|
}
|
|
16
657
|
}
|
|
17
658
|
}
|