@robr0/design-system 0.14.0 → 0.16.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 +11 -8
- package/behaviors/focusable.d.ts +26 -0
- package/behaviors/focusable.js +18 -0
- package/behaviors/useFocusScope.d.ts +38 -0
- package/behaviors/useFocusScope.js +82 -0
- package/behaviors/useLayer.d.ts +43 -0
- package/behaviors/useLayer.js +55 -0
- package/behaviors/useMounted.d.ts +7 -0
- package/behaviors/useMounted.js +14 -0
- package/behaviors/useScrollLock.d.ts +55 -0
- package/behaviors/useScrollLock.js +59 -0
- package/charts.d.ts +1 -0
- package/charts.js +2 -0
- package/components/AgentPlan/AgentPlan.css +12 -3
- package/components/AiButton/AiButton.css +327 -0
- package/components/AiButton/AiButton.d.ts +42 -0
- package/components/AiButton/AiButton.js +140 -16
- package/components/AlertDialog/AlertDialog.js +13 -58
- package/components/AnchorNav/AnchorNav.css +74 -0
- package/components/AnchorNav/AnchorNav.d.ts +7 -0
- package/components/AnchorNav/AnchorNav.js +74 -21
- package/components/Button/Button.css +54 -0
- package/components/Button/Button.d.ts +2 -2
- package/components/Chart/Chart.css +4 -1
- package/components/CircularButton/CircularButton.css +46 -0
- package/components/CircularButton/CircularButton.d.ts +13 -2
- package/components/CircularButton/CircularButton.js +19 -16
- package/components/Combobox/Combobox.js +2 -1
- package/components/CommandPalette/CommandPalette.css +36 -8
- package/components/CommandPalette/CommandPalette.js +9 -54
- package/components/Composer/Composer.css +72 -0
- package/components/Composer/Composer.d.ts +25 -6
- package/components/Composer/Composer.js +8 -0
- package/components/ContributionGraph/ContributionGraph.css +21 -0
- package/components/ContributionGraph/ContributionGraph.js +18 -10
- package/components/Dialog/Dialog.js +9 -62
- package/components/Drawer/Drawer.js +9 -62
- package/components/Dropdown/Dropdown.js +2 -1
- package/components/DropdownMenu/DropdownMenu.js +11 -3
- package/components/Figure/Figure.css +14 -4
- package/components/Figure/Figure.js +11 -20
- package/components/FunnelChart/FunnelChart.css +11 -36
- package/components/FunnelChart/FunnelChart.d.ts +19 -16
- package/components/FunnelChart/FunnelChart.js +67 -39
- package/components/Gauge/Gauge.css +11 -1
- package/components/Meter/Meter.css +10 -1
- package/components/ModelPicker/ModelPicker.js +2 -1
- package/components/Popover/Popover.js +3 -0
- package/components/ProgressBar/ProgressBar.css +1 -1
- package/components/SegmentedControl/SegmentedControl.css +27 -2
- package/components/SegmentedControl/SegmentedControl.d.ts +3 -1
- package/components/SegmentedControl/SegmentedControl.js +3 -1
- package/components/Slider/Slider.css +1 -1
- package/components/Slider/Slider.js +1 -1
- package/components/SourceTrail/SourceTrail.css +209 -0
- package/components/SourceTrail/SourceTrail.d.ts +49 -0
- package/components/SourceTrail/SourceTrail.js +108 -0
- package/components/Sparkline/Sparkline.css +26 -2
- package/components/Sparkline/Sparkline.js +2 -1
- package/components/Spinner/Spinner.css +1 -1
- package/components/SplitButton/SplitButton.d.ts +1 -1
- package/components/SplitButton/SplitButton.js +1 -0
- package/components/TimePicker/TimePicker.js +2 -1
- package/components/ToggleGroup/ToggleGroup.css +17 -0
- package/components/ToggleGroup/ToggleGroup.d.ts +2 -0
- package/components/ToggleGroup/ToggleGroup.js +2 -0
- package/components/ToolCall/ToolCall.css +16 -3
- package/components/Tooltip/Tooltip.css +24 -7
- package/components/Tooltip/Tooltip.d.ts +2 -1
- package/components/Tooltip/Tooltip.js +6 -0
- package/components/UsageCard/UsageCard.css +30 -0
- package/components/UsageCard/UsageCard.d.ts +48 -0
- package/components/UsageCard/UsageCard.js +54 -0
- package/components/registry.d.ts +8 -2
- package/components/registry.json +43 -16
- package/components/registry.json.d.ts +43 -16
- package/components/registry.json.js +1 -1
- package/index.d.ts +2 -1
- package/index.js +4 -2
- package/package.json +5 -1
- package/tokens/motion.d.ts +10 -4
- package/tokens/motion.js +7 -1
- package/tokens/registry.json +10 -0
- package/tokens/registry.json.d.ts +10 -0
- package/tokens/registry.json.js +1 -1
- package/tokens/tokens-dark.css +22 -2
- package/tokens/tokens-light.css +38 -11
- package/tokens/tokens-primitives.css +3 -0
package/components/registry.json
CHANGED
|
@@ -86,7 +86,7 @@
|
|
|
86
86
|
"name": "AiButton",
|
|
87
87
|
"label": "AI button",
|
|
88
88
|
"slug": "ai-button",
|
|
89
|
-
"description": "The AI entry point: icon and label
|
|
89
|
+
"description": "The AI entry point: icon and label ringed by a turning gradient and glow, with an optional hover-summoned AI-summary panel and prompt chips.",
|
|
90
90
|
"category": "ai",
|
|
91
91
|
"client": true
|
|
92
92
|
},
|
|
@@ -137,7 +137,8 @@
|
|
|
137
137
|
"description": "Filled area chart for showing volume over time, with stacked and single-series variants.",
|
|
138
138
|
"category": "charts",
|
|
139
139
|
"client": false,
|
|
140
|
-
"folder": "Chart"
|
|
140
|
+
"folder": "Chart",
|
|
141
|
+
"recharts": true
|
|
141
142
|
},
|
|
142
143
|
{
|
|
143
144
|
"name": "Avatar",
|
|
@@ -178,7 +179,8 @@
|
|
|
178
179
|
"description": "Vertical bars for comparing values across categories or time, with summary stats and tooltips.",
|
|
179
180
|
"category": "charts",
|
|
180
181
|
"client": false,
|
|
181
|
-
"folder": "Chart"
|
|
182
|
+
"folder": "Chart",
|
|
183
|
+
"recharts": true
|
|
182
184
|
},
|
|
183
185
|
{
|
|
184
186
|
"name": "Breadcrumb",
|
|
@@ -192,7 +194,7 @@
|
|
|
192
194
|
"name": "Button",
|
|
193
195
|
"label": "Button",
|
|
194
196
|
"slug": "button",
|
|
195
|
-
"description": "Primary and
|
|
197
|
+
"description": "Primary, secondary, tertiary, neutral and destructive variants in default and compact sizes, with icon support and multiple states.",
|
|
196
198
|
"category": "actions",
|
|
197
199
|
"client": true
|
|
198
200
|
},
|
|
@@ -280,7 +282,7 @@
|
|
|
280
282
|
"name": "CircularButton",
|
|
281
283
|
"label": "Circular button",
|
|
282
284
|
"slug": "circular-button",
|
|
283
|
-
"description": "Round icon button with primary and
|
|
285
|
+
"description": "Round icon button with primary, secondary, tertiary and neutral variants, default and compact sizes.",
|
|
284
286
|
"category": "actions",
|
|
285
287
|
"client": false
|
|
286
288
|
},
|
|
@@ -315,7 +317,8 @@
|
|
|
315
317
|
"description": "Bar and line series in one chart, with an optional second y-axis for pairs in different units, like spend and ROAS.",
|
|
316
318
|
"category": "charts",
|
|
317
319
|
"client": false,
|
|
318
|
-
"folder": "Chart"
|
|
320
|
+
"folder": "Chart",
|
|
321
|
+
"recharts": true
|
|
319
322
|
},
|
|
320
323
|
{
|
|
321
324
|
"name": "Combobox",
|
|
@@ -337,7 +340,7 @@
|
|
|
337
340
|
"name": "Composer",
|
|
338
341
|
"label": "Composer",
|
|
339
342
|
"slug": "composer",
|
|
340
|
-
"description": "An auto-growing message input with send and stop states, an attachment slot, and Enter-to-send.",
|
|
343
|
+
"description": "An auto-growing message input with send and stop states, a page-context note, an attachment slot, and Enter-to-send.",
|
|
341
344
|
"category": "ai",
|
|
342
345
|
"client": true
|
|
343
346
|
},
|
|
@@ -497,9 +500,10 @@
|
|
|
497
500
|
"name": "FunnelChart",
|
|
498
501
|
"label": "Funnel chart",
|
|
499
502
|
"slug": "funnel-chart",
|
|
500
|
-
"description": "Ordered funnel stages as
|
|
503
|
+
"description": "Ordered funnel stages as centred trapezoid bands, each sized by its share of the first stage.",
|
|
501
504
|
"category": "charts",
|
|
502
|
-
"client": false
|
|
505
|
+
"client": false,
|
|
506
|
+
"recharts": true
|
|
503
507
|
},
|
|
504
508
|
{
|
|
505
509
|
"name": "Gauge",
|
|
@@ -580,7 +584,8 @@
|
|
|
580
584
|
"description": "Multi-series line chart for trends over time, with per-series colours and a summary row.",
|
|
581
585
|
"category": "charts",
|
|
582
586
|
"client": false,
|
|
583
|
-
"folder": "Chart"
|
|
587
|
+
"folder": "Chart",
|
|
588
|
+
"recharts": true
|
|
584
589
|
},
|
|
585
590
|
{
|
|
586
591
|
"name": "LinkList",
|
|
@@ -693,7 +698,8 @@
|
|
|
693
698
|
"description": "Proportional share of a whole as a pie or donut, with per-slice colours.",
|
|
694
699
|
"category": "charts",
|
|
695
700
|
"client": false,
|
|
696
|
-
"folder": "Chart"
|
|
701
|
+
"folder": "Chart",
|
|
702
|
+
"recharts": true
|
|
697
703
|
},
|
|
698
704
|
{
|
|
699
705
|
"name": "PinInput",
|
|
@@ -750,7 +756,8 @@
|
|
|
750
756
|
"description": "Multi-axis comparison of series across categories on a radial grid.",
|
|
751
757
|
"category": "charts",
|
|
752
758
|
"client": false,
|
|
753
|
-
"folder": "Chart"
|
|
759
|
+
"folder": "Chart",
|
|
760
|
+
"recharts": true
|
|
754
761
|
},
|
|
755
762
|
{
|
|
756
763
|
"name": "RadialChart",
|
|
@@ -759,7 +766,8 @@
|
|
|
759
766
|
"description": "Concentric progress rings for completion and KPI readouts.",
|
|
760
767
|
"category": "charts",
|
|
761
768
|
"client": false,
|
|
762
|
-
"folder": "Chart"
|
|
769
|
+
"folder": "Chart",
|
|
770
|
+
"recharts": true
|
|
763
771
|
},
|
|
764
772
|
{
|
|
765
773
|
"name": "RadioButton",
|
|
@@ -792,7 +800,8 @@
|
|
|
792
800
|
"description": "Plots point clusters across two axes to show correlation and distribution.",
|
|
793
801
|
"category": "charts",
|
|
794
802
|
"client": false,
|
|
795
|
-
"folder": "Chart"
|
|
803
|
+
"folder": "Chart",
|
|
804
|
+
"recharts": true
|
|
796
805
|
},
|
|
797
806
|
{
|
|
798
807
|
"name": "SectionTitle",
|
|
@@ -850,6 +859,14 @@
|
|
|
850
859
|
"category": "ai",
|
|
851
860
|
"client": false
|
|
852
861
|
},
|
|
862
|
+
{
|
|
863
|
+
"name": "SourceTrail",
|
|
864
|
+
"label": "Source trail",
|
|
865
|
+
"slug": "source-trail",
|
|
866
|
+
"description": "The sources an agent opened while answering, as a collapsible list with per-item status.",
|
|
867
|
+
"category": "ai",
|
|
868
|
+
"client": true
|
|
869
|
+
},
|
|
853
870
|
{
|
|
854
871
|
"name": "Sparkline",
|
|
855
872
|
"label": "Sparkline",
|
|
@@ -889,7 +906,8 @@
|
|
|
889
906
|
"description": "Bars split into stacked segments to compare totals and their composition.",
|
|
890
907
|
"category": "charts",
|
|
891
908
|
"client": false,
|
|
892
|
-
"folder": "Chart"
|
|
909
|
+
"folder": "Chart",
|
|
910
|
+
"recharts": true
|
|
893
911
|
},
|
|
894
912
|
{
|
|
895
913
|
"name": "Stat",
|
|
@@ -1026,7 +1044,16 @@
|
|
|
1026
1044
|
"description": "Nested rectangles sized by value for part-to-whole breakdowns.",
|
|
1027
1045
|
"category": "charts",
|
|
1028
1046
|
"client": false,
|
|
1029
|
-
"folder": "Chart"
|
|
1047
|
+
"folder": "Chart",
|
|
1048
|
+
"recharts": true
|
|
1049
|
+
},
|
|
1050
|
+
{
|
|
1051
|
+
"name": "UsageCard",
|
|
1052
|
+
"label": "Usage card",
|
|
1053
|
+
"slug": "usage-card",
|
|
1054
|
+
"description": "An agent's budgets at a glance: context window and plan limits as meter rows with reset captions.",
|
|
1055
|
+
"category": "ai",
|
|
1056
|
+
"client": false
|
|
1030
1057
|
}
|
|
1031
1058
|
],
|
|
1032
1059
|
"docOnlyHelpers": [
|
|
@@ -86,7 +86,7 @@ declare const _default: {
|
|
|
86
86
|
"name": "AiButton",
|
|
87
87
|
"label": "AI button",
|
|
88
88
|
"slug": "ai-button",
|
|
89
|
-
"description": "The AI entry point: icon and label
|
|
89
|
+
"description": "The AI entry point: icon and label ringed by a turning gradient and glow, with an optional hover-summoned AI-summary panel and prompt chips.",
|
|
90
90
|
"category": "ai",
|
|
91
91
|
"client": true
|
|
92
92
|
},
|
|
@@ -137,7 +137,8 @@ declare const _default: {
|
|
|
137
137
|
"description": "Filled area chart for showing volume over time, with stacked and single-series variants.",
|
|
138
138
|
"category": "charts",
|
|
139
139
|
"client": false,
|
|
140
|
-
"folder": "Chart"
|
|
140
|
+
"folder": "Chart",
|
|
141
|
+
"recharts": true
|
|
141
142
|
},
|
|
142
143
|
{
|
|
143
144
|
"name": "Avatar",
|
|
@@ -178,7 +179,8 @@ declare const _default: {
|
|
|
178
179
|
"description": "Vertical bars for comparing values across categories or time, with summary stats and tooltips.",
|
|
179
180
|
"category": "charts",
|
|
180
181
|
"client": false,
|
|
181
|
-
"folder": "Chart"
|
|
182
|
+
"folder": "Chart",
|
|
183
|
+
"recharts": true
|
|
182
184
|
},
|
|
183
185
|
{
|
|
184
186
|
"name": "Breadcrumb",
|
|
@@ -192,7 +194,7 @@ declare const _default: {
|
|
|
192
194
|
"name": "Button",
|
|
193
195
|
"label": "Button",
|
|
194
196
|
"slug": "button",
|
|
195
|
-
"description": "Primary and
|
|
197
|
+
"description": "Primary, secondary, tertiary, neutral and destructive variants in default and compact sizes, with icon support and multiple states.",
|
|
196
198
|
"category": "actions",
|
|
197
199
|
"client": true
|
|
198
200
|
},
|
|
@@ -280,7 +282,7 @@ declare const _default: {
|
|
|
280
282
|
"name": "CircularButton",
|
|
281
283
|
"label": "Circular button",
|
|
282
284
|
"slug": "circular-button",
|
|
283
|
-
"description": "Round icon button with primary and
|
|
285
|
+
"description": "Round icon button with primary, secondary, tertiary and neutral variants, default and compact sizes.",
|
|
284
286
|
"category": "actions",
|
|
285
287
|
"client": false
|
|
286
288
|
},
|
|
@@ -315,7 +317,8 @@ declare const _default: {
|
|
|
315
317
|
"description": "Bar and line series in one chart, with an optional second y-axis for pairs in different units, like spend and ROAS.",
|
|
316
318
|
"category": "charts",
|
|
317
319
|
"client": false,
|
|
318
|
-
"folder": "Chart"
|
|
320
|
+
"folder": "Chart",
|
|
321
|
+
"recharts": true
|
|
319
322
|
},
|
|
320
323
|
{
|
|
321
324
|
"name": "Combobox",
|
|
@@ -337,7 +340,7 @@ declare const _default: {
|
|
|
337
340
|
"name": "Composer",
|
|
338
341
|
"label": "Composer",
|
|
339
342
|
"slug": "composer",
|
|
340
|
-
"description": "An auto-growing message input with send and stop states, an attachment slot, and Enter-to-send.",
|
|
343
|
+
"description": "An auto-growing message input with send and stop states, a page-context note, an attachment slot, and Enter-to-send.",
|
|
341
344
|
"category": "ai",
|
|
342
345
|
"client": true
|
|
343
346
|
},
|
|
@@ -497,9 +500,10 @@ declare const _default: {
|
|
|
497
500
|
"name": "FunnelChart",
|
|
498
501
|
"label": "Funnel chart",
|
|
499
502
|
"slug": "funnel-chart",
|
|
500
|
-
"description": "Ordered funnel stages as
|
|
503
|
+
"description": "Ordered funnel stages as centred trapezoid bands, each sized by its share of the first stage.",
|
|
501
504
|
"category": "charts",
|
|
502
|
-
"client": false
|
|
505
|
+
"client": false,
|
|
506
|
+
"recharts": true
|
|
503
507
|
},
|
|
504
508
|
{
|
|
505
509
|
"name": "Gauge",
|
|
@@ -580,7 +584,8 @@ declare const _default: {
|
|
|
580
584
|
"description": "Multi-series line chart for trends over time, with per-series colours and a summary row.",
|
|
581
585
|
"category": "charts",
|
|
582
586
|
"client": false,
|
|
583
|
-
"folder": "Chart"
|
|
587
|
+
"folder": "Chart",
|
|
588
|
+
"recharts": true
|
|
584
589
|
},
|
|
585
590
|
{
|
|
586
591
|
"name": "LinkList",
|
|
@@ -693,7 +698,8 @@ declare const _default: {
|
|
|
693
698
|
"description": "Proportional share of a whole as a pie or donut, with per-slice colours.",
|
|
694
699
|
"category": "charts",
|
|
695
700
|
"client": false,
|
|
696
|
-
"folder": "Chart"
|
|
701
|
+
"folder": "Chart",
|
|
702
|
+
"recharts": true
|
|
697
703
|
},
|
|
698
704
|
{
|
|
699
705
|
"name": "PinInput",
|
|
@@ -750,7 +756,8 @@ declare const _default: {
|
|
|
750
756
|
"description": "Multi-axis comparison of series across categories on a radial grid.",
|
|
751
757
|
"category": "charts",
|
|
752
758
|
"client": false,
|
|
753
|
-
"folder": "Chart"
|
|
759
|
+
"folder": "Chart",
|
|
760
|
+
"recharts": true
|
|
754
761
|
},
|
|
755
762
|
{
|
|
756
763
|
"name": "RadialChart",
|
|
@@ -759,7 +766,8 @@ declare const _default: {
|
|
|
759
766
|
"description": "Concentric progress rings for completion and KPI readouts.",
|
|
760
767
|
"category": "charts",
|
|
761
768
|
"client": false,
|
|
762
|
-
"folder": "Chart"
|
|
769
|
+
"folder": "Chart",
|
|
770
|
+
"recharts": true
|
|
763
771
|
},
|
|
764
772
|
{
|
|
765
773
|
"name": "RadioButton",
|
|
@@ -792,7 +800,8 @@ declare const _default: {
|
|
|
792
800
|
"description": "Plots point clusters across two axes to show correlation and distribution.",
|
|
793
801
|
"category": "charts",
|
|
794
802
|
"client": false,
|
|
795
|
-
"folder": "Chart"
|
|
803
|
+
"folder": "Chart",
|
|
804
|
+
"recharts": true
|
|
796
805
|
},
|
|
797
806
|
{
|
|
798
807
|
"name": "SectionTitle",
|
|
@@ -850,6 +859,14 @@ declare const _default: {
|
|
|
850
859
|
"category": "ai",
|
|
851
860
|
"client": false
|
|
852
861
|
},
|
|
862
|
+
{
|
|
863
|
+
"name": "SourceTrail",
|
|
864
|
+
"label": "Source trail",
|
|
865
|
+
"slug": "source-trail",
|
|
866
|
+
"description": "The sources an agent opened while answering, as a collapsible list with per-item status.",
|
|
867
|
+
"category": "ai",
|
|
868
|
+
"client": true
|
|
869
|
+
},
|
|
853
870
|
{
|
|
854
871
|
"name": "Sparkline",
|
|
855
872
|
"label": "Sparkline",
|
|
@@ -889,7 +906,8 @@ declare const _default: {
|
|
|
889
906
|
"description": "Bars split into stacked segments to compare totals and their composition.",
|
|
890
907
|
"category": "charts",
|
|
891
908
|
"client": false,
|
|
892
|
-
"folder": "Chart"
|
|
909
|
+
"folder": "Chart",
|
|
910
|
+
"recharts": true
|
|
893
911
|
},
|
|
894
912
|
{
|
|
895
913
|
"name": "Stat",
|
|
@@ -1026,7 +1044,16 @@ declare const _default: {
|
|
|
1026
1044
|
"description": "Nested rectangles sized by value for part-to-whole breakdowns.",
|
|
1027
1045
|
"category": "charts",
|
|
1028
1046
|
"client": false,
|
|
1029
|
-
"folder": "Chart"
|
|
1047
|
+
"folder": "Chart",
|
|
1048
|
+
"recharts": true
|
|
1049
|
+
},
|
|
1050
|
+
{
|
|
1051
|
+
"name": "UsageCard",
|
|
1052
|
+
"label": "Usage card",
|
|
1053
|
+
"slug": "usage-card",
|
|
1054
|
+
"description": "An agent's budgets at a glance: context window and plan limits as meter rows with reset captions.",
|
|
1055
|
+
"category": "ai",
|
|
1056
|
+
"client": false
|
|
1030
1057
|
}
|
|
1031
1058
|
],
|
|
1032
1059
|
"docOnlyHelpers": [
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
const categories = [{ "id": "actions", "label": "Actions", "description": "Buttons, button groups, and toggles for triggering actions and switching modes." }, { "id": "ai", "label": "AI", "description": "Chat, agent, and model surfaces for building AI products, from the composer to the reasoning trace and the diff an agent proposes." }, { "id": "charts", "label": "Charts", "description": "Data visualisation components for plotting series and activity over time." }, { "id": "data-display", "label": "Data display", "description": "Cards, tables, lists, and badges for presenting structured content." }, { "id": "effects", "label": "Effects", "description": "Ambient and decorative surfaces that sit behind or around the interface." }, { "id": "feedback", "label": "Feedback", "description": "Alerts, toasts, progress, and empty states that tell people what is happening." }, { "id": "forms", "label": "Forms", "description": "Inputs, pickers, and selection controls for collecting and editing values." }, { "id": "layout", "label": "Layout", "description": "Page scaffolding: app shells, sidebars, dividers, and section headings." }, { "id": "maps", "label": "Maps", "description": "Geographic surfaces for showing where things are and what connects them, from the globe to its legend." }, { "id": "navigation", "label": "Navigation", "description": "Top bars, breadcrumbs, tabs, steppers, and pagination for moving through a product." }, { "id": "overlays", "label": "Overlays", "description": "Dialogs, drawers, menus, and tooltips that float above the page." }];
|
|
2
|
-
const components = /* @__PURE__ */ JSON.parse(`[{"name":"Accordion","label":"Accordion","slug":"accordion","description":"Collapsible content sections for organising related information.","category":"data-display","client":true},{"name":"AgentPlan","label":"Agent plan","slug":"agent-plan","description":"A collapsible checklist of an agent's task, with live step states and a progress readout.","category":"ai","client":true},{"name":"AgentStatus","label":"Agent status","slug":"agent-status","description":"A dot-matrix indicator and status line reporting what an agent is doing right now.","category":"ai","client":true},{"name":"AiButton","label":"AI button","slug":"ai-button","description":"The AI entry point: icon and label on a transparent field, ringed by a slowly turning gradient and a soft glow.","category":"ai","client":true},{"name":"Alert","label":"Alert","slug":"alert","description":"Contextual feedback with status variants, optional dismiss, and compact sizing.","category":"feedback","client":false},{"name":"AlertDialog","label":"Alert dialog","slug":"alert-dialog","description":"Modal confirmation overlay with title, description, and confirm / cancel actions.","category":"overlays","client":true},{"name":"AnchorNav","label":"Anchor nav","slug":"anchor-nav","description":"An on-page list of anchor links that tracks the reader's position and jumps between sections.","category":"navigation","client":true},{"name":"AppLayout","label":"App layout","slug":"app-layout","description":"Full-page template pairing the collapsible App sidebar with a centred content area.","category":"layout","client":true},{"name":"AppSidebar","label":"App sidebar","slug":"app-sidebar","description":"Collapsible navigation rail with accordion sub-items, category headings, and profile section.","category":"layout","client":true},{"name":"AreaChart","label":"Area chart","slug":"area-chart","description":"Filled area chart for showing volume over time, with stacked and single-series variants.","category":"charts","client":false,"folder":"Chart"},{"name":"Avatar","label":"Avatar","slug":"avatar","description":"User profile image with initials and icon fallback, status indicator, and multiple sizes.","category":"data-display","client":true},{"name":"AvatarGroup","label":"Avatar group","slug":"avatar-group","description":"Overlapping avatar stack with a +N counter for the overflow.","category":"data-display","client":false},{"name":"Badge","label":"Badge","slug":"badge","description":"Small inline status labels with info, positive, warning, error, and neutral variants.","category":"data-display","client":false},{"name":"Banner","label":"Banner","slug":"banner","description":"Full-width status strip for page-level announcements, with an action slot and optional dismissal.","category":"feedback","client":false},{"name":"BarChart","label":"Bar chart","slug":"bar-chart","description":"Vertical bars for comparing values across categories or time, with summary stats and tooltips.","category":"charts","client":false,"folder":"Chart"},{"name":"Breadcrumb","label":"Breadcrumb","slug":"breadcrumb","description":"Hierarchical navigation trail showing the user's location within the site.","category":"navigation","client":false},{"name":"Button","label":"Button","slug":"button","description":"Primary and secondary button variants in default and compact sizes, with icon support and multiple states.","category":"actions","client":true},{"name":"ButtonGroup","label":"Button group","slug":"button-group","description":"Horizontal and vertical button group layouts for related actions and navigation patterns.","category":"actions","client":false},{"name":"Card","label":"Card","slug":"card","description":"Card components for previews, navigation, and token documentation, from content cards to colour swatches and typography specimens.","category":"data-display","client":true},{"name":"CardStack","label":"Card stack","slug":"card-stack","description":"A deck of cards showing one at a time, flipped through with a lift-and-settle animation.","category":"data-display","client":true},{"name":"Carousel","label":"Carousel","slug":"carousel","description":"Sliding content viewer with navigation arrows, dot indicators, auto-play, and keyboard support.","category":"data-display","client":true},{"name":"ChatHeader","label":"Chat header","slug":"chat-header","description":"The top row of a chat surface, with the conversation title and its controls.","category":"ai","client":false},{"name":"ChatMarker","label":"Chat marker","slug":"chat-marker","description":"An inline conversation separator for date breaks and system notes.","category":"ai","client":false},{"name":"ChatMessage","label":"Chat message","slug":"chat-message","description":"A single chat turn with avatar, author, timestamp, and bubble or plain content aligned by role.","category":"ai","client":false},{"name":"ChatThread","label":"Chat thread","slug":"chat-thread","description":"A scrollable conversation column with edge fades, send anchoring, and a subtle scrollbar.","category":"ai","client":true},{"name":"Checkbox","label":"Checkbox","slug":"checkbox","description":"Custom checkbox with check and indeterminate states, keyboard accessible with animated transitions.","category":"forms","client":true},{"name":"Chip","label":"Chip","slug":"chip","description":"Compact pills for attributes, filters, and inline metadata.","category":"data-display","client":false},{"name":"CircularButton","label":"Circular button","slug":"circular-button","description":"Round icon button with primary and secondary variants, default and compact sizes.","category":"actions","client":false},{"name":"CodeBlock","label":"Code block","slug":"code-block","description":"Monospace code with a header and one-click copy.","category":"data-display","client":true},{"name":"CodeDiff","label":"Code diff","slug":"code-diff","description":"Unified diff view for code changes, with added, removed, and context lines.","category":"ai","client":false},{"name":"ColorPicker","label":"Colour picker","slug":"color-picker","description":"Swatch trigger opening a saturation area, hue and alpha sliders, and a hex field; controlled or uncontrolled.","category":"forms","client":true},{"name":"ComboChart","label":"Combo chart","slug":"combo-chart","description":"Bar and line series in one chart, with an optional second y-axis for pairs in different units, like spend and ROAS.","category":"charts","client":false,"folder":"Chart"},{"name":"Combobox","label":"Combobox","slug":"combobox","description":"A filterable select that narrows options as the user types, with multi-select chips, grouping, and async loading.","category":"forms","client":true},{"name":"CommandPalette","label":"Command palette","slug":"command-palette","description":"A modal Cmd+K launcher that searches a grouped command list, with keyboard navigation and shortcut hints.","category":"overlays","client":true},{"name":"Composer","label":"Composer","slug":"composer","description":"An auto-growing message input with send and stop states, an attachment slot, and Enter-to-send.","category":"ai","client":true},{"name":"ContactCard","label":"Contact card","slug":"contact-card","description":"Linked contact method with icon, label, and value.","category":"data-display","client":true},{"name":"ContextMenu","label":"Context menu","slug":"context-menu","description":"Right-click menu at the pointer with groups, sub-menus, and shortcut hints.","category":"overlays","client":true},{"name":"ContributionGraph","label":"Contribution graph","slug":"contribution-graph","description":"A year of activity, one cell per day.","category":"charts","client":false},{"name":"DataTable","label":"Data table","slug":"data-table","description":"The wired table: sorting, search, row selection, and pagination assembled around Table.","category":"data-display","client":true},{"name":"DateInput","label":"Date input","slug":"date-input","description":"Date input with native picker, calendar icon, label, and validation states.","category":"forms","client":true},{"name":"DatePicker","label":"Date picker","slug":"date-picker","description":"Inline calendar with month navigation, day selection, and today indicator.","category":"forms","client":true},{"name":"Dialog","label":"Dialog","slug":"dialog","description":"A general-purpose modal for focused tasks, with sizes, an optional footer, and full focus management.","category":"overlays","client":true},{"name":"Divider","label":"Divider","slug":"divider","description":"A thin rule separating stacked content, with optional inline label and vertical orientation.","category":"layout","client":false},{"name":"DocumentChip","label":"Document chip","slug":"document-chip","description":"A compact file reference with a type icon, name, metadata, and optional remove.","category":"ai","client":false},{"name":"Drawer","label":"Drawer","slug":"drawer","description":"An edge-anchored modal panel that slides in from any side, for filter panels, detail views, and mobile navigation.","category":"overlays","client":true},{"name":"Dropdown","label":"Dropdown","slug":"dropdown","description":"Custom select dropdown with keyboard navigation, disabled options, and error states.","category":"forms","client":true},{"name":"DropdownMenu","label":"Dropdown menu","slug":"dropdown-menu","description":"Contextual menu with sections, sub-menus, keyboard shortcuts, and inset-gap hover styling.","category":"overlays","client":true},{"name":"EmptyState","label":"Empty state","slug":"empty-state","description":"The placeholder for a list, table, or search with nothing to show: icon, headline, guidance, and a next action.","category":"feedback","client":false},{"name":"EntityCard","label":"Entity card","slug":"entity-card","description":"Compact display-only card with a centred icon or image and a label, used in the Icons and Logos galleries.","category":"data-display","client":false},{"name":"EventCalendar","label":"Event calendar","slug":"event-calendar","description":"A month grid with event pills, overflow counts, and month navigation.","category":"data-display","client":true},{"name":"Field","label":"Field","slug":"field","description":"The shared scaffolding for labelled form controls: label, required marker, helper and error text, and the ARIA wiring that ties them together.","category":"forms","client":true},{"name":"Figure","label":"Figure","slug":"figure","description":"Images with captions, in the case-study frame.","category":"data-display","client":false},{"name":"FileInput","label":"File input","slug":"file-input","description":"A click-or-drop upload zone paired with a controlled file list showing size, progress, and per-file errors.","category":"forms","client":true},{"name":"FilterBar","label":"Filter bar","slug":"filter-bar","description":"A row of filter chips for narrowing a collection, each opening a popover of options, with per-filter and clear-all resets.","category":"forms","client":true},{"name":"FunnelChart","label":"Funnel chart","slug":"funnel-chart","description":"Ordered funnel stages as stepped bars with conversion percentages, each sized by its share of the first stage.","category":"charts","client":false},{"name":"Gauge","label":"Gauge","slug":"gauge","description":"A radial dial for a single bounded reading, recoloured through the status roles as it crosses thresholds.","category":"charts","client":false},{"name":"Globe","label":"Globe","slug":"globe","description":"An orthographic globe with markers and great-circle arcs, rotated by drag, keys, or a slow spin.","category":"maps","client":true},{"name":"HoverCard","label":"Hover card","slug":"hover-card","description":"Rich preview panel that opens from hover or focus, with interactive content and position options.","category":"overlays","client":true},{"name":"ImageCompare","label":"Image compare","slug":"image-compare","description":"Before-and-after image comparison with a draggable divider, keyboard control, and corner labels.","category":"data-display","client":true},{"name":"Input","label":"Input","slug":"input","description":"Text input with label, placeholder, left and right icons, helper text, and error states.","category":"forms","client":true},{"name":"Instructions","label":"Instructions","slug":"instructions","description":"Step-by-step guidance with numbered badges, connecting lines, and horizontal layout.","category":"data-display","client":false},{"name":"InterruptCard","label":"Interrupt card","slug":"interrupt-card","description":"A human-in-the-loop checkpoint with a question from the agent and option buttons to decide.","category":"ai","client":false},{"name":"Kbd","label":"Kbd","slug":"kbd","description":"A keyboard key rendered as a keycap, for shortcut hints in menus and prose.","category":"data-display","client":false},{"name":"LegendTile","label":"Legend tile","slug":"legend-tile","description":"The labelled value tile under a chart: a series dot, the series name, and its reading, on an inset fill.","category":"charts","client":false},{"name":"LineChart","label":"Line chart","slug":"line-chart","description":"Multi-series line chart for trends over time, with per-series colours and a summary row.","category":"charts","client":false,"folder":"Chart"},{"name":"LinkList","label":"Link list","slug":"link-list","description":"Linked items with logo, label, and subtitle.","category":"data-display","client":false},{"name":"MapCallout","label":"Map callout","slug":"map-callout","description":"The annotation beside a map point: a name in capitals over monospace readout lines.","category":"maps","client":false},{"name":"MapLegend","label":"Map legend","slug":"map-legend","description":"The corner block of a map: its name, what it shows, and the key to its markers.","category":"maps","client":false},{"name":"MessageActions","label":"Message actions","slug":"message-actions","description":"An icon-button row for message-level actions like copy, retry, and feedback.","category":"ai","client":false},{"name":"MessageCard","label":"Message card","slug":"message-card","description":"A structured rich-content card embedded in a chat message, with media, title, body, and actions.","category":"ai","client":false},{"name":"Meter","label":"Meter","slug":"meter","description":"Level indicator for a known quantity, with a status-coloured fill and an optional value readout.","category":"feedback","client":false},{"name":"ModelPicker","label":"Model picker","slug":"model-picker","description":"A model selector for chat surfaces, with per-model descriptions and an optional effort row.","category":"ai","client":true},{"name":"Nav","label":"Nav","slug":"nav","description":"Desktop top navigation bar with a brand slot, horizontal button group, and optional trailing content.","category":"navigation","client":false},{"name":"NavList","label":"Nav list","slug":"nav-list","description":"Vertical list of navigation links for drawers and menus, with three indent levels and per-row expand toggles.","category":"navigation","client":true},{"name":"NotificationCenter","label":"Notification centre","slug":"notification-center","description":"A persistent notification inbox with unread count, filter tabs, and per-item actions.","category":"feedback","client":true},{"name":"NumberInput","label":"Number input","slug":"number-input","description":"Numeric field with increment and decrement steppers and min/max clamping.","category":"forms","client":true},{"name":"Pagination","label":"Pagination","slug":"pagination","description":"Numbered page navigation for long datasets, with ellipses, disabled end arrows, and a compact readout mode.","category":"navigation","client":true},{"name":"Panel","label":"Panel","slug":"panel","description":"The plain dashboard surface: a rounded container with no border or shadow, just padding and a gap.","category":"layout","client":false},{"name":"PieChart","label":"Pie chart","slug":"pie-chart","description":"Proportional share of a whole as a pie or donut, with per-slice colours.","category":"charts","client":false,"folder":"Chart"},{"name":"PinInput","label":"Pin input","slug":"pin-input","description":"Segmented one-time-code input with auto-advance, paste support, and completion callback.","category":"forms","client":true},{"name":"Popover","label":"Popover","slug":"popover","description":"Contextual overlay panel with click and hover triggers, positioned relative to its anchor.","category":"overlays","client":true},{"name":"ProgressBar","label":"Progress bar","slug":"progress-bar","description":"Horizontal bar indicating completion progress, with an optional percentage label.","category":"feedback","client":false},{"name":"PromptSuggestions","label":"Prompt suggestions","slug":"prompt-suggestions","description":"A horizontal row of tappable prompt suggestions to start or steer a conversation.","category":"ai","client":false},{"name":"Prose","label":"Prose","slug":"prose","description":"Token-styled typography for rendered markdown and rich agent output.","category":"ai","client":false},{"name":"Quote","label":"Quote","slug":"quote","description":"Blockquotes and pull-quotes with attribution.","category":"data-display","client":false},{"name":"RadarChart","label":"Radar chart","slug":"radar-chart","description":"Multi-axis comparison of series across categories on a radial grid.","category":"charts","client":false,"folder":"Chart"},{"name":"RadialChart","label":"Radial chart","slug":"radial-chart","description":"Concentric progress rings for completion and KPI readouts.","category":"charts","client":false,"folder":"Chart"},{"name":"RadioButton","label":"Radio button","slug":"radio-button","description":"Radio button and radio group with vertical and horizontal layouts, animated dot indicator.","category":"forms","client":true},{"name":"Rating","label":"Rating","slug":"rating","description":"Star-scale rating control with keyboard selection, a read-only mode, and a configurable icon.","category":"forms","client":true},{"name":"Reasoning","label":"Reasoning","slug":"reasoning","description":"A model's thinking, disclosed behind a one-line summary and collapsed once it finishes.","category":"ai","client":true},{"name":"ScatterChart","label":"Scatter chart","slug":"scatter-chart","description":"Plots point clusters across two axes to show correlation and distribution.","category":"charts","client":false,"folder":"Chart"},{"name":"SectionTitle","label":"Section title","slug":"section-title","description":"Heading with a divider line and optional trailing content for organising page sections.","category":"layout","client":false},{"name":"SegmentedControl","label":"Segmented control","slug":"segmented-control","description":"Pill-style toggle between related views with keyboard navigation and icon support.","category":"actions","client":true},{"name":"SelectionCard","label":"Selection card","slug":"selection-card","description":"Large selectable option cards with radio or checkbox indicators for high-visibility choices like settings and onboarding.","category":"data-display","client":true},{"name":"ShaderField","label":"Shader field","slug":"shader-field","description":"An ambient WebGL2 field of soft light sources that sample colour tokens, with a reported fallback status.","category":"effects","client":true},{"name":"Skeleton","label":"Skeleton","slug":"skeleton","description":"Placeholder loading indicators with text, circular, and rectangular variants.","category":"feedback","client":false},{"name":"Slider","label":"Slider","slug":"slider","description":"Range input for selecting a value between a minimum and maximum, in default and compact sizes.","category":"forms","client":true},{"name":"SourceChip","label":"Source chip","slug":"source-chip","description":"A numbered citation pill linking a claim to its source.","category":"ai","client":false},{"name":"Sparkline","label":"Sparkline","slug":"sparkline","description":"Inline trend line for stats and table cells, drawn without axes or chrome.","category":"charts","client":false},{"name":"Spinner","label":"Spinner","slug":"spinner","description":"Animated circular loading indicator in three sizes and primary, neutral, or inherit variants.","category":"feedback","client":false},{"name":"SplitButton","label":"Split button","slug":"split-button","description":"Primary action with an attached menu of alternatives, composing Button and DropdownMenu in one pill.","category":"actions","client":false},{"name":"SplitPane","label":"Split pane","slug":"split-pane","description":"Two resizable regions with a draggable, keyboard-operable divider between them.","category":"layout","client":true},{"name":"StackedBarChart","label":"Stacked bar chart","slug":"stacked-bar-chart","description":"Bars split into stacked segments to compare totals and their composition.","category":"charts","client":false,"folder":"Chart"},{"name":"Stat","label":"Stat","slug":"stat","description":"Headline metrics with labels and trend deltas.","category":"data-display","client":false},{"name":"Stepper","label":"Stepper","slug":"stepper","description":"Step-by-step progress indicator for wizards and multi-stage flows.","category":"navigation","client":true},{"name":"StreamingText","label":"Streaming text","slug":"streaming-text","description":"Progressive reveal for text arriving in chunks, with a blinking cursor while more is coming.","category":"ai","client":true},{"name":"Swatch","label":"Swatch","slug":"swatch","description":"Clickable colour tile for preset palettes and picker triggers, with a theme-aware selection ring.","category":"forms","client":false},{"name":"Table","label":"Table","slug":"table","description":"Data table with flexible cell content, striped rows, compact sizing, and support for icons, inputs, buttons, and interactive controls.","category":"data-display","client":false},{"name":"Tabs","label":"Tabs","slug":"tabs","description":"Tab navigation with underline indicator, icon support, compact size, and full-width mode.","category":"navigation","client":true},{"name":"TagInput","label":"Tag input","slug":"tag-input","description":"Multi-value text input with entries held as removable tags.","category":"forms","client":true},{"name":"Textarea","label":"Textarea","slug":"textarea","description":"Multi-line text input with character counter, resize control, helper text, and error states.","category":"forms","client":true},{"name":"TimePicker","label":"Time picker","slug":"time-picker","description":"Time-of-day field with a dropdown list of selectable times.","category":"forms","client":true},{"name":"Timeline","label":"Timeline","slug":"timeline","description":"Ordered sequences: histories and steppers.","category":"data-display","client":false},{"name":"Toast","label":"Toast","slug":"toast","description":"Temporary notification with status variants, auto-dismiss, and stacking via ToastProvider.","category":"feedback","client":true},{"name":"ToggleGroup","label":"Toggle group","slug":"toggle-group","description":"A set of two-state buttons that can be toggled on or off, supporting text and icon items.","category":"actions","client":true},{"name":"ToggleSwitch","label":"Toggle switch","slug":"toggle-switch","description":"Binary on/off toggle control with sliding thumb and check indicator, used for settings like theme switching.","category":"forms","client":true},{"name":"ToolCall","label":"Tool call","slug":"tool-call","description":"The record of one tool invocation, with its arguments and result behind a disclosure.","category":"ai","client":true},{"name":"Tooltip","label":"Tooltip","slug":"tooltip","description":"Contextual text label that appears on hover or focus with position and delay options.","category":"overlays","client":true},{"name":"TreeView","label":"Tree view","slug":"tree-view","description":"Collapsible hierarchy for files, folders, and nested structures.","category":"data-display","client":true},{"name":"Treemap","label":"Treemap","slug":"treemap","description":"Nested rectangles sized by value for part-to-whole breakdowns.","category":"charts","client":false,"folder":"Chart"}]`);
|
|
2
|
+
const components = /* @__PURE__ */ JSON.parse(`[{"name":"Accordion","label":"Accordion","slug":"accordion","description":"Collapsible content sections for organising related information.","category":"data-display","client":true},{"name":"AgentPlan","label":"Agent plan","slug":"agent-plan","description":"A collapsible checklist of an agent's task, with live step states and a progress readout.","category":"ai","client":true},{"name":"AgentStatus","label":"Agent status","slug":"agent-status","description":"A dot-matrix indicator and status line reporting what an agent is doing right now.","category":"ai","client":true},{"name":"AiButton","label":"AI button","slug":"ai-button","description":"The AI entry point: icon and label ringed by a turning gradient and glow, with an optional hover-summoned AI-summary panel and prompt chips.","category":"ai","client":true},{"name":"Alert","label":"Alert","slug":"alert","description":"Contextual feedback with status variants, optional dismiss, and compact sizing.","category":"feedback","client":false},{"name":"AlertDialog","label":"Alert dialog","slug":"alert-dialog","description":"Modal confirmation overlay with title, description, and confirm / cancel actions.","category":"overlays","client":true},{"name":"AnchorNav","label":"Anchor nav","slug":"anchor-nav","description":"An on-page list of anchor links that tracks the reader's position and jumps between sections.","category":"navigation","client":true},{"name":"AppLayout","label":"App layout","slug":"app-layout","description":"Full-page template pairing the collapsible App sidebar with a centred content area.","category":"layout","client":true},{"name":"AppSidebar","label":"App sidebar","slug":"app-sidebar","description":"Collapsible navigation rail with accordion sub-items, category headings, and profile section.","category":"layout","client":true},{"name":"AreaChart","label":"Area chart","slug":"area-chart","description":"Filled area chart for showing volume over time, with stacked and single-series variants.","category":"charts","client":false,"folder":"Chart","recharts":true},{"name":"Avatar","label":"Avatar","slug":"avatar","description":"User profile image with initials and icon fallback, status indicator, and multiple sizes.","category":"data-display","client":true},{"name":"AvatarGroup","label":"Avatar group","slug":"avatar-group","description":"Overlapping avatar stack with a +N counter for the overflow.","category":"data-display","client":false},{"name":"Badge","label":"Badge","slug":"badge","description":"Small inline status labels with info, positive, warning, error, and neutral variants.","category":"data-display","client":false},{"name":"Banner","label":"Banner","slug":"banner","description":"Full-width status strip for page-level announcements, with an action slot and optional dismissal.","category":"feedback","client":false},{"name":"BarChart","label":"Bar chart","slug":"bar-chart","description":"Vertical bars for comparing values across categories or time, with summary stats and tooltips.","category":"charts","client":false,"folder":"Chart","recharts":true},{"name":"Breadcrumb","label":"Breadcrumb","slug":"breadcrumb","description":"Hierarchical navigation trail showing the user's location within the site.","category":"navigation","client":false},{"name":"Button","label":"Button","slug":"button","description":"Primary, secondary, tertiary, neutral and destructive variants in default and compact sizes, with icon support and multiple states.","category":"actions","client":true},{"name":"ButtonGroup","label":"Button group","slug":"button-group","description":"Horizontal and vertical button group layouts for related actions and navigation patterns.","category":"actions","client":false},{"name":"Card","label":"Card","slug":"card","description":"Card components for previews, navigation, and token documentation, from content cards to colour swatches and typography specimens.","category":"data-display","client":true},{"name":"CardStack","label":"Card stack","slug":"card-stack","description":"A deck of cards showing one at a time, flipped through with a lift-and-settle animation.","category":"data-display","client":true},{"name":"Carousel","label":"Carousel","slug":"carousel","description":"Sliding content viewer with navigation arrows, dot indicators, auto-play, and keyboard support.","category":"data-display","client":true},{"name":"ChatHeader","label":"Chat header","slug":"chat-header","description":"The top row of a chat surface, with the conversation title and its controls.","category":"ai","client":false},{"name":"ChatMarker","label":"Chat marker","slug":"chat-marker","description":"An inline conversation separator for date breaks and system notes.","category":"ai","client":false},{"name":"ChatMessage","label":"Chat message","slug":"chat-message","description":"A single chat turn with avatar, author, timestamp, and bubble or plain content aligned by role.","category":"ai","client":false},{"name":"ChatThread","label":"Chat thread","slug":"chat-thread","description":"A scrollable conversation column with edge fades, send anchoring, and a subtle scrollbar.","category":"ai","client":true},{"name":"Checkbox","label":"Checkbox","slug":"checkbox","description":"Custom checkbox with check and indeterminate states, keyboard accessible with animated transitions.","category":"forms","client":true},{"name":"Chip","label":"Chip","slug":"chip","description":"Compact pills for attributes, filters, and inline metadata.","category":"data-display","client":false},{"name":"CircularButton","label":"Circular button","slug":"circular-button","description":"Round icon button with primary, secondary, tertiary and neutral variants, default and compact sizes.","category":"actions","client":false},{"name":"CodeBlock","label":"Code block","slug":"code-block","description":"Monospace code with a header and one-click copy.","category":"data-display","client":true},{"name":"CodeDiff","label":"Code diff","slug":"code-diff","description":"Unified diff view for code changes, with added, removed, and context lines.","category":"ai","client":false},{"name":"ColorPicker","label":"Colour picker","slug":"color-picker","description":"Swatch trigger opening a saturation area, hue and alpha sliders, and a hex field; controlled or uncontrolled.","category":"forms","client":true},{"name":"ComboChart","label":"Combo chart","slug":"combo-chart","description":"Bar and line series in one chart, with an optional second y-axis for pairs in different units, like spend and ROAS.","category":"charts","client":false,"folder":"Chart","recharts":true},{"name":"Combobox","label":"Combobox","slug":"combobox","description":"A filterable select that narrows options as the user types, with multi-select chips, grouping, and async loading.","category":"forms","client":true},{"name":"CommandPalette","label":"Command palette","slug":"command-palette","description":"A modal Cmd+K launcher that searches a grouped command list, with keyboard navigation and shortcut hints.","category":"overlays","client":true},{"name":"Composer","label":"Composer","slug":"composer","description":"An auto-growing message input with send and stop states, a page-context note, an attachment slot, and Enter-to-send.","category":"ai","client":true},{"name":"ContactCard","label":"Contact card","slug":"contact-card","description":"Linked contact method with icon, label, and value.","category":"data-display","client":true},{"name":"ContextMenu","label":"Context menu","slug":"context-menu","description":"Right-click menu at the pointer with groups, sub-menus, and shortcut hints.","category":"overlays","client":true},{"name":"ContributionGraph","label":"Contribution graph","slug":"contribution-graph","description":"A year of activity, one cell per day.","category":"charts","client":false},{"name":"DataTable","label":"Data table","slug":"data-table","description":"The wired table: sorting, search, row selection, and pagination assembled around Table.","category":"data-display","client":true},{"name":"DateInput","label":"Date input","slug":"date-input","description":"Date input with native picker, calendar icon, label, and validation states.","category":"forms","client":true},{"name":"DatePicker","label":"Date picker","slug":"date-picker","description":"Inline calendar with month navigation, day selection, and today indicator.","category":"forms","client":true},{"name":"Dialog","label":"Dialog","slug":"dialog","description":"A general-purpose modal for focused tasks, with sizes, an optional footer, and full focus management.","category":"overlays","client":true},{"name":"Divider","label":"Divider","slug":"divider","description":"A thin rule separating stacked content, with optional inline label and vertical orientation.","category":"layout","client":false},{"name":"DocumentChip","label":"Document chip","slug":"document-chip","description":"A compact file reference with a type icon, name, metadata, and optional remove.","category":"ai","client":false},{"name":"Drawer","label":"Drawer","slug":"drawer","description":"An edge-anchored modal panel that slides in from any side, for filter panels, detail views, and mobile navigation.","category":"overlays","client":true},{"name":"Dropdown","label":"Dropdown","slug":"dropdown","description":"Custom select dropdown with keyboard navigation, disabled options, and error states.","category":"forms","client":true},{"name":"DropdownMenu","label":"Dropdown menu","slug":"dropdown-menu","description":"Contextual menu with sections, sub-menus, keyboard shortcuts, and inset-gap hover styling.","category":"overlays","client":true},{"name":"EmptyState","label":"Empty state","slug":"empty-state","description":"The placeholder for a list, table, or search with nothing to show: icon, headline, guidance, and a next action.","category":"feedback","client":false},{"name":"EntityCard","label":"Entity card","slug":"entity-card","description":"Compact display-only card with a centred icon or image and a label, used in the Icons and Logos galleries.","category":"data-display","client":false},{"name":"EventCalendar","label":"Event calendar","slug":"event-calendar","description":"A month grid with event pills, overflow counts, and month navigation.","category":"data-display","client":true},{"name":"Field","label":"Field","slug":"field","description":"The shared scaffolding for labelled form controls: label, required marker, helper and error text, and the ARIA wiring that ties them together.","category":"forms","client":true},{"name":"Figure","label":"Figure","slug":"figure","description":"Images with captions, in the case-study frame.","category":"data-display","client":false},{"name":"FileInput","label":"File input","slug":"file-input","description":"A click-or-drop upload zone paired with a controlled file list showing size, progress, and per-file errors.","category":"forms","client":true},{"name":"FilterBar","label":"Filter bar","slug":"filter-bar","description":"A row of filter chips for narrowing a collection, each opening a popover of options, with per-filter and clear-all resets.","category":"forms","client":true},{"name":"FunnelChart","label":"Funnel chart","slug":"funnel-chart","description":"Ordered funnel stages as centred trapezoid bands, each sized by its share of the first stage.","category":"charts","client":false,"recharts":true},{"name":"Gauge","label":"Gauge","slug":"gauge","description":"A radial dial for a single bounded reading, recoloured through the status roles as it crosses thresholds.","category":"charts","client":false},{"name":"Globe","label":"Globe","slug":"globe","description":"An orthographic globe with markers and great-circle arcs, rotated by drag, keys, or a slow spin.","category":"maps","client":true},{"name":"HoverCard","label":"Hover card","slug":"hover-card","description":"Rich preview panel that opens from hover or focus, with interactive content and position options.","category":"overlays","client":true},{"name":"ImageCompare","label":"Image compare","slug":"image-compare","description":"Before-and-after image comparison with a draggable divider, keyboard control, and corner labels.","category":"data-display","client":true},{"name":"Input","label":"Input","slug":"input","description":"Text input with label, placeholder, left and right icons, helper text, and error states.","category":"forms","client":true},{"name":"Instructions","label":"Instructions","slug":"instructions","description":"Step-by-step guidance with numbered badges, connecting lines, and horizontal layout.","category":"data-display","client":false},{"name":"InterruptCard","label":"Interrupt card","slug":"interrupt-card","description":"A human-in-the-loop checkpoint with a question from the agent and option buttons to decide.","category":"ai","client":false},{"name":"Kbd","label":"Kbd","slug":"kbd","description":"A keyboard key rendered as a keycap, for shortcut hints in menus and prose.","category":"data-display","client":false},{"name":"LegendTile","label":"Legend tile","slug":"legend-tile","description":"The labelled value tile under a chart: a series dot, the series name, and its reading, on an inset fill.","category":"charts","client":false},{"name":"LineChart","label":"Line chart","slug":"line-chart","description":"Multi-series line chart for trends over time, with per-series colours and a summary row.","category":"charts","client":false,"folder":"Chart","recharts":true},{"name":"LinkList","label":"Link list","slug":"link-list","description":"Linked items with logo, label, and subtitle.","category":"data-display","client":false},{"name":"MapCallout","label":"Map callout","slug":"map-callout","description":"The annotation beside a map point: a name in capitals over monospace readout lines.","category":"maps","client":false},{"name":"MapLegend","label":"Map legend","slug":"map-legend","description":"The corner block of a map: its name, what it shows, and the key to its markers.","category":"maps","client":false},{"name":"MessageActions","label":"Message actions","slug":"message-actions","description":"An icon-button row for message-level actions like copy, retry, and feedback.","category":"ai","client":false},{"name":"MessageCard","label":"Message card","slug":"message-card","description":"A structured rich-content card embedded in a chat message, with media, title, body, and actions.","category":"ai","client":false},{"name":"Meter","label":"Meter","slug":"meter","description":"Level indicator for a known quantity, with a status-coloured fill and an optional value readout.","category":"feedback","client":false},{"name":"ModelPicker","label":"Model picker","slug":"model-picker","description":"A model selector for chat surfaces, with per-model descriptions and an optional effort row.","category":"ai","client":true},{"name":"Nav","label":"Nav","slug":"nav","description":"Desktop top navigation bar with a brand slot, horizontal button group, and optional trailing content.","category":"navigation","client":false},{"name":"NavList","label":"Nav list","slug":"nav-list","description":"Vertical list of navigation links for drawers and menus, with three indent levels and per-row expand toggles.","category":"navigation","client":true},{"name":"NotificationCenter","label":"Notification centre","slug":"notification-center","description":"A persistent notification inbox with unread count, filter tabs, and per-item actions.","category":"feedback","client":true},{"name":"NumberInput","label":"Number input","slug":"number-input","description":"Numeric field with increment and decrement steppers and min/max clamping.","category":"forms","client":true},{"name":"Pagination","label":"Pagination","slug":"pagination","description":"Numbered page navigation for long datasets, with ellipses, disabled end arrows, and a compact readout mode.","category":"navigation","client":true},{"name":"Panel","label":"Panel","slug":"panel","description":"The plain dashboard surface: a rounded container with no border or shadow, just padding and a gap.","category":"layout","client":false},{"name":"PieChart","label":"Pie chart","slug":"pie-chart","description":"Proportional share of a whole as a pie or donut, with per-slice colours.","category":"charts","client":false,"folder":"Chart","recharts":true},{"name":"PinInput","label":"Pin input","slug":"pin-input","description":"Segmented one-time-code input with auto-advance, paste support, and completion callback.","category":"forms","client":true},{"name":"Popover","label":"Popover","slug":"popover","description":"Contextual overlay panel with click and hover triggers, positioned relative to its anchor.","category":"overlays","client":true},{"name":"ProgressBar","label":"Progress bar","slug":"progress-bar","description":"Horizontal bar indicating completion progress, with an optional percentage label.","category":"feedback","client":false},{"name":"PromptSuggestions","label":"Prompt suggestions","slug":"prompt-suggestions","description":"A horizontal row of tappable prompt suggestions to start or steer a conversation.","category":"ai","client":false},{"name":"Prose","label":"Prose","slug":"prose","description":"Token-styled typography for rendered markdown and rich agent output.","category":"ai","client":false},{"name":"Quote","label":"Quote","slug":"quote","description":"Blockquotes and pull-quotes with attribution.","category":"data-display","client":false},{"name":"RadarChart","label":"Radar chart","slug":"radar-chart","description":"Multi-axis comparison of series across categories on a radial grid.","category":"charts","client":false,"folder":"Chart","recharts":true},{"name":"RadialChart","label":"Radial chart","slug":"radial-chart","description":"Concentric progress rings for completion and KPI readouts.","category":"charts","client":false,"folder":"Chart","recharts":true},{"name":"RadioButton","label":"Radio button","slug":"radio-button","description":"Radio button and radio group with vertical and horizontal layouts, animated dot indicator.","category":"forms","client":true},{"name":"Rating","label":"Rating","slug":"rating","description":"Star-scale rating control with keyboard selection, a read-only mode, and a configurable icon.","category":"forms","client":true},{"name":"Reasoning","label":"Reasoning","slug":"reasoning","description":"A model's thinking, disclosed behind a one-line summary and collapsed once it finishes.","category":"ai","client":true},{"name":"ScatterChart","label":"Scatter chart","slug":"scatter-chart","description":"Plots point clusters across two axes to show correlation and distribution.","category":"charts","client":false,"folder":"Chart","recharts":true},{"name":"SectionTitle","label":"Section title","slug":"section-title","description":"Heading with a divider line and optional trailing content for organising page sections.","category":"layout","client":false},{"name":"SegmentedControl","label":"Segmented control","slug":"segmented-control","description":"Pill-style toggle between related views with keyboard navigation and icon support.","category":"actions","client":true},{"name":"SelectionCard","label":"Selection card","slug":"selection-card","description":"Large selectable option cards with radio or checkbox indicators for high-visibility choices like settings and onboarding.","category":"data-display","client":true},{"name":"ShaderField","label":"Shader field","slug":"shader-field","description":"An ambient WebGL2 field of soft light sources that sample colour tokens, with a reported fallback status.","category":"effects","client":true},{"name":"Skeleton","label":"Skeleton","slug":"skeleton","description":"Placeholder loading indicators with text, circular, and rectangular variants.","category":"feedback","client":false},{"name":"Slider","label":"Slider","slug":"slider","description":"Range input for selecting a value between a minimum and maximum, in default and compact sizes.","category":"forms","client":true},{"name":"SourceChip","label":"Source chip","slug":"source-chip","description":"A numbered citation pill linking a claim to its source.","category":"ai","client":false},{"name":"SourceTrail","label":"Source trail","slug":"source-trail","description":"The sources an agent opened while answering, as a collapsible list with per-item status.","category":"ai","client":true},{"name":"Sparkline","label":"Sparkline","slug":"sparkline","description":"Inline trend line for stats and table cells, drawn without axes or chrome.","category":"charts","client":false},{"name":"Spinner","label":"Spinner","slug":"spinner","description":"Animated circular loading indicator in three sizes and primary, neutral, or inherit variants.","category":"feedback","client":false},{"name":"SplitButton","label":"Split button","slug":"split-button","description":"Primary action with an attached menu of alternatives, composing Button and DropdownMenu in one pill.","category":"actions","client":false},{"name":"SplitPane","label":"Split pane","slug":"split-pane","description":"Two resizable regions with a draggable, keyboard-operable divider between them.","category":"layout","client":true},{"name":"StackedBarChart","label":"Stacked bar chart","slug":"stacked-bar-chart","description":"Bars split into stacked segments to compare totals and their composition.","category":"charts","client":false,"folder":"Chart","recharts":true},{"name":"Stat","label":"Stat","slug":"stat","description":"Headline metrics with labels and trend deltas.","category":"data-display","client":false},{"name":"Stepper","label":"Stepper","slug":"stepper","description":"Step-by-step progress indicator for wizards and multi-stage flows.","category":"navigation","client":true},{"name":"StreamingText","label":"Streaming text","slug":"streaming-text","description":"Progressive reveal for text arriving in chunks, with a blinking cursor while more is coming.","category":"ai","client":true},{"name":"Swatch","label":"Swatch","slug":"swatch","description":"Clickable colour tile for preset palettes and picker triggers, with a theme-aware selection ring.","category":"forms","client":false},{"name":"Table","label":"Table","slug":"table","description":"Data table with flexible cell content, striped rows, compact sizing, and support for icons, inputs, buttons, and interactive controls.","category":"data-display","client":false},{"name":"Tabs","label":"Tabs","slug":"tabs","description":"Tab navigation with underline indicator, icon support, compact size, and full-width mode.","category":"navigation","client":true},{"name":"TagInput","label":"Tag input","slug":"tag-input","description":"Multi-value text input with entries held as removable tags.","category":"forms","client":true},{"name":"Textarea","label":"Textarea","slug":"textarea","description":"Multi-line text input with character counter, resize control, helper text, and error states.","category":"forms","client":true},{"name":"TimePicker","label":"Time picker","slug":"time-picker","description":"Time-of-day field with a dropdown list of selectable times.","category":"forms","client":true},{"name":"Timeline","label":"Timeline","slug":"timeline","description":"Ordered sequences: histories and steppers.","category":"data-display","client":false},{"name":"Toast","label":"Toast","slug":"toast","description":"Temporary notification with status variants, auto-dismiss, and stacking via ToastProvider.","category":"feedback","client":true},{"name":"ToggleGroup","label":"Toggle group","slug":"toggle-group","description":"A set of two-state buttons that can be toggled on or off, supporting text and icon items.","category":"actions","client":true},{"name":"ToggleSwitch","label":"Toggle switch","slug":"toggle-switch","description":"Binary on/off toggle control with sliding thumb and check indicator, used for settings like theme switching.","category":"forms","client":true},{"name":"ToolCall","label":"Tool call","slug":"tool-call","description":"The record of one tool invocation, with its arguments and result behind a disclosure.","category":"ai","client":true},{"name":"Tooltip","label":"Tooltip","slug":"tooltip","description":"Contextual text label that appears on hover or focus with position and delay options.","category":"overlays","client":true},{"name":"TreeView","label":"Tree view","slug":"tree-view","description":"Collapsible hierarchy for files, folders, and nested structures.","category":"data-display","client":true},{"name":"Treemap","label":"Treemap","slug":"treemap","description":"Nested rectangles sized by value for part-to-whole breakdowns.","category":"charts","client":false,"folder":"Chart","recharts":true},{"name":"UsageCard","label":"Usage card","slug":"usage-card","description":"An agent's budgets at a glance: context window and plan limits as meter rows with reset captions.","category":"ai","client":false}]`);
|
|
3
3
|
const registry = {
|
|
4
4
|
categories,
|
|
5
5
|
components
|
package/index.d.ts
CHANGED
|
@@ -56,7 +56,6 @@ export * from './components/Field/FieldContext';
|
|
|
56
56
|
export * from './components/Figure/Figure';
|
|
57
57
|
export * from './components/FileInput/FileInput';
|
|
58
58
|
export * from './components/FilterBar/FilterBar';
|
|
59
|
-
export * from './components/FunnelChart/FunnelChart';
|
|
60
59
|
export * from './components/Gauge/Gauge';
|
|
61
60
|
export * from './components/Globe/Globe';
|
|
62
61
|
export * from './components/HoverCard/HoverCard';
|
|
@@ -95,6 +94,7 @@ export * from './components/ShaderField/ShaderField';
|
|
|
95
94
|
export * from './components/Skeleton/Skeleton';
|
|
96
95
|
export * from './components/Slider/Slider';
|
|
97
96
|
export * from './components/SourceChip/SourceChip';
|
|
97
|
+
export * from './components/SourceTrail/SourceTrail';
|
|
98
98
|
export * from './components/Sparkline/Sparkline';
|
|
99
99
|
export * from './components/Spinner/Spinner';
|
|
100
100
|
export * from './components/SplitButton/SplitButton';
|
|
@@ -115,6 +115,7 @@ export * from './components/ToggleSwitch/ToggleSwitch';
|
|
|
115
115
|
export * from './components/ToolCall/ToolCall';
|
|
116
116
|
export * from './components/Tooltip/Tooltip';
|
|
117
117
|
export * from './components/TreeView/TreeView';
|
|
118
|
+
export * from './components/UsageCard/UsageCard';
|
|
118
119
|
export { componentRegistry, componentMetadata, componentCategories, componentCategoryMetadata, COMPONENT_COUNT, } from './components/registry';
|
|
119
120
|
export type { ComponentMeta, ComponentCategoryMeta } from './components/registry';
|
|
120
121
|
export { tokenRegistry, TOKEN_COUNT, TOKEN_COUNTS } from './tokens/registry';
|
package/index.js
CHANGED
|
@@ -51,7 +51,6 @@ import { FieldContext, useField } from "./components/Field/FieldContext.js";
|
|
|
51
51
|
import { Figure } from "./components/Figure/Figure.js";
|
|
52
52
|
import { FileInput } from "./components/FileInput/FileInput.js";
|
|
53
53
|
import { FilterBar } from "./components/FilterBar/FilterBar.js";
|
|
54
|
-
import { FunnelChart } from "./components/FunnelChart/FunnelChart.js";
|
|
55
54
|
import { Gauge } from "./components/Gauge/Gauge.js";
|
|
56
55
|
import { Globe } from "./components/Globe/Globe.js";
|
|
57
56
|
import { HoverCard } from "./components/HoverCard/HoverCard.js";
|
|
@@ -90,6 +89,7 @@ import { ShaderField } from "./components/ShaderField/ShaderField.js";
|
|
|
90
89
|
import { Skeleton } from "./components/Skeleton/Skeleton.js";
|
|
91
90
|
import { Slider } from "./components/Slider/Slider.js";
|
|
92
91
|
import { SourceChip } from "./components/SourceChip/SourceChip.js";
|
|
92
|
+
import { SourceTrail } from "./components/SourceTrail/SourceTrail.js";
|
|
93
93
|
import { Sparkline } from "./components/Sparkline/Sparkline.js";
|
|
94
94
|
import { Spinner } from "./components/Spinner/Spinner.js";
|
|
95
95
|
import { SplitButton } from "./components/SplitButton/SplitButton.js";
|
|
@@ -110,6 +110,7 @@ import { ToggleSwitch } from "./components/ToggleSwitch/ToggleSwitch.js";
|
|
|
110
110
|
import { ToolCall } from "./components/ToolCall/ToolCall.js";
|
|
111
111
|
import { Tooltip } from "./components/Tooltip/Tooltip.js";
|
|
112
112
|
import { TreeView } from "./components/TreeView/TreeView.js";
|
|
113
|
+
import { UsageCard } from "./components/UsageCard/UsageCard.js";
|
|
113
114
|
import { COMPONENT_COUNT, componentCategories, componentCategoryMetadata, componentMetadata, componentRegistry } from "./components/registry.js";
|
|
114
115
|
import { TOKEN_COUNT, TOKEN_COUNTS, tokenRegistry } from "./tokens/registry.js";
|
|
115
116
|
import { BLOB_COUNT } from "./components/ShaderField/field.glsl.js";
|
|
@@ -173,7 +174,6 @@ export {
|
|
|
173
174
|
Figure,
|
|
174
175
|
FileInput,
|
|
175
176
|
FilterBar,
|
|
176
|
-
FunnelChart,
|
|
177
177
|
Gauge,
|
|
178
178
|
Globe,
|
|
179
179
|
HoverCard,
|
|
@@ -214,6 +214,7 @@ export {
|
|
|
214
214
|
Skeleton,
|
|
215
215
|
Slider,
|
|
216
216
|
SourceChip,
|
|
217
|
+
SourceTrail,
|
|
217
218
|
Sparkline,
|
|
218
219
|
Spinner,
|
|
219
220
|
SplitButton,
|
|
@@ -237,6 +238,7 @@ export {
|
|
|
237
238
|
ToolCall,
|
|
238
239
|
Tooltip,
|
|
239
240
|
TreeView,
|
|
241
|
+
UsageCard,
|
|
240
242
|
agentStatusPatterns,
|
|
241
243
|
componentCategories,
|
|
242
244
|
componentCategoryMetadata,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@robr0/design-system",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.16.0",
|
|
4
4
|
"description": "An AI-ready React design system: accessible components on composable tokens, light/dark theming, and CSS-variable overrides.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -50,6 +50,10 @@
|
|
|
50
50
|
"types": "./components/StreamingText/useStreamReveal.d.ts",
|
|
51
51
|
"import": "./components/StreamingText/useStreamReveal.js"
|
|
52
52
|
},
|
|
53
|
+
"./behaviors/useScrollLock": {
|
|
54
|
+
"types": "./behaviors/useScrollLock.d.ts",
|
|
55
|
+
"import": "./behaviors/useScrollLock.js"
|
|
56
|
+
},
|
|
53
57
|
"./tokens/registry": {
|
|
54
58
|
"types": "./tokens/registry.d.ts",
|
|
55
59
|
"import": "./tokens/registry.js"
|
package/tokens/motion.d.ts
CHANGED
|
@@ -7,10 +7,10 @@
|
|
|
7
7
|
*
|
|
8
8
|
* Most are schedule timings (when something starts, stops, or is taken
|
|
9
9
|
* away), which the reduced-motion guard in tokens-motion.css deliberately
|
|
10
|
-
* leaves alone.
|
|
11
|
-
* rate floor and drain window
|
|
12
|
-
*
|
|
13
|
-
* timer.
|
|
10
|
+
* leaves alone. Constants that pace an animation (the streaming reveal's
|
|
11
|
+
* rate floor and drain window, and the summary panel's reveal budget) are
|
|
12
|
+
* the exception: their component checks the preference itself in JS,
|
|
13
|
+
* because the CSS guard cannot see a JavaScript timer.
|
|
14
14
|
*/
|
|
15
15
|
/** Delay before a hover-triggered overlay appears, filtering pass-through hovers. */
|
|
16
16
|
export declare const MOTION_HOVER_SHOW_DELAY_MS = 300;
|
|
@@ -30,3 +30,9 @@ export declare const MOTION_STREAM_FLOOR_CPS = 70;
|
|
|
30
30
|
export declare const MOTION_STREAM_DRAIN_MS = 250;
|
|
31
31
|
/** The retired interval-based reveal step. @deprecated The reveal is frame-driven now — pace it with MOTION_STREAM_FLOOR_CPS and MOTION_STREAM_DRAIN_MS. */
|
|
32
32
|
export declare const MOTION_STREAM_CHAR_INTERVAL_MS = 15;
|
|
33
|
+
/** Grace period before a hover-summoned surface hides once the pointer has left it — long enough to cross the gap between a launcher and its panel without the panel dying under a mouse that is heading for it. */
|
|
34
|
+
export declare const MOTION_HOVER_EXIT_GRACE_MS = 600;
|
|
35
|
+
/** How long AiButton's summary panel "thinks" (skeleton lines) before its pre-written text reveals. */
|
|
36
|
+
export declare const MOTION_SUMMARY_THINK_MS = 900;
|
|
37
|
+
/** The summary panel's full type-out budget: however long the text, the reveal has it on screen within this. A deliberately slower pace than MOTION_STREAM_DRAIN_MS — this reveal is the content arriving, not a stream catching up. */
|
|
38
|
+
export declare const MOTION_SUMMARY_REVEAL_MS = 1600;
|