@sdvf23rvfa43f/stealth-glass 1.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/chunk-5IRVGRFN.js +237 -0
- package/dist/chunk-5IRVGRFN.js.map +1 -0
- package/dist/chunk-62HIMTUS.js +10343 -0
- package/dist/chunk-62HIMTUS.js.map +1 -0
- package/dist/components/index.d.ts +2032 -0
- package/dist/components/index.js +4 -0
- package/dist/components/index.js.map +1 -0
- package/dist/design-tokens.d.ts +215 -0
- package/dist/design-tokens.js +3 -0
- package/dist/design-tokens.js.map +1 -0
- package/dist/index.d.ts +20 -0
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -0
- package/dist/stealth-glass-theme.css +494 -0
- package/package.json +132 -0
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, ActivityHeatmap, Alert, AlertActions, AlertDescription, AlertRuleEditor, AlertTitle, AmbientBackground, AnimatedSection, AppShell, AutoscaleControl, Avatar, AvatarGroup, Badge, Banner, BannerStack, BentoCard, BentoCell, BentoGrid, Breadcrumb, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, BreadcrumbTrail, Button, CacheManager, ChartContainer, ChartGrid, ChartLegend, ChartLegendContent, ChartTooltip, ChartTooltipContent, Checkbox, Checklist, CodeBlock, CommandPalette, ConfirmDialog, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, CopyButton, CopyField, CostForecast, CronEditor, DataTable, DataValue, DateTimePicker, DeploymentList, DescriptionItem, DescriptionList, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DiffViewer, Divider, DomainManager, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerTitle, DrawerTrigger, DropZone, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EmptyState, EnvManager, ErrorState, FileBrowser, FilterBar, FormActions, FormError, FormField, FormGroup, FormHelperText, FormLabel, GlassTile, GlobeTracker, HudLabel, InlineCode, Input, Kbd, KeyValueEditor, KeyValueRow, LatencyRadar, LoadingState, LogLevelBadge, LogLine, LogTerminal, LogViewer, NotificationBell, NotificationCenter, NumberInput, PageShell, Pagination, PermissionMatrix, Pipeline, PodHoneycomb, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, PricingCard, Progress, RadioGroup, RadioItem, RangeSlider, RecommendationCard, RequestBuilder, ResourceGauge, RevealAction, RevealGroup, ScrollArea, ScrollBar, SearchInput, SecretField, SectionDot, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectSeparator, SelectTrigger, SelectValue, ServiceMap, Skeleton, SkeletonCircle, SkeletonText, Slider, Sparkline, SparklineBar, SparklineStat, StatCard, StatGrid, StatusBadge, StatusDot, StatusIndicator, StealthHeader, StealthSidebar, StealthToaster, StepIndicator, StepWizard, Switch, Tabs, TabsContent, TabsList, TabsTrigger, Tag, TagInput, Terminal, Textarea, TimeRangePicker, Timeline, TimelineItem, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TraceWaterfall, TrafficSplitter, UsageMeter, buttonVariants, chartAxisStyle, createTriggerClass, useCommandPalette, useFormField } from '../chunk-62HIMTUS.js';
|
|
2
|
+
import '../chunk-5IRVGRFN.js';
|
|
3
|
+
//# sourceMappingURL=index.js.map
|
|
4
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","file":"index.js"}
|
|
@@ -0,0 +1,215 @@
|
|
|
1
|
+
declare const colors: {
|
|
2
|
+
/** Backgrounds — Depth layers from deepest to brightest */
|
|
3
|
+
readonly bg: {
|
|
4
|
+
readonly void: "#0B0E14";
|
|
5
|
+
readonly subtle: "#0D0F13";
|
|
6
|
+
readonly surface: "#0E1119";
|
|
7
|
+
readonly elevated: "#12151B";
|
|
8
|
+
readonly highlight: "#1A1E26";
|
|
9
|
+
};
|
|
10
|
+
/** Text — 3-level hierarchy */
|
|
11
|
+
readonly text: {
|
|
12
|
+
readonly primary: "#EDEDEF";
|
|
13
|
+
readonly secondary: "#9A92B1";
|
|
14
|
+
readonly muted: "#535C6B";
|
|
15
|
+
};
|
|
16
|
+
/** Borders — Opacity-based for glass effect */
|
|
17
|
+
readonly border: {
|
|
18
|
+
readonly default: "#252C41";
|
|
19
|
+
readonly subtle: "rgba(255, 255, 255, 0.05)";
|
|
20
|
+
readonly hover: "rgba(255, 255, 255, 0.10)";
|
|
21
|
+
readonly active: "rgba(255, 255, 255, 0.15)";
|
|
22
|
+
/** The inner "cut edge" shadow for depth */
|
|
23
|
+
readonly inset: "rgba(255, 255, 255, 0.02)";
|
|
24
|
+
readonly insetHover: "rgba(255, 255, 255, 0.05)";
|
|
25
|
+
};
|
|
26
|
+
/** Brand — Primary accent colors */
|
|
27
|
+
readonly brand: {
|
|
28
|
+
readonly blue: "#3B82F6";
|
|
29
|
+
readonly indigo: "#6366F1";
|
|
30
|
+
readonly purple: "#8B5CF6";
|
|
31
|
+
};
|
|
32
|
+
/** Status — Semantic meaning */
|
|
33
|
+
readonly status: {
|
|
34
|
+
readonly success: "#10B981";
|
|
35
|
+
readonly warning: "#F59E0B";
|
|
36
|
+
readonly danger: "#EF4444";
|
|
37
|
+
readonly info: "#3B82F6";
|
|
38
|
+
readonly away: "#F97316";
|
|
39
|
+
readonly busy: "#EF4444";
|
|
40
|
+
};
|
|
41
|
+
/** Glows — For box-shadow and filter effects */
|
|
42
|
+
readonly glow: {
|
|
43
|
+
readonly blue: "rgba(59, 130, 246, 0.3)";
|
|
44
|
+
readonly indigo: "rgba(99, 102, 241, 0.3)";
|
|
45
|
+
readonly success: "rgba(16, 185, 129, 0.3)";
|
|
46
|
+
readonly warning: "rgba(245, 158, 11, 0.3)";
|
|
47
|
+
readonly danger: "rgba(239, 68, 68, 0.3)";
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
declare const typography: {
|
|
51
|
+
/** Font families */
|
|
52
|
+
readonly font: {
|
|
53
|
+
readonly sans: "'Inter', 'Geist', system-ui, -apple-system, sans-serif";
|
|
54
|
+
readonly mono: "'JetBrains Mono', 'Fira Code', ui-monospace, monospace";
|
|
55
|
+
};
|
|
56
|
+
/** HUD Label — for category/section labels */
|
|
57
|
+
readonly hudLabel: {
|
|
58
|
+
readonly fontSize: "10px";
|
|
59
|
+
readonly fontWeight: 700;
|
|
60
|
+
readonly textTransform: "uppercase";
|
|
61
|
+
readonly letterSpacing: "0.2em";
|
|
62
|
+
readonly color: "#535C6B";
|
|
63
|
+
};
|
|
64
|
+
/** Data Value — for numbers, IPs, dates, prices */
|
|
65
|
+
readonly dataValue: {
|
|
66
|
+
readonly fontFamily: "'JetBrains Mono', 'Fira Code', ui-monospace, monospace";
|
|
67
|
+
readonly fontVariantNumeric: "tabular-nums";
|
|
68
|
+
readonly letterSpacing: "-0.02em";
|
|
69
|
+
readonly color: "#EDEDEF";
|
|
70
|
+
};
|
|
71
|
+
};
|
|
72
|
+
declare const radii: {
|
|
73
|
+
readonly tile: "2rem";
|
|
74
|
+
readonly inner: "1rem";
|
|
75
|
+
readonly button: "9999px";
|
|
76
|
+
readonly input: "0.75rem";
|
|
77
|
+
};
|
|
78
|
+
declare const spacing: {
|
|
79
|
+
readonly gap: {
|
|
80
|
+
readonly mobile: "1rem";
|
|
81
|
+
readonly desktop: "1.5rem";
|
|
82
|
+
};
|
|
83
|
+
readonly containerMax: "1600px";
|
|
84
|
+
};
|
|
85
|
+
declare const motion: {
|
|
86
|
+
readonly duration: {
|
|
87
|
+
readonly fast: 150;
|
|
88
|
+
readonly normal: 300;
|
|
89
|
+
readonly slow: 500;
|
|
90
|
+
readonly cinematic: 700;
|
|
91
|
+
};
|
|
92
|
+
readonly easing: {
|
|
93
|
+
readonly outExpo: "cubic-bezier(0.16, 1, 0.3, 1)";
|
|
94
|
+
readonly spring: {
|
|
95
|
+
readonly type: "spring";
|
|
96
|
+
readonly stiffness: 50;
|
|
97
|
+
readonly damping: 15;
|
|
98
|
+
readonly mass: 1;
|
|
99
|
+
};
|
|
100
|
+
};
|
|
101
|
+
/** Motion (framer-motion) page entry animation */
|
|
102
|
+
readonly staggerContainer: {
|
|
103
|
+
readonly hidden: {
|
|
104
|
+
readonly opacity: 0;
|
|
105
|
+
};
|
|
106
|
+
readonly show: {
|
|
107
|
+
readonly opacity: 1;
|
|
108
|
+
readonly transition: {
|
|
109
|
+
readonly staggerChildren: 0.1;
|
|
110
|
+
readonly delayChildren: 0.1;
|
|
111
|
+
};
|
|
112
|
+
};
|
|
113
|
+
};
|
|
114
|
+
/** Motion item animation: slide up + fade + blur */
|
|
115
|
+
readonly staggerItem: {
|
|
116
|
+
readonly hidden: {
|
|
117
|
+
readonly opacity: 0;
|
|
118
|
+
readonly y: 20;
|
|
119
|
+
readonly filter: "blur(10px)";
|
|
120
|
+
};
|
|
121
|
+
readonly show: {
|
|
122
|
+
readonly opacity: 1;
|
|
123
|
+
readonly y: 0;
|
|
124
|
+
readonly filter: "blur(0px)";
|
|
125
|
+
readonly transition: {
|
|
126
|
+
readonly type: "spring";
|
|
127
|
+
readonly stiffness: 50;
|
|
128
|
+
readonly damping: 15;
|
|
129
|
+
readonly mass: 1;
|
|
130
|
+
};
|
|
131
|
+
};
|
|
132
|
+
};
|
|
133
|
+
};
|
|
134
|
+
declare const shadows: {
|
|
135
|
+
/** Tile inner cut-edge (subtle depth) */
|
|
136
|
+
readonly tileInset: "inset 0 0 0 1px rgba(255,255,255,0.02)";
|
|
137
|
+
readonly tileInsetHover: "inset 0 0 0 1px rgba(255,255,255,0.05)";
|
|
138
|
+
/** CTA button glow */
|
|
139
|
+
readonly ctaGlow: "0 4px 20px rgba(37, 99, 235, 0.3)";
|
|
140
|
+
readonly ctaGlowHover: "0 6px 25px rgba(37, 99, 235, 0.4)";
|
|
141
|
+
/** Deploy button intense glow */
|
|
142
|
+
readonly deployGlow: "0 0 20px rgba(59, 130, 246, 0.4)";
|
|
143
|
+
readonly deployGlowHover: "0 0 30px rgba(59, 130, 246, 0.6)";
|
|
144
|
+
/** Status indicator halos */
|
|
145
|
+
readonly statusOnline: "0 0 8px rgba(52, 211, 153, 0.6)";
|
|
146
|
+
readonly statusOffline: "0 0 8px rgba(239, 68, 68, 0.4)";
|
|
147
|
+
/** Slider thumb glow */
|
|
148
|
+
readonly sliderThumb: "0 0 8px rgba(59, 130, 246, 0.3)";
|
|
149
|
+
/** Dropdown / popover shadow */
|
|
150
|
+
readonly dropdown: "0 16px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05)";
|
|
151
|
+
};
|
|
152
|
+
declare const tw: {
|
|
153
|
+
/** Glass Tile — the primary bento card */
|
|
154
|
+
readonly tile: {
|
|
155
|
+
readonly base: "bg-background border border-white/5 rounded-[2rem] shadow-[inset_0_0_0_1px_rgba(255,255,255,0.02)] backdrop-blur-xl";
|
|
156
|
+
readonly hover: "hover:border-white/10 hover:shadow-[inset_0_0_0_1px_rgba(255,255,255,0.05)] hover:bg-sg-elevated";
|
|
157
|
+
readonly full: "bg-background border border-white/5 rounded-[2rem] shadow-[inset_0_0_0_1px_rgba(255,255,255,0.02)] backdrop-blur-xl hover:border-white/10 hover:shadow-[inset_0_0_0_1px_rgba(255,255,255,0.05)] hover:bg-sg-elevated transition-all duration-300";
|
|
158
|
+
};
|
|
159
|
+
/** Inner surface — nested within tiles */
|
|
160
|
+
readonly inner: {
|
|
161
|
+
readonly base: "bg-white/[0.02] border border-white/5 rounded-xl";
|
|
162
|
+
readonly hover: "hover:bg-white/[0.04] hover:border-white/10";
|
|
163
|
+
readonly full: "bg-white/[0.02] border border-white/5 rounded-xl hover:bg-white/[0.04] hover:border-white/10 transition-all duration-300";
|
|
164
|
+
};
|
|
165
|
+
/** HUD Label */
|
|
166
|
+
readonly label: "text-[10px] font-bold uppercase tracking-[0.2em] text-sg-text-muted";
|
|
167
|
+
/** Data Value (mono) */
|
|
168
|
+
readonly dataValue: "font-mono text-white tracking-tight";
|
|
169
|
+
/** Primary CTA button (T1 · pill) */
|
|
170
|
+
readonly ctaButton: "rounded-full bg-gradient-to-r from-blue-600 to-indigo-600 text-white border border-white/15 shadow-[0_4px_20px_rgba(37,99,235,0.3),inset_0_1px_0_rgba(255,255,255,0.1)] hover:shadow-[0_6px_30px_rgba(37,99,235,0.45),inset_0_1px_0_rgba(255,255,255,0.15)] hover:brightness-110 hover:scale-[1.03] active:scale-[0.97] tracking-wide transition-all";
|
|
171
|
+
/** Ghost/Secondary button (T3 · standard) */
|
|
172
|
+
readonly ghostButton: "rounded-xl bg-sg-highlight/80 backdrop-blur-sm border border-white/[0.06] text-white shadow-[inset_0_0_0_1px_rgba(255,255,255,0.02),inset_0_1px_0_rgba(255,255,255,0.03)] hover:bg-white/[0.08] hover:border-white/[0.12] transition-all";
|
|
173
|
+
/** Input field */
|
|
174
|
+
readonly input: "h-14 bg-card border border-white/5 rounded-xl text-foreground placeholder:text-sg-text-muted/60 focus:border-blue-500/50 focus:bg-sg-elevated focus:ring-blue-500/20 transition-all";
|
|
175
|
+
/** Error alert */
|
|
176
|
+
readonly errorAlert: "bg-red-500/20 border-2 border-red-500/50 rounded-2xl shadow-lg shadow-red-500/20";
|
|
177
|
+
/** Focus shadow (WCAG AA) */
|
|
178
|
+
readonly focusShadow: "focus-visible:shadow-[0_0_0_4px_rgba(59,130,246,0.15)]";
|
|
179
|
+
/** Code block */
|
|
180
|
+
readonly codeBlock: "bg-background font-mono text-sm text-foreground rounded-xl border border-white/5";
|
|
181
|
+
readonly inlineCode: "px-1.5 py-0.5 rounded bg-white/[0.04] border border-white/10 text-sm font-mono text-foreground";
|
|
182
|
+
/** Log viewer */
|
|
183
|
+
readonly logLine: "flex items-center gap-2 px-3 py-1.5 font-mono text-xs";
|
|
184
|
+
readonly logLineError: "bg-red-500/[0.03] border-l-2 border-red-500";
|
|
185
|
+
readonly logLineWarn: "border-l-2 border-amber-500/50";
|
|
186
|
+
/** Bento Grid container */
|
|
187
|
+
readonly bentoGrid: "grid gap-4 md:gap-6 max-w-[1600px] mx-auto";
|
|
188
|
+
/** Page entrance animation */
|
|
189
|
+
readonly pageEntry: "animate-in fade-in slide-in-from-bottom-8 duration-700";
|
|
190
|
+
};
|
|
191
|
+
declare const chartTheme: {
|
|
192
|
+
/** Use these colors in Recharts <Line>, <Bar>, <Area> */
|
|
193
|
+
readonly series: readonly ["#3B82F6", "#6366F1", "#8B5CF6", "#10B981", "#F59E0B"];
|
|
194
|
+
/** Grid/axis styling */
|
|
195
|
+
readonly grid: {
|
|
196
|
+
readonly stroke: "rgba(255, 255, 255, 0.05)";
|
|
197
|
+
readonly strokeDasharray: "3 3";
|
|
198
|
+
};
|
|
199
|
+
/** Axis text */
|
|
200
|
+
readonly axisText: {
|
|
201
|
+
readonly fill: "#535C6B";
|
|
202
|
+
readonly fontSize: 10;
|
|
203
|
+
readonly fontFamily: "'JetBrains Mono', 'Fira Code', ui-monospace, monospace";
|
|
204
|
+
};
|
|
205
|
+
/** Tooltip */
|
|
206
|
+
readonly tooltip: {
|
|
207
|
+
readonly backgroundColor: "#12151B";
|
|
208
|
+
readonly borderColor: "rgba(255, 255, 255, 0.05)";
|
|
209
|
+
readonly borderRadius: 12;
|
|
210
|
+
readonly textColor: "#EDEDEF";
|
|
211
|
+
readonly labelColor: "#9A92B1";
|
|
212
|
+
};
|
|
213
|
+
};
|
|
214
|
+
|
|
215
|
+
export { chartTheme, colors, motion, radii, shadows, spacing, tw, typography };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","file":"design-tokens.js"}
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export { chartTheme, colors, motion, radii, shadows, spacing, tw, typography } from './design-tokens.js';
|
|
2
|
+
export { Accordion, AccordionContent, AccordionContentProps, AccordionItem, AccordionItemProps, AccordionProps, AccordionTrigger, AccordionTriggerProps, ActiveFilter, ActivityDataPoint, ActivityHeatmap, ActivityHeatmapProps, Alert, AlertActions, AlertDescription, AlertProps, AlertRule, AlertRuleEditor, AlertRuleEditorProps, AlertTitle, AmbientBackground, AnimatedSection, AppShell, AppShellProps, AutoscaleConfig, AutoscaleControl, AutoscaleControlProps, Avatar, AvatarGroup, AvatarGroupProps, AvatarProps, Badge, BadgeProps, Banner, BannerAction, BannerProps, BannerStack, BannerStackProps, BannerVariant, BentoCard, BentoCardProps, BentoCell, BentoCellProps, BentoGrid, BentoGridProps, Breadcrumb, BreadcrumbItem, BreadcrumbLink, BreadcrumbLinkProps, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, BreadcrumbTrail, BreadcrumbTrailItem, Button, ButtonProps, CacheManager, CacheManagerProps, CachePurgeRecord, ChannelOption, ChartConfig, ChartContainer, ChartContainerProps, ChartGrid, ChartGridProps, ChartLegend, ChartLegendContent, ChartLegendContentProps, ChartLegendProps, ChartTooltip, ChartTooltipContent, ChartTooltipContentProps, ChartTooltipProps, Checkbox, CheckboxProps, Checklist, ChecklistItem, ChecklistProps, CodeBlock, CodeBlockProps, ColumnDef, CommandGroup, CommandItem, CommandPalette, CommandPaletteProps, ConfirmDialog, ConfirmDialogProps, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuItemProps, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, CopyButton, CopyButtonProps, CopyField, CopyFieldProps, CostDataPoint, CostForecast, CostForecastProps, CronEditor, CronEditorProps, CronPreset, DataTable, DataTableProps, DataValue, DateTimePicker, DateTimePickerProps, DeploymentItem, DeploymentList, DeploymentListProps, DeploymentStatus, DescriptionItem, DescriptionItemProps, DescriptionList, DescriptionListProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DiffLine, DiffMode, DiffViewer, DiffViewerProps, Divider, DividerProps, DomainManager, DomainManagerProps, DomainRecord, Drawer, DrawerClose, DrawerContent, DrawerContentProps, DrawerDescription, DrawerDescriptionProps, DrawerFooter, DrawerFooterProps, DrawerHeader, DrawerHeaderProps, DrawerProps, DrawerTitle, DrawerTitleProps, DrawerTrigger, DropZone, DropZoneFile, DropZoneFileStatus, DropZoneProps, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuItemProps, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EmptyState, EmptyStateProps, EnvManager, EnvManagerProps, EnvVar, ErrorState, ErrorStateProps, FileBrowser, FileBrowserActions, FileBrowserProps, FileItem, FilterBar, FilterBarProps, FilterDefinition, FilterOption, FormActions, FormActionsProps, FormError, FormErrorProps, FormField, FormFieldProps, FormGroup, FormGroupProps, FormHelperText, FormHelperTextProps, FormLabel, FormLabelProps, GlassTile, GlobePoint, GlobeTracker, GlobeTrackerProps, HeaderCTAButton, HeaderUser, HeaderWallet, HudLabel, InlineCode, InlineCodeProps, Input, InputProps, Kbd, KbdProps, KeyValueEditor, KeyValueEditorProps, KeyValueItem, KeyValueRow, KeyValueRowProps, LatencyRadar, LatencyRadarProps, LoadingState, LoadingStateProps, LogColumn, LogEntry, LogLevel, LogLevelBadge, LogLevelBadgeProps, LogLine, LogLineProps, LogTerminal, LogTerminalEntry, LogTerminalLevel, LogTerminalProps, LogViewer, LogViewerProps, MetricOption, NotificationAction, NotificationBell, NotificationBellProps, NotificationCenter, NotificationCenterProps, NotificationItem, NotificationType, NumberInput, NumberInputProps, PageShell, Pagination, PaginationProps, PermissionItem, PermissionMatrix, PermissionMatrixProps, PermissionRole, Pipeline, PipelineProps, PipelineStage, PipelineStep, PipelineStepStatus, PodHoneycomb, PodHoneycombProps, PodNode, PodStatus, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, PricingCard, PricingCardProps, PricingFeature, Progress, ProgressProps, RadioGroup, RadioGroupProps, RadioItem, RadioItemProps, RangeSlider, RangeSliderProps, RecommendationCard, RecommendationCardProps, RegionPoint, RegionStatus, RequestBuilder, RequestBuilderProps, RequestConfig, RequestHeader, ResourceGauge, ResourceGaugeProps, ResponseResult, RevealAction, RevealGroup, ScrollArea, ScrollAreaProps, ScrollBar, ScrollBarProps, SearchInput, SearchInputProps, SecretField, SecretFieldProps, SectionDot, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectSeparator, SelectTrigger, SelectTriggerProps, SelectValue, ServiceEdge, ServiceMap, ServiceMapProps, ServiceNode, SidebarCTAButton, SidebarLogo, SidebarNavItem, SidebarNavSection, SidebarSubmenuConfig, SidebarUser, SidebarWallet, Skeleton, SkeletonCircle, SkeletonCircleProps, SkeletonProps, SkeletonText, SkeletonTextProps, Slider, SliderMark, SliderProps, Sparkline, SparklineBar, SparklineBarProps, SparklineProps, SparklineStat, SparklineStatProps, StatCard, StatCardProps, StatGrid, StatGridProps, StatusBadge, StatusDot, StatusIndicator, StealthHeader, StealthHeaderProps, StealthSidebar, StealthSidebarProps, StealthToaster, StealthToasterProps, Step, StepIndicator, StepIndicatorProps, StepWizard, StepWizardProps, Switch, SwitchProps, Tabs, TabsContent, TabsList, TabsListProps, TabsTrigger, TabsTriggerProps, Tag, TagInput, TagInputProps, TagProps, Terminal, TerminalLine, TerminalLineType, TerminalProps, Textarea, TextareaProps, TimeRangePicker, TimeRangePickerProps, TimeRangePreset, TimeRangeValue, Timeline, TimelineItem, TimelineItemProps, TimelineProps, Toggle, ToggleGroup, ToggleGroupItem, ToggleGroupItemProps, ToggleGroupProps, ToggleProps, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TraceSpan, TraceWaterfall, TraceWaterfallProps, TrafficSplit, TrafficSplitter, TrafficSplitterProps, UsageMeter, UsageMeterProps, WizardStep, buttonVariants, chartAxisStyle, createTriggerClass, useCommandPalette, useFormField } from './components/index.js';
|
|
3
|
+
import 'react';
|
|
4
|
+
import 'react/jsx-runtime';
|
|
5
|
+
import 'lucide-react';
|
|
6
|
+
import 'class-variance-authority/types';
|
|
7
|
+
import 'class-variance-authority';
|
|
8
|
+
import '@radix-ui/react-toggle';
|
|
9
|
+
import '@radix-ui/react-toggle-group';
|
|
10
|
+
import '@radix-ui/react-select';
|
|
11
|
+
import 'sonner';
|
|
12
|
+
import '@radix-ui/react-dialog';
|
|
13
|
+
import '@radix-ui/react-tooltip';
|
|
14
|
+
import '@radix-ui/react-popover';
|
|
15
|
+
import 'vaul';
|
|
16
|
+
import '@radix-ui/react-tabs';
|
|
17
|
+
import '@radix-ui/react-accordion';
|
|
18
|
+
import 'recharts';
|
|
19
|
+
import '@radix-ui/react-dropdown-menu';
|
|
20
|
+
import '@radix-ui/react-context-menu';
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, ActivityHeatmap, Alert, AlertActions, AlertDescription, AlertRuleEditor, AlertTitle, AmbientBackground, AnimatedSection, AppShell, AutoscaleControl, Avatar, AvatarGroup, Badge, Banner, BannerStack, BentoCard, BentoCell, BentoGrid, Breadcrumb, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, BreadcrumbTrail, Button, CacheManager, ChartContainer, ChartGrid, ChartLegend, ChartLegendContent, ChartTooltip, ChartTooltipContent, Checkbox, Checklist, CodeBlock, CommandPalette, ConfirmDialog, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, CopyButton, CopyField, CostForecast, CronEditor, DataTable, DataValue, DateTimePicker, DeploymentList, DescriptionItem, DescriptionList, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DiffViewer, Divider, DomainManager, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerTitle, DrawerTrigger, DropZone, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EmptyState, EnvManager, ErrorState, FileBrowser, FilterBar, FormActions, FormError, FormField, FormGroup, FormHelperText, FormLabel, GlassTile, GlobeTracker, HudLabel, InlineCode, Input, Kbd, KeyValueEditor, KeyValueRow, LatencyRadar, LoadingState, LogLevelBadge, LogLine, LogTerminal, LogViewer, NotificationBell, NotificationCenter, NumberInput, PageShell, Pagination, PermissionMatrix, Pipeline, PodHoneycomb, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, PricingCard, Progress, RadioGroup, RadioItem, RangeSlider, RecommendationCard, RequestBuilder, ResourceGauge, RevealAction, RevealGroup, ScrollArea, ScrollBar, SearchInput, SecretField, SectionDot, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectSeparator, SelectTrigger, SelectValue, ServiceMap, Skeleton, SkeletonCircle, SkeletonText, Slider, Sparkline, SparklineBar, SparklineStat, StatCard, StatGrid, StatusBadge, StatusDot, StatusIndicator, StealthHeader, StealthSidebar, StealthToaster, StepIndicator, StepWizard, Switch, Tabs, TabsContent, TabsList, TabsTrigger, Tag, TagInput, Terminal, Textarea, TimeRangePicker, Timeline, TimelineItem, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TraceWaterfall, TrafficSplitter, UsageMeter, buttonVariants, chartAxisStyle, createTriggerClass, useCommandPalette, useFormField } from './chunk-62HIMTUS.js';
|
|
2
|
+
export { chartTheme, colors, motion, radii, shadows, spacing, tw, typography } from './chunk-5IRVGRFN.js';
|
|
3
|
+
//# sourceMappingURL=index.js.map
|
|
4
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","file":"index.js"}
|