@deankwan/ui 0.1.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.
Files changed (95) hide show
  1. package/dist/app/components/ui/accordion.mjs +64 -0
  2. package/dist/app/components/ui/alert-dialog.mjs +146 -0
  3. package/dist/app/components/ui/alert.mjs +66 -0
  4. package/dist/app/components/ui/aspect-ratio.mjs +10 -0
  5. package/dist/app/components/ui/avatar.mjs +53 -0
  6. package/dist/app/components/ui/badge.mjs +39 -0
  7. package/dist/app/components/ui/breadcrumb.mjs +102 -0
  8. package/dist/app/components/ui/button.mjs +49 -0
  9. package/dist/app/components/ui/calendar.mjs +61 -0
  10. package/dist/app/components/ui/card.mjs +90 -0
  11. package/dist/app/components/ui/carousel.mjs +177 -0
  12. package/dist/app/components/ui/chart.mjs +215 -0
  13. package/dist/app/components/ui/checkbox.mjs +31 -0
  14. package/dist/app/components/ui/collapsible.mjs +34 -0
  15. package/dist/app/components/ui/command.mjs +161 -0
  16. package/dist/app/components/ui/context-menu.mjs +223 -0
  17. package/dist/app/components/ui/dialog.mjs +128 -0
  18. package/dist/app/components/ui/drawer.mjs +125 -0
  19. package/dist/app/components/ui/dropdown-menu.mjs +231 -0
  20. package/dist/app/components/ui/form.mjs +101 -0
  21. package/dist/app/components/ui/hover-card.mjs +38 -0
  22. package/dist/app/components/ui/input-otp.mjs +65 -0
  23. package/dist/app/components/ui/input.mjs +21 -0
  24. package/dist/app/components/ui/label.mjs +22 -0
  25. package/dist/app/components/ui/menubar.mjs +251 -0
  26. package/dist/app/components/ui/navigation-menu.mjs +170 -0
  27. package/dist/app/components/ui/pagination.mjs +118 -0
  28. package/dist/app/components/ui/popover.mjs +44 -0
  29. package/dist/app/components/ui/progress.mjs +31 -0
  30. package/dist/app/components/ui/radio-group.mjs +45 -0
  31. package/dist/app/components/ui/resizable.mjs +48 -0
  32. package/dist/app/components/ui/scroll-area.mjs +60 -0
  33. package/dist/app/components/ui/select.mjs +169 -0
  34. package/dist/app/components/ui/separator.mjs +26 -0
  35. package/dist/app/components/ui/sheet.mjs +126 -0
  36. package/dist/app/components/ui/sidebar.mjs +593 -0
  37. package/dist/app/components/ui/skeleton.mjs +15 -0
  38. package/dist/app/components/ui/slider.mjs +63 -0
  39. package/dist/app/components/ui/sonner.mjs +22 -0
  40. package/dist/app/components/ui/switch.mjs +31 -0
  41. package/dist/app/components/ui/table.mjs +114 -0
  42. package/dist/app/components/ui/tabs.mjs +67 -0
  43. package/dist/app/components/ui/textarea.mjs +18 -0
  44. package/dist/app/components/ui/toggle-group.mjs +62 -0
  45. package/dist/app/components/ui/toggle.mjs +43 -0
  46. package/dist/app/components/ui/tooltip.mjs +55 -0
  47. package/dist/app/components/ui/use-mobile.mjs +16 -0
  48. package/dist/app/components/ui/utils.mjs +8 -0
  49. package/dist/index.mjs +297 -0
  50. package/dist/src/app/components/ui/accordion.d.ts +7 -0
  51. package/dist/src/app/components/ui/alert-dialog.d.ts +14 -0
  52. package/dist/src/app/components/ui/alert.d.ts +9 -0
  53. package/dist/src/app/components/ui/avatar.d.ts +6 -0
  54. package/dist/src/app/components/ui/badge.d.ts +9 -0
  55. package/dist/src/app/components/ui/breadcrumb.d.ts +11 -0
  56. package/dist/src/app/components/ui/button.d.ts +10 -0
  57. package/dist/src/app/components/ui/calendar.d.ts +4 -0
  58. package/dist/src/app/components/ui/card.d.ts +9 -0
  59. package/dist/src/app/components/ui/carousel.d.ts +19 -0
  60. package/dist/src/app/components/ui/chart.d.ts +40 -0
  61. package/dist/src/app/components/ui/checkbox.d.ts +4 -0
  62. package/dist/src/app/components/ui/command.d.ts +16 -0
  63. package/dist/src/app/components/ui/context-menu.d.ts +25 -0
  64. package/dist/src/app/components/ui/dialog.d.ts +13 -0
  65. package/dist/src/app/components/ui/drawer.d.ts +13 -0
  66. package/dist/src/app/components/ui/dropdown-menu.d.ts +25 -0
  67. package/dist/src/app/components/ui/hover-card.d.ts +6 -0
  68. package/dist/src/app/components/ui/input-otp.d.ts +11 -0
  69. package/dist/src/app/components/ui/input.d.ts +3 -0
  70. package/dist/src/app/components/ui/label.d.ts +4 -0
  71. package/dist/src/app/components/ui/menubar.d.ts +26 -0
  72. package/dist/src/app/components/ui/navigation-menu.d.ts +14 -0
  73. package/dist/src/app/components/ui/pagination.d.ts +13 -0
  74. package/dist/src/app/components/ui/popover.d.ts +7 -0
  75. package/dist/src/app/components/ui/progress.d.ts +4 -0
  76. package/dist/src/app/components/ui/radio-group.d.ts +5 -0
  77. package/dist/src/app/components/ui/resizable.d.ts +8 -0
  78. package/dist/src/app/components/ui/scroll-area.d.ts +5 -0
  79. package/dist/src/app/components/ui/select.d.ts +15 -0
  80. package/dist/src/app/components/ui/separator.d.ts +4 -0
  81. package/dist/src/app/components/ui/sheet.d.ts +13 -0
  82. package/dist/src/app/components/ui/sidebar.d.ts +60 -0
  83. package/dist/src/app/components/ui/slider.d.ts +4 -0
  84. package/dist/src/app/components/ui/switch.d.ts +4 -0
  85. package/dist/src/app/components/ui/table.d.ts +10 -0
  86. package/dist/src/app/components/ui/tabs.d.ts +7 -0
  87. package/dist/src/app/components/ui/textarea.d.ts +3 -0
  88. package/dist/src/app/components/ui/toggle-group.d.ts +7 -0
  89. package/dist/src/app/components/ui/toggle.d.ts +9 -0
  90. package/dist/src/app/components/ui/tooltip.d.ts +7 -0
  91. package/dist/src/app/components/ui/use-mobile.d.ts +1 -0
  92. package/dist/src/app/components/ui/utils.d.ts +2 -0
  93. package/dist/src/index.d.ts +48 -0
  94. package/dist/style.css +1 -0
  95. package/package.json +166 -0
package/dist/index.mjs ADDED
@@ -0,0 +1,297 @@
1
+ /* empty css */
2
+ import { Accordion as t, AccordionContent as a, AccordionItem as n, AccordionTrigger as i } from "./app/components/ui/accordion.mjs";
3
+ import { AlertDialog as u, AlertDialogAction as p, AlertDialogCancel as m, AlertDialogContent as d, AlertDialogDescription as g, AlertDialogFooter as b, AlertDialogHeader as C, AlertDialogOverlay as S, AlertDialogPortal as x, AlertDialogTitle as M, AlertDialogTrigger as c } from "./app/components/ui/alert-dialog.mjs";
4
+ import { Alert as T, AlertDescription as s, AlertTitle as f } from "./app/components/ui/alert.mjs";
5
+ import { AspectRatio as w } from "./app/components/ui/aspect-ratio.mjs";
6
+ import { Avatar as A, AvatarFallback as v, AvatarImage as h } from "./app/components/ui/avatar.mjs";
7
+ import { Badge as G, badgeVariants as B } from "./app/components/ui/badge.mjs";
8
+ import { Breadcrumb as R, BreadcrumbEllipsis as H, BreadcrumbItem as k, BreadcrumbLink as N, BreadcrumbList as y, BreadcrumbPage as O, BreadcrumbSeparator as V } from "./app/components/ui/breadcrumb.mjs";
9
+ import { Button as E, buttonVariants as U } from "./app/components/ui/button.mjs";
10
+ import { Calendar as q } from "./app/components/ui/calendar.mjs";
11
+ import { Card as K, CardAction as Q, CardContent as W, CardDescription as X, CardFooter as Y, CardHeader as Z, CardTitle as _ } from "./app/components/ui/card.mjs";
12
+ import { Carousel as ee, CarouselContent as re, CarouselItem as oe, CarouselNext as te, CarouselPrevious as ae } from "./app/components/ui/carousel.mjs";
13
+ import { ChartContainer as ie, ChartLegend as le, ChartLegendContent as ue, ChartStyle as pe, ChartTooltip as me, ChartTooltipContent as de } from "./app/components/ui/chart.mjs";
14
+ import { Checkbox as be } from "./app/components/ui/checkbox.mjs";
15
+ import { Collapsible as Se, CollapsibleContent as xe, CollapsibleTrigger as Me } from "./app/components/ui/collapsible.mjs";
16
+ import { Command as De, CommandDialog as Te, CommandEmpty as se, CommandGroup as fe, CommandInput as Ie, CommandItem as we, CommandList as Pe, CommandSeparator as Ae, CommandShortcut as ve } from "./app/components/ui/command.mjs";
17
+ import { ContextMenu as Fe, ContextMenuCheckboxItem as Ge, ContextMenuContent as Be, ContextMenuGroup as Le, ContextMenuItem as Re, ContextMenuLabel as He, ContextMenuPortal as ke, ContextMenuRadioGroup as Ne, ContextMenuRadioItem as ye, ContextMenuSeparator as Oe, ContextMenuShortcut as Ve, ContextMenuSub as ze, ContextMenuSubContent as Ee, ContextMenuSubTrigger as Ue, ContextMenuTrigger as je } from "./app/components/ui/context-menu.mjs";
18
+ import { Dialog as Je, DialogClose as Ke, DialogContent as Qe, DialogDescription as We, DialogFooter as Xe, DialogHeader as Ye, DialogOverlay as Ze, DialogPortal as _e, DialogTitle as $e, DialogTrigger as er } from "./app/components/ui/dialog.mjs";
19
+ import { Drawer as or, DrawerClose as tr, DrawerContent as ar, DrawerDescription as nr, DrawerFooter as ir, DrawerHeader as lr, DrawerOverlay as ur, DrawerPortal as pr, DrawerTitle as mr, DrawerTrigger as dr } from "./app/components/ui/drawer.mjs";
20
+ import { DropdownMenu as br, DropdownMenuCheckboxItem as Cr, DropdownMenuContent as Sr, DropdownMenuGroup as xr, DropdownMenuItem as Mr, DropdownMenuLabel as cr, DropdownMenuPortal as Dr, DropdownMenuRadioGroup as Tr, DropdownMenuRadioItem as sr, DropdownMenuSeparator as fr, DropdownMenuShortcut as Ir, DropdownMenuSub as wr, DropdownMenuSubContent as Pr, DropdownMenuSubTrigger as Ar, DropdownMenuTrigger as vr } from "./app/components/ui/dropdown-menu.mjs";
21
+ import { Form as Fr, FormControl as Gr, FormDescription as Br, FormField as Lr, FormItem as Rr, FormLabel as Hr, FormMessage as kr, useFormField as Nr } from "./app/components/ui/form.mjs";
22
+ import { HoverCard as Or, HoverCardContent as Vr, HoverCardTrigger as zr } from "./app/components/ui/hover-card.mjs";
23
+ import { InputOTP as Ur, InputOTPGroup as jr, InputOTPSeparator as qr, InputOTPSlot as Jr } from "./app/components/ui/input-otp.mjs";
24
+ import { Input as Qr } from "./app/components/ui/input.mjs";
25
+ import { Label as Xr } from "./app/components/ui/label.mjs";
26
+ import { Menubar as Zr, MenubarCheckboxItem as _r, MenubarContent as $r, MenubarGroup as eo, MenubarItem as ro, MenubarLabel as oo, MenubarMenu as to, MenubarPortal as ao, MenubarRadioGroup as no, MenubarRadioItem as io, MenubarSeparator as lo, MenubarShortcut as uo, MenubarSub as po, MenubarSubContent as mo, MenubarSubTrigger as go, MenubarTrigger as bo } from "./app/components/ui/menubar.mjs";
27
+ import { NavigationMenu as So, NavigationMenuContent as xo, NavigationMenuIndicator as Mo, NavigationMenuItem as co, NavigationMenuLink as Do, NavigationMenuList as To, NavigationMenuTrigger as so, NavigationMenuViewport as fo, navigationMenuTriggerStyle as Io } from "./app/components/ui/navigation-menu.mjs";
28
+ import { Pagination as Po, PaginationContent as Ao, PaginationEllipsis as vo, PaginationItem as ho, PaginationLink as Fo, PaginationNext as Go, PaginationPrevious as Bo } from "./app/components/ui/pagination.mjs";
29
+ import { Popover as Ro, PopoverAnchor as Ho, PopoverContent as ko, PopoverTrigger as No } from "./app/components/ui/popover.mjs";
30
+ import { Progress as Oo } from "./app/components/ui/progress.mjs";
31
+ import { RadioGroup as zo, RadioGroupItem as Eo } from "./app/components/ui/radio-group.mjs";
32
+ import { ResizableHandle as jo, ResizablePanel as qo, ResizablePanelGroup as Jo } from "./app/components/ui/resizable.mjs";
33
+ import { ScrollArea as Qo, ScrollBar as Wo } from "./app/components/ui/scroll-area.mjs";
34
+ import { Select as Yo, SelectContent as Zo, SelectGroup as _o, SelectItem as $o, SelectLabel as et, SelectScrollDownButton as rt, SelectScrollUpButton as ot, SelectSeparator as tt, SelectTrigger as at, SelectValue as nt } from "./app/components/ui/select.mjs";
35
+ import { Separator as lt } from "./app/components/ui/separator.mjs";
36
+ import { Sheet as pt, SheetClose as mt, SheetContent as dt, SheetDescription as gt, SheetFooter as bt, SheetHeader as Ct, SheetTitle as St, SheetTrigger as xt } from "./app/components/ui/sheet.mjs";
37
+ import { Sidebar as ct, SidebarContent as Dt, SidebarFooter as Tt, SidebarGroup as st, SidebarGroupAction as ft, SidebarGroupContent as It, SidebarGroupLabel as wt, SidebarHeader as Pt, SidebarInput as At, SidebarInset as vt, SidebarMenu as ht, SidebarMenuAction as Ft, SidebarMenuBadge as Gt, SidebarMenuButton as Bt, SidebarMenuItem as Lt, SidebarMenuSkeleton as Rt, SidebarMenuSub as Ht, SidebarMenuSubButton as kt, SidebarMenuSubItem as Nt, SidebarProvider as yt, SidebarRail as Ot, SidebarSeparator as Vt, SidebarTrigger as zt, useSidebar as Et } from "./app/components/ui/sidebar.mjs";
38
+ import { Skeleton as jt } from "./app/components/ui/skeleton.mjs";
39
+ import { Slider as Jt } from "./app/components/ui/slider.mjs";
40
+ import { Toaster as Qt } from "./app/components/ui/sonner.mjs";
41
+ import { Switch as Xt } from "./app/components/ui/switch.mjs";
42
+ import { Table as Zt, TableBody as _t, TableCaption as $t, TableCell as ea, TableFooter as ra, TableHead as oa, TableHeader as ta, TableRow as aa } from "./app/components/ui/table.mjs";
43
+ import { Tabs as ia, TabsContent as la, TabsList as ua, TabsTrigger as pa } from "./app/components/ui/tabs.mjs";
44
+ import { Textarea as da } from "./app/components/ui/textarea.mjs";
45
+ import { ToggleGroup as ba, ToggleGroupItem as Ca } from "./app/components/ui/toggle-group.mjs";
46
+ import { Toggle as xa, toggleVariants as Ma } from "./app/components/ui/toggle.mjs";
47
+ import { Tooltip as Da, TooltipContent as Ta, TooltipProvider as sa, TooltipTrigger as fa } from "./app/components/ui/tooltip.mjs";
48
+ import { useIsMobile as wa } from "./app/components/ui/use-mobile.mjs";
49
+ import { cn as Aa } from "./app/components/ui/utils.mjs";
50
+ export {
51
+ t as Accordion,
52
+ a as AccordionContent,
53
+ n as AccordionItem,
54
+ i as AccordionTrigger,
55
+ T as Alert,
56
+ s as AlertDescription,
57
+ u as AlertDialog,
58
+ p as AlertDialogAction,
59
+ m as AlertDialogCancel,
60
+ d as AlertDialogContent,
61
+ g as AlertDialogDescription,
62
+ b as AlertDialogFooter,
63
+ C as AlertDialogHeader,
64
+ S as AlertDialogOverlay,
65
+ x as AlertDialogPortal,
66
+ M as AlertDialogTitle,
67
+ c as AlertDialogTrigger,
68
+ f as AlertTitle,
69
+ w as AspectRatio,
70
+ A as Avatar,
71
+ v as AvatarFallback,
72
+ h as AvatarImage,
73
+ G as Badge,
74
+ R as Breadcrumb,
75
+ H as BreadcrumbEllipsis,
76
+ k as BreadcrumbItem,
77
+ N as BreadcrumbLink,
78
+ y as BreadcrumbList,
79
+ O as BreadcrumbPage,
80
+ V as BreadcrumbSeparator,
81
+ E as Button,
82
+ q as Calendar,
83
+ K as Card,
84
+ Q as CardAction,
85
+ W as CardContent,
86
+ X as CardDescription,
87
+ Y as CardFooter,
88
+ Z as CardHeader,
89
+ _ as CardTitle,
90
+ ee as Carousel,
91
+ re as CarouselContent,
92
+ oe as CarouselItem,
93
+ te as CarouselNext,
94
+ ae as CarouselPrevious,
95
+ ie as ChartContainer,
96
+ le as ChartLegend,
97
+ ue as ChartLegendContent,
98
+ pe as ChartStyle,
99
+ me as ChartTooltip,
100
+ de as ChartTooltipContent,
101
+ be as Checkbox,
102
+ Se as Collapsible,
103
+ xe as CollapsibleContent,
104
+ Me as CollapsibleTrigger,
105
+ De as Command,
106
+ Te as CommandDialog,
107
+ se as CommandEmpty,
108
+ fe as CommandGroup,
109
+ Ie as CommandInput,
110
+ we as CommandItem,
111
+ Pe as CommandList,
112
+ Ae as CommandSeparator,
113
+ ve as CommandShortcut,
114
+ Fe as ContextMenu,
115
+ Ge as ContextMenuCheckboxItem,
116
+ Be as ContextMenuContent,
117
+ Le as ContextMenuGroup,
118
+ Re as ContextMenuItem,
119
+ He as ContextMenuLabel,
120
+ ke as ContextMenuPortal,
121
+ Ne as ContextMenuRadioGroup,
122
+ ye as ContextMenuRadioItem,
123
+ Oe as ContextMenuSeparator,
124
+ Ve as ContextMenuShortcut,
125
+ ze as ContextMenuSub,
126
+ Ee as ContextMenuSubContent,
127
+ Ue as ContextMenuSubTrigger,
128
+ je as ContextMenuTrigger,
129
+ Je as Dialog,
130
+ Ke as DialogClose,
131
+ Qe as DialogContent,
132
+ We as DialogDescription,
133
+ Xe as DialogFooter,
134
+ Ye as DialogHeader,
135
+ Ze as DialogOverlay,
136
+ _e as DialogPortal,
137
+ $e as DialogTitle,
138
+ er as DialogTrigger,
139
+ or as Drawer,
140
+ tr as DrawerClose,
141
+ ar as DrawerContent,
142
+ nr as DrawerDescription,
143
+ ir as DrawerFooter,
144
+ lr as DrawerHeader,
145
+ ur as DrawerOverlay,
146
+ pr as DrawerPortal,
147
+ mr as DrawerTitle,
148
+ dr as DrawerTrigger,
149
+ br as DropdownMenu,
150
+ Cr as DropdownMenuCheckboxItem,
151
+ Sr as DropdownMenuContent,
152
+ xr as DropdownMenuGroup,
153
+ Mr as DropdownMenuItem,
154
+ cr as DropdownMenuLabel,
155
+ Dr as DropdownMenuPortal,
156
+ Tr as DropdownMenuRadioGroup,
157
+ sr as DropdownMenuRadioItem,
158
+ fr as DropdownMenuSeparator,
159
+ Ir as DropdownMenuShortcut,
160
+ wr as DropdownMenuSub,
161
+ Pr as DropdownMenuSubContent,
162
+ Ar as DropdownMenuSubTrigger,
163
+ vr as DropdownMenuTrigger,
164
+ Fr as Form,
165
+ Gr as FormControl,
166
+ Br as FormDescription,
167
+ Lr as FormField,
168
+ Rr as FormItem,
169
+ Hr as FormLabel,
170
+ kr as FormMessage,
171
+ Or as HoverCard,
172
+ Vr as HoverCardContent,
173
+ zr as HoverCardTrigger,
174
+ Qr as Input,
175
+ Ur as InputOTP,
176
+ jr as InputOTPGroup,
177
+ qr as InputOTPSeparator,
178
+ Jr as InputOTPSlot,
179
+ Xr as Label,
180
+ Zr as Menubar,
181
+ _r as MenubarCheckboxItem,
182
+ $r as MenubarContent,
183
+ eo as MenubarGroup,
184
+ ro as MenubarItem,
185
+ oo as MenubarLabel,
186
+ to as MenubarMenu,
187
+ ao as MenubarPortal,
188
+ no as MenubarRadioGroup,
189
+ io as MenubarRadioItem,
190
+ lo as MenubarSeparator,
191
+ uo as MenubarShortcut,
192
+ po as MenubarSub,
193
+ mo as MenubarSubContent,
194
+ go as MenubarSubTrigger,
195
+ bo as MenubarTrigger,
196
+ So as NavigationMenu,
197
+ xo as NavigationMenuContent,
198
+ Mo as NavigationMenuIndicator,
199
+ co as NavigationMenuItem,
200
+ Do as NavigationMenuLink,
201
+ To as NavigationMenuList,
202
+ so as NavigationMenuTrigger,
203
+ fo as NavigationMenuViewport,
204
+ Po as Pagination,
205
+ Ao as PaginationContent,
206
+ vo as PaginationEllipsis,
207
+ ho as PaginationItem,
208
+ Fo as PaginationLink,
209
+ Go as PaginationNext,
210
+ Bo as PaginationPrevious,
211
+ Ro as Popover,
212
+ Ho as PopoverAnchor,
213
+ ko as PopoverContent,
214
+ No as PopoverTrigger,
215
+ Oo as Progress,
216
+ zo as RadioGroup,
217
+ Eo as RadioGroupItem,
218
+ jo as ResizableHandle,
219
+ qo as ResizablePanel,
220
+ Jo as ResizablePanelGroup,
221
+ Qo as ScrollArea,
222
+ Wo as ScrollBar,
223
+ Yo as Select,
224
+ Zo as SelectContent,
225
+ _o as SelectGroup,
226
+ $o as SelectItem,
227
+ et as SelectLabel,
228
+ rt as SelectScrollDownButton,
229
+ ot as SelectScrollUpButton,
230
+ tt as SelectSeparator,
231
+ at as SelectTrigger,
232
+ nt as SelectValue,
233
+ lt as Separator,
234
+ pt as Sheet,
235
+ mt as SheetClose,
236
+ dt as SheetContent,
237
+ gt as SheetDescription,
238
+ bt as SheetFooter,
239
+ Ct as SheetHeader,
240
+ St as SheetTitle,
241
+ xt as SheetTrigger,
242
+ ct as Sidebar,
243
+ Dt as SidebarContent,
244
+ Tt as SidebarFooter,
245
+ st as SidebarGroup,
246
+ ft as SidebarGroupAction,
247
+ It as SidebarGroupContent,
248
+ wt as SidebarGroupLabel,
249
+ Pt as SidebarHeader,
250
+ At as SidebarInput,
251
+ vt as SidebarInset,
252
+ ht as SidebarMenu,
253
+ Ft as SidebarMenuAction,
254
+ Gt as SidebarMenuBadge,
255
+ Bt as SidebarMenuButton,
256
+ Lt as SidebarMenuItem,
257
+ Rt as SidebarMenuSkeleton,
258
+ Ht as SidebarMenuSub,
259
+ kt as SidebarMenuSubButton,
260
+ Nt as SidebarMenuSubItem,
261
+ yt as SidebarProvider,
262
+ Ot as SidebarRail,
263
+ Vt as SidebarSeparator,
264
+ zt as SidebarTrigger,
265
+ jt as Skeleton,
266
+ Jt as Slider,
267
+ Xt as Switch,
268
+ Zt as Table,
269
+ _t as TableBody,
270
+ $t as TableCaption,
271
+ ea as TableCell,
272
+ ra as TableFooter,
273
+ oa as TableHead,
274
+ ta as TableHeader,
275
+ aa as TableRow,
276
+ ia as Tabs,
277
+ la as TabsContent,
278
+ ua as TabsList,
279
+ pa as TabsTrigger,
280
+ da as Textarea,
281
+ Qt as Toaster,
282
+ xa as Toggle,
283
+ ba as ToggleGroup,
284
+ Ca as ToggleGroupItem,
285
+ Da as Tooltip,
286
+ Ta as TooltipContent,
287
+ sa as TooltipProvider,
288
+ fa as TooltipTrigger,
289
+ B as badgeVariants,
290
+ U as buttonVariants,
291
+ Aa as cn,
292
+ Io as navigationMenuTriggerStyle,
293
+ Ma as toggleVariants,
294
+ Nr as useFormField,
295
+ wa as useIsMobile,
296
+ Et as useSidebar
297
+ };
@@ -0,0 +1,7 @@
1
+ import * as React from "react";
2
+ import * as AccordionPrimitive from "@radix-ui/react-accordion";
3
+ declare function Accordion({ ...props }: React.ComponentProps<typeof AccordionPrimitive.Root>): any;
4
+ declare function AccordionItem({ className, ...props }: React.ComponentProps<typeof AccordionPrimitive.Item>): any;
5
+ declare function AccordionTrigger({ className, children, ...props }: React.ComponentProps<typeof AccordionPrimitive.Trigger>): any;
6
+ declare function AccordionContent({ className, children, ...props }: React.ComponentProps<typeof AccordionPrimitive.Content>): any;
7
+ export { Accordion, AccordionItem, AccordionTrigger, AccordionContent };
@@ -0,0 +1,14 @@
1
+ import * as React from "react";
2
+ import * as AlertDialogPrimitive from "@radix-ui/react-alert-dialog";
3
+ declare function AlertDialog({ ...props }: React.ComponentProps<typeof AlertDialogPrimitive.Root>): any;
4
+ declare function AlertDialogTrigger({ ...props }: React.ComponentProps<typeof AlertDialogPrimitive.Trigger>): any;
5
+ declare function AlertDialogPortal({ ...props }: React.ComponentProps<typeof AlertDialogPrimitive.Portal>): any;
6
+ declare function AlertDialogOverlay({ className, ...props }: React.ComponentProps<typeof AlertDialogPrimitive.Overlay>): any;
7
+ declare function AlertDialogContent({ className, ...props }: React.ComponentProps<typeof AlertDialogPrimitive.Content>): any;
8
+ declare function AlertDialogHeader({ className, ...props }: React.ComponentProps<"div">): any;
9
+ declare function AlertDialogFooter({ className, ...props }: React.ComponentProps<"div">): any;
10
+ declare function AlertDialogTitle({ className, ...props }: React.ComponentProps<typeof AlertDialogPrimitive.Title>): any;
11
+ declare function AlertDialogDescription({ className, ...props }: React.ComponentProps<typeof AlertDialogPrimitive.Description>): any;
12
+ declare function AlertDialogAction({ className, ...props }: React.ComponentProps<typeof AlertDialogPrimitive.Action>): any;
13
+ declare function AlertDialogCancel({ className, ...props }: React.ComponentProps<typeof AlertDialogPrimitive.Cancel>): any;
14
+ export { AlertDialog, AlertDialogPortal, AlertDialogOverlay, AlertDialogTrigger, AlertDialogContent, AlertDialogHeader, AlertDialogFooter, AlertDialogTitle, AlertDialogDescription, AlertDialogAction, AlertDialogCancel, };
@@ -0,0 +1,9 @@
1
+ import { VariantProps } from 'class-variance-authority';
2
+ import * as React from "react";
3
+ declare const alertVariants: (props?: ({
4
+ variant?: "default" | "destructive" | null | undefined;
5
+ } & import('class-variance-authority/types').ClassProp) | undefined) => string;
6
+ declare function Alert({ className, variant, ...props }: React.ComponentProps<"div"> & VariantProps<typeof alertVariants>): any;
7
+ declare function AlertTitle({ className, ...props }: React.ComponentProps<"div">): any;
8
+ declare function AlertDescription({ className, ...props }: React.ComponentProps<"div">): any;
9
+ export { Alert, AlertTitle, AlertDescription };
@@ -0,0 +1,6 @@
1
+ import * as React from "react";
2
+ import * as AvatarPrimitive from "@radix-ui/react-avatar";
3
+ declare function Avatar({ className, ...props }: React.ComponentProps<typeof AvatarPrimitive.Root>): any;
4
+ declare function AvatarImage({ className, ...props }: React.ComponentProps<typeof AvatarPrimitive.Image>): any;
5
+ declare function AvatarFallback({ className, ...props }: React.ComponentProps<typeof AvatarPrimitive.Fallback>): any;
6
+ export { Avatar, AvatarImage, AvatarFallback };
@@ -0,0 +1,9 @@
1
+ import { VariantProps } from 'class-variance-authority';
2
+ import * as React from "react";
3
+ declare const badgeVariants: (props?: ({
4
+ variant?: "default" | "destructive" | "outline" | "secondary" | null | undefined;
5
+ } & import('class-variance-authority/types').ClassProp) | undefined) => string;
6
+ declare function Badge({ className, variant, asChild, ...props }: React.ComponentProps<"span"> & VariantProps<typeof badgeVariants> & {
7
+ asChild?: boolean;
8
+ }): any;
9
+ export { Badge, badgeVariants };
@@ -0,0 +1,11 @@
1
+ import * as React from "react";
2
+ declare function Breadcrumb({ ...props }: React.ComponentProps<"nav">): any;
3
+ declare function BreadcrumbList({ className, ...props }: React.ComponentProps<"ol">): any;
4
+ declare function BreadcrumbItem({ className, ...props }: React.ComponentProps<"li">): any;
5
+ declare function BreadcrumbLink({ asChild, className, ...props }: React.ComponentProps<"a"> & {
6
+ asChild?: boolean;
7
+ }): any;
8
+ declare function BreadcrumbPage({ className, ...props }: React.ComponentProps<"span">): any;
9
+ declare function BreadcrumbSeparator({ children, className, ...props }: React.ComponentProps<"li">): any;
10
+ declare function BreadcrumbEllipsis({ className, ...props }: React.ComponentProps<"span">): any;
11
+ export { Breadcrumb, BreadcrumbList, BreadcrumbItem, BreadcrumbLink, BreadcrumbPage, BreadcrumbSeparator, BreadcrumbEllipsis, };
@@ -0,0 +1,10 @@
1
+ import { VariantProps } from 'class-variance-authority';
2
+ import * as React from "react";
3
+ declare const buttonVariants: (props?: ({
4
+ variant?: "link" | "default" | "destructive" | "outline" | "secondary" | "ghost" | null | undefined;
5
+ size?: "default" | "sm" | "lg" | "icon" | null | undefined;
6
+ } & import('class-variance-authority/types').ClassProp) | undefined) => string;
7
+ declare function Button({ className, variant, size, asChild, ...props }: React.ComponentProps<"button"> & VariantProps<typeof buttonVariants> & {
8
+ asChild?: boolean;
9
+ }): any;
10
+ export { Button, buttonVariants };
@@ -0,0 +1,4 @@
1
+ import { DayPicker } from 'react-day-picker';
2
+ import * as React from "react";
3
+ declare function Calendar({ className, classNames, showOutsideDays, ...props }: React.ComponentProps<typeof DayPicker>): any;
4
+ export { Calendar };
@@ -0,0 +1,9 @@
1
+ import * as React from "react";
2
+ declare function Card({ className, ...props }: React.ComponentProps<"div">): any;
3
+ declare function CardHeader({ className, ...props }: React.ComponentProps<"div">): any;
4
+ declare function CardTitle({ className, ...props }: React.ComponentProps<"div">): any;
5
+ declare function CardDescription({ className, ...props }: React.ComponentProps<"div">): any;
6
+ declare function CardAction({ className, ...props }: React.ComponentProps<"div">): any;
7
+ declare function CardContent({ className, ...props }: React.ComponentProps<"div">): any;
8
+ declare function CardFooter({ className, ...props }: React.ComponentProps<"div">): any;
9
+ export { Card, CardHeader, CardFooter, CardTitle, CardAction, CardDescription, CardContent, };
@@ -0,0 +1,19 @@
1
+ import { default as useEmblaCarousel, UseEmblaCarouselType } from 'embla-carousel-react';
2
+ import { Button } from './button';
3
+ import * as React from "react";
4
+ type CarouselApi = UseEmblaCarouselType[1];
5
+ type UseCarouselParameters = Parameters<typeof useEmblaCarousel>;
6
+ type CarouselOptions = UseCarouselParameters[0];
7
+ type CarouselPlugin = UseCarouselParameters[1];
8
+ type CarouselProps = {
9
+ opts?: CarouselOptions;
10
+ plugins?: CarouselPlugin;
11
+ orientation?: "horizontal" | "vertical";
12
+ setApi?: (api: CarouselApi) => void;
13
+ };
14
+ declare function Carousel({ orientation, opts, setApi, plugins, className, children, ...props }: React.ComponentProps<"div"> & CarouselProps): any;
15
+ declare function CarouselContent({ className, ...props }: React.ComponentProps<"div">): any;
16
+ declare function CarouselItem({ className, ...props }: React.ComponentProps<"div">): any;
17
+ declare function CarouselPrevious({ className, variant, size, ...props }: React.ComponentProps<typeof Button>): any;
18
+ declare function CarouselNext({ className, variant, size, ...props }: React.ComponentProps<typeof Button>): any;
19
+ export { type CarouselApi, Carousel, CarouselContent, CarouselItem, CarouselPrevious, CarouselNext, };
@@ -0,0 +1,40 @@
1
+ import * as React from "react";
2
+ import * as RechartsPrimitive from "recharts";
3
+ declare const THEMES: {
4
+ readonly light: "";
5
+ readonly dark: ".dark";
6
+ };
7
+ export type ChartConfig = {
8
+ [k in string]: {
9
+ label?: React.ReactNode;
10
+ icon?: React.ComponentType;
11
+ } & ({
12
+ color?: string;
13
+ theme?: never;
14
+ } | {
15
+ color?: never;
16
+ theme: Record<keyof typeof THEMES, string>;
17
+ });
18
+ };
19
+ declare function ChartContainer({ id, className, children, config, ...props }: React.ComponentProps<"div"> & {
20
+ config: ChartConfig;
21
+ children: React.ComponentProps<typeof RechartsPrimitive.ResponsiveContainer>["children"];
22
+ }): any;
23
+ declare const ChartStyle: ({ id, config }: {
24
+ id: string;
25
+ config: ChartConfig;
26
+ }) => any;
27
+ declare const ChartTooltip: typeof RechartsPrimitive.Tooltip;
28
+ declare function ChartTooltipContent({ active, payload, className, indicator, hideLabel, hideIndicator, label, labelFormatter, labelClassName, formatter, color, nameKey, labelKey, }: React.ComponentProps<typeof RechartsPrimitive.Tooltip> & React.ComponentProps<"div"> & {
29
+ hideLabel?: boolean;
30
+ hideIndicator?: boolean;
31
+ indicator?: "line" | "dot" | "dashed";
32
+ nameKey?: string;
33
+ labelKey?: string;
34
+ }): any;
35
+ declare const ChartLegend: typeof RechartsPrimitive.Legend;
36
+ declare function ChartLegendContent({ className, hideIcon, payload, verticalAlign, nameKey, }: React.ComponentProps<"div"> & Pick<RechartsPrimitive.LegendProps, "payload" | "verticalAlign"> & {
37
+ hideIcon?: boolean;
38
+ nameKey?: string;
39
+ }): any;
40
+ export { ChartContainer, ChartTooltip, ChartTooltipContent, ChartLegend, ChartLegendContent, ChartStyle, };
@@ -0,0 +1,4 @@
1
+ import * as React from "react";
2
+ import * as CheckboxPrimitive from "@radix-ui/react-checkbox";
3
+ declare function Checkbox({ className, ...props }: React.ComponentProps<typeof CheckboxPrimitive.Root>): any;
4
+ export { Checkbox };
@@ -0,0 +1,16 @@
1
+ import { Command as CommandPrimitive } from 'cmdk';
2
+ import { Dialog } from './dialog';
3
+ import * as React from "react";
4
+ declare function Command({ className, ...props }: React.ComponentProps<typeof CommandPrimitive>): any;
5
+ declare function CommandDialog({ title, description, children, ...props }: React.ComponentProps<typeof Dialog> & {
6
+ title?: string;
7
+ description?: string;
8
+ }): any;
9
+ declare function CommandInput({ className, ...props }: React.ComponentProps<typeof CommandPrimitive.Input>): any;
10
+ declare function CommandList({ className, ...props }: React.ComponentProps<typeof CommandPrimitive.List>): any;
11
+ declare function CommandEmpty({ ...props }: React.ComponentProps<typeof CommandPrimitive.Empty>): any;
12
+ declare function CommandGroup({ className, ...props }: React.ComponentProps<typeof CommandPrimitive.Group>): any;
13
+ declare function CommandSeparator({ className, ...props }: React.ComponentProps<typeof CommandPrimitive.Separator>): any;
14
+ declare function CommandItem({ className, ...props }: React.ComponentProps<typeof CommandPrimitive.Item>): any;
15
+ declare function CommandShortcut({ className, ...props }: React.ComponentProps<"span">): any;
16
+ export { Command, CommandDialog, CommandInput, CommandList, CommandEmpty, CommandGroup, CommandItem, CommandShortcut, CommandSeparator, };
@@ -0,0 +1,25 @@
1
+ import * as React from "react";
2
+ import * as ContextMenuPrimitive from "@radix-ui/react-context-menu";
3
+ declare function ContextMenu({ ...props }: React.ComponentProps<typeof ContextMenuPrimitive.Root>): any;
4
+ declare function ContextMenuTrigger({ ...props }: React.ComponentProps<typeof ContextMenuPrimitive.Trigger>): any;
5
+ declare function ContextMenuGroup({ ...props }: React.ComponentProps<typeof ContextMenuPrimitive.Group>): any;
6
+ declare function ContextMenuPortal({ ...props }: React.ComponentProps<typeof ContextMenuPrimitive.Portal>): any;
7
+ declare function ContextMenuSub({ ...props }: React.ComponentProps<typeof ContextMenuPrimitive.Sub>): any;
8
+ declare function ContextMenuRadioGroup({ ...props }: React.ComponentProps<typeof ContextMenuPrimitive.RadioGroup>): any;
9
+ declare function ContextMenuSubTrigger({ className, inset, children, ...props }: React.ComponentProps<typeof ContextMenuPrimitive.SubTrigger> & {
10
+ inset?: boolean;
11
+ }): any;
12
+ declare function ContextMenuSubContent({ className, ...props }: React.ComponentProps<typeof ContextMenuPrimitive.SubContent>): any;
13
+ declare function ContextMenuContent({ className, ...props }: React.ComponentProps<typeof ContextMenuPrimitive.Content>): any;
14
+ declare function ContextMenuItem({ className, inset, variant, ...props }: React.ComponentProps<typeof ContextMenuPrimitive.Item> & {
15
+ inset?: boolean;
16
+ variant?: "default" | "destructive";
17
+ }): any;
18
+ declare function ContextMenuCheckboxItem({ className, children, checked, ...props }: React.ComponentProps<typeof ContextMenuPrimitive.CheckboxItem>): any;
19
+ declare function ContextMenuRadioItem({ className, children, ...props }: React.ComponentProps<typeof ContextMenuPrimitive.RadioItem>): any;
20
+ declare function ContextMenuLabel({ className, inset, ...props }: React.ComponentProps<typeof ContextMenuPrimitive.Label> & {
21
+ inset?: boolean;
22
+ }): any;
23
+ declare function ContextMenuSeparator({ className, ...props }: React.ComponentProps<typeof ContextMenuPrimitive.Separator>): any;
24
+ declare function ContextMenuShortcut({ className, ...props }: React.ComponentProps<"span">): any;
25
+ export { ContextMenu, ContextMenuTrigger, ContextMenuContent, ContextMenuItem, ContextMenuCheckboxItem, ContextMenuRadioItem, ContextMenuLabel, ContextMenuSeparator, ContextMenuShortcut, ContextMenuGroup, ContextMenuPortal, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuRadioGroup, };
@@ -0,0 +1,13 @@
1
+ import * as React from "react";
2
+ import * as DialogPrimitive from "@radix-ui/react-dialog";
3
+ declare function Dialog({ ...props }: React.ComponentProps<typeof DialogPrimitive.Root>): any;
4
+ declare function DialogTrigger({ ...props }: React.ComponentProps<typeof DialogPrimitive.Trigger>): any;
5
+ declare function DialogPortal({ ...props }: React.ComponentProps<typeof DialogPrimitive.Portal>): any;
6
+ declare function DialogClose({ ...props }: React.ComponentProps<typeof DialogPrimitive.Close>): any;
7
+ declare function DialogOverlay({ className, ...props }: React.ComponentProps<typeof DialogPrimitive.Overlay>): any;
8
+ declare function DialogContent({ className, children, ...props }: React.ComponentProps<typeof DialogPrimitive.Content>): any;
9
+ declare function DialogHeader({ className, ...props }: React.ComponentProps<"div">): any;
10
+ declare function DialogFooter({ className, ...props }: React.ComponentProps<"div">): any;
11
+ declare function DialogTitle({ className, ...props }: React.ComponentProps<typeof DialogPrimitive.Title>): any;
12
+ declare function DialogDescription({ className, ...props }: React.ComponentProps<typeof DialogPrimitive.Description>): any;
13
+ export { Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, };
@@ -0,0 +1,13 @@
1
+ import { Drawer as DrawerPrimitive } from 'vaul';
2
+ import * as React from "react";
3
+ declare function Drawer({ ...props }: React.ComponentProps<typeof DrawerPrimitive.Root>): any;
4
+ declare function DrawerTrigger({ ...props }: React.ComponentProps<typeof DrawerPrimitive.Trigger>): any;
5
+ declare function DrawerPortal({ ...props }: React.ComponentProps<typeof DrawerPrimitive.Portal>): any;
6
+ declare function DrawerClose({ ...props }: React.ComponentProps<typeof DrawerPrimitive.Close>): any;
7
+ declare function DrawerOverlay({ className, ...props }: React.ComponentProps<typeof DrawerPrimitive.Overlay>): any;
8
+ declare function DrawerContent({ className, children, ...props }: React.ComponentProps<typeof DrawerPrimitive.Content>): any;
9
+ declare function DrawerHeader({ className, ...props }: React.ComponentProps<"div">): any;
10
+ declare function DrawerFooter({ className, ...props }: React.ComponentProps<"div">): any;
11
+ declare function DrawerTitle({ className, ...props }: React.ComponentProps<typeof DrawerPrimitive.Title>): any;
12
+ declare function DrawerDescription({ className, ...props }: React.ComponentProps<typeof DrawerPrimitive.Description>): any;
13
+ export { Drawer, DrawerPortal, DrawerOverlay, DrawerTrigger, DrawerClose, DrawerContent, DrawerHeader, DrawerFooter, DrawerTitle, DrawerDescription, };
@@ -0,0 +1,25 @@
1
+ import * as React from "react";
2
+ import * as DropdownMenuPrimitive from "@radix-ui/react-dropdown-menu";
3
+ declare function DropdownMenu({ ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.Root>): any;
4
+ declare function DropdownMenuPortal({ ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.Portal>): any;
5
+ declare function DropdownMenuTrigger({ ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.Trigger>): any;
6
+ declare function DropdownMenuContent({ className, sideOffset, ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.Content>): any;
7
+ declare function DropdownMenuGroup({ ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.Group>): any;
8
+ declare function DropdownMenuItem({ className, inset, variant, ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.Item> & {
9
+ inset?: boolean;
10
+ variant?: "default" | "destructive";
11
+ }): any;
12
+ declare function DropdownMenuCheckboxItem({ className, children, checked, ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.CheckboxItem>): any;
13
+ declare function DropdownMenuRadioGroup({ ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.RadioGroup>): any;
14
+ declare function DropdownMenuRadioItem({ className, children, ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.RadioItem>): any;
15
+ declare function DropdownMenuLabel({ className, inset, ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.Label> & {
16
+ inset?: boolean;
17
+ }): any;
18
+ declare function DropdownMenuSeparator({ className, ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.Separator>): any;
19
+ declare function DropdownMenuShortcut({ className, ...props }: React.ComponentProps<"span">): any;
20
+ declare function DropdownMenuSub({ ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.Sub>): any;
21
+ declare function DropdownMenuSubTrigger({ className, inset, children, ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.SubTrigger> & {
22
+ inset?: boolean;
23
+ }): any;
24
+ declare function DropdownMenuSubContent({ className, ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.SubContent>): any;
25
+ export { DropdownMenu, DropdownMenuPortal, DropdownMenuTrigger, DropdownMenuContent, DropdownMenuGroup, DropdownMenuLabel, DropdownMenuItem, DropdownMenuCheckboxItem, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubTrigger, DropdownMenuSubContent, };
@@ -0,0 +1,6 @@
1
+ import * as React from "react";
2
+ import * as HoverCardPrimitive from "@radix-ui/react-hover-card";
3
+ declare function HoverCard({ ...props }: React.ComponentProps<typeof HoverCardPrimitive.Root>): any;
4
+ declare function HoverCardTrigger({ ...props }: React.ComponentProps<typeof HoverCardPrimitive.Trigger>): any;
5
+ declare function HoverCardContent({ className, align, sideOffset, ...props }: React.ComponentProps<typeof HoverCardPrimitive.Content>): any;
6
+ export { HoverCard, HoverCardTrigger, HoverCardContent };
@@ -0,0 +1,11 @@
1
+ import { OTPInput } from 'input-otp';
2
+ import * as React from "react";
3
+ declare function InputOTP({ className, containerClassName, ...props }: React.ComponentProps<typeof OTPInput> & {
4
+ containerClassName?: string;
5
+ }): any;
6
+ declare function InputOTPGroup({ className, ...props }: React.ComponentProps<"div">): any;
7
+ declare function InputOTPSlot({ index, className, ...props }: React.ComponentProps<"div"> & {
8
+ index: number;
9
+ }): any;
10
+ declare function InputOTPSeparator({ ...props }: React.ComponentProps<"div">): any;
11
+ export { InputOTP, InputOTPGroup, InputOTPSlot, InputOTPSeparator };
@@ -0,0 +1,3 @@
1
+ import * as React from "react";
2
+ declare function Input({ className, type, ...props }: React.ComponentProps<"input">): any;
3
+ export { Input };
@@ -0,0 +1,4 @@
1
+ import * as React from "react";
2
+ import * as LabelPrimitive from "@radix-ui/react-label";
3
+ declare function Label({ className, ...props }: React.ComponentProps<typeof LabelPrimitive.Root>): any;
4
+ export { Label };
@@ -0,0 +1,26 @@
1
+ import * as React from "react";
2
+ import * as MenubarPrimitive from "@radix-ui/react-menubar";
3
+ declare function Menubar({ className, ...props }: React.ComponentProps<typeof MenubarPrimitive.Root>): any;
4
+ declare function MenubarMenu({ ...props }: React.ComponentProps<typeof MenubarPrimitive.Menu>): any;
5
+ declare function MenubarGroup({ ...props }: React.ComponentProps<typeof MenubarPrimitive.Group>): any;
6
+ declare function MenubarPortal({ ...props }: React.ComponentProps<typeof MenubarPrimitive.Portal>): any;
7
+ declare function MenubarRadioGroup({ ...props }: React.ComponentProps<typeof MenubarPrimitive.RadioGroup>): any;
8
+ declare function MenubarTrigger({ className, ...props }: React.ComponentProps<typeof MenubarPrimitive.Trigger>): any;
9
+ declare function MenubarContent({ className, align, alignOffset, sideOffset, ...props }: React.ComponentProps<typeof MenubarPrimitive.Content>): any;
10
+ declare function MenubarItem({ className, inset, variant, ...props }: React.ComponentProps<typeof MenubarPrimitive.Item> & {
11
+ inset?: boolean;
12
+ variant?: "default" | "destructive";
13
+ }): any;
14
+ declare function MenubarCheckboxItem({ className, children, checked, ...props }: React.ComponentProps<typeof MenubarPrimitive.CheckboxItem>): any;
15
+ declare function MenubarRadioItem({ className, children, ...props }: React.ComponentProps<typeof MenubarPrimitive.RadioItem>): any;
16
+ declare function MenubarLabel({ className, inset, ...props }: React.ComponentProps<typeof MenubarPrimitive.Label> & {
17
+ inset?: boolean;
18
+ }): any;
19
+ declare function MenubarSeparator({ className, ...props }: React.ComponentProps<typeof MenubarPrimitive.Separator>): any;
20
+ declare function MenubarShortcut({ className, ...props }: React.ComponentProps<"span">): any;
21
+ declare function MenubarSub({ ...props }: React.ComponentProps<typeof MenubarPrimitive.Sub>): any;
22
+ declare function MenubarSubTrigger({ className, inset, children, ...props }: React.ComponentProps<typeof MenubarPrimitive.SubTrigger> & {
23
+ inset?: boolean;
24
+ }): any;
25
+ declare function MenubarSubContent({ className, ...props }: React.ComponentProps<typeof MenubarPrimitive.SubContent>): any;
26
+ export { Menubar, MenubarPortal, MenubarMenu, MenubarTrigger, MenubarContent, MenubarGroup, MenubarSeparator, MenubarLabel, MenubarItem, MenubarShortcut, MenubarCheckboxItem, MenubarRadioGroup, MenubarRadioItem, MenubarSub, MenubarSubTrigger, MenubarSubContent, };