@loworbitstudio/visor 1.4.0 → 1.5.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/dist/CHANGELOG.json +7 -1
- package/dist/index.js +1 -0
- package/dist/registry.json +82 -75
- package/dist/visor-manifest.json +260 -53
- package/package.json +2 -2
package/dist/visor-manifest.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": "0.4.0",
|
|
3
|
-
"generated_at": "2026-06-
|
|
3
|
+
"generated_at": "2026-06-04T00:42:59.544Z",
|
|
4
4
|
"components": {
|
|
5
5
|
"accessibility-specimen": {
|
|
6
6
|
"category": "specimen",
|
|
@@ -239,6 +239,10 @@
|
|
|
239
239
|
{
|
|
240
240
|
"name": "AlertDescription",
|
|
241
241
|
"description": "Secondary descriptive text below the title."
|
|
242
|
+
},
|
|
243
|
+
{
|
|
244
|
+
"name": "AlertActions",
|
|
245
|
+
"description": "Right-aligned, gap-aware row for inline action buttons (e.g. retry/dismiss)."
|
|
242
246
|
}
|
|
243
247
|
],
|
|
244
248
|
"dependencies": [
|
|
@@ -254,6 +258,7 @@
|
|
|
254
258
|
"--radius-lg",
|
|
255
259
|
"--shadow-sm",
|
|
256
260
|
"--spacing-1",
|
|
261
|
+
"--spacing-2",
|
|
257
262
|
"--spacing-3",
|
|
258
263
|
"--spacing-4",
|
|
259
264
|
"--surface-card",
|
|
@@ -301,6 +306,10 @@
|
|
|
301
306
|
{
|
|
302
307
|
"name": "AvatarFallback",
|
|
303
308
|
"description": "Centered fallback content (initials or icon) shown when image is unavailable."
|
|
309
|
+
},
|
|
310
|
+
{
|
|
311
|
+
"name": "AvatarStack",
|
|
312
|
+
"description": "Compound primitive for overlapping avatar groups with a `+N` overflow indicator. Accepts an array of image sources (`avatars`), a `total` count (supports server-truncated lists), a `max` cap (default 6), a `size` pass-through (`\"sm\" | \"default\" | \"lg\"`, default `\"sm\"`), and an optional accessible `label` override. Renders `role=\"img\"` with `data-slot=\"avatar-stack\"`.\n"
|
|
304
313
|
}
|
|
305
314
|
],
|
|
306
315
|
"dependencies": [
|
|
@@ -335,6 +344,7 @@
|
|
|
335
344
|
"default",
|
|
336
345
|
"secondary",
|
|
337
346
|
"outline",
|
|
347
|
+
"neutral",
|
|
338
348
|
"destructive",
|
|
339
349
|
"success",
|
|
340
350
|
"warning",
|
|
@@ -342,14 +352,26 @@
|
|
|
342
352
|
"filled-destructive",
|
|
343
353
|
"filled-success",
|
|
344
354
|
"filled-warning",
|
|
345
|
-
"filled-info"
|
|
355
|
+
"filled-info",
|
|
356
|
+
"filled-neutral"
|
|
357
|
+
],
|
|
358
|
+
"size": [
|
|
359
|
+
"sm",
|
|
360
|
+
"md",
|
|
361
|
+
"lg"
|
|
346
362
|
]
|
|
347
363
|
},
|
|
348
364
|
"props": [
|
|
349
365
|
{
|
|
350
366
|
"name": "variant",
|
|
351
|
-
"type": "\"default\" | \"secondary\" | \"outline\" | \"destructive\" | \"success\" | \"warning\" | \"info\" | \"filled-destructive\" | \"filled-success\" | \"filled-warning\" | \"filled-info\"",
|
|
367
|
+
"type": "\"default\" | \"secondary\" | \"outline\" | \"neutral\" | \"destructive\" | \"success\" | \"warning\" | \"info\" | \"filled-destructive\" | \"filled-success\" | \"filled-warning\" | \"filled-info\" | \"filled-neutral\"",
|
|
352
368
|
"default": "\"default\""
|
|
369
|
+
},
|
|
370
|
+
{
|
|
371
|
+
"name": "size",
|
|
372
|
+
"type": "\"sm\" | \"md\" | \"lg\"",
|
|
373
|
+
"default": "\"md\"",
|
|
374
|
+
"description": "Controls token-driven padding, font-size, gap, and embedded-icon scaling. `md` (the default) reproduces the original badge sizing exactly — existing call sites are unchanged. `sm` is tighter for dense inline data contexts; `lg` is larger for editorial contexts like page headers and stat-card status pills. Icons inside the badge scale with the size step.\n"
|
|
353
375
|
}
|
|
354
376
|
],
|
|
355
377
|
"dependencies": [
|
|
@@ -358,8 +380,11 @@
|
|
|
358
380
|
"tokens_used": [
|
|
359
381
|
"--border-default",
|
|
360
382
|
"--border-focus",
|
|
383
|
+
"--color-neutral-600",
|
|
384
|
+
"--color-white",
|
|
361
385
|
"--focus-ring-offset",
|
|
362
386
|
"--focus-ring-width",
|
|
387
|
+
"--font-size-sm",
|
|
363
388
|
"--font-size-xs",
|
|
364
389
|
"--font-weight-medium",
|
|
365
390
|
"--interactive-primary-bg",
|
|
@@ -371,10 +396,12 @@
|
|
|
371
396
|
"--radius-full",
|
|
372
397
|
"--spacing-1",
|
|
373
398
|
"--spacing-2",
|
|
399
|
+
"--spacing-3",
|
|
374
400
|
"--surface-error-default",
|
|
375
401
|
"--surface-error-subtle",
|
|
376
402
|
"--surface-info-default",
|
|
377
403
|
"--surface-info-subtle",
|
|
404
|
+
"--surface-muted",
|
|
378
405
|
"--surface-subtle",
|
|
379
406
|
"--surface-success-default",
|
|
380
407
|
"--surface-success-subtle",
|
|
@@ -384,10 +411,11 @@
|
|
|
384
411
|
"--text-info",
|
|
385
412
|
"--text-inverse",
|
|
386
413
|
"--text-primary",
|
|
414
|
+
"--text-secondary",
|
|
387
415
|
"--text-success",
|
|
388
416
|
"--text-warning"
|
|
389
417
|
],
|
|
390
|
-
"example": "<Badge variant=\"default\">Active</Badge>\n<Badge variant=\"secondary\">
|
|
418
|
+
"example": "<Badge variant=\"default\">Active</Badge>\n<Badge variant=\"secondary\">Secondary</Badge>\n<Badge variant=\"outline\">v2.1.0</Badge>\n<Badge variant=\"neutral\">Draft</Badge>\n<Badge variant=\"destructive\">Error</Badge>\n<Badge variant=\"success\">Published</Badge>\n<Badge variant=\"warning\">Pending</Badge>\n<Badge variant=\"info\">Beta</Badge>\n<Badge variant=\"filled-destructive\">Critical</Badge>\n\n{/* Sizes — sm for dense inline data, md (default) inline, lg for headers/pills */}\n<Badge size=\"sm\" variant=\"secondary\">v2.1.0</Badge>\n<Badge size=\"md\" variant=\"success\">Published</Badge>\n<Badge size=\"lg\" variant=\"info\">Beta</Badge>\n"
|
|
391
419
|
},
|
|
392
420
|
"banner": {
|
|
393
421
|
"category": "feedback",
|
|
@@ -970,12 +998,26 @@
|
|
|
970
998
|
"name": "disabled",
|
|
971
999
|
"type": "boolean",
|
|
972
1000
|
"default": false
|
|
1001
|
+
},
|
|
1002
|
+
{
|
|
1003
|
+
"name": "gated",
|
|
1004
|
+
"type": "boolean",
|
|
1005
|
+
"default": false,
|
|
1006
|
+
"description": "Renders the button in an inert permission-gated state — visually dimmed, cursor not-allowed, and click handlers suppressed. Uses aria-disabled instead of native disabled so the button stays keyboard-focusable (required for the tooltip to be reachable by keyboard and screen-reader users). Works orthogonally with all variants and sizes.\n"
|
|
1007
|
+
},
|
|
1008
|
+
{
|
|
1009
|
+
"name": "gatedReason",
|
|
1010
|
+
"type": "string",
|
|
1011
|
+
"default": "undefined",
|
|
1012
|
+
"description": "Explanation surfaced in an anchored Radix tooltip when the button is gated. Only rendered when gated is also true. A TooltipProvider ancestor is required whenever gatedReason is set — add one at the page or layout level. Example: \"You can't delete this — you're not an owner\".\n"
|
|
973
1013
|
}
|
|
974
1014
|
],
|
|
975
1015
|
"dependencies": [
|
|
976
|
-
"class-variance-authority"
|
|
1016
|
+
"class-variance-authority",
|
|
1017
|
+
"@radix-ui/react-tooltip"
|
|
977
1018
|
],
|
|
978
1019
|
"tokens_used": [
|
|
1020
|
+
"--border-default",
|
|
979
1021
|
"--border-focus",
|
|
980
1022
|
"--border-strong",
|
|
981
1023
|
"--focus-ring-offset",
|
|
@@ -997,6 +1039,8 @@
|
|
|
997
1039
|
"--interactive-secondary-text",
|
|
998
1040
|
"--motion-duration-150",
|
|
999
1041
|
"--motion-easing-default",
|
|
1042
|
+
"--opacity-50",
|
|
1043
|
+
"--primary",
|
|
1000
1044
|
"--radius-md",
|
|
1001
1045
|
"--spacing-2",
|
|
1002
1046
|
"--spacing-3",
|
|
@@ -1005,7 +1049,7 @@
|
|
|
1005
1049
|
"--surface-muted",
|
|
1006
1050
|
"--text-primary"
|
|
1007
1051
|
],
|
|
1008
|
-
"example": "<Button variant=\"default\" size=\"md\">Save changes</Button>\n\n<Button variant=\"destructive\">Delete account</Button>\n\n<Button variant=\"ghost\" size=\"sm\">Cancel</Button>\n"
|
|
1052
|
+
"example": "<Button variant=\"default\" size=\"md\">Save changes</Button>\n\n<Button variant=\"destructive\">Delete account</Button>\n\n<Button variant=\"ghost\" size=\"sm\">Cancel</Button>\n\n{/* Gated — no reason (tooltip suppressed) */}\n<Button gated>Delete organization</Button>\n\n{/* Gated with reason — tooltip shown on hover/focus */}\n<TooltipProvider>\n <Button gated gatedReason=\"You can't delete this — you're not an owner\">\n Delete organization\n </Button>\n</TooltipProvider>\n"
|
|
1009
1053
|
},
|
|
1010
1054
|
"calendar": {
|
|
1011
1055
|
"category": "form",
|
|
@@ -1367,6 +1411,7 @@
|
|
|
1367
1411
|
"--interactive-primary-text",
|
|
1368
1412
|
"--motion-duration-150",
|
|
1369
1413
|
"--motion-easing-default",
|
|
1414
|
+
"--primary",
|
|
1370
1415
|
"--radius-sm"
|
|
1371
1416
|
],
|
|
1372
1417
|
"example": "<div style={{ display: \"flex\", alignItems: \"center\", gap: \"0.5rem\" }}>\n <Checkbox id=\"terms\" />\n <Label htmlFor=\"terms\">Accept terms and conditions</Label>\n</div>\n"
|
|
@@ -1465,7 +1510,7 @@
|
|
|
1465
1510
|
{
|
|
1466
1511
|
"name": "FilterChip",
|
|
1467
1512
|
"element": "button",
|
|
1468
|
-
"description": "Toggle-style multi-select chip. Renders with role=\"checkbox\" and aria-checked. Use inside a ChipGroup with type=\"multiple\".",
|
|
1513
|
+
"description": "Toggle-style multi-select chip. Renders with role=\"checkbox\" and aria-checked. Use inside a ChipGroup with type=\"multiple\". Supports an optional count pill for quick-filter pivots (e.g. \"Active 47\").",
|
|
1469
1514
|
"props": [
|
|
1470
1515
|
{
|
|
1471
1516
|
"name": "selected",
|
|
@@ -1481,6 +1526,18 @@
|
|
|
1481
1526
|
"name": "value",
|
|
1482
1527
|
"type": "string",
|
|
1483
1528
|
"optional": true
|
|
1529
|
+
},
|
|
1530
|
+
{
|
|
1531
|
+
"name": "count",
|
|
1532
|
+
"type": "React.ReactNode",
|
|
1533
|
+
"optional": true,
|
|
1534
|
+
"description": "Count pill rendered after the label. Accepts strings, numbers, or elements. Part of the accessible button name."
|
|
1535
|
+
},
|
|
1536
|
+
{
|
|
1537
|
+
"name": "countTone",
|
|
1538
|
+
"type": "\"primary\" | \"neutral\"",
|
|
1539
|
+
"default": "\"neutral\"",
|
|
1540
|
+
"description": "Tone for the count pill. \"neutral\" uses muted surface; \"primary\" uses accent surface. Auto re-tones on selected state."
|
|
1484
1541
|
}
|
|
1485
1542
|
]
|
|
1486
1543
|
}
|
|
@@ -1517,7 +1574,7 @@
|
|
|
1517
1574
|
"--text-primary",
|
|
1518
1575
|
"--text-secondary"
|
|
1519
1576
|
],
|
|
1520
|
-
"example": "<Chip label=\"React\" />\n<Chip label=\"Featured\" onDeleted={() => removeTag(\"featured\")} />\n<ChoiceChip label=\"Compact\" selected={density === \"compact\"} onPressed={() => setDensity(\"compact\")} />\n<FilterChip label=\"Events\" selected={filters.includes(\"events\")} onPressed={() => toggleFilter(\"events\")} />\n"
|
|
1577
|
+
"example": "<Chip label=\"React\" />\n<Chip label=\"Featured\" onDeleted={() => removeTag(\"featured\")} />\n<ChoiceChip label=\"Compact\" selected={density === \"compact\"} onPressed={() => setDensity(\"compact\")} />\n<FilterChip label=\"Events\" selected={filters.includes(\"events\")} onPressed={() => toggleFilter(\"events\")} />\n<FilterChip label=\"All\" count={132} onPressed={() => setFilter(\"all\")} />\n<FilterChip label=\"Active\" count={47} countTone=\"primary\" selected onPressed={() => setFilter(\"active\")} />\n<FilterChip label=\"Suspended\" count={8} onPressed={() => setFilter(\"suspended\")} />\n"
|
|
1521
1578
|
},
|
|
1522
1579
|
"chrome-button": {
|
|
1523
1580
|
"category": "admin",
|
|
@@ -1566,7 +1623,6 @@
|
|
|
1566
1623
|
"class-variance-authority"
|
|
1567
1624
|
],
|
|
1568
1625
|
"tokens_used": [
|
|
1569
|
-
"--accent-primary",
|
|
1570
1626
|
"--border-focus",
|
|
1571
1627
|
"--focus-ring-offset",
|
|
1572
1628
|
"--focus-ring-width",
|
|
@@ -1579,6 +1635,7 @@
|
|
|
1579
1635
|
"--motion-duration-150",
|
|
1580
1636
|
"--motion-easing-default",
|
|
1581
1637
|
"--opacity-50",
|
|
1638
|
+
"--primary",
|
|
1582
1639
|
"--radius-md",
|
|
1583
1640
|
"--spacing-1",
|
|
1584
1641
|
"--spacing-2",
|
|
@@ -2034,6 +2091,7 @@
|
|
|
2034
2091
|
"--interactive-primary-bg",
|
|
2035
2092
|
"--motion-duration-150",
|
|
2036
2093
|
"--motion-easing-default",
|
|
2094
|
+
"--primary",
|
|
2037
2095
|
"--radius-lg",
|
|
2038
2096
|
"--radius-md",
|
|
2039
2097
|
"--radius-sm",
|
|
@@ -2175,6 +2233,9 @@
|
|
|
2175
2233
|
"severity": [
|
|
2176
2234
|
"info",
|
|
2177
2235
|
"warning",
|
|
2236
|
+
"destructive"
|
|
2237
|
+
],
|
|
2238
|
+
"severity_deprecated": [
|
|
2178
2239
|
"danger"
|
|
2179
2240
|
]
|
|
2180
2241
|
},
|
|
@@ -2183,7 +2244,7 @@
|
|
|
2183
2244
|
"name": "title",
|
|
2184
2245
|
"type": "React.ReactNode",
|
|
2185
2246
|
"required": true,
|
|
2186
|
-
"description": "Dialog title. Rendered
|
|
2247
|
+
"description": "Dialog title. Rendered below the severity icon plate in the dialog header."
|
|
2187
2248
|
},
|
|
2188
2249
|
{
|
|
2189
2250
|
"name": "description",
|
|
@@ -2197,9 +2258,9 @@
|
|
|
2197
2258
|
},
|
|
2198
2259
|
{
|
|
2199
2260
|
"name": "severity",
|
|
2200
|
-
"type": "'info' | 'warning' | 'danger'",
|
|
2261
|
+
"type": "'info' | 'warning' | 'destructive' | 'danger'",
|
|
2201
2262
|
"default": "warning",
|
|
2202
|
-
"description": "Drives icon, icon
|
|
2263
|
+
"description": "Drives icon, tinted icon plate, and confirm button variant. Use \"info\", \"warning\", or \"destructive\". The value \"danger\" is a deprecated alias for \"destructive\" and will be removed in the next major version.\n"
|
|
2203
2264
|
},
|
|
2204
2265
|
{
|
|
2205
2266
|
"name": "trigger",
|
|
@@ -2224,7 +2285,7 @@
|
|
|
2224
2285
|
{
|
|
2225
2286
|
"name": "confirmLabel",
|
|
2226
2287
|
"type": "React.ReactNode",
|
|
2227
|
-
"description": "Confirm button label. Defaults to \"Delete\" for danger, \"Confirm\" otherwise."
|
|
2288
|
+
"description": "Confirm button label. Defaults to \"Delete\" for destructive/danger severity, \"Confirm\" otherwise."
|
|
2228
2289
|
},
|
|
2229
2290
|
{
|
|
2230
2291
|
"name": "cancelLabel",
|
|
@@ -2275,19 +2336,23 @@
|
|
|
2275
2336
|
"--motion-easing-default",
|
|
2276
2337
|
"--radius-md",
|
|
2277
2338
|
"--spacing-1",
|
|
2339
|
+
"--spacing-10",
|
|
2278
2340
|
"--spacing-2",
|
|
2279
2341
|
"--spacing-3",
|
|
2280
2342
|
"--spacing-4",
|
|
2281
2343
|
"--spacing-5",
|
|
2282
2344
|
"--spacing-6",
|
|
2345
|
+
"--surface-error-subtle",
|
|
2346
|
+
"--surface-info-subtle",
|
|
2283
2347
|
"--surface-page",
|
|
2348
|
+
"--surface-warning-subtle",
|
|
2284
2349
|
"--text-error",
|
|
2285
2350
|
"--text-info",
|
|
2286
2351
|
"--text-primary",
|
|
2287
2352
|
"--text-secondary",
|
|
2288
2353
|
"--text-warning"
|
|
2289
2354
|
],
|
|
2290
|
-
"example": "<ConfirmDialog\n trigger={<Button variant=\"destructive\">Delete project</Button>}\n severity=\"
|
|
2355
|
+
"example": "<ConfirmDialog\n trigger={<Button variant=\"destructive\">Delete project</Button>}\n severity=\"destructive\"\n title=\"Delete project?\"\n description=\"This action cannot be undone. All associated data will be permanently removed.\"\n confirmText=\"acme\"\n onConfirm={async () => {\n await deleteProject()\n }}\n/>\n"
|
|
2291
2356
|
},
|
|
2292
2357
|
"container": {
|
|
2293
2358
|
"category": "layout",
|
|
@@ -2912,7 +2977,13 @@
|
|
|
2912
2977
|
"name": "variant",
|
|
2913
2978
|
"type": "'default' | 'destructive'",
|
|
2914
2979
|
"default": "default",
|
|
2915
|
-
"description": "Visual style for the menu item"
|
|
2980
|
+
"description": "Visual style for the menu item (DropdownMenuItem)"
|
|
2981
|
+
},
|
|
2982
|
+
{
|
|
2983
|
+
"name": "variant (DropdownMenuContent / DropdownMenuSubContent)",
|
|
2984
|
+
"type": "'default' | 'breakout'",
|
|
2985
|
+
"default": "default",
|
|
2986
|
+
"description": "Elevation variant for the menu container. Use \"breakout\" inside scroll-clipped containers like DataTable rows, sticky toolbars, or any overflow:hidden ancestor. The breakout variant raises z-index to 200 and deepens the shadow so the menu escapes the stacking context. The \"default\" value is byte-identical to pre-variant rendering — no consumer migration required.\n"
|
|
2916
2987
|
}
|
|
2917
2988
|
],
|
|
2918
2989
|
"sub_components": [
|
|
@@ -2926,7 +2997,7 @@
|
|
|
2926
2997
|
},
|
|
2927
2998
|
{
|
|
2928
2999
|
"name": "DropdownMenuContent",
|
|
2929
|
-
"description": "The floating menu container."
|
|
3000
|
+
"description": "The floating menu container. Accepts variant=\"breakout\" for scroll-clipped contexts."
|
|
2930
3001
|
},
|
|
2931
3002
|
{
|
|
2932
3003
|
"name": "DropdownMenuItem",
|
|
@@ -2970,7 +3041,7 @@
|
|
|
2970
3041
|
},
|
|
2971
3042
|
{
|
|
2972
3043
|
"name": "DropdownMenuSubContent",
|
|
2973
|
-
"description": "The nested sub-menu container."
|
|
3044
|
+
"description": "The nested sub-menu container. Accepts variant=\"breakout\" for scroll-clipped contexts."
|
|
2974
3045
|
},
|
|
2975
3046
|
{
|
|
2976
3047
|
"name": "DropdownMenuPortal",
|
|
@@ -2992,6 +3063,7 @@
|
|
|
2992
3063
|
"--radius-lg",
|
|
2993
3064
|
"--radius-md",
|
|
2994
3065
|
"--shadow-lg",
|
|
3066
|
+
"--shadow-xl",
|
|
2995
3067
|
"--spacing-1",
|
|
2996
3068
|
"--spacing-2",
|
|
2997
3069
|
"--spacing-3",
|
|
@@ -3998,10 +4070,12 @@
|
|
|
3998
4070
|
"--border-error",
|
|
3999
4071
|
"--border-focus",
|
|
4000
4072
|
"--border-strong",
|
|
4073
|
+
"--focus-ring-offset",
|
|
4001
4074
|
"--focus-ring-width",
|
|
4002
4075
|
"--font-size-base",
|
|
4003
4076
|
"--font-size-sm",
|
|
4004
4077
|
"--input-bg",
|
|
4078
|
+
"--input-bg-invalid",
|
|
4005
4079
|
"--input-border",
|
|
4006
4080
|
"--motion-duration-150",
|
|
4007
4081
|
"--motion-easing-default",
|
|
@@ -4012,6 +4086,7 @@
|
|
|
4012
4086
|
"--spacing-4",
|
|
4013
4087
|
"--spacing-4_5",
|
|
4014
4088
|
"--spacing-5",
|
|
4089
|
+
"--surface-error-subtle",
|
|
4015
4090
|
"--surface-interactive-default",
|
|
4016
4091
|
"--text-primary",
|
|
4017
4092
|
"--text-secondary"
|
|
@@ -4087,6 +4162,69 @@
|
|
|
4087
4162
|
],
|
|
4088
4163
|
"example": "<Kbd>⌘K</Kbd>\n<Kbd keys={[\"⌘\", \"K\"]} />\n<Kbd keys={[\"Ctrl\", \"K\"]} separator=\"+\" size=\"lg\" variant=\"outline\" />\n"
|
|
4089
4164
|
},
|
|
4165
|
+
"key-value-list": {
|
|
4166
|
+
"category": "data-display",
|
|
4167
|
+
"description": "Definition-list display primitive for one record's attributes — label/value pairs in a responsive grid. Values accept any node (Badge, AvatarStack, StatHero, ScoreIndicator, text).",
|
|
4168
|
+
"when_to_use": [
|
|
4169
|
+
"The \"key facts\" panel atop a detail / inspector page (org detail, user detail, billing summary)",
|
|
4170
|
+
"Rendering a single record's attributes as label/value pairs",
|
|
4171
|
+
"A 4-up editorial facts row with rich value nodes (badges, avatar stacks, stat figures, score rings)"
|
|
4172
|
+
],
|
|
4173
|
+
"when_not_to_use": [
|
|
4174
|
+
"Many records in rows and columns (use DataTable)",
|
|
4175
|
+
"A single large KPI figure with delta / trend (use StatCard or StatHero)",
|
|
4176
|
+
"Editable form fields (use the Field family)"
|
|
4177
|
+
],
|
|
4178
|
+
"props": [
|
|
4179
|
+
{
|
|
4180
|
+
"name": "items",
|
|
4181
|
+
"type": "KeyValueItem[]",
|
|
4182
|
+
"description": "The label/value pairs. Each item is { label, value, hint? } with ReactNode fields."
|
|
4183
|
+
},
|
|
4184
|
+
{
|
|
4185
|
+
"name": "columns",
|
|
4186
|
+
"type": "1 | 2 | 3 | 4",
|
|
4187
|
+
"default": "1",
|
|
4188
|
+
"description": "Grid column count; collapses responsively on narrow viewports."
|
|
4189
|
+
},
|
|
4190
|
+
{
|
|
4191
|
+
"name": "orientation",
|
|
4192
|
+
"type": "\"horizontal\" | \"stacked\"",
|
|
4193
|
+
"default": "\"stacked\"",
|
|
4194
|
+
"description": "stacked = label above value (facts panel); horizontal = label beside value (inspector)."
|
|
4195
|
+
},
|
|
4196
|
+
{
|
|
4197
|
+
"name": "density",
|
|
4198
|
+
"type": "\"compact\" | \"default\" | \"editorial\"",
|
|
4199
|
+
"default": "\"editorial\"",
|
|
4200
|
+
"description": "Row density; editorial is the admin-ui default."
|
|
4201
|
+
},
|
|
4202
|
+
{
|
|
4203
|
+
"name": "as",
|
|
4204
|
+
"type": "\"dl\" | \"div\"",
|
|
4205
|
+
"default": "\"dl\"",
|
|
4206
|
+
"description": "Root element; dl renders semantic <dl>/<dt>/<dd>, div opts out."
|
|
4207
|
+
}
|
|
4208
|
+
],
|
|
4209
|
+
"dependencies": [],
|
|
4210
|
+
"tokens_used": [
|
|
4211
|
+
"--font-size-base",
|
|
4212
|
+
"--font-size-lg",
|
|
4213
|
+
"--font-size-sm",
|
|
4214
|
+
"--font-size-xs",
|
|
4215
|
+
"--font-weight-medium",
|
|
4216
|
+
"--font-weight-normal",
|
|
4217
|
+
"--spacing-1",
|
|
4218
|
+
"--spacing-2",
|
|
4219
|
+
"--spacing-3",
|
|
4220
|
+
"--spacing-4",
|
|
4221
|
+
"--spacing-6",
|
|
4222
|
+
"--spacing-8",
|
|
4223
|
+
"--text-primary",
|
|
4224
|
+
"--text-tertiary"
|
|
4225
|
+
],
|
|
4226
|
+
"example": "<KeyValueList\n columns={4}\n items={[\n { label: \"Plan\", value: <Badge tone=\"info\">Enterprise</Badge> },\n { label: \"Members\", value: <AvatarStack avatars={avatars} total={142} />, hint: \"142 total\" },\n { label: \"Monthly revenue\", value: <StatHero value=\"$48,200\" /> },\n { label: \"Health score\", value: <ScoreIndicator value={98} max={100} />, hint: \"/ 100\" },\n ]}\n/>\n"
|
|
4227
|
+
},
|
|
4090
4228
|
"label": {
|
|
4091
4229
|
"category": "form",
|
|
4092
4230
|
"description": "An accessible label component built on Radix UI Label.",
|
|
@@ -5095,7 +5233,8 @@
|
|
|
5095
5233
|
"Displaying a small form or filter controls near a trigger",
|
|
5096
5234
|
"Rich content previews that need more space than a tooltip",
|
|
5097
5235
|
"Non-modal floating panels for settings or options",
|
|
5098
|
-
"Date pickers or color pickers anchored to an input"
|
|
5236
|
+
"Date pickers or color pickers anchored to an input",
|
|
5237
|
+
"Single-select or multi-select option lists inside a filter popover (use PopoverSelectionList)"
|
|
5099
5238
|
],
|
|
5100
5239
|
"when_not_to_use": [
|
|
5101
5240
|
"Simple text hints on hover (use Tooltip)",
|
|
@@ -5132,23 +5271,58 @@
|
|
|
5132
5271
|
{
|
|
5133
5272
|
"name": "PopoverAnchor",
|
|
5134
5273
|
"description": "Optional custom anchor element for positioning."
|
|
5274
|
+
},
|
|
5275
|
+
{
|
|
5276
|
+
"name": "PopoverFooter",
|
|
5277
|
+
"description": "Right-aligned action row separated from the body by a top border. Hosts a primary/secondary button pair (e.g. Apply/Cancel) for filter popovers, inline editors, and lightweight confirms.\n"
|
|
5278
|
+
},
|
|
5279
|
+
{
|
|
5280
|
+
"name": "PopoverSelectionList",
|
|
5281
|
+
"description": "WAI-ARIA listbox container for single- or multi-select option lists. Takes a mode prop (\"checkbox\" | \"radio\", default \"checkbox\") that propagates to all child PopoverSelectionItem elements via context. Implements roving-tabindex keyboard navigation (Arrow Up/Down, Home/End, Enter/Space, Esc closes via Radix).\n"
|
|
5282
|
+
},
|
|
5283
|
+
{
|
|
5284
|
+
"name": "PopoverSelectionItem",
|
|
5285
|
+
"description": "A selectable option row inside PopoverSelectionList. Renders role=\"option\" with aria-selected, aria-disabled, and an always-rendered indicator plate (checkbox: filled square on selection; radio: ring with dot on selection). Accepts selected, onSelect, disabled, count, and leadingIcon props.\n"
|
|
5286
|
+
},
|
|
5287
|
+
{
|
|
5288
|
+
"name": "PopoverSelectionLabel",
|
|
5289
|
+
"description": "A non-interactive label heading row for a PopoverSelectionList, styled as a small-caps section header.\n"
|
|
5135
5290
|
}
|
|
5136
5291
|
],
|
|
5137
5292
|
"dependencies": [
|
|
5138
|
-
"@radix-ui/react-popover"
|
|
5293
|
+
"@radix-ui/react-popover",
|
|
5294
|
+
"@phosphor-icons/react"
|
|
5139
5295
|
],
|
|
5140
5296
|
"tokens_used": [
|
|
5297
|
+
"--border-default",
|
|
5298
|
+
"--focus-ring-offset",
|
|
5299
|
+
"--focus-ring-width",
|
|
5300
|
+
"--font-size-sm",
|
|
5301
|
+
"--font-size-xs",
|
|
5302
|
+
"--hairline-strong",
|
|
5303
|
+
"--interactive-primary-text",
|
|
5141
5304
|
"--motion-duration-fast",
|
|
5305
|
+
"--motion-easing-default",
|
|
5142
5306
|
"--motion-easing-enter",
|
|
5143
5307
|
"--motion-easing-exit",
|
|
5308
|
+
"--opacity-40",
|
|
5309
|
+
"--primary",
|
|
5144
5310
|
"--radius-lg",
|
|
5311
|
+
"--radius-md",
|
|
5145
5312
|
"--shadow-lg",
|
|
5313
|
+
"--spacing-1",
|
|
5314
|
+
"--spacing-2",
|
|
5315
|
+
"--spacing-3",
|
|
5146
5316
|
"--spacing-4",
|
|
5317
|
+
"--stroke-width-thin",
|
|
5147
5318
|
"--surface-card",
|
|
5319
|
+
"--surface-interactive-hover",
|
|
5148
5320
|
"--surface-popover",
|
|
5149
|
-
"--
|
|
5321
|
+
"--surface-subtle",
|
|
5322
|
+
"--text-primary",
|
|
5323
|
+
"--text-secondary"
|
|
5150
5324
|
],
|
|
5151
|
-
"example": "<Popover>\n <PopoverTrigger asChild>\n <Button variant=\"outline\">
|
|
5325
|
+
"example": "<Popover>\n <PopoverTrigger asChild>\n <Button variant=\"outline\">Filter</Button>\n </PopoverTrigger>\n <PopoverContent>\n <p>Filter options here</p>\n <PopoverFooter>\n <Button variant=\"ghost\">Cancel</Button>\n <Button>Apply</Button>\n </PopoverFooter>\n </PopoverContent>\n</Popover>\n"
|
|
5152
5326
|
},
|
|
5153
5327
|
"progress": {
|
|
5154
5328
|
"category": "feedback",
|
|
@@ -5190,8 +5364,10 @@
|
|
|
5190
5364
|
],
|
|
5191
5365
|
"tokens_used": [
|
|
5192
5366
|
"--interactive-primary-bg",
|
|
5193
|
-
"--motion-duration-
|
|
5367
|
+
"--motion-duration-1500",
|
|
5194
5368
|
"--motion-easing-default",
|
|
5369
|
+
"--primary",
|
|
5370
|
+
"--progress-animation-duration",
|
|
5195
5371
|
"--radius-full",
|
|
5196
5372
|
"--surface-interactive-active",
|
|
5197
5373
|
"--surface-muted"
|
|
@@ -5304,6 +5480,7 @@
|
|
|
5304
5480
|
"--interactive-primary-text",
|
|
5305
5481
|
"--motion-duration-150",
|
|
5306
5482
|
"--motion-easing-default",
|
|
5483
|
+
"--primary",
|
|
5307
5484
|
"--radio-border",
|
|
5308
5485
|
"--spacing-2"
|
|
5309
5486
|
],
|
|
@@ -6096,6 +6273,7 @@
|
|
|
6096
6273
|
"--interactive-primary-bg-hover",
|
|
6097
6274
|
"--motion-duration-150",
|
|
6098
6275
|
"--motion-easing-default",
|
|
6276
|
+
"--primary",
|
|
6099
6277
|
"--shadow-sm",
|
|
6100
6278
|
"--surface-card",
|
|
6101
6279
|
"--surface-interactive-default",
|
|
@@ -6229,7 +6407,7 @@
|
|
|
6229
6407
|
{
|
|
6230
6408
|
"name": "color",
|
|
6231
6409
|
"type": "string",
|
|
6232
|
-
"default": "var(--
|
|
6410
|
+
"default": "var(--primary, currentColor)",
|
|
6233
6411
|
"description": "Stroke color. Accepts any CSS color string — token, hex, hsl, oklch."
|
|
6234
6412
|
},
|
|
6235
6413
|
{
|
|
@@ -6251,7 +6429,13 @@
|
|
|
6251
6429
|
}
|
|
6252
6430
|
],
|
|
6253
6431
|
"dependencies": [],
|
|
6254
|
-
"tokens_used": [
|
|
6432
|
+
"tokens_used": [
|
|
6433
|
+
"--motion-duration-1500",
|
|
6434
|
+
"--motion-easing-ease-out",
|
|
6435
|
+
"--sparkline-animation-duration",
|
|
6436
|
+
"--sparkline-animation-easing",
|
|
6437
|
+
"--sparkline-length"
|
|
6438
|
+
],
|
|
6255
6439
|
"example": "<Sparkline values={[12, 18, 22, 19, 27, 36, 41, 48, 54, 62, 71, 84]} />\n<Sparkline values={[12, 18, 22, 19, 27, 36, 41, 48, 54, 62, 71, 84]} width={120} height={32} />\n<Sparkline values={[12, 18, 22, 19, 27, 36, 41, 48, 54, 62, 71, 84]} color=\"var(--text-success)\" />\n<Sparkline values={[12, 18, 22, 19, 27, 36, 41, 48, 54, 62, 71, 84]} fluid />\n<Sparkline values={[12, 18, 22, 19, 27, 36, 41, 48, 54, 62, 71, 84]} aria-label=\"RSVPs over the last 12 weeks\" />\n"
|
|
6256
6440
|
},
|
|
6257
6441
|
"stack": {
|
|
@@ -6609,6 +6793,7 @@
|
|
|
6609
6793
|
"Labeling service health (healthy, degraded, down)",
|
|
6610
6794
|
"Labeling job or task lifecycle (queued, running, pending, complete, failed, idle)",
|
|
6611
6795
|
"Labeling admin-ui event state (live, warn, scheduled, sold, draft)",
|
|
6796
|
+
"Labeling CRM / pipeline stage (prospect, pitched, contracted, active, paused, completed, archived)",
|
|
6612
6797
|
{
|
|
6613
6798
|
"Any place you want a consistent \"Status": "X\" accessible announcement"
|
|
6614
6799
|
}
|
|
@@ -6633,7 +6818,14 @@
|
|
|
6633
6818
|
"warn",
|
|
6634
6819
|
"scheduled",
|
|
6635
6820
|
"sold",
|
|
6636
|
-
"draft"
|
|
6821
|
+
"draft",
|
|
6822
|
+
"prospect",
|
|
6823
|
+
"pitched",
|
|
6824
|
+
"contracted",
|
|
6825
|
+
"active",
|
|
6826
|
+
"paused",
|
|
6827
|
+
"completed",
|
|
6828
|
+
"archived"
|
|
6637
6829
|
],
|
|
6638
6830
|
"tone": [
|
|
6639
6831
|
"subtle",
|
|
@@ -6675,6 +6867,7 @@
|
|
|
6675
6867
|
"badge"
|
|
6676
6868
|
],
|
|
6677
6869
|
"tokens_used": [
|
|
6870
|
+
"--color-white",
|
|
6678
6871
|
"--motion-duration-800",
|
|
6679
6872
|
"--motion-easing-standard",
|
|
6680
6873
|
"--radius-full",
|
|
@@ -6807,6 +7000,7 @@
|
|
|
6807
7000
|
"--line-height-snug",
|
|
6808
7001
|
"--motion-duration-200",
|
|
6809
7002
|
"--motion-easing-default",
|
|
7003
|
+
"--primary",
|
|
6810
7004
|
"--radius-full",
|
|
6811
7005
|
"--spacing-1",
|
|
6812
7006
|
"--spacing-2",
|
|
@@ -6918,6 +7112,7 @@
|
|
|
6918
7112
|
"--interactive-primary-bg",
|
|
6919
7113
|
"--motion-duration-150",
|
|
6920
7114
|
"--motion-easing-default",
|
|
7115
|
+
"--primary",
|
|
6921
7116
|
"--shadow-sm",
|
|
6922
7117
|
"--surface-page",
|
|
6923
7118
|
"--switch-track-bg"
|
|
@@ -7045,7 +7240,20 @@
|
|
|
7045
7240
|
},
|
|
7046
7241
|
{
|
|
7047
7242
|
"name": "TabsTrigger",
|
|
7048
|
-
"description": "Clickable tab button tied to a content panel via matching value prop."
|
|
7243
|
+
"description": "Clickable tab button tied to a content panel via matching value prop.",
|
|
7244
|
+
"props": [
|
|
7245
|
+
{
|
|
7246
|
+
"name": "count",
|
|
7247
|
+
"type": "React.ReactNode",
|
|
7248
|
+
"description": "Optional inline count pill rendered after the label. Accepts strings, numbers, or elements. Omit to render the trigger without a pill."
|
|
7249
|
+
},
|
|
7250
|
+
{
|
|
7251
|
+
"name": "countTone",
|
|
7252
|
+
"type": "\"primary\" | \"neutral\"",
|
|
7253
|
+
"default": "\"neutral\"",
|
|
7254
|
+
"description": "Visual tone of the count pill when inactive. Active state (data-state=\"active\") re-tones the pill automatically regardless of this prop."
|
|
7255
|
+
}
|
|
7256
|
+
]
|
|
7049
7257
|
},
|
|
7050
7258
|
{
|
|
7051
7259
|
"name": "TabsContent",
|
|
@@ -7062,6 +7270,7 @@
|
|
|
7062
7270
|
"--focus-ring-offset",
|
|
7063
7271
|
"--focus-ring-width",
|
|
7064
7272
|
"--font-size-sm",
|
|
7273
|
+
"--font-size-xs",
|
|
7065
7274
|
"--font-weight-medium",
|
|
7066
7275
|
"--motion-duration-150",
|
|
7067
7276
|
"--motion-duration-normal",
|
|
@@ -7071,13 +7280,15 @@
|
|
|
7071
7280
|
"--shadow-sm",
|
|
7072
7281
|
"--spacing-1",
|
|
7073
7282
|
"--spacing-2",
|
|
7283
|
+
"--surface-accent-subtle",
|
|
7074
7284
|
"--surface-muted",
|
|
7075
7285
|
"--surface-page",
|
|
7076
7286
|
"--tabs-indicator-color",
|
|
7287
|
+
"--text-link",
|
|
7077
7288
|
"--text-primary",
|
|
7078
7289
|
"--text-secondary"
|
|
7079
7290
|
],
|
|
7080
|
-
"example": "<Tabs defaultValue=\"
|
|
7291
|
+
"example": "<Tabs defaultValue=\"members\">\n <TabsList variant=\"default\">\n <TabsTrigger value=\"members\" count={12}>Members</TabsTrigger>\n <TabsTrigger value=\"pending\" count={3}>Pending</TabsTrigger>\n <TabsTrigger value=\"roles\" count={4}>Roles</TabsTrigger>\n </TabsList>\n <TabsContent value=\"members\">Members content here.</TabsContent>\n <TabsContent value=\"pending\">Pending content here.</TabsContent>\n <TabsContent value=\"roles\">Roles content here.</TabsContent>\n</Tabs>\n"
|
|
7081
7292
|
},
|
|
7082
7293
|
"tag-input": {
|
|
7083
7294
|
"category": "form",
|
|
@@ -7447,6 +7658,7 @@
|
|
|
7447
7658
|
"--line-height-snug",
|
|
7448
7659
|
"--motion-duration-150",
|
|
7449
7660
|
"--motion-easing-default",
|
|
7661
|
+
"--primary",
|
|
7450
7662
|
"--radius-full",
|
|
7451
7663
|
"--spacing-1",
|
|
7452
7664
|
"--spacing-3",
|
|
@@ -7507,6 +7719,7 @@
|
|
|
7507
7719
|
"--motion-duration-normal",
|
|
7508
7720
|
"--motion-easing-enter",
|
|
7509
7721
|
"--motion-easing-exit",
|
|
7722
|
+
"--primary",
|
|
7510
7723
|
"--radius-lg",
|
|
7511
7724
|
"--radius-md",
|
|
7512
7725
|
"--shadow-lg",
|
|
@@ -7609,6 +7822,7 @@
|
|
|
7609
7822
|
"--motion-duration-150",
|
|
7610
7823
|
"--motion-duration-200",
|
|
7611
7824
|
"--motion-easing-default",
|
|
7825
|
+
"--primary",
|
|
7612
7826
|
"--radius-lg",
|
|
7613
7827
|
"--radius-md",
|
|
7614
7828
|
"--radius-sm",
|
|
@@ -8557,23 +8771,6 @@
|
|
|
8557
8771
|
"Single-record inline edits (use admin-detail-drawer)"
|
|
8558
8772
|
]
|
|
8559
8773
|
},
|
|
8560
|
-
"avatar-stack": {
|
|
8561
|
-
"category": "data-display",
|
|
8562
|
-
"description": "Overlapping avatar group with a `+N more` overflow indicator. Pure composition of the Avatar primitive, no new tokens or ARIA pattern.",
|
|
8563
|
-
"components_used": [
|
|
8564
|
-
"avatar"
|
|
8565
|
-
],
|
|
8566
|
-
"when_to_use": [
|
|
8567
|
-
"Compact summary of multiple members on a card or facts row",
|
|
8568
|
-
"Member presence indicators on org-detail, project, or workspace summaries",
|
|
8569
|
-
"Server-truncated lists where the total count is known but only the first few avatar URLs were sent down"
|
|
8570
|
-
],
|
|
8571
|
-
"when_not_to_use": [
|
|
8572
|
-
"Single-user contexts (use Avatar directly)",
|
|
8573
|
-
"Full member directories (use a paginated list or table)",
|
|
8574
|
-
"Interactive selection of members (use a list block with checkboxes)"
|
|
8575
|
-
]
|
|
8576
|
-
},
|
|
8577
8774
|
"chip-group": {
|
|
8578
8775
|
"category": "form",
|
|
8579
8776
|
"description": "A composable container managing selection state for ChoiceChip (single-select) and FilterChip (multi-select) chips. Mirrors Flutter Material's chip selection model.",
|
|
@@ -8788,21 +8985,23 @@
|
|
|
8788
8985
|
},
|
|
8789
8986
|
"login-form": {
|
|
8790
8987
|
"category": "authentication",
|
|
8791
|
-
"description": "A login form block using Visor form components (Button, Input, Label, Card).",
|
|
8988
|
+
"description": "A login form block using Visor form components (Button, Input, Label, Card), with optional OAuth provider buttons.",
|
|
8792
8989
|
"components_used": [
|
|
8793
8990
|
"button",
|
|
8794
8991
|
"input",
|
|
8795
8992
|
"field",
|
|
8796
|
-
"card"
|
|
8993
|
+
"card",
|
|
8994
|
+
"separator",
|
|
8995
|
+
"alert"
|
|
8797
8996
|
],
|
|
8798
8997
|
"when_to_use": [
|
|
8799
8998
|
"Authentication pages",
|
|
8800
8999
|
"Sign-in screens",
|
|
9000
|
+
"OAuth and social sign-in flows",
|
|
8801
9001
|
"Demo login flows"
|
|
8802
9002
|
],
|
|
8803
9003
|
"when_not_to_use": [
|
|
8804
|
-
"Registration forms (extend with additional fields)"
|
|
8805
|
-
"OAuth-only flows with no email/password fields"
|
|
9004
|
+
"Registration forms (extend with additional fields)"
|
|
8806
9005
|
]
|
|
8807
9006
|
},
|
|
8808
9007
|
"pricing-section": {
|
|
@@ -9664,6 +9863,7 @@
|
|
|
9664
9863
|
"bento-grid",
|
|
9665
9864
|
"card",
|
|
9666
9865
|
"chart",
|
|
9866
|
+
"key-value-list",
|
|
9667
9867
|
"marquee",
|
|
9668
9868
|
"name-roster",
|
|
9669
9869
|
"sparkline",
|
|
@@ -10602,6 +10802,13 @@
|
|
|
10602
10802
|
"defaultLight": "800ms",
|
|
10603
10803
|
"defaultDark": "800ms"
|
|
10604
10804
|
},
|
|
10805
|
+
{
|
|
10806
|
+
"name": "--motion-duration-1500",
|
|
10807
|
+
"tier": "primitive",
|
|
10808
|
+
"description": "Primitive motion duration: 1500ms",
|
|
10809
|
+
"defaultLight": "1500ms",
|
|
10810
|
+
"defaultDark": "1500ms"
|
|
10811
|
+
},
|
|
10605
10812
|
{
|
|
10606
10813
|
"name": "--motion-easing-linear",
|
|
10607
10814
|
"tier": "primitive",
|
|
@@ -11605,7 +11812,7 @@
|
|
|
11605
11812
|
"tier": "adaptive",
|
|
11606
11813
|
"description": "Adaptive surface: success-subtle",
|
|
11607
11814
|
"defaultLight": "#f0fdf4",
|
|
11608
|
-
"defaultDark": "
|
|
11815
|
+
"defaultDark": "var(--color-mix(in srgb, var(--color-success-900) 12%, var(--surface-card)))"
|
|
11609
11816
|
},
|
|
11610
11817
|
{
|
|
11611
11818
|
"name": "--surface-success-default",
|
|
@@ -11619,7 +11826,7 @@
|
|
|
11619
11826
|
"tier": "adaptive",
|
|
11620
11827
|
"description": "Adaptive surface: warning-subtle",
|
|
11621
11828
|
"defaultLight": "#fffbeb",
|
|
11622
|
-
"defaultDark": "
|
|
11829
|
+
"defaultDark": "var(--color-mix(in srgb, var(--color-warning-900) 12%, var(--surface-card)))"
|
|
11623
11830
|
},
|
|
11624
11831
|
{
|
|
11625
11832
|
"name": "--surface-warning-default",
|
|
@@ -11633,7 +11840,7 @@
|
|
|
11633
11840
|
"tier": "adaptive",
|
|
11634
11841
|
"description": "Adaptive surface: error-subtle",
|
|
11635
11842
|
"defaultLight": "#fef2f2",
|
|
11636
|
-
"defaultDark": "
|
|
11843
|
+
"defaultDark": "var(--color-mix(in srgb, var(--color-error-900) 12%, var(--surface-card)))"
|
|
11637
11844
|
},
|
|
11638
11845
|
{
|
|
11639
11846
|
"name": "--surface-error-default",
|
|
@@ -11647,7 +11854,7 @@
|
|
|
11647
11854
|
"tier": "adaptive",
|
|
11648
11855
|
"description": "Adaptive surface: info-subtle",
|
|
11649
11856
|
"defaultLight": "#f0f9ff",
|
|
11650
|
-
"defaultDark": "
|
|
11857
|
+
"defaultDark": "var(--color-mix(in srgb, var(--color-info-900) 12%, var(--surface-card)))"
|
|
11651
11858
|
},
|
|
11652
11859
|
{
|
|
11653
11860
|
"name": "--surface-info-default",
|
|
@@ -11973,7 +12180,7 @@
|
|
|
11973
12180
|
}
|
|
11974
12181
|
],
|
|
11975
12182
|
"summary": {
|
|
11976
|
-
"total":
|
|
12183
|
+
"total": 312
|
|
11977
12184
|
}
|
|
11978
12185
|
}
|
|
11979
12186
|
}
|