@gunjo/ui 0.0.1-alpha.0 → 0.0.1-alpha.2
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/LICENSE +21 -0
- package/README.ja.md +90 -0
- package/README.md +52 -91
- package/package.json +47 -6
- package/src/components/display/Accordion.tsx +185 -0
- package/src/components/display/AccordionGroup.tsx +155 -0
- package/src/components/display/ActionDataTable.tsx +413 -0
- package/src/components/display/ActivityTimelineCard.tsx +483 -0
- package/src/components/display/AnalyticsCard.tsx +167 -0
- package/src/components/display/AssetCard.tsx +242 -0
- package/src/components/display/AssetGrid.tsx +164 -0
- package/src/components/display/Avatar.tsx +127 -0
- package/src/components/display/AvatarGroup.tsx +131 -0
- package/src/components/{atoms → display}/Badge.tsx +3 -3
- package/src/components/display/BarChart.tsx +247 -0
- package/src/components/{molecules → display}/Card.tsx +1 -1
- package/src/components/display/Carousel.tsx +593 -0
- package/src/components/display/ChartLegend.tsx +124 -0
- package/src/components/display/ChatMessage.tsx +382 -0
- package/src/components/display/ChoroplethMap.tsx +613 -0
- package/src/components/display/Code.tsx +42 -0
- package/src/components/display/CodeBlock.tsx +338 -0
- package/src/components/display/ColorSwatch.tsx +71 -0
- package/src/components/display/ConcentricProgressCard.tsx +545 -0
- package/src/components/display/DataTable.tsx +522 -0
- package/src/components/display/DistributionBar.tsx +102 -0
- package/src/components/display/DocNote.tsx +36 -0
- package/src/components/display/DonutChart.tsx +257 -0
- package/src/components/display/EmptyState.tsx +44 -0
- package/src/components/display/FileTree.tsx +180 -0
- package/src/components/display/GaugeChart.tsx +219 -0
- package/src/components/display/HeatmapChart.tsx +266 -0
- package/src/components/display/Icon.tsx +66 -0
- package/src/components/display/ImagePreview.tsx +140 -0
- package/src/components/{atoms → display}/Img.tsx +46 -12
- package/src/components/display/LabeledDonutCard.tsx +475 -0
- package/src/components/display/LineChart.tsx +464 -0
- package/src/components/{molecules → display}/List.tsx +20 -13
- package/src/components/display/MarkdownRenderer.tsx +157 -0
- package/src/components/display/MetadataList.tsx +81 -0
- package/src/components/display/MiniDistributionBarCard.tsx +314 -0
- package/src/components/display/PieChart.tsx +234 -0
- package/src/components/display/QuadrantMatrix.tsx +330 -0
- package/src/components/display/RadarChart.tsx +335 -0
- package/src/components/display/RadialBarChart.tsx +264 -0
- package/src/components/display/RetentionCohortCard.tsx +350 -0
- package/src/components/display/RibbonChart.tsx +618 -0
- package/src/components/display/SearchableAccordion.tsx +270 -0
- package/src/components/display/SegmentTimelineCard.tsx +452 -0
- package/src/components/display/SegmentedGaugeCard.tsx +607 -0
- package/src/components/display/Spacer.tsx +51 -0
- package/src/components/display/SparklineChart.tsx +394 -0
- package/src/components/display/StackedBarChart.tsx +393 -0
- package/src/components/display/Statistic.tsx +70 -0
- package/src/components/{molecules → display}/Table.tsx +22 -7
- package/src/components/display/Tag.tsx +80 -0
- package/src/components/display/TagEditor.tsx +141 -0
- package/src/components/display/Timeline.tsx +121 -0
- package/src/components/{atoms → display}/ToolPill.tsx +42 -18
- package/src/components/display/TreeView.tsx +226 -0
- package/src/components/display/chart-tooltip.tsx +423 -0
- package/src/components/display/chart-utils.ts +71 -0
- package/src/components/display/circular-chart-utils.ts +147 -0
- package/src/components/display/generated/default-variant-keys.ts +90 -0
- package/src/components/display/generated/variant-keys.ts +169 -0
- package/src/components/{atoms → feedback}/Alert.tsx +12 -5
- package/src/components/feedback/Banner.tsx +90 -0
- package/src/components/{molecules → feedback}/NotificationCenter.tsx +64 -31
- package/src/components/feedback/ProgressWidget.tsx +44 -0
- package/src/components/{atoms → feedback}/Spinner.tsx +2 -2
- package/src/components/{molecules → feedback}/StatusBar.tsx +4 -4
- package/src/components/feedback/StatusScreen.tsx +148 -0
- package/src/components/{molecules → feedback}/Stepper.tsx +10 -5
- package/src/components/feedback/Toast.tsx +108 -0
- package/src/components/feedback/ToastProvider.tsx +78 -0
- package/src/components/feedback/generated/default-variant-keys.ts +16 -0
- package/src/components/feedback/generated/variant-keys.ts +21 -0
- package/src/components/generated/component-manifest.ts +1568 -454
- package/src/components/generated/component-style-hints.ts +1958 -718
- package/src/components/{atoms → inputs}/ButtonVariants.ts +13 -3
- package/src/components/inputs/Calendar.tsx +212 -0
- package/src/components/inputs/ChatComposer.tsx +75 -0
- package/src/components/inputs/ChatInput.tsx +528 -0
- package/src/components/{atoms → inputs}/Checkbox.tsx +2 -2
- package/src/components/inputs/Combobox.tsx +175 -0
- package/src/components/inputs/CopyButton.tsx +187 -0
- package/src/components/inputs/DatePicker.tsx +519 -0
- package/src/components/inputs/DateRangePicker.tsx +878 -0
- package/src/components/inputs/EditableField.tsx +182 -0
- package/src/components/{organisms → inputs}/FileUploader.tsx +24 -9
- package/src/components/inputs/FilterButton.tsx +163 -0
- package/src/components/{molecules → inputs}/Form.tsx +20 -3
- package/src/components/{atoms → inputs}/Input.tsx +2 -0
- package/src/components/inputs/InputOTP.tsx +75 -0
- package/src/components/inputs/Mention.tsx +279 -0
- package/src/components/inputs/NumberInput.tsx +109 -0
- package/src/components/inputs/PasswordGroup.tsx +138 -0
- package/src/components/inputs/PasswordInput.tsx +74 -0
- package/src/components/inputs/PasswordRequirementList.tsx +96 -0
- package/src/components/inputs/PasswordStrengthMeter.tsx +93 -0
- package/src/components/inputs/PhoneInput.tsx +99 -0
- package/src/components/inputs/PostalCodeInput.tsx +98 -0
- package/src/components/inputs/RangeSlider.tsx +129 -0
- package/src/components/inputs/SearchInput.tsx +76 -0
- package/src/components/inputs/Select.tsx +39 -0
- package/src/components/{atoms → inputs}/Slider.tsx +18 -5
- package/src/components/{molecules → inputs}/SortButton.tsx +5 -2
- package/src/components/{atoms → inputs}/Switch.tsx +15 -4
- package/src/components/inputs/TagInput.tsx +114 -0
- package/src/components/{atoms → inputs}/Textarea.tsx +1 -0
- package/src/components/inputs/TimePicker.tsx +150 -0
- package/src/components/inputs/Toggle.tsx +48 -0
- package/src/components/{atoms → inputs}/ToggleGroup.tsx +2 -2
- package/src/components/inputs/TooltipButton.tsx +148 -0
- package/src/components/inputs/VoiceInputButton.tsx +317 -0
- package/src/components/inputs/calendar-holidays.ts +56 -0
- package/src/components/inputs/generated/default-variant-keys.ts +32 -0
- package/src/components/{atoms → inputs}/generated/variant-keys.ts +19 -27
- package/src/components/layout/AspectRatio.tsx +12 -0
- package/src/components/layout/AssetInspectorPanel.tsx +416 -0
- package/src/components/layout/Cluster.tsx +56 -0
- package/src/components/layout/CollapsiblePanelToggle.tsx +94 -0
- package/src/components/layout/Container.tsx +43 -0
- package/src/components/layout/DeviceFrame.tsx +227 -0
- package/src/components/layout/Grid.tsx +65 -0
- package/src/components/layout/HStack.tsx +73 -0
- package/src/components/{organisms → layout}/InspectorPanel.tsx +6 -5
- package/src/components/layout/MarqueeFrame.tsx +158 -0
- package/src/components/layout/Resizable.tsx +94 -0
- package/src/components/layout/ScrollArea.tsx +71 -0
- package/src/components/{organisms → layout}/SpatialCanvas.tsx +12 -7
- package/src/components/layout/VStack.tsx +69 -0
- package/src/components/layout/generated/default-variant-keys.ts +16 -0
- package/src/components/layout/generated/variant-keys.ts +21 -0
- package/src/components/{molecules → navigation}/Breadcrumb.tsx +5 -4
- package/src/components/navigation/Command.tsx +266 -0
- package/src/components/navigation/CommandPalette.tsx +83 -0
- package/src/components/navigation/DocumentPager.tsx +171 -0
- package/src/components/navigation/Footer.tsx +88 -0
- package/src/components/navigation/Header.tsx +80 -0
- package/src/components/{molecules → navigation}/Menubar.tsx +45 -12
- package/src/components/navigation/NavigationMenu.tsx +128 -0
- package/src/components/navigation/PageAside.tsx +84 -0
- package/src/components/{molecules → navigation}/Pagination.tsx +60 -7
- package/src/components/{organisms → navigation}/RightRail.tsx +1 -1
- package/src/components/navigation/Sidebar.tsx +223 -0
- package/src/components/navigation/SidebarItem.tsx +160 -0
- package/src/components/{molecules → navigation}/Tabs.tsx +2 -2
- package/src/components/navigation/TextLink.tsx +71 -0
- package/src/components/navigation/generated/default-variant-keys.ts +12 -0
- package/src/components/navigation/generated/variant-keys.ts +13 -0
- package/src/components/overlay/AIChatInput.tsx +5 -0
- package/src/components/overlay/AIChatMessage.tsx +6 -0
- package/src/components/overlay/AlertDialog.tsx +145 -0
- package/src/components/overlay/ChatPanel.tsx +180 -0
- package/src/components/{molecules → overlay}/ContextMenu.tsx +65 -29
- package/src/components/{molecules → overlay}/Dialog.tsx +21 -13
- package/src/components/overlay/Drawer.tsx +131 -0
- package/src/components/{molecules → overlay}/DropdownMenu.tsx +52 -17
- package/src/components/overlay/FloatingPanel.tsx +90 -0
- package/src/components/overlay/HoverCard.tsx +36 -0
- package/src/components/overlay/MediaLightbox.tsx +403 -0
- package/src/components/overlay/MediaPickerDialog.tsx +198 -0
- package/src/components/overlay/Modal.tsx +103 -0
- package/src/components/overlay/OnboardingFlow.tsx +172 -0
- package/src/components/overlay/Popover.tsx +36 -0
- package/src/components/overlay/ShareModal.tsx +324 -0
- package/src/components/{molecules → overlay}/Sheet.tsx +76 -19
- package/src/components/overlay/Tooltip.tsx +130 -0
- package/src/components/overlay/generated/default-variant-keys.ts +14 -0
- package/src/components/overlay/generated/variant-keys.ts +17 -0
- package/src/components/patterns/BlogTemplate.tsx +46 -0
- package/src/components/{templates → patterns}/DashboardTemplate.tsx +2 -2
- package/src/components/patterns/DocsTemplate.tsx +41 -0
- package/src/components/{templates → patterns}/MediaLibraryTemplate.tsx +1 -1
- package/src/components/patterns/OnboardingTemplate.tsx +32 -0
- package/src/components/patterns/PricingTemplate.tsx +106 -0
- package/src/globals.css +173 -22
- package/src/index.ts +177 -76
- package/tailwind-theme-extend.cjs +48 -3
- package/design/atoms-metadata.json +0 -82
- package/design/molecules-metadata.json +0 -130
- package/design/organisms-metadata.json +0 -38
- package/design/templates-metadata.json +0 -38
- package/src/components/atoms/Avatar.tsx +0 -57
- package/src/components/atoms/Select.tsx +0 -28
- package/src/components/atoms/generated/default-variant-keys.ts +0 -36
- package/src/components/molecules/AIChatInput.tsx +0 -140
- package/src/components/molecules/AIChatMessage.tsx +0 -109
- package/src/components/molecules/Accordion.tsx +0 -99
- package/src/components/molecules/Calendar.tsx +0 -60
- package/src/components/molecules/Carousel.tsx +0 -261
- package/src/components/molecules/Command.tsx +0 -152
- package/src/components/molecules/FilterButton.tsx +0 -133
- package/src/components/molecules/HoverCard.tsx +0 -29
- package/src/components/molecules/Modal.tsx +0 -66
- package/src/components/molecules/Popover.tsx +0 -31
- package/src/components/molecules/ProgressWidget.tsx +0 -40
- package/src/components/molecules/Resizable.tsx +0 -47
- package/src/components/molecules/ScrollArea.tsx +0 -48
- package/src/components/molecules/SidebarItem.tsx +0 -134
- package/src/components/molecules/Toast.tsx +0 -57
- package/src/components/molecules/Tooltip.tsx +0 -30
- package/src/components/molecules/generated/default-variant-keys.ts +0 -22
- package/src/components/molecules/generated/variant-keys.ts +0 -33
- package/src/components/organisms/CommandPalette.tsx +0 -58
- package/src/components/organisms/FloatingPanel.tsx +0 -46
- package/src/components/organisms/ShareModal.tsx +0 -182
- package/src/components/organisms/ToastProvider.tsx +0 -49
- /package/src/components/{atoms → display}/Kbd.tsx +0 -0
- /package/src/components/{atoms → display}/Separator.tsx +0 -0
- /package/src/components/{atoms → display}/Skeleton.tsx +0 -0
- /package/src/components/{atoms → feedback}/Progress.tsx +0 -0
- /package/src/components/{atoms → inputs}/Button.tsx +0 -0
- /package/src/components/{atoms → inputs}/Label.tsx +0 -0
- /package/src/components/{atoms → inputs}/RadioGroup.tsx +0 -0
- /package/src/components/{organisms → navigation}/AppRail.tsx +0 -0
- /package/src/components/{templates → patterns}/AuthTemplate.tsx +0 -0
- /package/src/components/{templates → patterns}/BannalyzeTemplate.tsx +0 -0
- /package/src/components/{templates → patterns}/ChatTemplate.tsx +0 -0
- /package/src/components/{templates → patterns}/EditorTemplate.tsx +0 -0
- /package/src/components/{templates → patterns}/KanbanTemplate.tsx +0 -0
- /package/src/components/{templates → patterns}/LandingTemplate.tsx +0 -0
- /package/src/components/{templates → patterns}/SettingsTemplate.tsx +0 -0
|
@@ -2,174 +2,162 @@
|
|
|
2
2
|
// Generated by `npm run design:sync:components`. Do not edit manually.
|
|
3
3
|
|
|
4
4
|
export const componentStyleHints = {
|
|
5
|
-
"
|
|
6
|
-
"
|
|
5
|
+
"patterns": {
|
|
6
|
+
"authTemplate": {
|
|
7
7
|
"variantKeys": [
|
|
8
|
-
"default"
|
|
9
|
-
"destructive"
|
|
8
|
+
"default"
|
|
10
9
|
],
|
|
11
10
|
"defaultVariantKey": "default",
|
|
12
|
-
"baseClasses": "
|
|
13
|
-
"baseColorHint":
|
|
14
|
-
"slotIds": [
|
|
11
|
+
"baseClasses": "flex flex-col w-[1280px] h-[720px]",
|
|
12
|
+
"baseColorHint": null,
|
|
13
|
+
"slotIds": [
|
|
14
|
+
"authTemplateVisualPanel",
|
|
15
|
+
"authTemplateFormPanel"
|
|
16
|
+
],
|
|
15
17
|
"variantClasses": {
|
|
16
|
-
"default": "
|
|
17
|
-
"destructive": "inline-flex items-center w-[320px] py-3 px-4 gap-1 rounded-lg border text-sm font-medium"
|
|
18
|
+
"default": "flex flex-col w-[1280px] h-[720px]"
|
|
18
19
|
},
|
|
19
|
-
"variantColorHints": {
|
|
20
|
-
"default": "fill=#FFFFFF | stroke=#e2e8f0@1px | text=#0c0c12",
|
|
21
|
-
"destructive": "fill=#fef2f2 | stroke=#fecaca@1px | text=#991b1b"
|
|
22
|
-
}
|
|
20
|
+
"variantColorHints": {}
|
|
23
21
|
},
|
|
24
|
-
"
|
|
22
|
+
"bannalyzeTemplate": {
|
|
25
23
|
"variantKeys": [
|
|
26
|
-
"
|
|
27
|
-
|
|
24
|
+
"default"
|
|
25
|
+
],
|
|
26
|
+
"defaultVariantKey": "default",
|
|
27
|
+
"baseClasses": "flex flex-col w-[1280px] h-[720px]",
|
|
28
|
+
"baseColorHint": "fill=#ffffff",
|
|
29
|
+
"slotIds": [
|
|
30
|
+
"bannalyzeTemplateHeader",
|
|
31
|
+
"bannalyzeTemplateBody"
|
|
28
32
|
],
|
|
29
|
-
"defaultVariantKey": "fallback",
|
|
30
|
-
"baseClasses": "inline-flex items-center w-10 h-10 rounded-full text-sm font-medium",
|
|
31
|
-
"baseColorHint": "fill=#f1f5f9 | text=#64748b",
|
|
32
|
-
"slotIds": [],
|
|
33
33
|
"variantClasses": {
|
|
34
|
-
"
|
|
35
|
-
"image": "w-10 h-10 rounded-full"
|
|
34
|
+
"default": "flex flex-col w-[1280px] h-[720px]"
|
|
36
35
|
},
|
|
37
36
|
"variantColorHints": {
|
|
38
|
-
"
|
|
37
|
+
"default": "fill=#ffffff"
|
|
39
38
|
}
|
|
40
39
|
},
|
|
41
|
-
"
|
|
40
|
+
"blogTemplate": {
|
|
41
|
+
"variantKeys": [],
|
|
42
|
+
"defaultVariantKey": null,
|
|
43
|
+
"baseClasses": "",
|
|
44
|
+
"baseColorHint": null,
|
|
45
|
+
"slotIds": [],
|
|
46
|
+
"variantClasses": {},
|
|
47
|
+
"variantColorHints": {}
|
|
48
|
+
},
|
|
49
|
+
"chatTemplate": {
|
|
42
50
|
"variantKeys": [
|
|
43
|
-
"default"
|
|
44
|
-
"secondary",
|
|
45
|
-
"destructive",
|
|
46
|
-
"outline"
|
|
51
|
+
"default"
|
|
47
52
|
],
|
|
48
53
|
"defaultVariantKey": "default",
|
|
49
|
-
"baseClasses": "
|
|
50
|
-
"baseColorHint": "fill=#
|
|
51
|
-
"slotIds": [
|
|
54
|
+
"baseClasses": "flex flex-col w-[1280px] h-[720px]",
|
|
55
|
+
"baseColorHint": "fill=#ffffff",
|
|
56
|
+
"slotIds": [
|
|
57
|
+
"chatTemplateSidebarList",
|
|
58
|
+
"chatTemplateMainArea",
|
|
59
|
+
"chatTemplateSidebarDetail"
|
|
60
|
+
],
|
|
52
61
|
"variantClasses": {
|
|
53
|
-
"default": "
|
|
54
|
-
"secondary": "inline-flex items-center h-5 py-1 px-2.5 rounded-full text-xs font-semibold",
|
|
55
|
-
"destructive": "inline-flex items-center h-5 py-1 px-2.5 rounded-full text-xs font-semibold",
|
|
56
|
-
"outline": "inline-flex items-center h-5 py-1 px-2.5 rounded-full border bg-transparent text-xs font-semibold"
|
|
62
|
+
"default": "flex flex-col w-[1280px] h-[720px]"
|
|
57
63
|
},
|
|
58
64
|
"variantColorHints": {
|
|
59
|
-
"default": "fill=#
|
|
60
|
-
"secondary": "fill=#f1f5f9 | text=#18181b",
|
|
61
|
-
"destructive": "fill=#ef4444 | text=#f8fafc",
|
|
62
|
-
"outline": "fill=transparent | stroke=#e2e8f0@1px | text=#0c0c12"
|
|
65
|
+
"default": "fill=#ffffff"
|
|
63
66
|
}
|
|
64
67
|
},
|
|
65
|
-
"
|
|
68
|
+
"dashboardTemplate": {
|
|
66
69
|
"variantKeys": [
|
|
67
|
-
"default"
|
|
68
|
-
"destructive",
|
|
69
|
-
"outline",
|
|
70
|
-
"secondary",
|
|
71
|
-
"ghost",
|
|
72
|
-
"link"
|
|
70
|
+
"default"
|
|
73
71
|
],
|
|
74
72
|
"defaultVariantKey": "default",
|
|
75
|
-
"baseClasses": "
|
|
76
|
-
"baseColorHint":
|
|
77
|
-
"slotIds": [
|
|
73
|
+
"baseClasses": "flex flex-col w-[1280px] h-[720px]",
|
|
74
|
+
"baseColorHint": null,
|
|
75
|
+
"slotIds": [
|
|
76
|
+
"dashboardTemplateHeader",
|
|
77
|
+
"dashboardTemplateBody"
|
|
78
|
+
],
|
|
78
79
|
"variantClasses": {
|
|
79
|
-
"default": "
|
|
80
|
-
"destructive": "inline-flex items-center h-9 py-2 px-4 gap-2 rounded-lg text-sm font-medium",
|
|
81
|
-
"outline": "inline-flex items-center h-9 py-2 px-4 gap-2 rounded-lg border bg-transparent text-sm font-medium",
|
|
82
|
-
"secondary": "inline-flex items-center h-9 py-2 px-4 gap-2 rounded-lg text-sm font-medium",
|
|
83
|
-
"ghost": "inline-flex items-center h-9 py-2 px-4 gap-2 rounded-lg bg-transparent text-sm font-medium",
|
|
84
|
-
"link": "inline-flex items-center h-9 py-2 px-4 gap-2 rounded-lg bg-transparent text-sm font-medium"
|
|
80
|
+
"default": "flex flex-col w-[1280px] h-[720px]"
|
|
85
81
|
},
|
|
86
|
-
"variantColorHints": {
|
|
87
|
-
"default": "fill=#0c0c12 | text=#f8fafc",
|
|
88
|
-
"destructive": "fill=#ef4444 | text=#f8fafc",
|
|
89
|
-
"outline": "fill=transparent | stroke=#e2e8f0@1px | text=#0c0c12",
|
|
90
|
-
"secondary": "fill=#f1f5f9 | text=#18181b",
|
|
91
|
-
"ghost": "fill=transparent | text=#0c0c12",
|
|
92
|
-
"link": "fill=transparent | text=#0c0c12"
|
|
93
|
-
}
|
|
82
|
+
"variantColorHints": {}
|
|
94
83
|
},
|
|
95
|
-
"
|
|
84
|
+
"docsTemplate": {
|
|
85
|
+
"variantKeys": [],
|
|
86
|
+
"defaultVariantKey": null,
|
|
87
|
+
"baseClasses": "",
|
|
88
|
+
"baseColorHint": null,
|
|
89
|
+
"slotIds": [],
|
|
90
|
+
"variantClasses": {},
|
|
91
|
+
"variantColorHints": {}
|
|
92
|
+
},
|
|
93
|
+
"editorTemplate": {
|
|
96
94
|
"variantKeys": [
|
|
97
|
-
"
|
|
98
|
-
|
|
99
|
-
|
|
95
|
+
"default"
|
|
96
|
+
],
|
|
97
|
+
"defaultVariantKey": "default",
|
|
98
|
+
"baseClasses": "flex flex-col w-[1280px] h-[720px]",
|
|
99
|
+
"baseColorHint": null,
|
|
100
|
+
"slotIds": [
|
|
101
|
+
"editorTemplateTopBar",
|
|
102
|
+
"editorTemplateBody"
|
|
100
103
|
],
|
|
101
|
-
"defaultVariantKey": "unchecked",
|
|
102
|
-
"baseClasses": "w-5 h-5 rounded border bg-transparent",
|
|
103
|
-
"baseColorHint": "fill=transparent | stroke=#e2e8f0@1px",
|
|
104
|
-
"slotIds": [],
|
|
105
104
|
"variantClasses": {
|
|
106
|
-
"
|
|
107
|
-
"checked": "inline-flex items-center w-5 h-5 rounded text-xs font-semibold",
|
|
108
|
-
"disabled": "w-5 h-5 rounded border"
|
|
105
|
+
"default": "flex flex-col w-[1280px] h-[720px]"
|
|
109
106
|
},
|
|
110
|
-
"variantColorHints": {
|
|
111
|
-
"unchecked": "fill=transparent | stroke=#e2e8f0@1px",
|
|
112
|
-
"checked": "fill=#0c0c12 | text=#f8fafc",
|
|
113
|
-
"disabled": "fill=#f1f5f9 | stroke=#e2e8f0@1px"
|
|
114
|
-
}
|
|
107
|
+
"variantColorHints": {}
|
|
115
108
|
},
|
|
116
|
-
"
|
|
109
|
+
"kanbanTemplate": {
|
|
117
110
|
"variantKeys": [
|
|
118
|
-
"
|
|
119
|
-
|
|
120
|
-
|
|
111
|
+
"default"
|
|
112
|
+
],
|
|
113
|
+
"defaultVariantKey": "default",
|
|
114
|
+
"baseClasses": "flex flex-col w-[1280px] h-[720px]",
|
|
115
|
+
"baseColorHint": null,
|
|
116
|
+
"slotIds": [
|
|
117
|
+
"kanbanTemplateSidebar",
|
|
118
|
+
"kanbanTemplateMain"
|
|
121
119
|
],
|
|
122
|
-
"defaultVariantKey": "loading",
|
|
123
|
-
"baseClasses": "w-[256px] h-[256px] rounded-lg",
|
|
124
|
-
"baseColorHint": "fill=#f1f5f9",
|
|
125
|
-
"slotIds": [],
|
|
126
120
|
"variantClasses": {
|
|
127
|
-
"
|
|
128
|
-
"loaded": "w-[256px] h-[256px] rounded-lg",
|
|
129
|
-
"error": "inline-flex items-center w-[256px] h-[256px] gap-2 rounded-lg text-xs font-normal"
|
|
121
|
+
"default": "flex flex-col w-[1280px] h-[720px]"
|
|
130
122
|
},
|
|
131
|
-
"variantColorHints": {
|
|
132
|
-
"loading": "fill=#f1f5f9",
|
|
133
|
-
"error": "fill=#f1f5f9 | text=#94a3b8"
|
|
134
|
-
}
|
|
123
|
+
"variantColorHints": {}
|
|
135
124
|
},
|
|
136
|
-
"
|
|
125
|
+
"landingTemplate": {
|
|
137
126
|
"variantKeys": [
|
|
138
|
-
"default"
|
|
139
|
-
"placeholder",
|
|
140
|
-
"disabled"
|
|
127
|
+
"default"
|
|
141
128
|
],
|
|
142
129
|
"defaultVariantKey": "default",
|
|
143
|
-
"baseClasses": "
|
|
144
|
-
"baseColorHint":
|
|
145
|
-
"slotIds": [
|
|
130
|
+
"baseClasses": "flex flex-col w-[1280px] h-[720px]",
|
|
131
|
+
"baseColorHint": null,
|
|
132
|
+
"slotIds": [
|
|
133
|
+
"landingTemplateHeader",
|
|
134
|
+
"landingTemplateHero",
|
|
135
|
+
"landingTemplateFeatureSection"
|
|
136
|
+
],
|
|
146
137
|
"variantClasses": {
|
|
147
|
-
"default": "
|
|
148
|
-
"placeholder": "inline-flex items-center w-[280px] h-9 py-2 px-3 rounded-lg border bg-transparent text-sm font-normal",
|
|
149
|
-
"disabled": "inline-flex items-center w-[280px] h-9 py-2 px-3 rounded-lg border text-sm font-normal"
|
|
138
|
+
"default": "flex flex-col w-[1280px] h-[720px]"
|
|
150
139
|
},
|
|
151
|
-
"variantColorHints": {
|
|
152
|
-
"default": "fill=transparent | stroke=#e2e8f0@1px | text=#0c0c12",
|
|
153
|
-
"placeholder": "fill=transparent | stroke=#e2e8f0@1px | text=#64748b",
|
|
154
|
-
"disabled": "fill=#f1f5f9 | stroke=#e2e8f0@1px | text=#94a3b8"
|
|
155
|
-
}
|
|
140
|
+
"variantColorHints": {}
|
|
156
141
|
},
|
|
157
|
-
"
|
|
142
|
+
"mediaLibraryTemplate": {
|
|
158
143
|
"variantKeys": [
|
|
159
|
-
"
|
|
144
|
+
"default"
|
|
145
|
+
],
|
|
146
|
+
"defaultVariantKey": "default",
|
|
147
|
+
"baseClasses": "flex flex-col w-[1280px] h-[720px]",
|
|
148
|
+
"baseColorHint": "fill=#ffffff",
|
|
149
|
+
"slotIds": [
|
|
150
|
+
"mediaLibraryTemplateHeader",
|
|
151
|
+
"mediaLibraryTemplateBody"
|
|
160
152
|
],
|
|
161
|
-
"defaultVariantKey": "key",
|
|
162
|
-
"baseClasses": "h-5 py-1 px-1.5 rounded border",
|
|
163
|
-
"baseColorHint": "fill=#f1f5f9 | stroke=#e2e8f0@1px",
|
|
164
|
-
"slotIds": [],
|
|
165
153
|
"variantClasses": {
|
|
166
|
-
"
|
|
154
|
+
"default": "flex flex-col w-[1280px] h-[720px]"
|
|
167
155
|
},
|
|
168
156
|
"variantColorHints": {
|
|
169
|
-
"
|
|
157
|
+
"default": "fill=#ffffff"
|
|
170
158
|
}
|
|
171
159
|
},
|
|
172
|
-
"
|
|
160
|
+
"onboardingTemplate": {
|
|
173
161
|
"variantKeys": [],
|
|
174
162
|
"defaultVariantKey": null,
|
|
175
163
|
"baseClasses": "",
|
|
@@ -178,94 +166,116 @@ export const componentStyleHints = {
|
|
|
178
166
|
"variantClasses": {},
|
|
179
167
|
"variantColorHints": {}
|
|
180
168
|
},
|
|
181
|
-
"
|
|
169
|
+
"pricingTemplate": {
|
|
170
|
+
"variantKeys": [],
|
|
171
|
+
"defaultVariantKey": null,
|
|
172
|
+
"baseClasses": "",
|
|
173
|
+
"baseColorHint": null,
|
|
174
|
+
"slotIds": [],
|
|
175
|
+
"variantClasses": {},
|
|
176
|
+
"variantColorHints": {}
|
|
177
|
+
},
|
|
178
|
+
"settingsTemplate": {
|
|
182
179
|
"variantKeys": [
|
|
183
|
-
"
|
|
180
|
+
"default"
|
|
184
181
|
],
|
|
185
|
-
"defaultVariantKey": "
|
|
186
|
-
"baseClasses": "w-[
|
|
187
|
-
"baseColorHint":
|
|
182
|
+
"defaultVariantKey": "default",
|
|
183
|
+
"baseClasses": "flex flex-col items-center w-[1280px] h-[720px] gap-4",
|
|
184
|
+
"baseColorHint": null,
|
|
185
|
+
"slotIds": [
|
|
186
|
+
"settingsTemplateMobileView",
|
|
187
|
+
"settingsTemplateDesktopView"
|
|
188
|
+
],
|
|
189
|
+
"variantClasses": {
|
|
190
|
+
"default": "flex flex-col items-center w-[1280px] h-[720px] gap-4"
|
|
191
|
+
},
|
|
192
|
+
"variantColorHints": {}
|
|
193
|
+
}
|
|
194
|
+
},
|
|
195
|
+
"feedback": {
|
|
196
|
+
"alert": {
|
|
197
|
+
"variantKeys": [
|
|
198
|
+
"default",
|
|
199
|
+
"destructive",
|
|
200
|
+
"info",
|
|
201
|
+
"success",
|
|
202
|
+
"warning"
|
|
203
|
+
],
|
|
204
|
+
"defaultVariantKey": "default",
|
|
205
|
+
"baseClasses": "inline-flex items-center w-[320px] py-3 px-4 gap-1 rounded-lg border text-sm font-medium",
|
|
206
|
+
"baseColorHint": "fill=#FFFFFF | stroke=#e2e8f0@1px | text=#0c0c12",
|
|
188
207
|
"slotIds": [],
|
|
189
208
|
"variantClasses": {
|
|
190
|
-
"
|
|
209
|
+
"default": "inline-flex items-center w-[320px] py-3 px-4 gap-1 rounded-lg border text-sm font-medium",
|
|
210
|
+
"destructive": "inline-flex items-center w-[320px] py-3 px-4 gap-1 rounded-lg border text-sm font-medium",
|
|
211
|
+
"info": "inline-flex items-center w-[320px] py-3 px-4 gap-1 rounded-lg border text-sm font-medium",
|
|
212
|
+
"success": "inline-flex items-center w-[320px] py-3 px-4 gap-1 rounded-lg border text-sm font-medium",
|
|
213
|
+
"warning": "inline-flex items-center w-[320px] py-3 px-4 gap-1 rounded-lg border text-sm font-medium"
|
|
191
214
|
},
|
|
192
215
|
"variantColorHints": {
|
|
193
|
-
"
|
|
216
|
+
"default": "fill=#FFFFFF | stroke=#e2e8f0@1px | text=#0c0c12",
|
|
217
|
+
"destructive": "fill=#fef2f2 | stroke=#fecaca@1px | text=#991b1b",
|
|
218
|
+
"info": "fill=#eff6ff | stroke=#bfdbfe@1px | text=#1e40af",
|
|
219
|
+
"success": "fill=#f0fdf4 | stroke=#bbf7d0@1px | text=#166534",
|
|
220
|
+
"warning": "fill=#fef3c7 | stroke=#fcd34d@1px | text=#78350f"
|
|
194
221
|
}
|
|
195
222
|
},
|
|
196
|
-
"
|
|
197
|
-
"variantKeys": [
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
"defaultVariantKey": "unchecked",
|
|
202
|
-
"baseClasses": "w-4 h-4 rounded-lg border bg-transparent",
|
|
203
|
-
"baseColorHint": "fill=transparent | stroke=#e2e8f0@1px",
|
|
223
|
+
"banner": {
|
|
224
|
+
"variantKeys": [],
|
|
225
|
+
"defaultVariantKey": null,
|
|
226
|
+
"baseClasses": "",
|
|
227
|
+
"baseColorHint": null,
|
|
204
228
|
"slotIds": [],
|
|
205
|
-
"variantClasses": {
|
|
206
|
-
|
|
207
|
-
"checked": "w-4 h-4 rounded-lg border bg-transparent"
|
|
208
|
-
},
|
|
209
|
-
"variantColorHints": {
|
|
210
|
-
"unchecked": "fill=transparent | stroke=#e2e8f0@1px",
|
|
211
|
-
"checked": "fill=transparent | stroke=#0c0c12@1px"
|
|
212
|
-
}
|
|
229
|
+
"variantClasses": {},
|
|
230
|
+
"variantColorHints": {}
|
|
213
231
|
},
|
|
214
|
-
"
|
|
232
|
+
"notificationCenter": {
|
|
215
233
|
"variantKeys": [
|
|
216
234
|
"default"
|
|
217
235
|
],
|
|
218
236
|
"defaultVariantKey": "default",
|
|
219
|
-
"baseClasses": "
|
|
220
|
-
"baseColorHint":
|
|
221
|
-
"slotIds": [
|
|
237
|
+
"baseClasses": "flex flex-col w-[320px]",
|
|
238
|
+
"baseColorHint": null,
|
|
239
|
+
"slotIds": [
|
|
240
|
+
"notificationCenterTrigger",
|
|
241
|
+
"notificationCenterPanel"
|
|
242
|
+
],
|
|
222
243
|
"variantClasses": {
|
|
223
|
-
"default": "
|
|
244
|
+
"default": "flex flex-col w-[320px]"
|
|
224
245
|
},
|
|
225
|
-
"variantColorHints": {
|
|
226
|
-
"default": "fill=transparent | stroke=#e2e8f0@1px | text=#64748b"
|
|
227
|
-
}
|
|
246
|
+
"variantColorHints": {}
|
|
228
247
|
},
|
|
229
|
-
"
|
|
248
|
+
"progress": {
|
|
230
249
|
"variantKeys": [
|
|
231
|
-
"
|
|
232
|
-
"vertical"
|
|
250
|
+
"bar"
|
|
233
251
|
],
|
|
234
|
-
"defaultVariantKey": "
|
|
235
|
-
"baseClasses": "w-[200px] h-
|
|
236
|
-
"baseColorHint": "fill=#
|
|
252
|
+
"defaultVariantKey": "bar",
|
|
253
|
+
"baseClasses": "w-[200px] h-4 rounded-full",
|
|
254
|
+
"baseColorHint": "fill=#f1f5f9",
|
|
237
255
|
"slotIds": [],
|
|
238
256
|
"variantClasses": {
|
|
239
|
-
"
|
|
240
|
-
"vertical": "w-[1px] h-6"
|
|
257
|
+
"bar": "w-[200px] h-4 rounded-full"
|
|
241
258
|
},
|
|
242
259
|
"variantColorHints": {
|
|
243
|
-
"
|
|
244
|
-
"vertical": "fill=#e2e8f0"
|
|
260
|
+
"bar": "fill=#f1f5f9"
|
|
245
261
|
}
|
|
246
262
|
},
|
|
247
|
-
"
|
|
248
|
-
"variantKeys": [],
|
|
249
|
-
"defaultVariantKey": null,
|
|
250
|
-
"baseClasses": "",
|
|
251
|
-
"baseColorHint": null,
|
|
252
|
-
"slotIds": [],
|
|
253
|
-
"variantClasses": {},
|
|
254
|
-
"variantColorHints": {}
|
|
255
|
-
},
|
|
256
|
-
"slider": {
|
|
263
|
+
"progressWidget": {
|
|
257
264
|
"variantKeys": [
|
|
258
265
|
"default"
|
|
259
266
|
],
|
|
260
267
|
"defaultVariantKey": "default",
|
|
261
|
-
"baseClasses": "w-[
|
|
262
|
-
"baseColorHint": "fill=#e2e8f0",
|
|
263
|
-
"slotIds": [
|
|
268
|
+
"baseClasses": "flex flex-col w-[320px] rounded-lg border",
|
|
269
|
+
"baseColorHint": "fill=#ffffff | stroke=#e2e8f0@1px",
|
|
270
|
+
"slotIds": [
|
|
271
|
+
"progressWidgetHeader",
|
|
272
|
+
"progressWidgetContent"
|
|
273
|
+
],
|
|
264
274
|
"variantClasses": {
|
|
265
|
-
"default": "w-[
|
|
275
|
+
"default": "flex flex-col w-[320px] rounded-lg border"
|
|
266
276
|
},
|
|
267
277
|
"variantColorHints": {
|
|
268
|
-
"default": "fill=#e2e8f0"
|
|
278
|
+
"default": "fill=#ffffff | stroke=#e2e8f0@1px"
|
|
269
279
|
}
|
|
270
280
|
},
|
|
271
281
|
"spinner": {
|
|
@@ -289,357 +299,401 @@ export const componentStyleHints = {
|
|
|
289
299
|
"lg": "fill=#64748b"
|
|
290
300
|
}
|
|
291
301
|
},
|
|
292
|
-
"
|
|
302
|
+
"statusBar": {
|
|
293
303
|
"variantKeys": [
|
|
294
|
-
"
|
|
295
|
-
"checked"
|
|
304
|
+
"fixed"
|
|
296
305
|
],
|
|
297
|
-
"defaultVariantKey": "
|
|
298
|
-
"baseClasses": "
|
|
299
|
-
"baseColorHint": "fill=#
|
|
300
|
-
"slotIds": [
|
|
301
|
-
|
|
302
|
-
"
|
|
303
|
-
"
|
|
304
|
-
},
|
|
305
|
-
"variantColorHints": {
|
|
306
|
-
"unchecked": "fill=#f1f5f9",
|
|
307
|
-
"checked": "fill=#0c0c12"
|
|
308
|
-
}
|
|
309
|
-
},
|
|
310
|
-
"textarea": {
|
|
311
|
-
"variantKeys": [
|
|
312
|
-
"default",
|
|
313
|
-
"disabled"
|
|
306
|
+
"defaultVariantKey": "fixed",
|
|
307
|
+
"baseClasses": "flex flex-col w-[640px] py-1 px-4",
|
|
308
|
+
"baseColorHint": "fill=#2563eb",
|
|
309
|
+
"slotIds": [
|
|
310
|
+
"statusBarLeft",
|
|
311
|
+
"statusBarCenter",
|
|
312
|
+
"statusBarRight"
|
|
314
313
|
],
|
|
315
|
-
"defaultVariantKey": "default",
|
|
316
|
-
"baseClasses": "inline-flex items-center w-[280px] h-20 py-2 px-3 rounded-lg border bg-transparent text-sm font-normal",
|
|
317
|
-
"baseColorHint": "fill=transparent | stroke=#e2e8f0@1px | text=#64748b",
|
|
318
|
-
"slotIds": [],
|
|
319
314
|
"variantClasses": {
|
|
320
|
-
"
|
|
321
|
-
"disabled": "inline-flex items-center w-[280px] h-20 py-2 px-3 rounded-lg border text-sm font-normal"
|
|
315
|
+
"fixed": "flex flex-col w-[640px] py-1 px-4"
|
|
322
316
|
},
|
|
323
317
|
"variantColorHints": {
|
|
324
|
-
"
|
|
325
|
-
"disabled": "fill=#f1f5f9 | stroke=#e2e8f0@1px | text=#94a3b8"
|
|
318
|
+
"fixed": "fill=#2563eb"
|
|
326
319
|
}
|
|
327
320
|
},
|
|
328
|
-
"
|
|
321
|
+
"statusScreen": {
|
|
329
322
|
"variantKeys": [
|
|
330
|
-
"
|
|
331
|
-
"
|
|
323
|
+
"not-found",
|
|
324
|
+
"error",
|
|
325
|
+
"offline",
|
|
326
|
+
"forbidden",
|
|
327
|
+
"maintenance",
|
|
328
|
+
"coming-soon"
|
|
332
329
|
],
|
|
333
|
-
"defaultVariantKey": "
|
|
334
|
-
"baseClasses": "
|
|
335
|
-
"baseColorHint":
|
|
330
|
+
"defaultVariantKey": "not-found",
|
|
331
|
+
"baseClasses": "w-full p-8",
|
|
332
|
+
"baseColorHint": null,
|
|
336
333
|
"slotIds": [],
|
|
337
334
|
"variantClasses": {
|
|
338
|
-
"
|
|
339
|
-
"
|
|
335
|
+
"not-found": "w-full p-8",
|
|
336
|
+
"error": "w-full p-8",
|
|
337
|
+
"offline": "w-full p-8",
|
|
338
|
+
"forbidden": "w-full p-8",
|
|
339
|
+
"maintenance": "w-full p-8",
|
|
340
|
+
"coming-soon": "w-full p-8"
|
|
340
341
|
},
|
|
341
|
-
"variantColorHints": {
|
|
342
|
-
"default": "fill=#f1f5f9 | text=#0c0c12",
|
|
343
|
-
"outline": "fill=transparent | stroke=#e2e8f0@1px | text=#0c0c12"
|
|
344
|
-
}
|
|
342
|
+
"variantColorHints": {}
|
|
345
343
|
},
|
|
346
|
-
"
|
|
347
|
-
"variantKeys": [
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
],
|
|
352
|
-
"defaultVariantKey": "primary",
|
|
353
|
-
"baseClasses": "w-10 h-10 p-2.5 rounded-xl",
|
|
354
|
-
"baseColorHint": "fill=#eff6ff",
|
|
344
|
+
"stepper": {
|
|
345
|
+
"variantKeys": [],
|
|
346
|
+
"defaultVariantKey": null,
|
|
347
|
+
"baseClasses": "",
|
|
348
|
+
"baseColorHint": null,
|
|
355
349
|
"slotIds": [],
|
|
356
|
-
"variantClasses": {
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
},
|
|
361
|
-
"variantColorHints": {
|
|
362
|
-
"primary": "fill=#eff6ff",
|
|
363
|
-
"secondary": "fill=#ffffff80",
|
|
364
|
-
"danger": "fill=#fef2f2"
|
|
365
|
-
}
|
|
366
|
-
}
|
|
367
|
-
},
|
|
368
|
-
"molecules": {
|
|
369
|
-
"accordion": {
|
|
350
|
+
"variantClasses": {},
|
|
351
|
+
"variantColorHints": {}
|
|
352
|
+
},
|
|
353
|
+
"toast": {
|
|
370
354
|
"variantKeys": [
|
|
371
|
-
"
|
|
372
|
-
"
|
|
355
|
+
"success",
|
|
356
|
+
"error",
|
|
357
|
+
"info"
|
|
373
358
|
],
|
|
374
|
-
"defaultVariantKey": "
|
|
375
|
-
"baseClasses": "flex flex-col w-[
|
|
376
|
-
"baseColorHint": "stroke=#
|
|
359
|
+
"defaultVariantKey": "success",
|
|
360
|
+
"baseClasses": "flex flex-col items-center w-[384px] py-3 px-4 gap-3 rounded-xl border",
|
|
361
|
+
"baseColorHint": "fill=#ffffff | stroke=#22c55e33@1px",
|
|
377
362
|
"slotIds": [
|
|
378
|
-
"
|
|
363
|
+
"toastSuccessIcon",
|
|
364
|
+
"toastSuccessText",
|
|
365
|
+
"toastSuccessClose"
|
|
379
366
|
],
|
|
380
367
|
"variantClasses": {
|
|
381
|
-
"
|
|
382
|
-
"
|
|
368
|
+
"success": "flex flex-col items-center w-[384px] py-3 px-4 gap-3 rounded-xl border",
|
|
369
|
+
"error": "flex flex-col items-center w-[384px] py-3 px-4 gap-3 rounded-xl border",
|
|
370
|
+
"info": "flex flex-col items-center w-[384px] py-3 px-4 gap-3 rounded-xl border"
|
|
383
371
|
},
|
|
384
372
|
"variantColorHints": {
|
|
385
|
-
"
|
|
386
|
-
"
|
|
373
|
+
"success": "fill=#ffffff | stroke=#22c55e33@1px",
|
|
374
|
+
"error": "fill=#ffffff | stroke=#ef444433@1px",
|
|
375
|
+
"info": "fill=#ffffff | stroke=#3b82f633@1px"
|
|
387
376
|
}
|
|
388
377
|
},
|
|
389
|
-
"
|
|
378
|
+
"toastProvider": {
|
|
390
379
|
"variantKeys": [
|
|
391
380
|
"default"
|
|
392
381
|
],
|
|
393
382
|
"defaultVariantKey": "default",
|
|
394
|
-
"baseClasses": "flex flex-col items-center w-[
|
|
395
|
-
"baseColorHint":
|
|
383
|
+
"baseClasses": "flex flex-col items-center w-[320px] gap-2",
|
|
384
|
+
"baseColorHint": null,
|
|
396
385
|
"slotIds": [
|
|
397
|
-
"
|
|
398
|
-
"
|
|
399
|
-
"
|
|
400
|
-
"aiChatInputStopButton"
|
|
386
|
+
"toastProviderStack",
|
|
387
|
+
"toastProviderDefaultDuration",
|
|
388
|
+
"toastProviderExitDelay"
|
|
401
389
|
],
|
|
402
390
|
"variantClasses": {
|
|
403
|
-
"default": "flex flex-col items-center w-[
|
|
391
|
+
"default": "flex flex-col items-center w-[320px] gap-2"
|
|
404
392
|
},
|
|
405
|
-
"variantColorHints": {
|
|
406
|
-
|
|
407
|
-
|
|
393
|
+
"variantColorHints": {}
|
|
394
|
+
}
|
|
395
|
+
},
|
|
396
|
+
"layout": {
|
|
397
|
+
"aspectRatio": {
|
|
398
|
+
"variantKeys": [],
|
|
399
|
+
"defaultVariantKey": null,
|
|
400
|
+
"baseClasses": "",
|
|
401
|
+
"baseColorHint": null,
|
|
402
|
+
"slotIds": [],
|
|
403
|
+
"variantClasses": {},
|
|
404
|
+
"variantColorHints": {}
|
|
408
405
|
},
|
|
409
|
-
"
|
|
406
|
+
"assetInspectorPanel": {
|
|
410
407
|
"variantKeys": [
|
|
411
|
-
"
|
|
412
|
-
"
|
|
408
|
+
"default",
|
|
409
|
+
"compact"
|
|
413
410
|
],
|
|
414
|
-
"defaultVariantKey": "
|
|
415
|
-
"baseClasses": "
|
|
411
|
+
"defaultVariantKey": "default",
|
|
412
|
+
"baseClasses": "w-full p-0",
|
|
416
413
|
"baseColorHint": null,
|
|
417
|
-
"slotIds": [
|
|
418
|
-
"aiChatMessageAvatar",
|
|
419
|
-
"aiChatMessageBody"
|
|
420
|
-
],
|
|
414
|
+
"slotIds": [],
|
|
421
415
|
"variantClasses": {
|
|
422
|
-
"
|
|
423
|
-
"
|
|
416
|
+
"default": "w-full p-0",
|
|
417
|
+
"compact": "w-full p-0"
|
|
424
418
|
},
|
|
425
419
|
"variantColorHints": {}
|
|
426
420
|
},
|
|
427
|
-
"
|
|
421
|
+
"cluster": {
|
|
422
|
+
"variantKeys": [],
|
|
423
|
+
"defaultVariantKey": null,
|
|
424
|
+
"baseClasses": "",
|
|
425
|
+
"baseColorHint": null,
|
|
426
|
+
"slotIds": [],
|
|
427
|
+
"variantClasses": {},
|
|
428
|
+
"variantColorHints": {}
|
|
429
|
+
},
|
|
430
|
+
"collapsiblePanelToggle": {
|
|
428
431
|
"variantKeys": [
|
|
429
|
-
"
|
|
432
|
+
"left",
|
|
433
|
+
"right",
|
|
434
|
+
"top",
|
|
435
|
+
"bottom"
|
|
430
436
|
],
|
|
431
|
-
"defaultVariantKey": "
|
|
432
|
-
"baseClasses": "
|
|
437
|
+
"defaultVariantKey": "left",
|
|
438
|
+
"baseClasses": "w-10 h-10",
|
|
433
439
|
"baseColorHint": null,
|
|
434
|
-
"slotIds": [
|
|
435
|
-
"breadcrumbLink1",
|
|
436
|
-
"breadcrumbSep1",
|
|
437
|
-
"breadcrumbLink2",
|
|
438
|
-
"breadcrumbSep2",
|
|
439
|
-
"breadcrumbPage"
|
|
440
|
-
],
|
|
440
|
+
"slotIds": [],
|
|
441
441
|
"variantClasses": {
|
|
442
|
-
"
|
|
442
|
+
"left": "w-10 h-10",
|
|
443
|
+
"right": "w-10 h-10",
|
|
444
|
+
"top": "w-10 h-10",
|
|
445
|
+
"bottom": "w-10 h-10"
|
|
443
446
|
},
|
|
444
447
|
"variantColorHints": {}
|
|
445
448
|
},
|
|
446
|
-
"
|
|
449
|
+
"container": {
|
|
450
|
+
"variantKeys": [],
|
|
451
|
+
"defaultVariantKey": null,
|
|
452
|
+
"baseClasses": "",
|
|
453
|
+
"baseColorHint": null,
|
|
454
|
+
"slotIds": [],
|
|
455
|
+
"variantClasses": {},
|
|
456
|
+
"variantColorHints": {}
|
|
457
|
+
},
|
|
458
|
+
"deviceFrame": {
|
|
447
459
|
"variantKeys": [
|
|
448
|
-
"default"
|
|
460
|
+
"default",
|
|
461
|
+
"windows11"
|
|
449
462
|
],
|
|
450
463
|
"defaultVariantKey": "default",
|
|
451
|
-
"baseClasses": "
|
|
452
|
-
"baseColorHint":
|
|
453
|
-
"slotIds": [
|
|
454
|
-
"calendarHeader",
|
|
455
|
-
"calendarGrid"
|
|
456
|
-
],
|
|
464
|
+
"baseClasses": "w-full p-0",
|
|
465
|
+
"baseColorHint": null,
|
|
466
|
+
"slotIds": [],
|
|
457
467
|
"variantClasses": {
|
|
458
|
-
"default": "
|
|
468
|
+
"default": "w-full p-0",
|
|
469
|
+
"windows11": "w-full p-0"
|
|
459
470
|
},
|
|
460
|
-
"variantColorHints": {
|
|
461
|
-
"default": "fill=#FFFFFF | stroke=#e2e8f0@1px"
|
|
462
|
-
}
|
|
471
|
+
"variantColorHints": {}
|
|
463
472
|
},
|
|
464
|
-
"
|
|
473
|
+
"grid": {
|
|
474
|
+
"variantKeys": [],
|
|
475
|
+
"defaultVariantKey": null,
|
|
476
|
+
"baseClasses": "",
|
|
477
|
+
"baseColorHint": null,
|
|
478
|
+
"slotIds": [],
|
|
479
|
+
"variantClasses": {},
|
|
480
|
+
"variantColorHints": {}
|
|
481
|
+
},
|
|
482
|
+
"hStack": {
|
|
483
|
+
"variantKeys": [],
|
|
484
|
+
"defaultVariantKey": null,
|
|
485
|
+
"baseClasses": "",
|
|
486
|
+
"baseColorHint": null,
|
|
487
|
+
"slotIds": [],
|
|
488
|
+
"variantClasses": {},
|
|
489
|
+
"variantColorHints": {}
|
|
490
|
+
},
|
|
491
|
+
"inspectorPanel": {
|
|
465
492
|
"variantKeys": [
|
|
466
493
|
"default"
|
|
467
494
|
],
|
|
468
495
|
"defaultVariantKey": "default",
|
|
469
|
-
"baseClasses": "flex flex-col w-[
|
|
470
|
-
"baseColorHint": "fill=#
|
|
496
|
+
"baseClasses": "flex flex-col w-[320px] h-[420px] border",
|
|
497
|
+
"baseColorHint": "fill=#ffffff | stroke=#e5e7eb@1px",
|
|
471
498
|
"slotIds": [
|
|
472
|
-
"
|
|
473
|
-
"
|
|
474
|
-
"cardFooter"
|
|
499
|
+
"inspectorPanelHeader",
|
|
500
|
+
"inspectorPanelBody"
|
|
475
501
|
],
|
|
476
502
|
"variantClasses": {
|
|
477
|
-
"default": "flex flex-col w-[
|
|
503
|
+
"default": "flex flex-col w-[320px] h-[420px] border"
|
|
478
504
|
},
|
|
479
505
|
"variantColorHints": {
|
|
480
|
-
"default": "fill=#
|
|
506
|
+
"default": "fill=#ffffff | stroke=#e5e7eb@1px"
|
|
481
507
|
}
|
|
482
508
|
},
|
|
483
|
-
"
|
|
509
|
+
"marqueeFrame": {
|
|
484
510
|
"variantKeys": [
|
|
485
|
-
"default"
|
|
511
|
+
"default",
|
|
512
|
+
"desktop",
|
|
513
|
+
"tablet",
|
|
514
|
+
"mobile"
|
|
486
515
|
],
|
|
487
516
|
"defaultVariantKey": "default",
|
|
488
|
-
"baseClasses": "
|
|
517
|
+
"baseClasses": "w-full p-0",
|
|
518
|
+
"baseColorHint": null,
|
|
519
|
+
"slotIds": [],
|
|
520
|
+
"variantClasses": {
|
|
521
|
+
"default": "w-full p-0",
|
|
522
|
+
"desktop": "w-full p-0",
|
|
523
|
+
"tablet": "w-full p-0",
|
|
524
|
+
"mobile": "w-full p-0"
|
|
525
|
+
},
|
|
526
|
+
"variantColorHints": {}
|
|
527
|
+
},
|
|
528
|
+
"resizable": {
|
|
529
|
+
"variantKeys": [
|
|
530
|
+
"horizontal"
|
|
531
|
+
],
|
|
532
|
+
"defaultVariantKey": "horizontal",
|
|
533
|
+
"baseClasses": "flex flex-col w-[520px] h-[240px]",
|
|
489
534
|
"baseColorHint": null,
|
|
490
535
|
"slotIds": [
|
|
491
|
-
"
|
|
492
|
-
"
|
|
493
|
-
"carouselNextButton"
|
|
536
|
+
"resizablePanelGroup",
|
|
537
|
+
"resizableHandle"
|
|
494
538
|
],
|
|
495
539
|
"variantClasses": {
|
|
496
|
-
"
|
|
540
|
+
"horizontal": "flex flex-col w-[520px] h-[240px]"
|
|
497
541
|
},
|
|
498
542
|
"variantColorHints": {}
|
|
499
543
|
},
|
|
500
|
-
"
|
|
544
|
+
"scrollArea": {
|
|
501
545
|
"variantKeys": [
|
|
502
546
|
"default"
|
|
503
547
|
],
|
|
504
548
|
"defaultVariantKey": "default",
|
|
505
|
-
"baseClasses": "flex flex-col w-[320px]
|
|
506
|
-
"baseColorHint":
|
|
549
|
+
"baseClasses": "flex flex-col w-[320px] h-[240px]",
|
|
550
|
+
"baseColorHint": null,
|
|
507
551
|
"slotIds": [
|
|
508
|
-
"
|
|
509
|
-
"
|
|
552
|
+
"scrollAreaViewport",
|
|
553
|
+
"scrollAreaScrollbar"
|
|
510
554
|
],
|
|
511
555
|
"variantClasses": {
|
|
512
|
-
"default": "flex flex-col w-[320px]
|
|
556
|
+
"default": "flex flex-col w-[320px] h-[240px]"
|
|
513
557
|
},
|
|
514
|
-
"variantColorHints": {
|
|
515
|
-
"default": "fill=#FFFFFF | stroke=#e2e8f0@1px"
|
|
516
|
-
}
|
|
558
|
+
"variantColorHints": {}
|
|
517
559
|
},
|
|
518
|
-
"
|
|
560
|
+
"spatialCanvas": {
|
|
519
561
|
"variantKeys": [
|
|
520
562
|
"default"
|
|
521
563
|
],
|
|
522
564
|
"defaultVariantKey": "default",
|
|
523
|
-
"baseClasses": "flex flex-col
|
|
524
|
-
"baseColorHint": "fill=#
|
|
565
|
+
"baseClasses": "flex flex-col w-[640px] h-[360px]",
|
|
566
|
+
"baseColorHint": "fill=#f9fafb",
|
|
525
567
|
"slotIds": [
|
|
526
|
-
"
|
|
527
|
-
"
|
|
528
|
-
"contextMenuSeparator",
|
|
529
|
-
"contextMenuSubTrigger"
|
|
568
|
+
"spatialCanvasHint",
|
|
569
|
+
"spatialCanvasHintDetail"
|
|
530
570
|
],
|
|
531
571
|
"variantClasses": {
|
|
532
|
-
"default": "flex flex-col
|
|
572
|
+
"default": "flex flex-col w-[640px] h-[360px]"
|
|
533
573
|
},
|
|
534
574
|
"variantColorHints": {
|
|
535
|
-
"default": "fill=#
|
|
575
|
+
"default": "fill=#f9fafb"
|
|
536
576
|
}
|
|
537
577
|
},
|
|
538
|
-
"
|
|
578
|
+
"vStack": {
|
|
579
|
+
"variantKeys": [],
|
|
580
|
+
"defaultVariantKey": null,
|
|
581
|
+
"baseClasses": "",
|
|
582
|
+
"baseColorHint": null,
|
|
583
|
+
"slotIds": [],
|
|
584
|
+
"variantClasses": {},
|
|
585
|
+
"variantColorHints": {}
|
|
586
|
+
}
|
|
587
|
+
},
|
|
588
|
+
"navigation": {
|
|
589
|
+
"appRail": {
|
|
539
590
|
"variantKeys": [
|
|
540
591
|
"default"
|
|
541
592
|
],
|
|
542
593
|
"defaultVariantKey": "default",
|
|
543
|
-
"baseClasses": "flex flex-col w-[
|
|
544
|
-
"baseColorHint":
|
|
594
|
+
"baseClasses": "flex flex-col items-center w-16 h-[320px] py-4 px-0 gap-4",
|
|
595
|
+
"baseColorHint": "fill=#111827",
|
|
545
596
|
"slotIds": [
|
|
546
|
-
"
|
|
547
|
-
"
|
|
597
|
+
"appRailIconHome",
|
|
598
|
+
"appRailIconSearch",
|
|
599
|
+
"appRailIconFolder"
|
|
548
600
|
],
|
|
549
601
|
"variantClasses": {
|
|
550
|
-
"default": "flex flex-col w-[
|
|
602
|
+
"default": "flex flex-col items-center w-16 h-[320px] py-4 px-0 gap-4"
|
|
551
603
|
},
|
|
552
|
-
"variantColorHints": {
|
|
604
|
+
"variantColorHints": {
|
|
605
|
+
"default": "fill=#111827"
|
|
606
|
+
}
|
|
553
607
|
},
|
|
554
|
-
"
|
|
608
|
+
"breadcrumb": {
|
|
555
609
|
"variantKeys": [
|
|
556
610
|
"default"
|
|
557
611
|
],
|
|
558
612
|
"defaultVariantKey": "default",
|
|
559
|
-
"baseClasses": "flex flex-col
|
|
560
|
-
"baseColorHint":
|
|
613
|
+
"baseClasses": "flex flex-col items-center gap-2",
|
|
614
|
+
"baseColorHint": null,
|
|
561
615
|
"slotIds": [
|
|
562
|
-
"
|
|
563
|
-
"
|
|
564
|
-
"
|
|
616
|
+
"breadcrumbLink1",
|
|
617
|
+
"breadcrumbSep1",
|
|
618
|
+
"breadcrumbLink2",
|
|
619
|
+
"breadcrumbSep2",
|
|
620
|
+
"breadcrumbPage"
|
|
565
621
|
],
|
|
566
622
|
"variantClasses": {
|
|
567
|
-
"default": "flex flex-col
|
|
623
|
+
"default": "flex flex-col items-center gap-2"
|
|
568
624
|
},
|
|
569
|
-
"variantColorHints": {
|
|
570
|
-
"default": "fill=#FFFFFF | stroke=#e2e8f0@1px"
|
|
571
|
-
}
|
|
625
|
+
"variantColorHints": {}
|
|
572
626
|
},
|
|
573
|
-
"
|
|
627
|
+
"command": {
|
|
574
628
|
"variantKeys": [
|
|
575
|
-
"default"
|
|
576
|
-
"selected",
|
|
577
|
-
"popover"
|
|
629
|
+
"default"
|
|
578
630
|
],
|
|
579
631
|
"defaultVariantKey": "default",
|
|
580
|
-
"baseClasses": "flex flex-col
|
|
581
|
-
"baseColorHint": "stroke=#e2e8f0@1px",
|
|
632
|
+
"baseClasses": "flex flex-col w-[320px] rounded-lg border",
|
|
633
|
+
"baseColorHint": "fill=#FFFFFF | stroke=#e2e8f0@1px",
|
|
582
634
|
"slotIds": [
|
|
583
|
-
"
|
|
584
|
-
"
|
|
635
|
+
"commandInput",
|
|
636
|
+
"commandList"
|
|
585
637
|
],
|
|
586
638
|
"variantClasses": {
|
|
587
|
-
"default": "flex flex-col
|
|
588
|
-
"selected": "flex flex-col items-center h-9 py-2 px-3 gap-2 rounded-md border",
|
|
589
|
-
"popover": "flex flex-col w-[200px] rounded-lg border"
|
|
639
|
+
"default": "flex flex-col w-[320px] rounded-lg border"
|
|
590
640
|
},
|
|
591
641
|
"variantColorHints": {
|
|
592
|
-
"default": "stroke=#e2e8f0@1px"
|
|
593
|
-
"selected": "stroke=#e2e8f0@1px",
|
|
594
|
-
"popover": "fill=#ffffff | stroke=#e2e8f0@1px"
|
|
642
|
+
"default": "fill=#FFFFFF | stroke=#e2e8f0@1px"
|
|
595
643
|
}
|
|
596
644
|
},
|
|
597
|
-
"
|
|
598
|
-
"variantKeys": [],
|
|
599
|
-
"defaultVariantKey": null,
|
|
600
|
-
"baseClasses": "",
|
|
601
|
-
"baseColorHint": null,
|
|
602
|
-
"slotIds": [],
|
|
603
|
-
"variantClasses": {},
|
|
604
|
-
"variantColorHints": {}
|
|
605
|
-
},
|
|
606
|
-
"hoverCard": {
|
|
645
|
+
"commandPalette": {
|
|
607
646
|
"variantKeys": [
|
|
608
647
|
"default"
|
|
609
648
|
],
|
|
610
649
|
"defaultVariantKey": "default",
|
|
611
|
-
"baseClasses": "flex flex-col
|
|
650
|
+
"baseClasses": "flex flex-col w-[480px] rounded-lg border",
|
|
612
651
|
"baseColorHint": "fill=#ffffff | stroke=#e2e8f0@1px",
|
|
613
652
|
"slotIds": [
|
|
614
|
-
"
|
|
653
|
+
"commandPaletteInput",
|
|
654
|
+
"commandPaletteGroup"
|
|
615
655
|
],
|
|
616
656
|
"variantClasses": {
|
|
617
|
-
"default": "flex flex-col
|
|
657
|
+
"default": "flex flex-col w-[480px] rounded-lg border"
|
|
618
658
|
},
|
|
619
659
|
"variantColorHints": {
|
|
620
660
|
"default": "fill=#ffffff | stroke=#e2e8f0@1px"
|
|
621
661
|
}
|
|
622
662
|
},
|
|
623
|
-
"
|
|
663
|
+
"documentPager": {
|
|
624
664
|
"variantKeys": [
|
|
625
|
-
"
|
|
626
|
-
"check",
|
|
627
|
-
"circle"
|
|
665
|
+
"default"
|
|
628
666
|
],
|
|
629
|
-
"defaultVariantKey": "
|
|
630
|
-
"baseClasses": "flex flex-col items-center gap-
|
|
667
|
+
"defaultVariantKey": "default",
|
|
668
|
+
"baseClasses": "flex flex-col items-center w-full pt-5 pb-0 px-0 gap-3",
|
|
631
669
|
"baseColorHint": null,
|
|
632
670
|
"slotIds": [
|
|
633
|
-
"
|
|
634
|
-
"
|
|
671
|
+
"documentPagerPrevious",
|
|
672
|
+
"documentPagerNext"
|
|
635
673
|
],
|
|
636
674
|
"variantClasses": {
|
|
637
|
-
"
|
|
638
|
-
"check": "flex flex-col items-center gap-2",
|
|
639
|
-
"circle": "flex flex-col items-center gap-2"
|
|
675
|
+
"default": "flex flex-col items-center w-full pt-5 pb-0 px-0 gap-3"
|
|
640
676
|
},
|
|
641
677
|
"variantColorHints": {}
|
|
642
678
|
},
|
|
679
|
+
"footer": {
|
|
680
|
+
"variantKeys": [],
|
|
681
|
+
"defaultVariantKey": null,
|
|
682
|
+
"baseClasses": "",
|
|
683
|
+
"baseColorHint": null,
|
|
684
|
+
"slotIds": [],
|
|
685
|
+
"variantClasses": {},
|
|
686
|
+
"variantColorHints": {}
|
|
687
|
+
},
|
|
688
|
+
"header": {
|
|
689
|
+
"variantKeys": [],
|
|
690
|
+
"defaultVariantKey": null,
|
|
691
|
+
"baseClasses": "",
|
|
692
|
+
"baseColorHint": null,
|
|
693
|
+
"slotIds": [],
|
|
694
|
+
"variantClasses": {},
|
|
695
|
+
"variantColorHints": {}
|
|
696
|
+
},
|
|
643
697
|
"menubar": {
|
|
644
698
|
"variantKeys": [
|
|
645
699
|
"default"
|
|
@@ -658,38 +712,25 @@ export const componentStyleHints = {
|
|
|
658
712
|
"default": "fill=#ffffff | stroke=#e2e8f0@1px"
|
|
659
713
|
}
|
|
660
714
|
},
|
|
661
|
-
"
|
|
662
|
-
"variantKeys": [
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
"
|
|
666
|
-
"
|
|
667
|
-
"
|
|
668
|
-
"
|
|
669
|
-
"modalHeader",
|
|
670
|
-
"modalContent",
|
|
671
|
-
"modalFooter"
|
|
672
|
-
],
|
|
673
|
-
"variantClasses": {
|
|
674
|
-
"default": "flex flex-col w-[448px] rounded-lg border"
|
|
675
|
-
},
|
|
676
|
-
"variantColorHints": {
|
|
677
|
-
"default": "fill=#ffffff | stroke=#e2e8f0@1px"
|
|
678
|
-
}
|
|
715
|
+
"navigationMenu": {
|
|
716
|
+
"variantKeys": [],
|
|
717
|
+
"defaultVariantKey": null,
|
|
718
|
+
"baseClasses": "",
|
|
719
|
+
"baseColorHint": null,
|
|
720
|
+
"slotIds": [],
|
|
721
|
+
"variantClasses": {},
|
|
722
|
+
"variantColorHints": {}
|
|
679
723
|
},
|
|
680
|
-
"
|
|
724
|
+
"pageAside": {
|
|
681
725
|
"variantKeys": [
|
|
682
726
|
"default"
|
|
683
727
|
],
|
|
684
728
|
"defaultVariantKey": "default",
|
|
685
|
-
"baseClasses": "flex
|
|
729
|
+
"baseClasses": "inline-flex items-center w-full p-0 gap-6",
|
|
686
730
|
"baseColorHint": null,
|
|
687
|
-
"slotIds": [
|
|
688
|
-
"notificationCenterTrigger",
|
|
689
|
-
"notificationCenterPanel"
|
|
690
|
-
],
|
|
731
|
+
"slotIds": [],
|
|
691
732
|
"variantClasses": {
|
|
692
|
-
"default": "flex
|
|
733
|
+
"default": "inline-flex items-center w-full p-0 gap-6"
|
|
693
734
|
},
|
|
694
735
|
"variantColorHints": {}
|
|
695
736
|
},
|
|
@@ -708,153 +749,155 @@ export const componentStyleHints = {
|
|
|
708
749
|
},
|
|
709
750
|
"variantColorHints": {}
|
|
710
751
|
},
|
|
711
|
-
"
|
|
752
|
+
"rightRail": {
|
|
712
753
|
"variantKeys": [
|
|
713
754
|
"default"
|
|
714
755
|
],
|
|
715
756
|
"defaultVariantKey": "default",
|
|
716
|
-
"baseClasses": "flex flex-col w-[
|
|
717
|
-
"baseColorHint": "fill=#
|
|
757
|
+
"baseClasses": "flex flex-col w-[256px] h-[360px] border",
|
|
758
|
+
"baseColorHint": "fill=#ffffff | stroke=#e5e7eb@1px",
|
|
718
759
|
"slotIds": [
|
|
719
|
-
"
|
|
720
|
-
"
|
|
760
|
+
"rightRailHeader",
|
|
761
|
+
"rightRailItem"
|
|
721
762
|
],
|
|
722
763
|
"variantClasses": {
|
|
723
|
-
"default": "flex flex-col w-[
|
|
764
|
+
"default": "flex flex-col w-[256px] h-[360px] border"
|
|
724
765
|
},
|
|
725
766
|
"variantColorHints": {
|
|
726
|
-
"default": "fill=#
|
|
767
|
+
"default": "fill=#ffffff | stroke=#e5e7eb@1px"
|
|
727
768
|
}
|
|
728
769
|
},
|
|
729
|
-
"
|
|
730
|
-
"variantKeys": [
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
"
|
|
734
|
-
"
|
|
735
|
-
"
|
|
736
|
-
"
|
|
737
|
-
"progressWidgetHeader",
|
|
738
|
-
"progressWidgetContent"
|
|
739
|
-
],
|
|
740
|
-
"variantClasses": {
|
|
741
|
-
"default": "flex flex-col w-[320px] rounded-lg border"
|
|
742
|
-
},
|
|
743
|
-
"variantColorHints": {
|
|
744
|
-
"default": "fill=#ffffff | stroke=#e2e8f0@1px"
|
|
745
|
-
}
|
|
770
|
+
"sidebar": {
|
|
771
|
+
"variantKeys": [],
|
|
772
|
+
"defaultVariantKey": null,
|
|
773
|
+
"baseClasses": "",
|
|
774
|
+
"baseColorHint": null,
|
|
775
|
+
"slotIds": [],
|
|
776
|
+
"variantClasses": {},
|
|
777
|
+
"variantColorHints": {}
|
|
746
778
|
},
|
|
747
|
-
"
|
|
779
|
+
"sidebarItem": {
|
|
748
780
|
"variantKeys": [
|
|
749
|
-
"
|
|
781
|
+
"default",
|
|
782
|
+
"active"
|
|
750
783
|
],
|
|
751
|
-
"defaultVariantKey": "
|
|
752
|
-
"baseClasses": "flex flex-col w-[
|
|
784
|
+
"defaultVariantKey": "default",
|
|
785
|
+
"baseClasses": "flex flex-col w-[320px] h-9 py-1.5 px-4 rounded-md cursor-pointer",
|
|
753
786
|
"baseColorHint": null,
|
|
754
787
|
"slotIds": [
|
|
755
|
-
"
|
|
756
|
-
"
|
|
788
|
+
"sidebarItemContent",
|
|
789
|
+
"sidebarItemRight"
|
|
757
790
|
],
|
|
758
791
|
"variantClasses": {
|
|
759
|
-
"
|
|
792
|
+
"default": "flex flex-col w-[320px] h-9 py-1.5 px-4 rounded-md cursor-pointer",
|
|
793
|
+
"active": "flex flex-col w-[320px] h-9 py-1.5 px-4 rounded-md cursor-pointer"
|
|
760
794
|
},
|
|
761
|
-
"variantColorHints": {
|
|
795
|
+
"variantColorHints": {
|
|
796
|
+
"active": "fill=#f1f5f9"
|
|
797
|
+
}
|
|
762
798
|
},
|
|
763
|
-
"
|
|
799
|
+
"tabs": {
|
|
764
800
|
"variantKeys": [
|
|
765
801
|
"default"
|
|
766
802
|
],
|
|
767
803
|
"defaultVariantKey": "default",
|
|
768
|
-
"baseClasses": "flex flex-col w-[
|
|
769
|
-
"baseColorHint":
|
|
804
|
+
"baseClasses": "flex flex-col w-[400px] rounded-lg border",
|
|
805
|
+
"baseColorHint": "fill=#FFFFFF | stroke=#e2e8f0@1px",
|
|
770
806
|
"slotIds": [
|
|
771
|
-
"
|
|
772
|
-
"
|
|
807
|
+
"tabsList",
|
|
808
|
+
"tabsContent"
|
|
773
809
|
],
|
|
774
810
|
"variantClasses": {
|
|
775
|
-
"default": "flex flex-col w-[
|
|
811
|
+
"default": "flex flex-col w-[400px] rounded-lg border"
|
|
776
812
|
},
|
|
777
|
-
"variantColorHints": {
|
|
813
|
+
"variantColorHints": {
|
|
814
|
+
"default": "fill=#FFFFFF | stroke=#e2e8f0@1px"
|
|
815
|
+
}
|
|
778
816
|
},
|
|
779
|
-
"
|
|
817
|
+
"textLink": {
|
|
780
818
|
"variantKeys": [
|
|
781
|
-
"
|
|
782
|
-
|
|
783
|
-
"defaultVariantKey": "right",
|
|
784
|
-
"baseClasses": "flex flex-col w-[384px]",
|
|
785
|
-
"baseColorHint": null,
|
|
786
|
-
"slotIds": [
|
|
787
|
-
"sheetOverlay",
|
|
788
|
-
"sheetContent"
|
|
819
|
+
"default",
|
|
820
|
+
"muted"
|
|
789
821
|
],
|
|
822
|
+
"defaultVariantKey": "default",
|
|
823
|
+
"baseClasses": "inline-flex items-center p-0 gap-1 text-sm font-medium",
|
|
824
|
+
"baseColorHint": "text=#2563eb",
|
|
825
|
+
"slotIds": [],
|
|
790
826
|
"variantClasses": {
|
|
791
|
-
"
|
|
827
|
+
"default": "inline-flex items-center p-0 gap-1 text-sm font-medium",
|
|
828
|
+
"muted": "inline-flex items-center p-0 gap-1 text-sm font-medium"
|
|
792
829
|
},
|
|
830
|
+
"variantColorHints": {
|
|
831
|
+
"default": "text=#2563eb",
|
|
832
|
+
"muted": "text=#0f172a"
|
|
833
|
+
}
|
|
834
|
+
}
|
|
835
|
+
},
|
|
836
|
+
"overlay": {
|
|
837
|
+
"alertDialog": {
|
|
838
|
+
"variantKeys": [],
|
|
839
|
+
"defaultVariantKey": null,
|
|
840
|
+
"baseClasses": "",
|
|
841
|
+
"baseColorHint": null,
|
|
842
|
+
"slotIds": [],
|
|
843
|
+
"variantClasses": {},
|
|
793
844
|
"variantColorHints": {}
|
|
794
845
|
},
|
|
795
|
-
"
|
|
846
|
+
"chatPanel": {
|
|
796
847
|
"variantKeys": [
|
|
797
848
|
"default",
|
|
798
|
-
"
|
|
849
|
+
"compact"
|
|
799
850
|
],
|
|
800
851
|
"defaultVariantKey": "default",
|
|
801
|
-
"baseClasses": "
|
|
802
|
-
"baseColorHint":
|
|
803
|
-
"slotIds": [
|
|
804
|
-
"sidebarItemContent",
|
|
805
|
-
"sidebarItemRight"
|
|
806
|
-
],
|
|
852
|
+
"baseClasses": "w-full h-[560px] p-0 rounded-lg",
|
|
853
|
+
"baseColorHint": "fill=#ffffff",
|
|
854
|
+
"slotIds": [],
|
|
807
855
|
"variantClasses": {
|
|
808
|
-
"default": "
|
|
809
|
-
"
|
|
856
|
+
"default": "w-full h-[560px] p-0 rounded-lg",
|
|
857
|
+
"compact": "w-full h-[420px] p-0 rounded-lg"
|
|
810
858
|
},
|
|
811
859
|
"variantColorHints": {
|
|
812
|
-
"
|
|
860
|
+
"default": "fill=#ffffff",
|
|
861
|
+
"compact": "fill=#ffffff"
|
|
813
862
|
}
|
|
814
863
|
},
|
|
815
|
-
"
|
|
864
|
+
"contextMenu": {
|
|
816
865
|
"variantKeys": [
|
|
817
|
-
"
|
|
818
|
-
"asc",
|
|
819
|
-
"desc"
|
|
866
|
+
"default"
|
|
820
867
|
],
|
|
821
|
-
"defaultVariantKey": "
|
|
822
|
-
"baseClasses": "flex flex-col items-center
|
|
823
|
-
"baseColorHint":
|
|
868
|
+
"defaultVariantKey": "default",
|
|
869
|
+
"baseClasses": "flex flex-col items-center w-[192px] p-1 gap-0.5 rounded-md border",
|
|
870
|
+
"baseColorHint": "fill=#ffffff | stroke=#e2e8f0@1px",
|
|
824
871
|
"slotIds": [
|
|
825
|
-
"
|
|
826
|
-
"
|
|
872
|
+
"contextMenuLabelText",
|
|
873
|
+
"contextMenuItem",
|
|
874
|
+
"contextMenuSeparator",
|
|
875
|
+
"contextMenuSubTrigger"
|
|
827
876
|
],
|
|
828
877
|
"variantClasses": {
|
|
829
|
-
"
|
|
830
|
-
"asc": "flex flex-col items-center h-9 py-2 px-3 gap-2 rounded-md",
|
|
831
|
-
"desc": "flex flex-col items-center h-9 py-2 px-3 gap-2 rounded-md"
|
|
878
|
+
"default": "flex flex-col items-center w-[192px] p-1 gap-0.5 rounded-md border"
|
|
832
879
|
},
|
|
833
880
|
"variantColorHints": {
|
|
834
|
-
"
|
|
835
|
-
"desc": "fill=#fff7ed"
|
|
881
|
+
"default": "fill=#ffffff | stroke=#e2e8f0@1px"
|
|
836
882
|
}
|
|
837
883
|
},
|
|
838
|
-
"
|
|
884
|
+
"dialog": {
|
|
839
885
|
"variantKeys": [
|
|
840
|
-
"
|
|
886
|
+
"default"
|
|
841
887
|
],
|
|
842
|
-
"defaultVariantKey": "
|
|
843
|
-
"baseClasses": "flex flex-col w-[
|
|
844
|
-
"baseColorHint":
|
|
888
|
+
"defaultVariantKey": "default",
|
|
889
|
+
"baseClasses": "flex flex-col w-[512px]",
|
|
890
|
+
"baseColorHint": null,
|
|
845
891
|
"slotIds": [
|
|
846
|
-
"
|
|
847
|
-
"
|
|
848
|
-
"statusBarRight"
|
|
892
|
+
"dialogOverlay",
|
|
893
|
+
"dialogContent"
|
|
849
894
|
],
|
|
850
895
|
"variantClasses": {
|
|
851
|
-
"
|
|
896
|
+
"default": "flex flex-col w-[512px]"
|
|
852
897
|
},
|
|
853
|
-
"variantColorHints": {
|
|
854
|
-
"fixed": "fill=#2563eb"
|
|
855
|
-
}
|
|
898
|
+
"variantColorHints": {}
|
|
856
899
|
},
|
|
857
|
-
"
|
|
900
|
+
"drawer": {
|
|
858
901
|
"variantKeys": [],
|
|
859
902
|
"defaultVariantKey": null,
|
|
860
903
|
"baseClasses": "",
|
|
@@ -863,125 +906,1252 @@ export const componentStyleHints = {
|
|
|
863
906
|
"variantClasses": {},
|
|
864
907
|
"variantColorHints": {}
|
|
865
908
|
},
|
|
866
|
-
"
|
|
909
|
+
"dropdownMenu": {
|
|
867
910
|
"variantKeys": [
|
|
868
911
|
"default"
|
|
869
912
|
],
|
|
870
913
|
"defaultVariantKey": "default",
|
|
871
|
-
"baseClasses": "flex flex-col w-[
|
|
914
|
+
"baseClasses": "flex flex-col w-[180px] rounded-lg border",
|
|
872
915
|
"baseColorHint": "fill=#FFFFFF | stroke=#e2e8f0@1px",
|
|
873
916
|
"slotIds": [
|
|
874
|
-
"
|
|
875
|
-
"
|
|
917
|
+
"dropdownMenuLabel",
|
|
918
|
+
"dropdownMenuSeparator",
|
|
919
|
+
"dropdownMenuItem"
|
|
876
920
|
],
|
|
877
921
|
"variantClasses": {
|
|
878
|
-
"default": "flex flex-col w-[
|
|
922
|
+
"default": "flex flex-col w-[180px] rounded-lg border"
|
|
879
923
|
},
|
|
880
924
|
"variantColorHints": {
|
|
881
925
|
"default": "fill=#FFFFFF | stroke=#e2e8f0@1px"
|
|
882
926
|
}
|
|
883
927
|
},
|
|
884
|
-
"
|
|
928
|
+
"floatingPanel": {
|
|
885
929
|
"variantKeys": [
|
|
886
|
-
"
|
|
930
|
+
"glass"
|
|
887
931
|
],
|
|
888
|
-
"defaultVariantKey": "
|
|
889
|
-
"baseClasses": "flex flex-col w-[
|
|
890
|
-
"baseColorHint": "fill=#
|
|
932
|
+
"defaultVariantKey": "glass",
|
|
933
|
+
"baseClasses": "flex flex-col w-[360px] rounded-2xl border",
|
|
934
|
+
"baseColorHint": "fill=#ffffffcc | stroke=#dddddd@1px",
|
|
891
935
|
"slotIds": [
|
|
892
|
-
"
|
|
893
|
-
"
|
|
936
|
+
"floatingPanelTitleBar",
|
|
937
|
+
"floatingPanelContent"
|
|
894
938
|
],
|
|
895
939
|
"variantClasses": {
|
|
896
|
-
"
|
|
940
|
+
"glass": "flex flex-col w-[360px] rounded-2xl border"
|
|
897
941
|
},
|
|
898
942
|
"variantColorHints": {
|
|
899
|
-
"
|
|
943
|
+
"glass": "fill=#ffffffcc | stroke=#dddddd@1px"
|
|
900
944
|
}
|
|
901
945
|
},
|
|
902
|
-
"
|
|
946
|
+
"hoverCard": {
|
|
903
947
|
"variantKeys": [
|
|
904
|
-
"
|
|
905
|
-
"error",
|
|
906
|
-
"info"
|
|
948
|
+
"default"
|
|
907
949
|
],
|
|
908
|
-
"defaultVariantKey": "
|
|
909
|
-
"baseClasses": "flex flex-col items-center w-[
|
|
910
|
-
"baseColorHint": "fill=#ffffff | stroke=#
|
|
950
|
+
"defaultVariantKey": "default",
|
|
951
|
+
"baseClasses": "flex flex-col items-center w-[256px] p-4 gap-2 rounded-md border",
|
|
952
|
+
"baseColorHint": "fill=#ffffff | stroke=#e2e8f0@1px",
|
|
911
953
|
"slotIds": [
|
|
912
|
-
"
|
|
913
|
-
"toastSuccessText",
|
|
914
|
-
"toastSuccessClose"
|
|
954
|
+
"hoverCardHeader"
|
|
915
955
|
],
|
|
916
956
|
"variantClasses": {
|
|
917
|
-
"
|
|
918
|
-
"error": "flex flex-col items-center w-[384px] py-3 px-4 gap-3 rounded-xl border",
|
|
919
|
-
"info": "flex flex-col items-center w-[384px] py-3 px-4 gap-3 rounded-xl border"
|
|
957
|
+
"default": "flex flex-col items-center w-[256px] p-4 gap-2 rounded-md border"
|
|
920
958
|
},
|
|
921
959
|
"variantColorHints": {
|
|
922
|
-
"
|
|
923
|
-
"error": "fill=#ffffff | stroke=#ef444433@1px",
|
|
924
|
-
"info": "fill=#ffffff | stroke=#3b82f633@1px"
|
|
960
|
+
"default": "fill=#ffffff | stroke=#e2e8f0@1px"
|
|
925
961
|
}
|
|
926
962
|
},
|
|
927
|
-
"
|
|
963
|
+
"mediaLightbox": {
|
|
964
|
+
"variantKeys": [
|
|
965
|
+
"default",
|
|
966
|
+
"compact"
|
|
967
|
+
],
|
|
968
|
+
"defaultVariantKey": "default",
|
|
969
|
+
"baseClasses": "w-full p-0",
|
|
970
|
+
"baseColorHint": null,
|
|
971
|
+
"slotIds": [],
|
|
972
|
+
"variantClasses": {
|
|
973
|
+
"default": "w-full p-0",
|
|
974
|
+
"compact": "w-full p-0"
|
|
975
|
+
},
|
|
976
|
+
"variantColorHints": {}
|
|
977
|
+
},
|
|
978
|
+
"mediaPickerDialog": {
|
|
979
|
+
"variantKeys": [
|
|
980
|
+
"default",
|
|
981
|
+
"compact"
|
|
982
|
+
],
|
|
983
|
+
"defaultVariantKey": "default",
|
|
984
|
+
"baseClasses": "w-full p-0",
|
|
985
|
+
"baseColorHint": null,
|
|
986
|
+
"slotIds": [],
|
|
987
|
+
"variantClasses": {
|
|
988
|
+
"default": "w-full p-0",
|
|
989
|
+
"compact": "w-full p-0"
|
|
990
|
+
},
|
|
991
|
+
"variantColorHints": {}
|
|
992
|
+
},
|
|
993
|
+
"modal": {
|
|
928
994
|
"variantKeys": [
|
|
929
995
|
"default"
|
|
930
996
|
],
|
|
931
997
|
"defaultVariantKey": "default",
|
|
932
|
-
"baseClasses": "flex flex-col w-[
|
|
998
|
+
"baseClasses": "flex flex-col w-[448px] rounded-lg border",
|
|
933
999
|
"baseColorHint": "fill=#ffffff | stroke=#e2e8f0@1px",
|
|
934
1000
|
"slotIds": [
|
|
935
|
-
"
|
|
936
|
-
"
|
|
1001
|
+
"modalHeader",
|
|
1002
|
+
"modalContent",
|
|
1003
|
+
"modalFooter"
|
|
937
1004
|
],
|
|
938
1005
|
"variantClasses": {
|
|
939
|
-
"default": "flex flex-col w-[
|
|
1006
|
+
"default": "flex flex-col w-[448px] rounded-lg border"
|
|
940
1007
|
},
|
|
941
1008
|
"variantColorHints": {
|
|
942
1009
|
"default": "fill=#ffffff | stroke=#e2e8f0@1px"
|
|
943
1010
|
}
|
|
944
|
-
}
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
1011
|
+
},
|
|
1012
|
+
"onboardingFlow": {
|
|
1013
|
+
"variantKeys": [],
|
|
1014
|
+
"defaultVariantKey": null,
|
|
1015
|
+
"baseClasses": "",
|
|
1016
|
+
"baseColorHint": null,
|
|
1017
|
+
"slotIds": [],
|
|
1018
|
+
"variantClasses": {},
|
|
1019
|
+
"variantColorHints": {}
|
|
1020
|
+
},
|
|
1021
|
+
"popover": {
|
|
948
1022
|
"variantKeys": [
|
|
949
1023
|
"default"
|
|
950
1024
|
],
|
|
951
1025
|
"defaultVariantKey": "default",
|
|
952
|
-
"baseClasses": "flex flex-col
|
|
953
|
-
"baseColorHint": "fill=#
|
|
1026
|
+
"baseClasses": "flex flex-col w-[288px] p-4 rounded-lg border",
|
|
1027
|
+
"baseColorHint": "fill=#FFFFFF | stroke=#e2e8f0@1px",
|
|
954
1028
|
"slotIds": [
|
|
955
|
-
"
|
|
956
|
-
"
|
|
957
|
-
"appRailIconFolder"
|
|
1029
|
+
"popoverContentText",
|
|
1030
|
+
"popoverMetaText"
|
|
958
1031
|
],
|
|
959
1032
|
"variantClasses": {
|
|
960
|
-
"default": "flex flex-col
|
|
1033
|
+
"default": "flex flex-col w-[288px] p-4 rounded-lg border"
|
|
961
1034
|
},
|
|
962
1035
|
"variantColorHints": {
|
|
963
|
-
"default": "fill=#
|
|
1036
|
+
"default": "fill=#FFFFFF | stroke=#e2e8f0@1px"
|
|
964
1037
|
}
|
|
965
1038
|
},
|
|
966
|
-
"
|
|
1039
|
+
"shareModal": {
|
|
967
1040
|
"variantKeys": [
|
|
968
1041
|
"default"
|
|
969
1042
|
],
|
|
970
1043
|
"defaultVariantKey": "default",
|
|
971
|
-
"baseClasses": "flex flex-col w-[
|
|
972
|
-
"baseColorHint": "fill=#ffffff | stroke=#
|
|
1044
|
+
"baseClasses": "flex flex-col w-[448px] rounded-xl border",
|
|
1045
|
+
"baseColorHint": "fill=#ffffff | stroke=#e5e7eb@1px",
|
|
973
1046
|
"slotIds": [
|
|
974
|
-
"
|
|
975
|
-
"
|
|
1047
|
+
"shareModalHeader",
|
|
1048
|
+
"shareModalContent"
|
|
976
1049
|
],
|
|
977
1050
|
"variantClasses": {
|
|
978
|
-
"default": "flex flex-col w-[
|
|
1051
|
+
"default": "flex flex-col w-[448px] rounded-xl border"
|
|
979
1052
|
},
|
|
980
1053
|
"variantColorHints": {
|
|
981
|
-
"default": "fill=#ffffff | stroke=#
|
|
1054
|
+
"default": "fill=#ffffff | stroke=#e5e7eb@1px"
|
|
982
1055
|
}
|
|
983
1056
|
},
|
|
984
|
-
"
|
|
1057
|
+
"sheet": {
|
|
1058
|
+
"variantKeys": [
|
|
1059
|
+
"right"
|
|
1060
|
+
],
|
|
1061
|
+
"defaultVariantKey": "right",
|
|
1062
|
+
"baseClasses": "flex flex-col w-[384px]",
|
|
1063
|
+
"baseColorHint": null,
|
|
1064
|
+
"slotIds": [
|
|
1065
|
+
"sheetOverlay",
|
|
1066
|
+
"sheetContent"
|
|
1067
|
+
],
|
|
1068
|
+
"variantClasses": {
|
|
1069
|
+
"right": "flex flex-col w-[384px]"
|
|
1070
|
+
},
|
|
1071
|
+
"variantColorHints": {}
|
|
1072
|
+
},
|
|
1073
|
+
"tooltip": {
|
|
1074
|
+
"variantKeys": [
|
|
1075
|
+
"default"
|
|
1076
|
+
],
|
|
1077
|
+
"defaultVariantKey": "default",
|
|
1078
|
+
"baseClasses": "flex flex-col w-[168px] py-1.5 px-3 rounded-md border",
|
|
1079
|
+
"baseColorHint": "fill=#ffffff | stroke=#e2e8f0@1px",
|
|
1080
|
+
"slotIds": [
|
|
1081
|
+
"tooltipText",
|
|
1082
|
+
"tooltipHintText"
|
|
1083
|
+
],
|
|
1084
|
+
"variantClasses": {
|
|
1085
|
+
"default": "flex flex-col w-[168px] py-1.5 px-3 rounded-md border"
|
|
1086
|
+
},
|
|
1087
|
+
"variantColorHints": {
|
|
1088
|
+
"default": "fill=#ffffff | stroke=#e2e8f0@1px"
|
|
1089
|
+
}
|
|
1090
|
+
}
|
|
1091
|
+
},
|
|
1092
|
+
"display": {
|
|
1093
|
+
"accordion": {
|
|
1094
|
+
"variantKeys": [
|
|
1095
|
+
"collapsed",
|
|
1096
|
+
"expanded"
|
|
1097
|
+
],
|
|
1098
|
+
"defaultVariantKey": "collapsed",
|
|
1099
|
+
"baseClasses": "flex flex-col w-[400px] border",
|
|
1100
|
+
"baseColorHint": "stroke=#e2e8f0@1px",
|
|
1101
|
+
"slotIds": [
|
|
1102
|
+
"accordionTriggerCollapsed"
|
|
1103
|
+
],
|
|
1104
|
+
"variantClasses": {
|
|
1105
|
+
"collapsed": "flex flex-col w-[400px] border",
|
|
1106
|
+
"expanded": "flex flex-col w-[400px] border"
|
|
1107
|
+
},
|
|
1108
|
+
"variantColorHints": {
|
|
1109
|
+
"collapsed": "stroke=#e2e8f0@1px",
|
|
1110
|
+
"expanded": "stroke=#e2e8f0@1px"
|
|
1111
|
+
}
|
|
1112
|
+
},
|
|
1113
|
+
"accordionGroup": {
|
|
1114
|
+
"variantKeys": [
|
|
1115
|
+
"default",
|
|
1116
|
+
"withDescription",
|
|
1117
|
+
"withoutControls"
|
|
1118
|
+
],
|
|
1119
|
+
"defaultVariantKey": "default",
|
|
1120
|
+
"baseClasses": "w-full p-0",
|
|
1121
|
+
"baseColorHint": null,
|
|
1122
|
+
"slotIds": [],
|
|
1123
|
+
"variantClasses": {
|
|
1124
|
+
"default": "w-full p-0",
|
|
1125
|
+
"withDescription": "w-full p-0",
|
|
1126
|
+
"withoutControls": "w-full p-0"
|
|
1127
|
+
},
|
|
1128
|
+
"variantColorHints": {}
|
|
1129
|
+
},
|
|
1130
|
+
"actionDataTable": {
|
|
1131
|
+
"variantKeys": [
|
|
1132
|
+
"default",
|
|
1133
|
+
"selection",
|
|
1134
|
+
"rowActions"
|
|
1135
|
+
],
|
|
1136
|
+
"defaultVariantKey": "default",
|
|
1137
|
+
"baseClasses": "w-full p-0",
|
|
1138
|
+
"baseColorHint": null,
|
|
1139
|
+
"slotIds": [],
|
|
1140
|
+
"variantClasses": {
|
|
1141
|
+
"default": "w-full p-0",
|
|
1142
|
+
"selection": "w-full p-0",
|
|
1143
|
+
"rowActions": "w-full p-0"
|
|
1144
|
+
},
|
|
1145
|
+
"variantColorHints": {}
|
|
1146
|
+
},
|
|
1147
|
+
"activityTimelineCard": {
|
|
1148
|
+
"variantKeys": [
|
|
1149
|
+
"default",
|
|
1150
|
+
"compact"
|
|
1151
|
+
],
|
|
1152
|
+
"defaultVariantKey": "default",
|
|
1153
|
+
"baseClasses": "w-full p-0",
|
|
1154
|
+
"baseColorHint": null,
|
|
1155
|
+
"slotIds": [],
|
|
1156
|
+
"variantClasses": {
|
|
1157
|
+
"default": "w-full p-0",
|
|
1158
|
+
"compact": "w-full p-0"
|
|
1159
|
+
},
|
|
1160
|
+
"variantColorHints": {}
|
|
1161
|
+
},
|
|
1162
|
+
"analyticsCard": {
|
|
1163
|
+
"variantKeys": [
|
|
1164
|
+
"default",
|
|
1165
|
+
"positive",
|
|
1166
|
+
"riskIncrease",
|
|
1167
|
+
"flatWithFooter"
|
|
1168
|
+
],
|
|
1169
|
+
"defaultVariantKey": "default",
|
|
1170
|
+
"baseClasses": "w-full p-0",
|
|
1171
|
+
"baseColorHint": null,
|
|
1172
|
+
"slotIds": [],
|
|
1173
|
+
"variantClasses": {
|
|
1174
|
+
"default": "w-full p-0",
|
|
1175
|
+
"positive": "w-full p-0",
|
|
1176
|
+
"riskIncrease": "w-full p-0",
|
|
1177
|
+
"flatWithFooter": "w-full p-0"
|
|
1178
|
+
},
|
|
1179
|
+
"variantColorHints": {}
|
|
1180
|
+
},
|
|
1181
|
+
"assetCard": {
|
|
1182
|
+
"variantKeys": [
|
|
1183
|
+
"default",
|
|
1184
|
+
"compact"
|
|
1185
|
+
],
|
|
1186
|
+
"defaultVariantKey": "default",
|
|
1187
|
+
"baseClasses": "w-full p-0 rounded-lg",
|
|
1188
|
+
"baseColorHint": null,
|
|
1189
|
+
"slotIds": [],
|
|
1190
|
+
"variantClasses": {
|
|
1191
|
+
"default": "w-full p-0 rounded-lg",
|
|
1192
|
+
"compact": "w-full p-0 rounded-md"
|
|
1193
|
+
},
|
|
1194
|
+
"variantColorHints": {}
|
|
1195
|
+
},
|
|
1196
|
+
"assetGrid": {
|
|
1197
|
+
"variantKeys": [
|
|
1198
|
+
"default",
|
|
1199
|
+
"compact"
|
|
1200
|
+
],
|
|
1201
|
+
"defaultVariantKey": "default",
|
|
1202
|
+
"baseClasses": "w-full p-0",
|
|
1203
|
+
"baseColorHint": null,
|
|
1204
|
+
"slotIds": [],
|
|
1205
|
+
"variantClasses": {
|
|
1206
|
+
"default": "w-full p-0",
|
|
1207
|
+
"compact": "w-full p-0"
|
|
1208
|
+
},
|
|
1209
|
+
"variantColorHints": {}
|
|
1210
|
+
},
|
|
1211
|
+
"avatar": {
|
|
1212
|
+
"variantKeys": [
|
|
1213
|
+
"fallback",
|
|
1214
|
+
"image"
|
|
1215
|
+
],
|
|
1216
|
+
"defaultVariantKey": "fallback",
|
|
1217
|
+
"baseClasses": "inline-flex items-center w-10 h-10 rounded-full text-sm font-medium",
|
|
1218
|
+
"baseColorHint": "fill=#f1f5f9 | text=#64748b",
|
|
1219
|
+
"slotIds": [],
|
|
1220
|
+
"variantClasses": {
|
|
1221
|
+
"fallback": "inline-flex items-center w-10 h-10 rounded-full text-sm font-medium",
|
|
1222
|
+
"image": "w-10 h-10 rounded-full"
|
|
1223
|
+
},
|
|
1224
|
+
"variantColorHints": {
|
|
1225
|
+
"fallback": "fill=#f1f5f9 | text=#64748b"
|
|
1226
|
+
}
|
|
1227
|
+
},
|
|
1228
|
+
"avatarGroup": {
|
|
1229
|
+
"variantKeys": [],
|
|
1230
|
+
"defaultVariantKey": null,
|
|
1231
|
+
"baseClasses": "",
|
|
1232
|
+
"baseColorHint": null,
|
|
1233
|
+
"slotIds": [],
|
|
1234
|
+
"variantClasses": {},
|
|
1235
|
+
"variantColorHints": {}
|
|
1236
|
+
},
|
|
1237
|
+
"badge": {
|
|
1238
|
+
"variantKeys": [
|
|
1239
|
+
"default",
|
|
1240
|
+
"secondary",
|
|
1241
|
+
"destructive",
|
|
1242
|
+
"outline"
|
|
1243
|
+
],
|
|
1244
|
+
"defaultVariantKey": "default",
|
|
1245
|
+
"baseClasses": "inline-flex items-center h-5 py-1 px-2.5 rounded-full text-xs font-semibold",
|
|
1246
|
+
"baseColorHint": "fill=#0c0c12 | text=#f8fafc",
|
|
1247
|
+
"slotIds": [],
|
|
1248
|
+
"variantClasses": {
|
|
1249
|
+
"default": "inline-flex items-center h-5 py-1 px-2.5 rounded-full text-xs font-semibold",
|
|
1250
|
+
"secondary": "inline-flex items-center h-5 py-1 px-2.5 rounded-full text-xs font-semibold",
|
|
1251
|
+
"destructive": "inline-flex items-center h-5 py-1 px-2.5 rounded-full text-xs font-semibold",
|
|
1252
|
+
"outline": "inline-flex items-center h-5 py-1 px-2.5 rounded-full border bg-transparent text-xs font-semibold"
|
|
1253
|
+
},
|
|
1254
|
+
"variantColorHints": {
|
|
1255
|
+
"default": "fill=#0c0c12 | text=#f8fafc",
|
|
1256
|
+
"secondary": "fill=#f1f5f9 | text=#18181b",
|
|
1257
|
+
"destructive": "fill=#ef4444 | text=#f8fafc",
|
|
1258
|
+
"outline": "fill=transparent | stroke=#e2e8f0@1px | text=#0c0c12"
|
|
1259
|
+
}
|
|
1260
|
+
},
|
|
1261
|
+
"barChart": {
|
|
1262
|
+
"variantKeys": [
|
|
1263
|
+
"vertical",
|
|
1264
|
+
"horizontal"
|
|
1265
|
+
],
|
|
1266
|
+
"defaultVariantKey": "vertical",
|
|
1267
|
+
"baseClasses": "w-full h-[192px] p-0",
|
|
1268
|
+
"baseColorHint": null,
|
|
1269
|
+
"slotIds": [],
|
|
1270
|
+
"variantClasses": {
|
|
1271
|
+
"vertical": "w-full h-[192px] p-0",
|
|
1272
|
+
"horizontal": "w-full h-[192px] p-0"
|
|
1273
|
+
},
|
|
1274
|
+
"variantColorHints": {}
|
|
1275
|
+
},
|
|
1276
|
+
"card": {
|
|
1277
|
+
"variantKeys": [
|
|
1278
|
+
"default"
|
|
1279
|
+
],
|
|
1280
|
+
"defaultVariantKey": "default",
|
|
1281
|
+
"baseClasses": "flex flex-col w-full rounded-lg border",
|
|
1282
|
+
"baseColorHint": "fill=#FFFFFF | stroke=#e2e8f0@1px",
|
|
1283
|
+
"slotIds": [
|
|
1284
|
+
"cardHeader",
|
|
1285
|
+
"cardContent",
|
|
1286
|
+
"cardFooter"
|
|
1287
|
+
],
|
|
1288
|
+
"variantClasses": {
|
|
1289
|
+
"default": "flex flex-col w-full rounded-lg border"
|
|
1290
|
+
},
|
|
1291
|
+
"variantColorHints": {
|
|
1292
|
+
"default": "fill=#FFFFFF | stroke=#e2e8f0@1px"
|
|
1293
|
+
}
|
|
1294
|
+
},
|
|
1295
|
+
"carousel": {
|
|
1296
|
+
"variantKeys": [
|
|
1297
|
+
"default"
|
|
1298
|
+
],
|
|
1299
|
+
"defaultVariantKey": "default",
|
|
1300
|
+
"baseClasses": "flex flex-col w-[640px]",
|
|
1301
|
+
"baseColorHint": null,
|
|
1302
|
+
"slotIds": [
|
|
1303
|
+
"carouselContent",
|
|
1304
|
+
"carouselPrevButton",
|
|
1305
|
+
"carouselNextButton"
|
|
1306
|
+
],
|
|
1307
|
+
"variantClasses": {
|
|
1308
|
+
"default": "flex flex-col w-[640px]"
|
|
1309
|
+
},
|
|
1310
|
+
"variantColorHints": {}
|
|
1311
|
+
},
|
|
1312
|
+
"chartLegend": {
|
|
1313
|
+
"variantKeys": [
|
|
1314
|
+
"horizontal",
|
|
1315
|
+
"vertical"
|
|
1316
|
+
],
|
|
1317
|
+
"defaultVariantKey": "horizontal",
|
|
1318
|
+
"baseClasses": "inline-flex items-center w-full p-0 gap-2",
|
|
1319
|
+
"baseColorHint": null,
|
|
1320
|
+
"slotIds": [],
|
|
1321
|
+
"variantClasses": {
|
|
1322
|
+
"horizontal": "inline-flex items-center w-full p-0 gap-2",
|
|
1323
|
+
"vertical": "inline-flex items-center w-full p-0 gap-2"
|
|
1324
|
+
},
|
|
1325
|
+
"variantColorHints": {}
|
|
1326
|
+
},
|
|
1327
|
+
"chatMessage": {
|
|
1328
|
+
"variantKeys": [
|
|
1329
|
+
"assistant",
|
|
1330
|
+
"user",
|
|
1331
|
+
"system",
|
|
1332
|
+
"typing"
|
|
1333
|
+
],
|
|
1334
|
+
"defaultVariantKey": "assistant",
|
|
1335
|
+
"baseClasses": "inline-flex items-center w-full p-4 gap-4",
|
|
1336
|
+
"baseColorHint": null,
|
|
1337
|
+
"slotIds": [],
|
|
1338
|
+
"variantClasses": {
|
|
1339
|
+
"assistant": "inline-flex items-center w-full p-4 gap-4",
|
|
1340
|
+
"user": "inline-flex items-center w-full p-4 gap-4",
|
|
1341
|
+
"system": "w-full p-4",
|
|
1342
|
+
"typing": "inline-flex items-center w-full p-4 gap-4"
|
|
1343
|
+
},
|
|
1344
|
+
"variantColorHints": {}
|
|
1345
|
+
},
|
|
1346
|
+
"choroplethMap": {
|
|
1347
|
+
"variantKeys": [
|
|
1348
|
+
"default",
|
|
1349
|
+
"compact"
|
|
1350
|
+
],
|
|
1351
|
+
"defaultVariantKey": "default",
|
|
1352
|
+
"baseClasses": "w-full p-0",
|
|
1353
|
+
"baseColorHint": null,
|
|
1354
|
+
"slotIds": [],
|
|
1355
|
+
"variantClasses": {
|
|
1356
|
+
"default": "w-full p-0",
|
|
1357
|
+
"compact": "w-full p-0"
|
|
1358
|
+
},
|
|
1359
|
+
"variantColorHints": {}
|
|
1360
|
+
},
|
|
1361
|
+
"code": {
|
|
1362
|
+
"variantKeys": [],
|
|
1363
|
+
"defaultVariantKey": null,
|
|
1364
|
+
"baseClasses": "",
|
|
1365
|
+
"baseColorHint": null,
|
|
1366
|
+
"slotIds": [],
|
|
1367
|
+
"variantClasses": {},
|
|
1368
|
+
"variantColorHints": {}
|
|
1369
|
+
},
|
|
1370
|
+
"codeBlock": {
|
|
1371
|
+
"variantKeys": [],
|
|
1372
|
+
"defaultVariantKey": null,
|
|
1373
|
+
"baseClasses": "",
|
|
1374
|
+
"baseColorHint": null,
|
|
1375
|
+
"slotIds": [],
|
|
1376
|
+
"variantClasses": {},
|
|
1377
|
+
"variantColorHints": {}
|
|
1378
|
+
},
|
|
1379
|
+
"colorSwatch": {
|
|
1380
|
+
"variantKeys": [],
|
|
1381
|
+
"defaultVariantKey": null,
|
|
1382
|
+
"baseClasses": "",
|
|
1383
|
+
"baseColorHint": null,
|
|
1384
|
+
"slotIds": [],
|
|
1385
|
+
"variantClasses": {},
|
|
1386
|
+
"variantColorHints": {}
|
|
1387
|
+
},
|
|
1388
|
+
"concentricProgressCard": {
|
|
1389
|
+
"variantKeys": [
|
|
1390
|
+
"default",
|
|
1391
|
+
"compact"
|
|
1392
|
+
],
|
|
1393
|
+
"defaultVariantKey": "default",
|
|
1394
|
+
"baseClasses": "w-full p-0",
|
|
1395
|
+
"baseColorHint": null,
|
|
1396
|
+
"slotIds": [],
|
|
1397
|
+
"variantClasses": {
|
|
1398
|
+
"default": "w-full p-0",
|
|
1399
|
+
"compact": "w-full p-0"
|
|
1400
|
+
},
|
|
1401
|
+
"variantColorHints": {}
|
|
1402
|
+
},
|
|
1403
|
+
"dataTable": {
|
|
1404
|
+
"variantKeys": [],
|
|
1405
|
+
"defaultVariantKey": null,
|
|
1406
|
+
"baseClasses": "",
|
|
1407
|
+
"baseColorHint": null,
|
|
1408
|
+
"slotIds": [],
|
|
1409
|
+
"variantClasses": {},
|
|
1410
|
+
"variantColorHints": {}
|
|
1411
|
+
},
|
|
1412
|
+
"distributionBar": {
|
|
1413
|
+
"variantKeys": [
|
|
1414
|
+
"default"
|
|
1415
|
+
],
|
|
1416
|
+
"defaultVariantKey": "default",
|
|
1417
|
+
"baseClasses": "w-full h-9 p-0 rounded-full",
|
|
1418
|
+
"baseColorHint": null,
|
|
1419
|
+
"slotIds": [],
|
|
1420
|
+
"variantClasses": {
|
|
1421
|
+
"default": "w-full h-9 p-0 rounded-full"
|
|
1422
|
+
},
|
|
1423
|
+
"variantColorHints": {}
|
|
1424
|
+
},
|
|
1425
|
+
"docNote": {
|
|
1426
|
+
"variantKeys": [
|
|
1427
|
+
"default",
|
|
1428
|
+
"reference"
|
|
1429
|
+
],
|
|
1430
|
+
"defaultVariantKey": "default",
|
|
1431
|
+
"baseClasses": "inline-flex items-center w-full py-3 px-4 gap-1 rounded-md",
|
|
1432
|
+
"baseColorHint": "fill=#f1f5f9",
|
|
1433
|
+
"slotIds": [],
|
|
1434
|
+
"variantClasses": {
|
|
1435
|
+
"default": "inline-flex items-center w-full py-3 px-4 gap-1 rounded-md",
|
|
1436
|
+
"reference": "inline-flex items-center w-full py-3 px-4 gap-1 rounded-md"
|
|
1437
|
+
},
|
|
1438
|
+
"variantColorHints": {
|
|
1439
|
+
"default": "fill=#f1f5f9",
|
|
1440
|
+
"reference": "fill=#f8fafc"
|
|
1441
|
+
}
|
|
1442
|
+
},
|
|
1443
|
+
"donutChart": {
|
|
1444
|
+
"variantKeys": [
|
|
1445
|
+
"default",
|
|
1446
|
+
"compact"
|
|
1447
|
+
],
|
|
1448
|
+
"defaultVariantKey": "default",
|
|
1449
|
+
"baseClasses": "w-full p-0 rounded-full",
|
|
1450
|
+
"baseColorHint": null,
|
|
1451
|
+
"slotIds": [],
|
|
1452
|
+
"variantClasses": {
|
|
1453
|
+
"default": "w-full p-0 rounded-full",
|
|
1454
|
+
"compact": "w-full p-0 rounded-full"
|
|
1455
|
+
},
|
|
1456
|
+
"variantColorHints": {}
|
|
1457
|
+
},
|
|
1458
|
+
"emptyState": {
|
|
1459
|
+
"variantKeys": [],
|
|
1460
|
+
"defaultVariantKey": null,
|
|
1461
|
+
"baseClasses": "",
|
|
1462
|
+
"baseColorHint": null,
|
|
1463
|
+
"slotIds": [],
|
|
1464
|
+
"variantClasses": {},
|
|
1465
|
+
"variantColorHints": {}
|
|
1466
|
+
},
|
|
1467
|
+
"fileTree": {
|
|
1468
|
+
"variantKeys": [
|
|
1469
|
+
"single",
|
|
1470
|
+
"multiple",
|
|
1471
|
+
"actions"
|
|
1472
|
+
],
|
|
1473
|
+
"defaultVariantKey": "single",
|
|
1474
|
+
"baseClasses": "w-full p-0",
|
|
1475
|
+
"baseColorHint": null,
|
|
1476
|
+
"slotIds": [],
|
|
1477
|
+
"variantClasses": {
|
|
1478
|
+
"single": "w-full p-0",
|
|
1479
|
+
"multiple": "w-full p-0",
|
|
1480
|
+
"actions": "w-full p-0"
|
|
1481
|
+
},
|
|
1482
|
+
"variantColorHints": {}
|
|
1483
|
+
},
|
|
1484
|
+
"gaugeChart": {
|
|
1485
|
+
"variantKeys": [
|
|
1486
|
+
"default",
|
|
1487
|
+
"compact"
|
|
1488
|
+
],
|
|
1489
|
+
"defaultVariantKey": "default",
|
|
1490
|
+
"baseClasses": "w-full h-[144px] p-0",
|
|
1491
|
+
"baseColorHint": null,
|
|
1492
|
+
"slotIds": [],
|
|
1493
|
+
"variantClasses": {
|
|
1494
|
+
"default": "w-full h-[144px] p-0",
|
|
1495
|
+
"compact": "w-full h-[112px] p-0"
|
|
1496
|
+
},
|
|
1497
|
+
"variantColorHints": {}
|
|
1498
|
+
},
|
|
1499
|
+
"heatmapChart": {
|
|
1500
|
+
"variantKeys": [
|
|
1501
|
+
"default",
|
|
1502
|
+
"compact"
|
|
1503
|
+
],
|
|
1504
|
+
"defaultVariantKey": "default",
|
|
1505
|
+
"baseClasses": "w-full p-0",
|
|
1506
|
+
"baseColorHint": null,
|
|
1507
|
+
"slotIds": [],
|
|
1508
|
+
"variantClasses": {
|
|
1509
|
+
"default": "w-full p-0",
|
|
1510
|
+
"compact": "w-full p-0"
|
|
1511
|
+
},
|
|
1512
|
+
"variantColorHints": {}
|
|
1513
|
+
},
|
|
1514
|
+
"icon": {
|
|
1515
|
+
"variantKeys": [
|
|
1516
|
+
"sm",
|
|
1517
|
+
"xs",
|
|
1518
|
+
"md",
|
|
1519
|
+
"lg",
|
|
1520
|
+
"xl"
|
|
1521
|
+
],
|
|
1522
|
+
"defaultVariantKey": "sm",
|
|
1523
|
+
"baseClasses": "w-4 h-4 p-0",
|
|
1524
|
+
"baseColorHint": "fill=#64748b",
|
|
1525
|
+
"slotIds": [],
|
|
1526
|
+
"variantClasses": {
|
|
1527
|
+
"sm": "w-4 h-4 p-0",
|
|
1528
|
+
"xs": "w-3 h-3 p-0",
|
|
1529
|
+
"md": "w-5 h-5 p-0",
|
|
1530
|
+
"lg": "w-6 h-6 p-0",
|
|
1531
|
+
"xl": "w-8 h-8 p-0"
|
|
1532
|
+
},
|
|
1533
|
+
"variantColorHints": {
|
|
1534
|
+
"sm": "fill=#64748b",
|
|
1535
|
+
"xs": "fill=#64748b",
|
|
1536
|
+
"md": "fill=#64748b",
|
|
1537
|
+
"lg": "fill=#64748b",
|
|
1538
|
+
"xl": "fill=#64748b"
|
|
1539
|
+
}
|
|
1540
|
+
},
|
|
1541
|
+
"imagePreview": {
|
|
1542
|
+
"variantKeys": [
|
|
1543
|
+
"default",
|
|
1544
|
+
"contain",
|
|
1545
|
+
"empty"
|
|
1546
|
+
],
|
|
1547
|
+
"defaultVariantKey": "default",
|
|
1548
|
+
"baseClasses": "w-full p-0 rounded-lg",
|
|
1549
|
+
"baseColorHint": "fill=#f8fafc",
|
|
1550
|
+
"slotIds": [],
|
|
1551
|
+
"variantClasses": {
|
|
1552
|
+
"default": "w-full p-0 rounded-lg",
|
|
1553
|
+
"contain": "w-full p-0 rounded-lg",
|
|
1554
|
+
"empty": "w-full p-0 rounded-lg"
|
|
1555
|
+
},
|
|
1556
|
+
"variantColorHints": {
|
|
1557
|
+
"default": "fill=#f8fafc",
|
|
1558
|
+
"contain": "fill=#f8fafc",
|
|
1559
|
+
"empty": "fill=#f8fafc"
|
|
1560
|
+
}
|
|
1561
|
+
},
|
|
1562
|
+
"img": {
|
|
1563
|
+
"variantKeys": [
|
|
1564
|
+
"loading",
|
|
1565
|
+
"loaded",
|
|
1566
|
+
"error"
|
|
1567
|
+
],
|
|
1568
|
+
"defaultVariantKey": "loading",
|
|
1569
|
+
"baseClasses": "w-[256px] h-[256px] rounded-lg",
|
|
1570
|
+
"baseColorHint": "fill=#f1f5f9",
|
|
1571
|
+
"slotIds": [],
|
|
1572
|
+
"variantClasses": {
|
|
1573
|
+
"loading": "w-[256px] h-[256px] rounded-lg",
|
|
1574
|
+
"loaded": "w-[256px] h-[256px] rounded-lg",
|
|
1575
|
+
"error": "inline-flex items-center w-[256px] h-[256px] gap-2 rounded-lg text-xs font-normal"
|
|
1576
|
+
},
|
|
1577
|
+
"variantColorHints": {
|
|
1578
|
+
"loading": "fill=#f1f5f9",
|
|
1579
|
+
"error": "fill=#f1f5f9 | text=#94a3b8"
|
|
1580
|
+
}
|
|
1581
|
+
},
|
|
1582
|
+
"kbd": {
|
|
1583
|
+
"variantKeys": [
|
|
1584
|
+
"key"
|
|
1585
|
+
],
|
|
1586
|
+
"defaultVariantKey": "key",
|
|
1587
|
+
"baseClasses": "h-5 py-1 px-1.5 rounded border",
|
|
1588
|
+
"baseColorHint": "fill=#f1f5f9 | stroke=#e2e8f0@1px",
|
|
1589
|
+
"slotIds": [],
|
|
1590
|
+
"variantClasses": {
|
|
1591
|
+
"key": "h-5 py-1 px-1.5 rounded border"
|
|
1592
|
+
},
|
|
1593
|
+
"variantColorHints": {
|
|
1594
|
+
"key": "fill=#f1f5f9 | stroke=#e2e8f0@1px"
|
|
1595
|
+
}
|
|
1596
|
+
},
|
|
1597
|
+
"labeledDonutCard": {
|
|
1598
|
+
"variantKeys": [
|
|
1599
|
+
"default",
|
|
1600
|
+
"compact"
|
|
1601
|
+
],
|
|
1602
|
+
"defaultVariantKey": "default",
|
|
1603
|
+
"baseClasses": "w-full p-0",
|
|
1604
|
+
"baseColorHint": null,
|
|
1605
|
+
"slotIds": [],
|
|
1606
|
+
"variantClasses": {
|
|
1607
|
+
"default": "w-full p-0",
|
|
1608
|
+
"compact": "w-full p-0"
|
|
1609
|
+
},
|
|
1610
|
+
"variantColorHints": {}
|
|
1611
|
+
},
|
|
1612
|
+
"lineChart": {
|
|
1613
|
+
"variantKeys": [
|
|
1614
|
+
"line",
|
|
1615
|
+
"area"
|
|
1616
|
+
],
|
|
1617
|
+
"defaultVariantKey": "line",
|
|
1618
|
+
"baseClasses": "w-full h-[260px] p-0",
|
|
1619
|
+
"baseColorHint": null,
|
|
1620
|
+
"slotIds": [],
|
|
1621
|
+
"variantClasses": {
|
|
1622
|
+
"line": "w-full h-[260px] p-0",
|
|
1623
|
+
"area": "w-full h-[260px] p-0"
|
|
1624
|
+
},
|
|
1625
|
+
"variantColorHints": {}
|
|
1626
|
+
},
|
|
1627
|
+
"list": {
|
|
1628
|
+
"variantKeys": [
|
|
1629
|
+
"dot",
|
|
1630
|
+
"check",
|
|
1631
|
+
"circle"
|
|
1632
|
+
],
|
|
1633
|
+
"defaultVariantKey": "dot",
|
|
1634
|
+
"baseClasses": "flex flex-col items-center gap-2",
|
|
1635
|
+
"baseColorHint": null,
|
|
1636
|
+
"slotIds": [
|
|
1637
|
+
"listDotIcon",
|
|
1638
|
+
"listDotText"
|
|
1639
|
+
],
|
|
1640
|
+
"variantClasses": {
|
|
1641
|
+
"dot": "flex flex-col items-center gap-2",
|
|
1642
|
+
"check": "flex flex-col items-center gap-2",
|
|
1643
|
+
"circle": "flex flex-col items-center gap-2"
|
|
1644
|
+
},
|
|
1645
|
+
"variantColorHints": {}
|
|
1646
|
+
},
|
|
1647
|
+
"markdownRenderer": {
|
|
1648
|
+
"variantKeys": [],
|
|
1649
|
+
"defaultVariantKey": null,
|
|
1650
|
+
"baseClasses": "",
|
|
1651
|
+
"baseColorHint": null,
|
|
1652
|
+
"slotIds": [],
|
|
1653
|
+
"variantClasses": {},
|
|
1654
|
+
"variantColorHints": {}
|
|
1655
|
+
},
|
|
1656
|
+
"metadataList": {
|
|
1657
|
+
"variantKeys": [
|
|
1658
|
+
"default",
|
|
1659
|
+
"compact"
|
|
1660
|
+
],
|
|
1661
|
+
"defaultVariantKey": "default",
|
|
1662
|
+
"baseClasses": "w-full p-0",
|
|
1663
|
+
"baseColorHint": null,
|
|
1664
|
+
"slotIds": [],
|
|
1665
|
+
"variantClasses": {
|
|
1666
|
+
"default": "w-full p-0",
|
|
1667
|
+
"compact": "w-full p-0"
|
|
1668
|
+
},
|
|
1669
|
+
"variantColorHints": {}
|
|
1670
|
+
},
|
|
1671
|
+
"miniDistributionBarCard": {
|
|
1672
|
+
"variantKeys": [
|
|
1673
|
+
"default",
|
|
1674
|
+
"compact"
|
|
1675
|
+
],
|
|
1676
|
+
"defaultVariantKey": "default",
|
|
1677
|
+
"baseClasses": "w-full p-0",
|
|
1678
|
+
"baseColorHint": null,
|
|
1679
|
+
"slotIds": [],
|
|
1680
|
+
"variantClasses": {
|
|
1681
|
+
"default": "w-full p-0",
|
|
1682
|
+
"compact": "w-full p-0"
|
|
1683
|
+
},
|
|
1684
|
+
"variantColorHints": {}
|
|
1685
|
+
},
|
|
1686
|
+
"pieChart": {
|
|
1687
|
+
"variantKeys": [
|
|
1688
|
+
"default",
|
|
1689
|
+
"compact"
|
|
1690
|
+
],
|
|
1691
|
+
"defaultVariantKey": "default",
|
|
1692
|
+
"baseClasses": "w-full p-0 rounded-full",
|
|
1693
|
+
"baseColorHint": null,
|
|
1694
|
+
"slotIds": [],
|
|
1695
|
+
"variantClasses": {
|
|
1696
|
+
"default": "w-full p-0 rounded-full",
|
|
1697
|
+
"compact": "w-full p-0 rounded-full"
|
|
1698
|
+
},
|
|
1699
|
+
"variantColorHints": {}
|
|
1700
|
+
},
|
|
1701
|
+
"quadrantMatrix": {
|
|
1702
|
+
"variantKeys": [
|
|
1703
|
+
"default",
|
|
1704
|
+
"compact"
|
|
1705
|
+
],
|
|
1706
|
+
"defaultVariantKey": "default",
|
|
1707
|
+
"baseClasses": "w-full p-0",
|
|
1708
|
+
"baseColorHint": null,
|
|
1709
|
+
"slotIds": [],
|
|
1710
|
+
"variantClasses": {
|
|
1711
|
+
"default": "w-full p-0",
|
|
1712
|
+
"compact": "w-full p-0"
|
|
1713
|
+
},
|
|
1714
|
+
"variantColorHints": {}
|
|
1715
|
+
},
|
|
1716
|
+
"radarChart": {
|
|
1717
|
+
"variantKeys": [
|
|
1718
|
+
"default",
|
|
1719
|
+
"compact"
|
|
1720
|
+
],
|
|
1721
|
+
"defaultVariantKey": "default",
|
|
1722
|
+
"baseClasses": "w-full h-[256px] p-0",
|
|
1723
|
+
"baseColorHint": null,
|
|
1724
|
+
"slotIds": [],
|
|
1725
|
+
"variantClasses": {
|
|
1726
|
+
"default": "w-full h-[256px] p-0",
|
|
1727
|
+
"compact": "w-full h-[208px] p-0"
|
|
1728
|
+
},
|
|
1729
|
+
"variantColorHints": {}
|
|
1730
|
+
},
|
|
1731
|
+
"radialBarChart": {
|
|
1732
|
+
"variantKeys": [
|
|
1733
|
+
"default",
|
|
1734
|
+
"compact"
|
|
1735
|
+
],
|
|
1736
|
+
"defaultVariantKey": "default",
|
|
1737
|
+
"baseClasses": "w-full h-[224px] p-0 rounded-full",
|
|
1738
|
+
"baseColorHint": null,
|
|
1739
|
+
"slotIds": [],
|
|
1740
|
+
"variantClasses": {
|
|
1741
|
+
"default": "w-full h-[224px] p-0 rounded-full",
|
|
1742
|
+
"compact": "w-full h-[176px] p-0 rounded-full"
|
|
1743
|
+
},
|
|
1744
|
+
"variantColorHints": {}
|
|
1745
|
+
},
|
|
1746
|
+
"retentionCohortCard": {
|
|
1747
|
+
"variantKeys": [
|
|
1748
|
+
"default",
|
|
1749
|
+
"compact"
|
|
1750
|
+
],
|
|
1751
|
+
"defaultVariantKey": "default",
|
|
1752
|
+
"baseClasses": "w-full p-0",
|
|
1753
|
+
"baseColorHint": null,
|
|
1754
|
+
"slotIds": [],
|
|
1755
|
+
"variantClasses": {
|
|
1756
|
+
"default": "w-full p-0",
|
|
1757
|
+
"compact": "w-full p-0"
|
|
1758
|
+
},
|
|
1759
|
+
"variantColorHints": {}
|
|
1760
|
+
},
|
|
1761
|
+
"ribbonChart": {
|
|
1762
|
+
"variantKeys": [
|
|
1763
|
+
"flow",
|
|
1764
|
+
"stacked"
|
|
1765
|
+
],
|
|
1766
|
+
"defaultVariantKey": "flow",
|
|
1767
|
+
"baseClasses": "w-full h-[260px] p-0",
|
|
1768
|
+
"baseColorHint": null,
|
|
1769
|
+
"slotIds": [],
|
|
1770
|
+
"variantClasses": {
|
|
1771
|
+
"flow": "w-full h-[260px] p-0",
|
|
1772
|
+
"stacked": "w-full h-[260px] p-0"
|
|
1773
|
+
},
|
|
1774
|
+
"variantColorHints": {}
|
|
1775
|
+
},
|
|
1776
|
+
"searchableAccordion": {
|
|
1777
|
+
"variantKeys": [
|
|
1778
|
+
"default",
|
|
1779
|
+
"withCategories",
|
|
1780
|
+
"empty"
|
|
1781
|
+
],
|
|
1782
|
+
"defaultVariantKey": "default",
|
|
1783
|
+
"baseClasses": "w-full p-0",
|
|
1784
|
+
"baseColorHint": null,
|
|
1785
|
+
"slotIds": [],
|
|
1786
|
+
"variantClasses": {
|
|
1787
|
+
"default": "w-full p-0",
|
|
1788
|
+
"withCategories": "w-full p-0",
|
|
1789
|
+
"empty": "w-full p-0"
|
|
1790
|
+
},
|
|
1791
|
+
"variantColorHints": {}
|
|
1792
|
+
},
|
|
1793
|
+
"segmentedGaugeCard": {
|
|
1794
|
+
"variantKeys": [
|
|
1795
|
+
"default",
|
|
1796
|
+
"compact"
|
|
1797
|
+
],
|
|
1798
|
+
"defaultVariantKey": "default",
|
|
1799
|
+
"baseClasses": "w-full p-0",
|
|
1800
|
+
"baseColorHint": null,
|
|
1801
|
+
"slotIds": [],
|
|
1802
|
+
"variantClasses": {
|
|
1803
|
+
"default": "w-full p-0",
|
|
1804
|
+
"compact": "w-full p-0"
|
|
1805
|
+
},
|
|
1806
|
+
"variantColorHints": {}
|
|
1807
|
+
},
|
|
1808
|
+
"segmentTimelineCard": {
|
|
1809
|
+
"variantKeys": [
|
|
1810
|
+
"default",
|
|
1811
|
+
"compact"
|
|
1812
|
+
],
|
|
1813
|
+
"defaultVariantKey": "default",
|
|
1814
|
+
"baseClasses": "w-full p-0",
|
|
1815
|
+
"baseColorHint": null,
|
|
1816
|
+
"slotIds": [],
|
|
1817
|
+
"variantClasses": {
|
|
1818
|
+
"default": "w-full p-0",
|
|
1819
|
+
"compact": "w-full p-0"
|
|
1820
|
+
},
|
|
1821
|
+
"variantColorHints": {}
|
|
1822
|
+
},
|
|
1823
|
+
"separator": {
|
|
1824
|
+
"variantKeys": [
|
|
1825
|
+
"horizontal",
|
|
1826
|
+
"vertical"
|
|
1827
|
+
],
|
|
1828
|
+
"defaultVariantKey": "horizontal",
|
|
1829
|
+
"baseClasses": "w-[200px] h-[1px]",
|
|
1830
|
+
"baseColorHint": "fill=#e2e8f0",
|
|
1831
|
+
"slotIds": [],
|
|
1832
|
+
"variantClasses": {
|
|
1833
|
+
"horizontal": "w-[200px] h-[1px]",
|
|
1834
|
+
"vertical": "w-[1px] h-6"
|
|
1835
|
+
},
|
|
1836
|
+
"variantColorHints": {
|
|
1837
|
+
"horizontal": "fill=#e2e8f0",
|
|
1838
|
+
"vertical": "fill=#e2e8f0"
|
|
1839
|
+
}
|
|
1840
|
+
},
|
|
1841
|
+
"skeleton": {
|
|
1842
|
+
"variantKeys": [],
|
|
1843
|
+
"defaultVariantKey": null,
|
|
1844
|
+
"baseClasses": "",
|
|
1845
|
+
"baseColorHint": null,
|
|
1846
|
+
"slotIds": [],
|
|
1847
|
+
"variantClasses": {},
|
|
1848
|
+
"variantColorHints": {}
|
|
1849
|
+
},
|
|
1850
|
+
"spacer": {
|
|
1851
|
+
"variantKeys": [],
|
|
1852
|
+
"defaultVariantKey": null,
|
|
1853
|
+
"baseClasses": "",
|
|
1854
|
+
"baseColorHint": null,
|
|
1855
|
+
"slotIds": [],
|
|
1856
|
+
"variantClasses": {},
|
|
1857
|
+
"variantColorHints": {}
|
|
1858
|
+
},
|
|
1859
|
+
"sparklineChart": {
|
|
1860
|
+
"variantKeys": [
|
|
1861
|
+
"line",
|
|
1862
|
+
"area",
|
|
1863
|
+
"step"
|
|
1864
|
+
],
|
|
1865
|
+
"defaultVariantKey": "line",
|
|
1866
|
+
"baseClasses": "w-full h-24 p-0",
|
|
1867
|
+
"baseColorHint": null,
|
|
1868
|
+
"slotIds": [],
|
|
1869
|
+
"variantClasses": {
|
|
1870
|
+
"line": "w-full h-24 p-0",
|
|
1871
|
+
"area": "w-full h-24 p-0",
|
|
1872
|
+
"step": "w-full h-24 p-0"
|
|
1873
|
+
},
|
|
1874
|
+
"variantColorHints": {}
|
|
1875
|
+
},
|
|
1876
|
+
"stackedBarChart": {
|
|
1877
|
+
"variantKeys": [
|
|
1878
|
+
"vertical",
|
|
1879
|
+
"horizontal"
|
|
1880
|
+
],
|
|
1881
|
+
"defaultVariantKey": "vertical",
|
|
1882
|
+
"baseClasses": "w-full h-[224px] p-0",
|
|
1883
|
+
"baseColorHint": null,
|
|
1884
|
+
"slotIds": [],
|
|
1885
|
+
"variantClasses": {
|
|
1886
|
+
"vertical": "w-full h-[224px] p-0",
|
|
1887
|
+
"horizontal": "w-full h-[224px] p-0"
|
|
1888
|
+
},
|
|
1889
|
+
"variantColorHints": {}
|
|
1890
|
+
},
|
|
1891
|
+
"statistic": {
|
|
1892
|
+
"variantKeys": [],
|
|
1893
|
+
"defaultVariantKey": null,
|
|
1894
|
+
"baseClasses": "",
|
|
1895
|
+
"baseColorHint": null,
|
|
1896
|
+
"slotIds": [],
|
|
1897
|
+
"variantClasses": {},
|
|
1898
|
+
"variantColorHints": {}
|
|
1899
|
+
},
|
|
1900
|
+
"table": {
|
|
1901
|
+
"variantKeys": [
|
|
1902
|
+
"default"
|
|
1903
|
+
],
|
|
1904
|
+
"defaultVariantKey": "default",
|
|
1905
|
+
"baseClasses": "flex flex-col w-[400px] rounded-lg border",
|
|
1906
|
+
"baseColorHint": "fill=#FFFFFF | stroke=#e2e8f0@1px",
|
|
1907
|
+
"slotIds": [
|
|
1908
|
+
"tableHeader",
|
|
1909
|
+
"tableRow"
|
|
1910
|
+
],
|
|
1911
|
+
"variantClasses": {
|
|
1912
|
+
"default": "flex flex-col w-[400px] rounded-lg border"
|
|
1913
|
+
},
|
|
1914
|
+
"variantColorHints": {
|
|
1915
|
+
"default": "fill=#FFFFFF | stroke=#e2e8f0@1px"
|
|
1916
|
+
}
|
|
1917
|
+
},
|
|
1918
|
+
"tag": {
|
|
1919
|
+
"variantKeys": [],
|
|
1920
|
+
"defaultVariantKey": null,
|
|
1921
|
+
"baseClasses": "",
|
|
1922
|
+
"baseColorHint": null,
|
|
1923
|
+
"slotIds": [],
|
|
1924
|
+
"variantClasses": {},
|
|
1925
|
+
"variantColorHints": {}
|
|
1926
|
+
},
|
|
1927
|
+
"tagEditor": {
|
|
1928
|
+
"variantKeys": [
|
|
1929
|
+
"default",
|
|
1930
|
+
"compact"
|
|
1931
|
+
],
|
|
1932
|
+
"defaultVariantKey": "default",
|
|
1933
|
+
"baseClasses": "w-full p-0",
|
|
1934
|
+
"baseColorHint": null,
|
|
1935
|
+
"slotIds": [],
|
|
1936
|
+
"variantClasses": {
|
|
1937
|
+
"default": "w-full p-0",
|
|
1938
|
+
"compact": "w-full p-0"
|
|
1939
|
+
},
|
|
1940
|
+
"variantColorHints": {}
|
|
1941
|
+
},
|
|
1942
|
+
"timeline": {
|
|
1943
|
+
"variantKeys": [],
|
|
1944
|
+
"defaultVariantKey": null,
|
|
1945
|
+
"baseClasses": "",
|
|
1946
|
+
"baseColorHint": null,
|
|
1947
|
+
"slotIds": [],
|
|
1948
|
+
"variantClasses": {},
|
|
1949
|
+
"variantColorHints": {}
|
|
1950
|
+
},
|
|
1951
|
+
"toolPill": {
|
|
1952
|
+
"variantKeys": [
|
|
1953
|
+
"primary",
|
|
1954
|
+
"secondary",
|
|
1955
|
+
"danger"
|
|
1956
|
+
],
|
|
1957
|
+
"defaultVariantKey": "primary",
|
|
1958
|
+
"baseClasses": "w-10 h-10 p-2.5 rounded-xl",
|
|
1959
|
+
"baseColorHint": "fill=#eff6ff",
|
|
1960
|
+
"slotIds": [],
|
|
1961
|
+
"variantClasses": {
|
|
1962
|
+
"primary": "w-10 h-10 p-2.5 rounded-xl",
|
|
1963
|
+
"secondary": "w-10 h-10 p-2.5 rounded-xl",
|
|
1964
|
+
"danger": "w-10 h-10 p-2.5 rounded-xl"
|
|
1965
|
+
},
|
|
1966
|
+
"variantColorHints": {
|
|
1967
|
+
"primary": "fill=#eff6ff",
|
|
1968
|
+
"secondary": "fill=#ffffff80",
|
|
1969
|
+
"danger": "fill=#fef2f2"
|
|
1970
|
+
}
|
|
1971
|
+
},
|
|
1972
|
+
"treeView": {
|
|
1973
|
+
"variantKeys": [],
|
|
1974
|
+
"defaultVariantKey": null,
|
|
1975
|
+
"baseClasses": "",
|
|
1976
|
+
"baseColorHint": null,
|
|
1977
|
+
"slotIds": [],
|
|
1978
|
+
"variantClasses": {},
|
|
1979
|
+
"variantColorHints": {}
|
|
1980
|
+
}
|
|
1981
|
+
},
|
|
1982
|
+
"inputs": {
|
|
1983
|
+
"button": {
|
|
1984
|
+
"variantKeys": [
|
|
1985
|
+
"default",
|
|
1986
|
+
"destructive",
|
|
1987
|
+
"outline",
|
|
1988
|
+
"secondary",
|
|
1989
|
+
"ghost",
|
|
1990
|
+
"link",
|
|
1991
|
+
"primary",
|
|
1992
|
+
"info",
|
|
1993
|
+
"success",
|
|
1994
|
+
"warning"
|
|
1995
|
+
],
|
|
1996
|
+
"defaultVariantKey": "default",
|
|
1997
|
+
"baseClasses": "inline-flex items-center h-9 py-2 px-4 gap-2 rounded-lg text-sm font-medium",
|
|
1998
|
+
"baseColorHint": "fill=#0c0c12 | text=#f8fafc",
|
|
1999
|
+
"slotIds": [],
|
|
2000
|
+
"variantClasses": {
|
|
2001
|
+
"default": "inline-flex items-center h-9 py-2 px-4 gap-2 rounded-lg text-sm font-medium",
|
|
2002
|
+
"destructive": "inline-flex items-center h-9 py-2 px-4 gap-2 rounded-lg text-sm font-medium",
|
|
2003
|
+
"outline": "inline-flex items-center h-9 py-2 px-4 gap-2 rounded-lg border bg-transparent text-sm font-medium",
|
|
2004
|
+
"secondary": "inline-flex items-center h-9 py-2 px-4 gap-2 rounded-lg text-sm font-medium",
|
|
2005
|
+
"ghost": "inline-flex items-center h-9 py-2 px-4 gap-2 rounded-lg bg-transparent text-sm font-medium",
|
|
2006
|
+
"link": "inline-flex items-center h-9 py-2 px-4 gap-2 rounded-lg bg-transparent text-sm font-medium",
|
|
2007
|
+
"primary": "inline-flex items-center h-9 py-2 px-4 gap-2 rounded-lg text-sm font-medium",
|
|
2008
|
+
"info": "inline-flex items-center h-9 py-2 px-4 gap-2 rounded-lg text-sm font-medium",
|
|
2009
|
+
"success": "inline-flex items-center h-9 py-2 px-4 gap-2 rounded-lg text-sm font-medium",
|
|
2010
|
+
"warning": "inline-flex items-center h-9 py-2 px-4 gap-2 rounded-lg text-sm font-medium"
|
|
2011
|
+
},
|
|
2012
|
+
"variantColorHints": {
|
|
2013
|
+
"default": "fill=#0c0c12 | text=#f8fafc",
|
|
2014
|
+
"destructive": "fill=#ef4444 | text=#f8fafc",
|
|
2015
|
+
"outline": "fill=transparent | stroke=#e2e8f0@1px | text=#0c0c12",
|
|
2016
|
+
"secondary": "fill=#f1f5f9 | text=#18181b",
|
|
2017
|
+
"ghost": "fill=transparent | text=#0c0c12",
|
|
2018
|
+
"link": "fill=transparent | text=#0c0c12",
|
|
2019
|
+
"primary": "fill=#394794 | text=#f8fafc",
|
|
2020
|
+
"info": "fill=#1d4ed8 | text=#f8fafc",
|
|
2021
|
+
"success": "fill=#15803d | text=#f8fafc",
|
|
2022
|
+
"warning": "fill=#b45309 | text=#f8fafc"
|
|
2023
|
+
}
|
|
2024
|
+
},
|
|
2025
|
+
"calendar": {
|
|
2026
|
+
"variantKeys": [
|
|
2027
|
+
"default"
|
|
2028
|
+
],
|
|
2029
|
+
"defaultVariantKey": "default",
|
|
2030
|
+
"baseClasses": "flex flex-col w-[320px] p-4 rounded-lg border",
|
|
2031
|
+
"baseColorHint": "fill=#FFFFFF | stroke=#e2e8f0@1px",
|
|
2032
|
+
"slotIds": [
|
|
2033
|
+
"calendarHeader",
|
|
2034
|
+
"calendarGrid"
|
|
2035
|
+
],
|
|
2036
|
+
"variantClasses": {
|
|
2037
|
+
"default": "flex flex-col w-[320px] p-4 rounded-lg border"
|
|
2038
|
+
},
|
|
2039
|
+
"variantColorHints": {
|
|
2040
|
+
"default": "fill=#FFFFFF | stroke=#e2e8f0@1px"
|
|
2041
|
+
}
|
|
2042
|
+
},
|
|
2043
|
+
"chatComposer": {
|
|
2044
|
+
"variantKeys": [
|
|
2045
|
+
"default",
|
|
2046
|
+
"context",
|
|
2047
|
+
"prompt"
|
|
2048
|
+
],
|
|
2049
|
+
"defaultVariantKey": "default",
|
|
2050
|
+
"baseClasses": "inline-flex items-center w-full p-0 gap-3",
|
|
2051
|
+
"baseColorHint": null,
|
|
2052
|
+
"slotIds": [],
|
|
2053
|
+
"variantClasses": {
|
|
2054
|
+
"default": "inline-flex items-center w-full p-0 gap-3",
|
|
2055
|
+
"context": "inline-flex items-center w-full p-0 gap-3",
|
|
2056
|
+
"prompt": "inline-flex items-center w-full p-0 gap-3"
|
|
2057
|
+
},
|
|
2058
|
+
"variantColorHints": {}
|
|
2059
|
+
},
|
|
2060
|
+
"chatInput": {
|
|
2061
|
+
"variantKeys": [
|
|
2062
|
+
"default",
|
|
2063
|
+
"processing"
|
|
2064
|
+
],
|
|
2065
|
+
"defaultVariantKey": "default",
|
|
2066
|
+
"baseClasses": "inline-flex items-center w-full p-3 gap-2",
|
|
2067
|
+
"baseColorHint": "fill=#ffffff",
|
|
2068
|
+
"slotIds": [],
|
|
2069
|
+
"variantClasses": {
|
|
2070
|
+
"default": "inline-flex items-center w-full p-3 gap-2",
|
|
2071
|
+
"processing": "inline-flex items-center w-full p-3 gap-2"
|
|
2072
|
+
},
|
|
2073
|
+
"variantColorHints": {
|
|
2074
|
+
"default": "fill=#ffffff",
|
|
2075
|
+
"processing": "fill=#ffffff"
|
|
2076
|
+
}
|
|
2077
|
+
},
|
|
2078
|
+
"checkbox": {
|
|
2079
|
+
"variantKeys": [
|
|
2080
|
+
"unchecked",
|
|
2081
|
+
"checked",
|
|
2082
|
+
"disabled"
|
|
2083
|
+
],
|
|
2084
|
+
"defaultVariantKey": "unchecked",
|
|
2085
|
+
"baseClasses": "w-5 h-5 rounded border bg-transparent",
|
|
2086
|
+
"baseColorHint": "fill=transparent | stroke=#e2e8f0@1px",
|
|
2087
|
+
"slotIds": [],
|
|
2088
|
+
"variantClasses": {
|
|
2089
|
+
"unchecked": "w-5 h-5 rounded border bg-transparent",
|
|
2090
|
+
"checked": "inline-flex items-center w-5 h-5 rounded text-xs font-semibold",
|
|
2091
|
+
"disabled": "w-5 h-5 rounded border"
|
|
2092
|
+
},
|
|
2093
|
+
"variantColorHints": {
|
|
2094
|
+
"unchecked": "fill=transparent | stroke=#e2e8f0@1px",
|
|
2095
|
+
"checked": "fill=#0c0c12 | text=#f8fafc",
|
|
2096
|
+
"disabled": "fill=#f1f5f9 | stroke=#e2e8f0@1px"
|
|
2097
|
+
}
|
|
2098
|
+
},
|
|
2099
|
+
"combobox": {
|
|
2100
|
+
"variantKeys": [],
|
|
2101
|
+
"defaultVariantKey": null,
|
|
2102
|
+
"baseClasses": "",
|
|
2103
|
+
"baseColorHint": null,
|
|
2104
|
+
"slotIds": [],
|
|
2105
|
+
"variantClasses": {},
|
|
2106
|
+
"variantColorHints": {}
|
|
2107
|
+
},
|
|
2108
|
+
"copyButton": {
|
|
2109
|
+
"variantKeys": [
|
|
2110
|
+
"default",
|
|
2111
|
+
"label"
|
|
2112
|
+
],
|
|
2113
|
+
"defaultVariantKey": "default",
|
|
2114
|
+
"baseClasses": "",
|
|
2115
|
+
"baseColorHint": null,
|
|
2116
|
+
"slotIds": [],
|
|
2117
|
+
"variantClasses": {
|
|
2118
|
+
"default": "",
|
|
2119
|
+
"label": ""
|
|
2120
|
+
},
|
|
2121
|
+
"variantColorHints": {}
|
|
2122
|
+
},
|
|
2123
|
+
"datePicker": {
|
|
2124
|
+
"variantKeys": [],
|
|
2125
|
+
"defaultVariantKey": null,
|
|
2126
|
+
"baseClasses": "",
|
|
2127
|
+
"baseColorHint": null,
|
|
2128
|
+
"slotIds": [],
|
|
2129
|
+
"variantClasses": {},
|
|
2130
|
+
"variantColorHints": {}
|
|
2131
|
+
},
|
|
2132
|
+
"dateRangePicker": {
|
|
2133
|
+
"variantKeys": [],
|
|
2134
|
+
"defaultVariantKey": null,
|
|
2135
|
+
"baseClasses": "",
|
|
2136
|
+
"baseColorHint": null,
|
|
2137
|
+
"slotIds": [],
|
|
2138
|
+
"variantClasses": {},
|
|
2139
|
+
"variantColorHints": {}
|
|
2140
|
+
},
|
|
2141
|
+
"editableField": {
|
|
2142
|
+
"variantKeys": [
|
|
2143
|
+
"default"
|
|
2144
|
+
],
|
|
2145
|
+
"defaultVariantKey": "default",
|
|
2146
|
+
"baseClasses": "w-full p-0",
|
|
2147
|
+
"baseColorHint": null,
|
|
2148
|
+
"slotIds": [],
|
|
2149
|
+
"variantClasses": {
|
|
2150
|
+
"default": "w-full p-0"
|
|
2151
|
+
},
|
|
2152
|
+
"variantColorHints": {}
|
|
2153
|
+
},
|
|
2154
|
+
"fileUploader": {
|
|
985
2155
|
"variantKeys": [
|
|
986
2156
|
"default"
|
|
987
2157
|
],
|
|
@@ -997,264 +2167,334 @@ export const componentStyleHints = {
|
|
|
997
2167
|
},
|
|
998
2168
|
"variantColorHints": {}
|
|
999
2169
|
},
|
|
1000
|
-
"
|
|
2170
|
+
"filterButton": {
|
|
1001
2171
|
"variantKeys": [
|
|
1002
|
-
"
|
|
2172
|
+
"default",
|
|
2173
|
+
"selected",
|
|
2174
|
+
"popover"
|
|
1003
2175
|
],
|
|
1004
|
-
"defaultVariantKey": "
|
|
1005
|
-
"baseClasses": "flex flex-col
|
|
1006
|
-
"baseColorHint": "
|
|
2176
|
+
"defaultVariantKey": "default",
|
|
2177
|
+
"baseClasses": "flex flex-col items-center h-9 py-2 px-3 gap-2 rounded-md border",
|
|
2178
|
+
"baseColorHint": "stroke=#e2e8f0@1px",
|
|
1007
2179
|
"slotIds": [
|
|
1008
|
-
"
|
|
1009
|
-
"
|
|
2180
|
+
"filterButtonIcon",
|
|
2181
|
+
"filterButtonLabel"
|
|
1010
2182
|
],
|
|
1011
2183
|
"variantClasses": {
|
|
1012
|
-
"
|
|
2184
|
+
"default": "flex flex-col items-center h-9 py-2 px-3 gap-2 rounded-md border",
|
|
2185
|
+
"selected": "flex flex-col items-center h-9 py-2 px-3 gap-2 rounded-md border",
|
|
2186
|
+
"popover": "flex flex-col w-[200px] rounded-lg border"
|
|
1013
2187
|
},
|
|
1014
2188
|
"variantColorHints": {
|
|
1015
|
-
"
|
|
2189
|
+
"default": "stroke=#e2e8f0@1px",
|
|
2190
|
+
"selected": "stroke=#e2e8f0@1px",
|
|
2191
|
+
"popover": "fill=#ffffff | stroke=#e2e8f0@1px"
|
|
2192
|
+
}
|
|
2193
|
+
},
|
|
2194
|
+
"form": {
|
|
2195
|
+
"variantKeys": [],
|
|
2196
|
+
"defaultVariantKey": null,
|
|
2197
|
+
"baseClasses": "",
|
|
2198
|
+
"baseColorHint": null,
|
|
2199
|
+
"slotIds": [],
|
|
2200
|
+
"variantClasses": {},
|
|
2201
|
+
"variantColorHints": {}
|
|
2202
|
+
},
|
|
2203
|
+
"input": {
|
|
2204
|
+
"variantKeys": [
|
|
2205
|
+
"default",
|
|
2206
|
+
"placeholder",
|
|
2207
|
+
"disabled"
|
|
2208
|
+
],
|
|
2209
|
+
"defaultVariantKey": "default",
|
|
2210
|
+
"baseClasses": "inline-flex items-center w-[280px] h-9 py-2 px-3 rounded-lg border bg-transparent text-sm font-normal",
|
|
2211
|
+
"baseColorHint": "fill=transparent | stroke=#e2e8f0@1px | text=#0c0c12",
|
|
2212
|
+
"slotIds": [],
|
|
2213
|
+
"variantClasses": {
|
|
2214
|
+
"default": "inline-flex items-center w-[280px] h-9 py-2 px-3 rounded-lg border bg-transparent text-sm font-normal",
|
|
2215
|
+
"placeholder": "inline-flex items-center w-[280px] h-9 py-2 px-3 rounded-lg border bg-transparent text-sm font-normal",
|
|
2216
|
+
"disabled": "inline-flex items-center w-[280px] h-9 py-2 px-3 rounded-lg border text-sm font-normal"
|
|
2217
|
+
},
|
|
2218
|
+
"variantColorHints": {
|
|
2219
|
+
"default": "fill=transparent | stroke=#e2e8f0@1px | text=#0c0c12",
|
|
2220
|
+
"placeholder": "fill=transparent | stroke=#e2e8f0@1px | text=#64748b",
|
|
2221
|
+
"disabled": "fill=#f1f5f9 | stroke=#e2e8f0@1px | text=#94a3b8"
|
|
1016
2222
|
}
|
|
1017
2223
|
},
|
|
1018
|
-
"
|
|
2224
|
+
"inputOTP": {
|
|
2225
|
+
"variantKeys": [],
|
|
2226
|
+
"defaultVariantKey": null,
|
|
2227
|
+
"baseClasses": "",
|
|
2228
|
+
"baseColorHint": null,
|
|
2229
|
+
"slotIds": [],
|
|
2230
|
+
"variantClasses": {},
|
|
2231
|
+
"variantColorHints": {}
|
|
2232
|
+
},
|
|
2233
|
+
"label": {
|
|
2234
|
+
"variantKeys": [],
|
|
2235
|
+
"defaultVariantKey": null,
|
|
2236
|
+
"baseClasses": "",
|
|
2237
|
+
"baseColorHint": null,
|
|
2238
|
+
"slotIds": [],
|
|
2239
|
+
"variantClasses": {},
|
|
2240
|
+
"variantColorHints": {}
|
|
2241
|
+
},
|
|
2242
|
+
"mention": {
|
|
2243
|
+
"variantKeys": [],
|
|
2244
|
+
"defaultVariantKey": null,
|
|
2245
|
+
"baseClasses": "",
|
|
2246
|
+
"baseColorHint": null,
|
|
2247
|
+
"slotIds": [],
|
|
2248
|
+
"variantClasses": {},
|
|
2249
|
+
"variantColorHints": {}
|
|
2250
|
+
},
|
|
2251
|
+
"numberInput": {
|
|
2252
|
+
"variantKeys": [],
|
|
2253
|
+
"defaultVariantKey": null,
|
|
2254
|
+
"baseClasses": "",
|
|
2255
|
+
"baseColorHint": null,
|
|
2256
|
+
"slotIds": [],
|
|
2257
|
+
"variantClasses": {},
|
|
2258
|
+
"variantColorHints": {}
|
|
2259
|
+
},
|
|
2260
|
+
"passwordGroup": {
|
|
2261
|
+
"variantKeys": [],
|
|
2262
|
+
"defaultVariantKey": null,
|
|
2263
|
+
"baseClasses": "",
|
|
2264
|
+
"baseColorHint": null,
|
|
2265
|
+
"slotIds": [],
|
|
2266
|
+
"variantClasses": {},
|
|
2267
|
+
"variantColorHints": {}
|
|
2268
|
+
},
|
|
2269
|
+
"passwordInput": {
|
|
2270
|
+
"variantKeys": [],
|
|
2271
|
+
"defaultVariantKey": null,
|
|
2272
|
+
"baseClasses": "",
|
|
2273
|
+
"baseColorHint": null,
|
|
2274
|
+
"slotIds": [],
|
|
2275
|
+
"variantClasses": {},
|
|
2276
|
+
"variantColorHints": {}
|
|
2277
|
+
},
|
|
2278
|
+
"passwordRequirementList": {
|
|
2279
|
+
"variantKeys": [],
|
|
2280
|
+
"defaultVariantKey": null,
|
|
2281
|
+
"baseClasses": "",
|
|
2282
|
+
"baseColorHint": null,
|
|
2283
|
+
"slotIds": [],
|
|
2284
|
+
"variantClasses": {},
|
|
2285
|
+
"variantColorHints": {}
|
|
2286
|
+
},
|
|
2287
|
+
"passwordStrengthMeter": {
|
|
2288
|
+
"variantKeys": [],
|
|
2289
|
+
"defaultVariantKey": null,
|
|
2290
|
+
"baseClasses": "",
|
|
2291
|
+
"baseColorHint": null,
|
|
2292
|
+
"slotIds": [],
|
|
2293
|
+
"variantClasses": {},
|
|
2294
|
+
"variantColorHints": {}
|
|
2295
|
+
},
|
|
2296
|
+
"phoneInput": {
|
|
2297
|
+
"variantKeys": [],
|
|
2298
|
+
"defaultVariantKey": null,
|
|
2299
|
+
"baseClasses": "",
|
|
2300
|
+
"baseColorHint": null,
|
|
2301
|
+
"slotIds": [],
|
|
2302
|
+
"variantClasses": {},
|
|
2303
|
+
"variantColorHints": {}
|
|
2304
|
+
},
|
|
2305
|
+
"postalCodeInput": {
|
|
2306
|
+
"variantKeys": [],
|
|
2307
|
+
"defaultVariantKey": null,
|
|
2308
|
+
"baseClasses": "",
|
|
2309
|
+
"baseColorHint": null,
|
|
2310
|
+
"slotIds": [],
|
|
2311
|
+
"variantClasses": {},
|
|
2312
|
+
"variantColorHints": {}
|
|
2313
|
+
},
|
|
2314
|
+
"radioGroup": {
|
|
1019
2315
|
"variantKeys": [
|
|
1020
|
-
"
|
|
1021
|
-
|
|
1022
|
-
"defaultVariantKey": "default",
|
|
1023
|
-
"baseClasses": "flex flex-col w-[320px] h-[420px] border",
|
|
1024
|
-
"baseColorHint": "fill=#ffffff | stroke=#e5e7eb@1px",
|
|
1025
|
-
"slotIds": [
|
|
1026
|
-
"inspectorPanelHeader",
|
|
1027
|
-
"inspectorPanelBody"
|
|
2316
|
+
"unchecked",
|
|
2317
|
+
"checked"
|
|
1028
2318
|
],
|
|
2319
|
+
"defaultVariantKey": "unchecked",
|
|
2320
|
+
"baseClasses": "w-4 h-4 rounded-lg border bg-transparent",
|
|
2321
|
+
"baseColorHint": "fill=transparent | stroke=#e2e8f0@1px",
|
|
2322
|
+
"slotIds": [],
|
|
1029
2323
|
"variantClasses": {
|
|
1030
|
-
"
|
|
2324
|
+
"unchecked": "w-4 h-4 rounded-lg border bg-transparent",
|
|
2325
|
+
"checked": "w-4 h-4 rounded-lg border bg-transparent"
|
|
1031
2326
|
},
|
|
1032
2327
|
"variantColorHints": {
|
|
1033
|
-
"
|
|
2328
|
+
"unchecked": "fill=transparent | stroke=#e2e8f0@1px",
|
|
2329
|
+
"checked": "fill=transparent | stroke=#0c0c12@1px"
|
|
1034
2330
|
}
|
|
1035
2331
|
},
|
|
1036
|
-
"
|
|
2332
|
+
"rangeSlider": {
|
|
1037
2333
|
"variantKeys": [
|
|
1038
2334
|
"default"
|
|
1039
2335
|
],
|
|
1040
2336
|
"defaultVariantKey": "default",
|
|
1041
|
-
"baseClasses": "
|
|
1042
|
-
"baseColorHint":
|
|
1043
|
-
"slotIds": [
|
|
1044
|
-
"rightRailHeader",
|
|
1045
|
-
"rightRailItem"
|
|
1046
|
-
],
|
|
2337
|
+
"baseClasses": "w-[240px] h-7",
|
|
2338
|
+
"baseColorHint": null,
|
|
2339
|
+
"slotIds": [],
|
|
1047
2340
|
"variantClasses": {
|
|
1048
|
-
"default": "
|
|
2341
|
+
"default": "w-[240px] h-7"
|
|
1049
2342
|
},
|
|
1050
|
-
"variantColorHints": {
|
|
1051
|
-
"default": "fill=#ffffff | stroke=#e5e7eb@1px"
|
|
1052
|
-
}
|
|
2343
|
+
"variantColorHints": {}
|
|
1053
2344
|
},
|
|
1054
|
-
"
|
|
2345
|
+
"searchInput": {
|
|
2346
|
+
"variantKeys": [],
|
|
2347
|
+
"defaultVariantKey": null,
|
|
2348
|
+
"baseClasses": "",
|
|
2349
|
+
"baseColorHint": null,
|
|
2350
|
+
"slotIds": [],
|
|
2351
|
+
"variantClasses": {},
|
|
2352
|
+
"variantColorHints": {}
|
|
2353
|
+
},
|
|
2354
|
+
"select": {
|
|
1055
2355
|
"variantKeys": [
|
|
1056
2356
|
"default"
|
|
1057
2357
|
],
|
|
1058
2358
|
"defaultVariantKey": "default",
|
|
1059
|
-
"baseClasses": "flex
|
|
1060
|
-
"baseColorHint": "fill
|
|
1061
|
-
"slotIds": [
|
|
1062
|
-
"shareModalHeader",
|
|
1063
|
-
"shareModalContent"
|
|
1064
|
-
],
|
|
2359
|
+
"baseClasses": "inline-flex items-center w-[200px] h-9 py-2 px-3 rounded-lg border bg-transparent text-sm font-normal",
|
|
2360
|
+
"baseColorHint": "fill=transparent | stroke=#e2e8f0@1px | text=#64748b",
|
|
2361
|
+
"slotIds": [],
|
|
1065
2362
|
"variantClasses": {
|
|
1066
|
-
"default": "flex
|
|
2363
|
+
"default": "inline-flex items-center w-[200px] h-9 py-2 px-3 rounded-lg border bg-transparent text-sm font-normal"
|
|
1067
2364
|
},
|
|
1068
2365
|
"variantColorHints": {
|
|
1069
|
-
"default": "fill
|
|
2366
|
+
"default": "fill=transparent | stroke=#e2e8f0@1px | text=#64748b"
|
|
1070
2367
|
}
|
|
1071
2368
|
},
|
|
1072
|
-
"
|
|
2369
|
+
"slider": {
|
|
1073
2370
|
"variantKeys": [
|
|
1074
2371
|
"default"
|
|
1075
2372
|
],
|
|
1076
2373
|
"defaultVariantKey": "default",
|
|
1077
|
-
"baseClasses": "
|
|
1078
|
-
"baseColorHint": "fill=#
|
|
1079
|
-
"slotIds": [
|
|
1080
|
-
"spatialCanvasHint",
|
|
1081
|
-
"spatialCanvasHintDetail"
|
|
1082
|
-
],
|
|
2374
|
+
"baseClasses": "w-[200px] h-5 rounded-[10px]",
|
|
2375
|
+
"baseColorHint": "fill=#e2e8f0",
|
|
2376
|
+
"slotIds": [],
|
|
1083
2377
|
"variantClasses": {
|
|
1084
|
-
"default": "
|
|
2378
|
+
"default": "w-[200px] h-5 rounded-[10px]"
|
|
1085
2379
|
},
|
|
1086
2380
|
"variantColorHints": {
|
|
1087
|
-
"default": "fill=#
|
|
2381
|
+
"default": "fill=#e2e8f0"
|
|
1088
2382
|
}
|
|
1089
2383
|
},
|
|
1090
|
-
"
|
|
1091
|
-
"variantKeys": [
|
|
1092
|
-
"default"
|
|
1093
|
-
],
|
|
1094
|
-
"defaultVariantKey": "default",
|
|
1095
|
-
"baseClasses": "flex flex-col items-center w-[320px] gap-2",
|
|
1096
|
-
"baseColorHint": null,
|
|
1097
|
-
"slotIds": [
|
|
1098
|
-
"toastProviderStack",
|
|
1099
|
-
"toastProviderDefaultDuration",
|
|
1100
|
-
"toastProviderExitDelay"
|
|
1101
|
-
],
|
|
1102
|
-
"variantClasses": {
|
|
1103
|
-
"default": "flex flex-col items-center w-[320px] gap-2"
|
|
1104
|
-
},
|
|
1105
|
-
"variantColorHints": {}
|
|
1106
|
-
}
|
|
1107
|
-
},
|
|
1108
|
-
"templates": {
|
|
1109
|
-
"authTemplate": {
|
|
2384
|
+
"sortButton": {
|
|
1110
2385
|
"variantKeys": [
|
|
1111
|
-
"
|
|
2386
|
+
"none",
|
|
2387
|
+
"asc",
|
|
2388
|
+
"desc"
|
|
1112
2389
|
],
|
|
1113
|
-
"defaultVariantKey": "
|
|
1114
|
-
"baseClasses": "flex flex-col
|
|
2390
|
+
"defaultVariantKey": "none",
|
|
2391
|
+
"baseClasses": "flex flex-col items-center h-9 py-2 px-3 gap-2 rounded-md",
|
|
1115
2392
|
"baseColorHint": null,
|
|
1116
2393
|
"slotIds": [
|
|
1117
|
-
"
|
|
1118
|
-
"
|
|
1119
|
-
],
|
|
1120
|
-
"variantClasses": {
|
|
1121
|
-
"default": "flex flex-col w-[1280px] h-[720px]"
|
|
1122
|
-
},
|
|
1123
|
-
"variantColorHints": {}
|
|
1124
|
-
},
|
|
1125
|
-
"bannalyzeTemplate": {
|
|
1126
|
-
"variantKeys": [
|
|
1127
|
-
"default"
|
|
1128
|
-
],
|
|
1129
|
-
"defaultVariantKey": "default",
|
|
1130
|
-
"baseClasses": "flex flex-col w-[1280px] h-[720px]",
|
|
1131
|
-
"baseColorHint": "fill=#ffffff",
|
|
1132
|
-
"slotIds": [
|
|
1133
|
-
"bannalyzeTemplateHeader",
|
|
1134
|
-
"bannalyzeTemplateBody"
|
|
2394
|
+
"sortButtonIcon",
|
|
2395
|
+
"sortButtonLabel"
|
|
1135
2396
|
],
|
|
1136
2397
|
"variantClasses": {
|
|
1137
|
-
"
|
|
2398
|
+
"none": "flex flex-col items-center h-9 py-2 px-3 gap-2 rounded-md",
|
|
2399
|
+
"asc": "flex flex-col items-center h-9 py-2 px-3 gap-2 rounded-md",
|
|
2400
|
+
"desc": "flex flex-col items-center h-9 py-2 px-3 gap-2 rounded-md"
|
|
1138
2401
|
},
|
|
1139
2402
|
"variantColorHints": {
|
|
1140
|
-
"
|
|
2403
|
+
"asc": "fill=#eef2ff",
|
|
2404
|
+
"desc": "fill=#fff7ed"
|
|
1141
2405
|
}
|
|
1142
2406
|
},
|
|
1143
|
-
"
|
|
2407
|
+
"switch": {
|
|
1144
2408
|
"variantKeys": [
|
|
1145
|
-
"
|
|
1146
|
-
|
|
1147
|
-
"defaultVariantKey": "default",
|
|
1148
|
-
"baseClasses": "flex flex-col w-[1280px] h-[720px]",
|
|
1149
|
-
"baseColorHint": "fill=#ffffff",
|
|
1150
|
-
"slotIds": [
|
|
1151
|
-
"chatTemplateSidebarList",
|
|
1152
|
-
"chatTemplateMainArea",
|
|
1153
|
-
"chatTemplateSidebarDetail"
|
|
2409
|
+
"unchecked",
|
|
2410
|
+
"checked"
|
|
1154
2411
|
],
|
|
2412
|
+
"defaultVariantKey": "unchecked",
|
|
2413
|
+
"baseClasses": "w-11 h-6 p-0.5 rounded-full",
|
|
2414
|
+
"baseColorHint": "fill=#f1f5f9",
|
|
2415
|
+
"slotIds": [],
|
|
1155
2416
|
"variantClasses": {
|
|
1156
|
-
"
|
|
2417
|
+
"unchecked": "w-11 h-6 p-0.5 rounded-full",
|
|
2418
|
+
"checked": "w-11 h-6 p-0.5 rounded-full"
|
|
1157
2419
|
},
|
|
1158
2420
|
"variantColorHints": {
|
|
1159
|
-
"
|
|
2421
|
+
"unchecked": "fill=#f1f5f9",
|
|
2422
|
+
"checked": "fill=#0c0c12"
|
|
1160
2423
|
}
|
|
1161
2424
|
},
|
|
1162
|
-
"
|
|
1163
|
-
"variantKeys": [
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
"defaultVariantKey": "default",
|
|
1167
|
-
"baseClasses": "flex flex-col w-[1280px] h-[720px]",
|
|
2425
|
+
"tagInput": {
|
|
2426
|
+
"variantKeys": [],
|
|
2427
|
+
"defaultVariantKey": null,
|
|
2428
|
+
"baseClasses": "",
|
|
1168
2429
|
"baseColorHint": null,
|
|
1169
|
-
"slotIds": [
|
|
1170
|
-
|
|
1171
|
-
"dashboardTemplateBody"
|
|
1172
|
-
],
|
|
1173
|
-
"variantClasses": {
|
|
1174
|
-
"default": "flex flex-col w-[1280px] h-[720px]"
|
|
1175
|
-
},
|
|
2430
|
+
"slotIds": [],
|
|
2431
|
+
"variantClasses": {},
|
|
1176
2432
|
"variantColorHints": {}
|
|
1177
2433
|
},
|
|
1178
|
-
"
|
|
2434
|
+
"textarea": {
|
|
1179
2435
|
"variantKeys": [
|
|
1180
|
-
"default"
|
|
2436
|
+
"default",
|
|
2437
|
+
"disabled"
|
|
1181
2438
|
],
|
|
1182
2439
|
"defaultVariantKey": "default",
|
|
1183
|
-
"baseClasses": "flex
|
|
1184
|
-
"baseColorHint":
|
|
1185
|
-
"slotIds": [
|
|
1186
|
-
"editorTemplateTopBar",
|
|
1187
|
-
"editorTemplateBody"
|
|
1188
|
-
],
|
|
2440
|
+
"baseClasses": "inline-flex items-center w-[280px] h-20 py-2 px-3 rounded-lg border bg-transparent text-sm font-normal",
|
|
2441
|
+
"baseColorHint": "fill=transparent | stroke=#e2e8f0@1px | text=#64748b",
|
|
2442
|
+
"slotIds": [],
|
|
1189
2443
|
"variantClasses": {
|
|
1190
|
-
"default": "flex
|
|
2444
|
+
"default": "inline-flex items-center w-[280px] h-20 py-2 px-3 rounded-lg border bg-transparent text-sm font-normal",
|
|
2445
|
+
"disabled": "inline-flex items-center w-[280px] h-20 py-2 px-3 rounded-lg border text-sm font-normal"
|
|
1191
2446
|
},
|
|
1192
|
-
"variantColorHints": {
|
|
2447
|
+
"variantColorHints": {
|
|
2448
|
+
"default": "fill=transparent | stroke=#e2e8f0@1px | text=#64748b",
|
|
2449
|
+
"disabled": "fill=#f1f5f9 | stroke=#e2e8f0@1px | text=#94a3b8"
|
|
2450
|
+
}
|
|
1193
2451
|
},
|
|
1194
|
-
"
|
|
1195
|
-
"variantKeys": [
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
"defaultVariantKey": "default",
|
|
1199
|
-
"baseClasses": "flex flex-col w-[1280px] h-[720px]",
|
|
2452
|
+
"timePicker": {
|
|
2453
|
+
"variantKeys": [],
|
|
2454
|
+
"defaultVariantKey": null,
|
|
2455
|
+
"baseClasses": "",
|
|
1200
2456
|
"baseColorHint": null,
|
|
1201
|
-
"slotIds": [
|
|
1202
|
-
|
|
1203
|
-
"kanbanTemplateMain"
|
|
1204
|
-
],
|
|
1205
|
-
"variantClasses": {
|
|
1206
|
-
"default": "flex flex-col w-[1280px] h-[720px]"
|
|
1207
|
-
},
|
|
2457
|
+
"slotIds": [],
|
|
2458
|
+
"variantClasses": {},
|
|
1208
2459
|
"variantColorHints": {}
|
|
1209
2460
|
},
|
|
1210
|
-
"
|
|
1211
|
-
"variantKeys": [
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
"defaultVariantKey": "default",
|
|
1215
|
-
"baseClasses": "flex flex-col w-[1280px] h-[720px]",
|
|
2461
|
+
"toggle": {
|
|
2462
|
+
"variantKeys": [],
|
|
2463
|
+
"defaultVariantKey": null,
|
|
2464
|
+
"baseClasses": "",
|
|
1216
2465
|
"baseColorHint": null,
|
|
1217
|
-
"slotIds": [
|
|
1218
|
-
|
|
1219
|
-
"landingTemplateHero",
|
|
1220
|
-
"landingTemplateFeatureSection"
|
|
1221
|
-
],
|
|
1222
|
-
"variantClasses": {
|
|
1223
|
-
"default": "flex flex-col w-[1280px] h-[720px]"
|
|
1224
|
-
},
|
|
2466
|
+
"slotIds": [],
|
|
2467
|
+
"variantClasses": {},
|
|
1225
2468
|
"variantColorHints": {}
|
|
1226
2469
|
},
|
|
1227
|
-
"
|
|
2470
|
+
"toggleGroup": {
|
|
1228
2471
|
"variantKeys": [
|
|
1229
|
-
"default"
|
|
2472
|
+
"default",
|
|
2473
|
+
"outline"
|
|
1230
2474
|
],
|
|
1231
2475
|
"defaultVariantKey": "default",
|
|
1232
|
-
"baseClasses": "flex
|
|
1233
|
-
"baseColorHint": "fill=#
|
|
1234
|
-
"slotIds": [
|
|
1235
|
-
"mediaLibraryTemplateHeader",
|
|
1236
|
-
"mediaLibraryTemplateBody"
|
|
1237
|
-
],
|
|
2476
|
+
"baseClasses": "inline-flex items-center h-9 py-0 px-3 rounded-lg text-sm font-medium",
|
|
2477
|
+
"baseColorHint": "fill=#f1f5f9 | text=#0c0c12",
|
|
2478
|
+
"slotIds": [],
|
|
1238
2479
|
"variantClasses": {
|
|
1239
|
-
"default": "flex
|
|
2480
|
+
"default": "inline-flex items-center h-9 py-0 px-3 rounded-lg text-sm font-medium",
|
|
2481
|
+
"outline": "inline-flex items-center h-9 py-0 px-3 rounded-lg border bg-transparent text-sm font-medium"
|
|
1240
2482
|
},
|
|
1241
2483
|
"variantColorHints": {
|
|
1242
|
-
"default": "fill=#
|
|
2484
|
+
"default": "fill=#f1f5f9 | text=#0c0c12",
|
|
2485
|
+
"outline": "fill=transparent | stroke=#e2e8f0@1px | text=#0c0c12"
|
|
1243
2486
|
}
|
|
1244
2487
|
},
|
|
1245
|
-
"
|
|
2488
|
+
"tooltipButton": {
|
|
1246
2489
|
"variantKeys": [
|
|
1247
2490
|
"default"
|
|
1248
2491
|
],
|
|
1249
2492
|
"defaultVariantKey": "default",
|
|
1250
|
-
"baseClasses": "
|
|
2493
|
+
"baseClasses": "",
|
|
1251
2494
|
"baseColorHint": null,
|
|
1252
|
-
"slotIds": [
|
|
1253
|
-
"settingsTemplateMobileView",
|
|
1254
|
-
"settingsTemplateDesktopView"
|
|
1255
|
-
],
|
|
2495
|
+
"slotIds": [],
|
|
1256
2496
|
"variantClasses": {
|
|
1257
|
-
"default": "
|
|
2497
|
+
"default": ""
|
|
1258
2498
|
},
|
|
1259
2499
|
"variantColorHints": {}
|
|
1260
2500
|
}
|