@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
package/src/index.ts
CHANGED
|
@@ -3,87 +3,188 @@
|
|
|
3
3
|
* Generated by `npm run design:sync:components`. Do not edit manually.
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
|
-
/**
|
|
7
|
-
export * from './components/
|
|
8
|
-
export * from './components/
|
|
9
|
-
export * from './components/
|
|
10
|
-
export * from './components/
|
|
11
|
-
export * from './components/
|
|
12
|
-
export * from './components/
|
|
13
|
-
export * from './components/
|
|
14
|
-
export * from './components/
|
|
15
|
-
export * from './components/
|
|
16
|
-
export * from './components/
|
|
17
|
-
export * from './components/
|
|
18
|
-
export * from './components/
|
|
19
|
-
export * from './components/
|
|
20
|
-
export * from './components/atoms/Skeleton';
|
|
21
|
-
export * from './components/atoms/Slider';
|
|
22
|
-
export * from './components/atoms/Spinner';
|
|
23
|
-
export * from './components/atoms/Switch';
|
|
24
|
-
export * from './components/atoms/Textarea';
|
|
25
|
-
export * from './components/atoms/ToggleGroup';
|
|
26
|
-
export * from './components/atoms/ToolPill';
|
|
27
|
-
export * from './components/atoms/ButtonVariants';
|
|
6
|
+
/** Patterns */
|
|
7
|
+
export * from './components/patterns/AuthTemplate';
|
|
8
|
+
export * from './components/patterns/BannalyzeTemplate';
|
|
9
|
+
export * from './components/patterns/BlogTemplate';
|
|
10
|
+
export * from './components/patterns/ChatTemplate';
|
|
11
|
+
export * from './components/patterns/DashboardTemplate';
|
|
12
|
+
export * from './components/patterns/DocsTemplate';
|
|
13
|
+
export * from './components/patterns/EditorTemplate';
|
|
14
|
+
export * from './components/patterns/KanbanTemplate';
|
|
15
|
+
export * from './components/patterns/LandingTemplate';
|
|
16
|
+
export * from './components/patterns/MediaLibraryTemplate';
|
|
17
|
+
export * from './components/patterns/OnboardingTemplate';
|
|
18
|
+
export * from './components/patterns/PricingTemplate';
|
|
19
|
+
export * from './components/patterns/SettingsTemplate';
|
|
28
20
|
|
|
29
|
-
/**
|
|
30
|
-
export * from './components/
|
|
31
|
-
export * from './components/
|
|
32
|
-
export * from './components/
|
|
33
|
-
export * from './components/
|
|
34
|
-
export * from './components/
|
|
35
|
-
export * from './components/
|
|
36
|
-
export * from './components/
|
|
37
|
-
export * from './components/
|
|
38
|
-
export * from './components/
|
|
39
|
-
export * from './components/
|
|
40
|
-
export * from './components/
|
|
41
|
-
export * from './components/molecules/FilterButton';
|
|
42
|
-
export * from './components/molecules/Form';
|
|
43
|
-
export * from './components/molecules/HoverCard';
|
|
44
|
-
export * from './components/molecules/List';
|
|
45
|
-
export * from './components/molecules/Menubar';
|
|
46
|
-
export * from './components/molecules/Modal';
|
|
47
|
-
export * from './components/molecules/NotificationCenter';
|
|
48
|
-
export * from './components/molecules/Pagination';
|
|
49
|
-
export * from './components/molecules/Popover';
|
|
50
|
-
export * from './components/molecules/ProgressWidget';
|
|
51
|
-
export * from './components/molecules/Resizable';
|
|
52
|
-
export * from './components/molecules/ScrollArea';
|
|
53
|
-
export * from './components/molecules/Sheet';
|
|
54
|
-
export * from './components/molecules/SidebarItem';
|
|
55
|
-
export * from './components/molecules/SortButton';
|
|
56
|
-
export * from './components/molecules/StatusBar';
|
|
57
|
-
export * from './components/molecules/Stepper';
|
|
58
|
-
export * from './components/molecules/Table';
|
|
59
|
-
export * from './components/molecules/Tabs';
|
|
60
|
-
export * from './components/molecules/Toast';
|
|
61
|
-
export * from './components/molecules/Tooltip';
|
|
21
|
+
/** Feedback */
|
|
22
|
+
export * from './components/feedback/Alert';
|
|
23
|
+
export * from './components/feedback/Banner';
|
|
24
|
+
export * from './components/feedback/NotificationCenter';
|
|
25
|
+
export * from './components/feedback/Progress';
|
|
26
|
+
export * from './components/feedback/ProgressWidget';
|
|
27
|
+
export * from './components/feedback/Spinner';
|
|
28
|
+
export * from './components/feedback/StatusBar';
|
|
29
|
+
export * from './components/feedback/StatusScreen';
|
|
30
|
+
export * from './components/feedback/Stepper';
|
|
31
|
+
export * from './components/feedback/Toast';
|
|
32
|
+
export * from './components/feedback/ToastProvider';
|
|
62
33
|
|
|
63
|
-
/**
|
|
64
|
-
export * from './components/
|
|
65
|
-
export * from './components/
|
|
66
|
-
export * from './components/
|
|
67
|
-
export * from './components/
|
|
68
|
-
export * from './components/
|
|
69
|
-
export * from './components/
|
|
70
|
-
export * from './components/
|
|
71
|
-
export * from './components/
|
|
72
|
-
export * from './components/
|
|
34
|
+
/** Layout */
|
|
35
|
+
export * from './components/layout/AspectRatio';
|
|
36
|
+
export * from './components/layout/AssetInspectorPanel';
|
|
37
|
+
export * from './components/layout/Cluster';
|
|
38
|
+
export * from './components/layout/CollapsiblePanelToggle';
|
|
39
|
+
export * from './components/layout/Container';
|
|
40
|
+
export * from './components/layout/DeviceFrame';
|
|
41
|
+
export * from './components/layout/Grid';
|
|
42
|
+
export * from './components/layout/HStack';
|
|
43
|
+
export * from './components/layout/InspectorPanel';
|
|
44
|
+
export * from './components/layout/MarqueeFrame';
|
|
45
|
+
export * from './components/layout/Resizable';
|
|
46
|
+
export * from './components/layout/ScrollArea';
|
|
47
|
+
export * from './components/layout/SpatialCanvas';
|
|
48
|
+
export * from './components/layout/VStack';
|
|
73
49
|
|
|
74
|
-
/**
|
|
75
|
-
export * from './components/
|
|
76
|
-
export * from './components/
|
|
77
|
-
export * from './components/
|
|
78
|
-
export * from './components/
|
|
79
|
-
export * from './components/
|
|
80
|
-
export * from './components/
|
|
81
|
-
export * from './components/
|
|
82
|
-
export * from './components/
|
|
83
|
-
export * from './components/
|
|
50
|
+
/** Navigation */
|
|
51
|
+
export * from './components/navigation/AppRail';
|
|
52
|
+
export * from './components/navigation/Breadcrumb';
|
|
53
|
+
export * from './components/navigation/Command';
|
|
54
|
+
export * from './components/navigation/CommandPalette';
|
|
55
|
+
export * from './components/navigation/DocumentPager';
|
|
56
|
+
export * from './components/navigation/Footer';
|
|
57
|
+
export * from './components/navigation/Header';
|
|
58
|
+
export * from './components/navigation/Menubar';
|
|
59
|
+
export * from './components/navigation/NavigationMenu';
|
|
60
|
+
export * from './components/navigation/PageAside';
|
|
61
|
+
export * from './components/navigation/Pagination';
|
|
62
|
+
export * from './components/navigation/RightRail';
|
|
63
|
+
export * from './components/navigation/Sidebar';
|
|
64
|
+
export * from './components/navigation/SidebarItem';
|
|
65
|
+
export * from './components/navigation/Tabs';
|
|
66
|
+
export * from './components/navigation/TextLink';
|
|
67
|
+
|
|
68
|
+
/** Overlay */
|
|
69
|
+
export * from './components/overlay/AlertDialog';
|
|
70
|
+
export * from './components/overlay/ChatPanel';
|
|
71
|
+
export * from './components/overlay/ContextMenu';
|
|
72
|
+
export * from './components/overlay/Dialog';
|
|
73
|
+
export * from './components/overlay/Drawer';
|
|
74
|
+
export * from './components/overlay/DropdownMenu';
|
|
75
|
+
export * from './components/overlay/FloatingPanel';
|
|
76
|
+
export * from './components/overlay/HoverCard';
|
|
77
|
+
export * from './components/overlay/MediaLightbox';
|
|
78
|
+
export * from './components/overlay/MediaPickerDialog';
|
|
79
|
+
export * from './components/overlay/Modal';
|
|
80
|
+
export * from './components/overlay/OnboardingFlow';
|
|
81
|
+
export * from './components/overlay/Popover';
|
|
82
|
+
export * from './components/overlay/ShareModal';
|
|
83
|
+
export * from './components/overlay/Sheet';
|
|
84
|
+
export * from './components/overlay/Tooltip';
|
|
85
|
+
|
|
86
|
+
/** Display */
|
|
87
|
+
export * from './components/display/Accordion';
|
|
88
|
+
export * from './components/display/AccordionGroup';
|
|
89
|
+
export * from './components/display/ActionDataTable';
|
|
90
|
+
export * from './components/display/ActivityTimelineCard';
|
|
91
|
+
export * from './components/display/AnalyticsCard';
|
|
92
|
+
export * from './components/display/AssetCard';
|
|
93
|
+
export * from './components/display/AssetGrid';
|
|
94
|
+
export * from './components/display/Avatar';
|
|
95
|
+
export * from './components/display/AvatarGroup';
|
|
96
|
+
export * from './components/display/Badge';
|
|
97
|
+
export * from './components/display/BarChart';
|
|
98
|
+
export * from './components/display/Card';
|
|
99
|
+
export * from './components/display/Carousel';
|
|
100
|
+
export * from './components/display/ChartLegend';
|
|
101
|
+
export * from './components/display/ChatMessage';
|
|
102
|
+
export * from './components/display/ChoroplethMap';
|
|
103
|
+
export * from './components/display/Code';
|
|
104
|
+
export * from './components/display/CodeBlock';
|
|
105
|
+
export * from './components/display/ColorSwatch';
|
|
106
|
+
export * from './components/display/ConcentricProgressCard';
|
|
107
|
+
export * from './components/display/DataTable';
|
|
108
|
+
export * from './components/display/DistributionBar';
|
|
109
|
+
export * from './components/display/DocNote';
|
|
110
|
+
export * from './components/display/DonutChart';
|
|
111
|
+
export * from './components/display/EmptyState';
|
|
112
|
+
export * from './components/display/FileTree';
|
|
113
|
+
export * from './components/display/GaugeChart';
|
|
114
|
+
export * from './components/display/HeatmapChart';
|
|
115
|
+
export * from './components/display/Icon';
|
|
116
|
+
export * from './components/display/ImagePreview';
|
|
117
|
+
export * from './components/display/Img';
|
|
118
|
+
export * from './components/display/Kbd';
|
|
119
|
+
export * from './components/display/LabeledDonutCard';
|
|
120
|
+
export * from './components/display/LineChart';
|
|
121
|
+
export * from './components/display/List';
|
|
122
|
+
export * from './components/display/MarkdownRenderer';
|
|
123
|
+
export * from './components/display/MetadataList';
|
|
124
|
+
export * from './components/display/MiniDistributionBarCard';
|
|
125
|
+
export * from './components/display/PieChart';
|
|
126
|
+
export * from './components/display/QuadrantMatrix';
|
|
127
|
+
export * from './components/display/RadarChart';
|
|
128
|
+
export * from './components/display/RadialBarChart';
|
|
129
|
+
export * from './components/display/RetentionCohortCard';
|
|
130
|
+
export * from './components/display/RibbonChart';
|
|
131
|
+
export * from './components/display/SearchableAccordion';
|
|
132
|
+
export * from './components/display/SegmentedGaugeCard';
|
|
133
|
+
export * from './components/display/SegmentTimelineCard';
|
|
134
|
+
export * from './components/display/Separator';
|
|
135
|
+
export * from './components/display/Skeleton';
|
|
136
|
+
export * from './components/display/Spacer';
|
|
137
|
+
export * from './components/display/SparklineChart';
|
|
138
|
+
export * from './components/display/StackedBarChart';
|
|
139
|
+
export * from './components/display/Statistic';
|
|
140
|
+
export * from './components/display/Table';
|
|
141
|
+
export * from './components/display/Tag';
|
|
142
|
+
export * from './components/display/TagEditor';
|
|
143
|
+
export * from './components/display/Timeline';
|
|
144
|
+
export * from './components/display/ToolPill';
|
|
145
|
+
export * from './components/display/TreeView';
|
|
146
|
+
|
|
147
|
+
/** Inputs */
|
|
148
|
+
export * from './components/inputs/Button';
|
|
149
|
+
export * from './components/inputs/Calendar';
|
|
150
|
+
export * from './components/inputs/ChatComposer';
|
|
151
|
+
export * from './components/inputs/ChatInput';
|
|
152
|
+
export * from './components/inputs/Checkbox';
|
|
153
|
+
export * from './components/inputs/Combobox';
|
|
154
|
+
export * from './components/inputs/CopyButton';
|
|
155
|
+
export * from './components/inputs/DatePicker';
|
|
156
|
+
export * from './components/inputs/DateRangePicker';
|
|
157
|
+
export * from './components/inputs/EditableField';
|
|
158
|
+
export * from './components/inputs/FileUploader';
|
|
159
|
+
export * from './components/inputs/FilterButton';
|
|
160
|
+
export * from './components/inputs/Form';
|
|
161
|
+
export * from './components/inputs/Input';
|
|
162
|
+
export * from './components/inputs/InputOTP';
|
|
163
|
+
export * from './components/inputs/Label';
|
|
164
|
+
export * from './components/inputs/Mention';
|
|
165
|
+
export * from './components/inputs/NumberInput';
|
|
166
|
+
export * from './components/inputs/PasswordGroup';
|
|
167
|
+
export * from './components/inputs/PasswordInput';
|
|
168
|
+
export * from './components/inputs/PasswordRequirementList';
|
|
169
|
+
export * from './components/inputs/PasswordStrengthMeter';
|
|
170
|
+
export * from './components/inputs/PhoneInput';
|
|
171
|
+
export * from './components/inputs/PostalCodeInput';
|
|
172
|
+
export * from './components/inputs/RadioGroup';
|
|
173
|
+
export * from './components/inputs/RangeSlider';
|
|
174
|
+
export * from './components/inputs/SearchInput';
|
|
175
|
+
export * from './components/inputs/Select';
|
|
176
|
+
export * from './components/inputs/Slider';
|
|
177
|
+
export * from './components/inputs/SortButton';
|
|
178
|
+
export * from './components/inputs/Switch';
|
|
179
|
+
export * from './components/inputs/TagInput';
|
|
180
|
+
export * from './components/inputs/Textarea';
|
|
181
|
+
export * from './components/inputs/TimePicker';
|
|
182
|
+
export * from './components/inputs/Toggle';
|
|
183
|
+
export * from './components/inputs/ToggleGroup';
|
|
184
|
+
export * from './components/inputs/TooltipButton';
|
|
185
|
+
export * from './components/inputs/ButtonVariants';
|
|
84
186
|
|
|
85
187
|
/** Utility */
|
|
86
188
|
export { cn } from './lib/utils';
|
|
87
189
|
export { componentManifest } from './components/generated/component-manifest';
|
|
88
190
|
export { componentStyleHints } from './components/generated/component-style-hints';
|
|
89
|
-
|
|
@@ -4,22 +4,56 @@ module.exports = {
|
|
|
4
4
|
input: "hsl(var(--input))",
|
|
5
5
|
ring: "hsl(var(--ring))",
|
|
6
6
|
overlay: "hsl(var(--overlay))",
|
|
7
|
-
info: "hsl(var(--info))",
|
|
8
|
-
success: "hsl(var(--success))",
|
|
9
|
-
warning: "hsl(var(--warning))",
|
|
10
7
|
background: "hsl(var(--background))",
|
|
11
8
|
foreground: "hsl(var(--foreground))",
|
|
12
9
|
primary: {
|
|
10
|
+
subtle: "hsl(var(--primary-subtle))",
|
|
11
|
+
"subtle-foreground": "hsl(var(--primary-subtle-foreground))",
|
|
13
12
|
DEFAULT: "hsl(var(--primary))",
|
|
14
13
|
foreground: "hsl(var(--primary-foreground))",
|
|
14
|
+
strong: "hsl(var(--primary-strong))",
|
|
15
|
+
"strong-foreground": "hsl(var(--primary-strong-foreground))",
|
|
16
|
+
border: "hsl(var(--primary-border))",
|
|
17
|
+
},
|
|
18
|
+
info: {
|
|
19
|
+
subtle: "hsl(var(--info-subtle))",
|
|
20
|
+
"subtle-foreground": "hsl(var(--info-subtle-foreground))",
|
|
21
|
+
DEFAULT: "hsl(var(--info))",
|
|
22
|
+
foreground: "hsl(var(--info-foreground))",
|
|
23
|
+
strong: "hsl(var(--info-strong))",
|
|
24
|
+
"strong-foreground": "hsl(var(--info-strong-foreground))",
|
|
25
|
+
border: "hsl(var(--info-border))",
|
|
26
|
+
},
|
|
27
|
+
success: {
|
|
28
|
+
subtle: "hsl(var(--success-subtle))",
|
|
29
|
+
"subtle-foreground": "hsl(var(--success-subtle-foreground))",
|
|
30
|
+
DEFAULT: "hsl(var(--success))",
|
|
31
|
+
foreground: "hsl(var(--success-foreground))",
|
|
32
|
+
strong: "hsl(var(--success-strong))",
|
|
33
|
+
"strong-foreground": "hsl(var(--success-strong-foreground))",
|
|
34
|
+
border: "hsl(var(--success-border))",
|
|
35
|
+
},
|
|
36
|
+
warning: {
|
|
37
|
+
subtle: "hsl(var(--warning-subtle))",
|
|
38
|
+
"subtle-foreground": "hsl(var(--warning-subtle-foreground))",
|
|
39
|
+
DEFAULT: "hsl(var(--warning))",
|
|
40
|
+
foreground: "hsl(var(--warning-foreground))",
|
|
41
|
+
strong: "hsl(var(--warning-strong))",
|
|
42
|
+
"strong-foreground": "hsl(var(--warning-strong-foreground))",
|
|
43
|
+
border: "hsl(var(--warning-border))",
|
|
15
44
|
},
|
|
16
45
|
secondary: {
|
|
17
46
|
DEFAULT: "hsl(var(--secondary))",
|
|
18
47
|
foreground: "hsl(var(--secondary-foreground))",
|
|
19
48
|
},
|
|
20
49
|
destructive: {
|
|
50
|
+
subtle: "hsl(var(--destructive-subtle))",
|
|
51
|
+
"subtle-foreground": "hsl(var(--destructive-subtle-foreground))",
|
|
21
52
|
DEFAULT: "hsl(var(--destructive))",
|
|
22
53
|
foreground: "hsl(var(--destructive-foreground))",
|
|
54
|
+
strong: "hsl(var(--destructive-strong))",
|
|
55
|
+
"strong-foreground": "hsl(var(--destructive-strong-foreground))",
|
|
56
|
+
border: "hsl(var(--destructive-border))",
|
|
23
57
|
},
|
|
24
58
|
muted: {
|
|
25
59
|
DEFAULT: "hsl(var(--muted))",
|
|
@@ -37,6 +71,17 @@ module.exports = {
|
|
|
37
71
|
DEFAULT: "hsl(var(--card))",
|
|
38
72
|
foreground: "hsl(var(--card-foreground))",
|
|
39
73
|
},
|
|
74
|
+
palette: {
|
|
75
|
+
red: "hsl(var(--palette-red))",
|
|
76
|
+
green: "hsl(var(--palette-green))",
|
|
77
|
+
blue: "hsl(var(--palette-blue))",
|
|
78
|
+
yellow: "hsl(var(--palette-yellow))",
|
|
79
|
+
cyan: "hsl(var(--palette-cyan))",
|
|
80
|
+
magenta: "hsl(var(--palette-magenta))",
|
|
81
|
+
gray: "hsl(var(--palette-gray))",
|
|
82
|
+
white: "hsl(var(--palette-white))",
|
|
83
|
+
black: "hsl(var(--palette-black))",
|
|
84
|
+
},
|
|
40
85
|
},
|
|
41
86
|
borderRadius: {
|
|
42
87
|
lg: "var(--radius)",
|
|
@@ -1,82 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"button": {
|
|
3
|
-
"title": "Button",
|
|
4
|
-
"description": "Displays a button or a component that looks like a button."
|
|
5
|
-
},
|
|
6
|
-
"input": {
|
|
7
|
-
"title": "Input",
|
|
8
|
-
"description": "Displays a form input field or a component that looks like an input field."
|
|
9
|
-
},
|
|
10
|
-
"badge": {
|
|
11
|
-
"title": "Badge",
|
|
12
|
-
"description": "Displays a badge or a component that looks like a badge."
|
|
13
|
-
},
|
|
14
|
-
"label": {
|
|
15
|
-
"title": "Label",
|
|
16
|
-
"description": "Renders an accessible label associated with controls."
|
|
17
|
-
},
|
|
18
|
-
"checkbox": {
|
|
19
|
-
"title": "Checkbox",
|
|
20
|
-
"description": "A control that allows the user to toggle between checked and not checked."
|
|
21
|
-
},
|
|
22
|
-
"separator": {
|
|
23
|
-
"title": "Separator",
|
|
24
|
-
"description": "Visually or semantically separates content."
|
|
25
|
-
},
|
|
26
|
-
"switch": {
|
|
27
|
-
"title": "Switch",
|
|
28
|
-
"description": "A control that allows the user to toggle between checked and not checked."
|
|
29
|
-
},
|
|
30
|
-
"textarea": {
|
|
31
|
-
"title": "Textarea",
|
|
32
|
-
"description": "Displays a form textarea or a component that looks like a textarea."
|
|
33
|
-
},
|
|
34
|
-
"alert": {
|
|
35
|
-
"title": "Alert",
|
|
36
|
-
"description": "Displays a callout for user attention."
|
|
37
|
-
},
|
|
38
|
-
"avatar": {
|
|
39
|
-
"title": "Avatar",
|
|
40
|
-
"description": "An image element with a fallback for representing the user."
|
|
41
|
-
},
|
|
42
|
-
"kbd": {
|
|
43
|
-
"title": "Kbd",
|
|
44
|
-
"description": "Displays a keyboard shortcut key."
|
|
45
|
-
},
|
|
46
|
-
"img": {
|
|
47
|
-
"title": "Img",
|
|
48
|
-
"description": "An enhanced image component with loading skeleton and error fallback."
|
|
49
|
-
},
|
|
50
|
-
"progress": {
|
|
51
|
-
"title": "Progress",
|
|
52
|
-
"description": "Displays an indicator showing the completion progress of a task, typically displayed as a progress bar."
|
|
53
|
-
},
|
|
54
|
-
"spinner": {
|
|
55
|
-
"title": "Spinner",
|
|
56
|
-
"description": "A visual indicator that content is being loaded."
|
|
57
|
-
},
|
|
58
|
-
"radioGroup": {
|
|
59
|
-
"title": "RadioGroup",
|
|
60
|
-
"description": "A set of checkable buttons—known as radio buttons—where no more than one of the buttons can be checked at a time."
|
|
61
|
-
},
|
|
62
|
-
"slider": {
|
|
63
|
-
"title": "Slider",
|
|
64
|
-
"description": "An input where the user selects a value from within a given range."
|
|
65
|
-
},
|
|
66
|
-
"select": {
|
|
67
|
-
"title": "Select",
|
|
68
|
-
"description": "Displays a list of options for the user to pick from."
|
|
69
|
-
},
|
|
70
|
-
"toggleGroup": {
|
|
71
|
-
"title": "ToggleGroup",
|
|
72
|
-
"description": "A set of two-state buttons that can be toggled on or off."
|
|
73
|
-
},
|
|
74
|
-
"toolPill": {
|
|
75
|
-
"title": "ToolPill",
|
|
76
|
-
"description": "Compact icon pill used for toolbar quick actions with active and danger states."
|
|
77
|
-
},
|
|
78
|
-
"skeleton": {
|
|
79
|
-
"title": "Skeleton",
|
|
80
|
-
"description": "Loading placeholder for content while it is being fetched."
|
|
81
|
-
}
|
|
82
|
-
}
|
|
@@ -1,130 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"card": {
|
|
3
|
-
"title": "Card",
|
|
4
|
-
"description": "Displays a card with header, content, and footer."
|
|
5
|
-
},
|
|
6
|
-
"list": {
|
|
7
|
-
"title": "List",
|
|
8
|
-
"description": "A semantic list component with customizable markers and spacing."
|
|
9
|
-
},
|
|
10
|
-
"accordion": {
|
|
11
|
-
"title": "Accordion",
|
|
12
|
-
"description": "A vertically stacked set of interactive headings that each reveal a section of content."
|
|
13
|
-
},
|
|
14
|
-
"breadcrumb": {
|
|
15
|
-
"title": "Breadcrumb",
|
|
16
|
-
"description": "Displays the path to the current resource using a hierarchy of links."
|
|
17
|
-
},
|
|
18
|
-
"dropdownMenu": {
|
|
19
|
-
"title": "Dropdown Menu",
|
|
20
|
-
"description": "Displays a menu to the user—such as a set of actions or functions—triggered by a button."
|
|
21
|
-
},
|
|
22
|
-
"popover": {
|
|
23
|
-
"title": "Popover",
|
|
24
|
-
"description": "Displays rich content in a portal, triggered by a button."
|
|
25
|
-
},
|
|
26
|
-
"command": {
|
|
27
|
-
"title": "Command",
|
|
28
|
-
"description": "Fast, composable, unstyled command menu for React."
|
|
29
|
-
},
|
|
30
|
-
"calendar": {
|
|
31
|
-
"title": "Calendar",
|
|
32
|
-
"description": "A date field component that allows users to enter and edit date."
|
|
33
|
-
},
|
|
34
|
-
"table": {
|
|
35
|
-
"title": "Table",
|
|
36
|
-
"description": "A responsive table component."
|
|
37
|
-
},
|
|
38
|
-
"tabs": {
|
|
39
|
-
"title": "Tabs",
|
|
40
|
-
"description": "A set of layered sections of content—known as tab panels—that are displayed one at a time."
|
|
41
|
-
},
|
|
42
|
-
"toast": {
|
|
43
|
-
"title": "Toast",
|
|
44
|
-
"description": "Transient feedback message with semantic variants."
|
|
45
|
-
},
|
|
46
|
-
"modal": {
|
|
47
|
-
"title": "Modal",
|
|
48
|
-
"description": "Dialog surface with header, content, and optional footer actions."
|
|
49
|
-
},
|
|
50
|
-
"carousel": {
|
|
51
|
-
"title": "Carousel",
|
|
52
|
-
"description": "Embla-powered slider with keyboard and arrow controls."
|
|
53
|
-
},
|
|
54
|
-
"pagination": {
|
|
55
|
-
"title": "Pagination",
|
|
56
|
-
"description": "Navigation controls for traversing paged content."
|
|
57
|
-
},
|
|
58
|
-
"notificationCenter": {
|
|
59
|
-
"title": "Notification Center",
|
|
60
|
-
"description": "Popover-based inbox for unread activity and quick actions."
|
|
61
|
-
},
|
|
62
|
-
"dialog": {
|
|
63
|
-
"title": "Dialog",
|
|
64
|
-
"description": "Centered modal dialog with overlay, header, and footer actions."
|
|
65
|
-
},
|
|
66
|
-
"sheet": {
|
|
67
|
-
"title": "Sheet",
|
|
68
|
-
"description": "Side panel variant with overlay, heading, and action area."
|
|
69
|
-
},
|
|
70
|
-
"tooltip": {
|
|
71
|
-
"title": "Tooltip",
|
|
72
|
-
"description": "Compact helper text bubble for hover and focus states."
|
|
73
|
-
},
|
|
74
|
-
"hoverCard": {
|
|
75
|
-
"title": "HoverCard",
|
|
76
|
-
"description": "Rich hover content with compact profile-like layout."
|
|
77
|
-
},
|
|
78
|
-
"contextMenu": {
|
|
79
|
-
"title": "ContextMenu",
|
|
80
|
-
"description": "Right-click style action list with labels and nested trigger."
|
|
81
|
-
},
|
|
82
|
-
"menubar": {
|
|
83
|
-
"title": "Menubar",
|
|
84
|
-
"description": "Top application menu with trigger items and nested submenu entry."
|
|
85
|
-
},
|
|
86
|
-
"scrollArea": {
|
|
87
|
-
"title": "ScrollArea",
|
|
88
|
-
"description": "Custom scrollbar container with viewport and thumb controls."
|
|
89
|
-
},
|
|
90
|
-
"resizable": {
|
|
91
|
-
"title": "Resizable",
|
|
92
|
-
"description": "Pane group with draggable handle and optional grip indicator."
|
|
93
|
-
},
|
|
94
|
-
"statusBar": {
|
|
95
|
-
"title": "StatusBar",
|
|
96
|
-
"description": "Bottom fixed utility bar with left, center and right regions."
|
|
97
|
-
},
|
|
98
|
-
"sidebarItem": {
|
|
99
|
-
"title": "SidebarItem",
|
|
100
|
-
"description": "Nested sidebar row with chevron, icon, label, and counter area."
|
|
101
|
-
},
|
|
102
|
-
"aiChatInput": {
|
|
103
|
-
"title": "AIChatInput",
|
|
104
|
-
"description": "Composer row with attachments, autosizing textarea, and send/stop actions."
|
|
105
|
-
},
|
|
106
|
-
"aiChatMessage": {
|
|
107
|
-
"title": "AIChatMessage",
|
|
108
|
-
"description": "Chat row for user/assistant with avatar, bubble, and action controls."
|
|
109
|
-
},
|
|
110
|
-
"filterButton": {
|
|
111
|
-
"title": "FilterButton",
|
|
112
|
-
"description": "Filter trigger with dashed border, count badge, and command popover list."
|
|
113
|
-
},
|
|
114
|
-
"sortButton": {
|
|
115
|
-
"title": "SortButton",
|
|
116
|
-
"description": "Three-state sort trigger (none, asc, desc) with icon + text."
|
|
117
|
-
},
|
|
118
|
-
"progressWidget": {
|
|
119
|
-
"title": "ProgressWidget",
|
|
120
|
-
"description": "Metric card showing title, value, progress bar, and optional subtext."
|
|
121
|
-
},
|
|
122
|
-
"stepper": {
|
|
123
|
-
"title": "Stepper",
|
|
124
|
-
"description": "A multi-step progress indicator with completed, current, and upcoming states."
|
|
125
|
-
},
|
|
126
|
-
"form": {
|
|
127
|
-
"title": "Form",
|
|
128
|
-
"description": "Compound form primitives: Form / FormField / FormLabel / FormControl / FormDescription / FormMessage."
|
|
129
|
-
}
|
|
130
|
-
}
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"appRail": {
|
|
3
|
-
"title": "App Rail",
|
|
4
|
-
"description": "Primary vertical icon rail used for application-wide navigation."
|
|
5
|
-
},
|
|
6
|
-
"commandPalette": {
|
|
7
|
-
"title": "Command Palette",
|
|
8
|
-
"description": "Global quick-action launcher with grouped commands and keyboard shortcuts."
|
|
9
|
-
},
|
|
10
|
-
"rightRail": {
|
|
11
|
-
"title": "Right Rail",
|
|
12
|
-
"description": "Secondary side panel for contextual tools and inspector content."
|
|
13
|
-
},
|
|
14
|
-
"floatingPanel": {
|
|
15
|
-
"title": "Floating Panel",
|
|
16
|
-
"description": "Animated floating container for transient UI surfaces."
|
|
17
|
-
},
|
|
18
|
-
"inspectorPanel": {
|
|
19
|
-
"title": "Inspector Panel",
|
|
20
|
-
"description": "Structured side panel for detailed property editing."
|
|
21
|
-
},
|
|
22
|
-
"spatialCanvas": {
|
|
23
|
-
"title": "Spatial Canvas",
|
|
24
|
-
"description": "Large grid-based interaction surface for node and layout editing."
|
|
25
|
-
},
|
|
26
|
-
"shareModal": {
|
|
27
|
-
"title": "Share Modal",
|
|
28
|
-
"description": "Dialog for toggling public access and copying shareable URLs."
|
|
29
|
-
},
|
|
30
|
-
"fileUploader": {
|
|
31
|
-
"title": "File Uploader",
|
|
32
|
-
"description": "Drag-and-drop file intake with compact list rendering."
|
|
33
|
-
},
|
|
34
|
-
"toastProvider": {
|
|
35
|
-
"title": "Toast Provider",
|
|
36
|
-
"description": "Global toast stack manager for showing transient feedback messages."
|
|
37
|
-
}
|
|
38
|
-
}
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"dashboardTemplate": {
|
|
3
|
-
"title": "Dashboard Template",
|
|
4
|
-
"description": "Two-column dashboard shell with optional header and sidebar."
|
|
5
|
-
},
|
|
6
|
-
"editorTemplate": {
|
|
7
|
-
"title": "Editor Template",
|
|
8
|
-
"description": "Panel-based editing layout with top bar and side docks."
|
|
9
|
-
},
|
|
10
|
-
"landingTemplate": {
|
|
11
|
-
"title": "Landing Template",
|
|
12
|
-
"description": "Marketing page skeleton with sticky header and section rhythm."
|
|
13
|
-
},
|
|
14
|
-
"authTemplate": {
|
|
15
|
-
"title": "Auth Template",
|
|
16
|
-
"description": "Split authentication layout with branded panel and centered form."
|
|
17
|
-
},
|
|
18
|
-
"kanbanTemplate": {
|
|
19
|
-
"title": "Kanban Template",
|
|
20
|
-
"description": "Board workflow shell with optional sidebar and horizontal columns."
|
|
21
|
-
},
|
|
22
|
-
"chatTemplate": {
|
|
23
|
-
"title": "Chat Template",
|
|
24
|
-
"description": "Conversation layout with channel rail, message area, and detail pane."
|
|
25
|
-
},
|
|
26
|
-
"settingsTemplate": {
|
|
27
|
-
"title": "Settings Template",
|
|
28
|
-
"description": "Responsive settings layout with mobile stack and desktop split view."
|
|
29
|
-
},
|
|
30
|
-
"bannalyzeTemplate": {
|
|
31
|
-
"title": "Bannalyze Template",
|
|
32
|
-
"description": "Three-region analysis workspace with center canvas and side inspectors."
|
|
33
|
-
},
|
|
34
|
-
"mediaLibraryTemplate": {
|
|
35
|
-
"title": "Media Library Template",
|
|
36
|
-
"description": "Asset management workspace with folders, grid area, and details pane."
|
|
37
|
-
}
|
|
38
|
-
}
|