@arolariu/components 0.1.0 → 0.1.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.
Files changed (43) hide show
  1. package/EXAMPLES.md +1035 -1035
  2. package/LICENSE.md +21 -21
  3. package/changelog.md +9 -0
  4. package/dist/components/ui/bubble-background.js.map +1 -1
  5. package/dist/components/ui/chart.d.ts +25 -11
  6. package/dist/components/ui/chart.d.ts.map +1 -1
  7. package/dist/components/ui/chart.js +14 -11
  8. package/dist/components/ui/chart.js.map +1 -1
  9. package/dist/components/ui/dropdrawer.js +1 -1
  10. package/dist/components/ui/dropdrawer.js.map +1 -1
  11. package/dist/components/ui/sidebar.js +1 -1
  12. package/dist/components/ui/sidebar.js.map +1 -1
  13. package/dist/components/ui/typewriter.d.ts +18 -0
  14. package/dist/components/ui/typewriter.d.ts.map +1 -0
  15. package/dist/components/ui/typewriter.js +128 -0
  16. package/dist/components/ui/typewriter.js.map +1 -0
  17. package/dist/hooks/{use-mobile.d.ts → useIsMobile.d.ts} +1 -1
  18. package/dist/hooks/useIsMobile.d.ts.map +1 -0
  19. package/dist/hooks/useIsMobile.js +19 -0
  20. package/dist/hooks/useIsMobile.js.map +1 -0
  21. package/dist/hooks/useWindowSize.d.ts +30 -0
  22. package/dist/hooks/useWindowSize.d.ts.map +1 -0
  23. package/dist/hooks/useWindowSize.js +28 -0
  24. package/dist/hooks/useWindowSize.js.map +1 -0
  25. package/dist/index.css +67 -25
  26. package/dist/index.css.map +1 -1
  27. package/dist/index.d.ts +4 -2
  28. package/dist/index.d.ts.map +1 -1
  29. package/dist/index.js +4 -2
  30. package/dist/lib/utils.js.map +1 -1
  31. package/package.json +52 -42
  32. package/src/components/ui/bubble-background.tsx +189 -189
  33. package/src/components/ui/chart.tsx +67 -35
  34. package/src/components/ui/dropdrawer.tsx +973 -973
  35. package/src/components/ui/sidebar.tsx +1 -1
  36. package/src/components/ui/typewriter.tsx +188 -0
  37. package/src/hooks/{use-mobile.tsx → useIsMobile.tsx} +45 -44
  38. package/src/hooks/useWindowSize.tsx +72 -0
  39. package/src/index.ts +408 -400
  40. package/src/lib/utils.ts +10 -10
  41. package/dist/hooks/use-mobile.d.ts.map +0 -1
  42. package/dist/hooks/use-mobile.js +0 -18
  43. package/dist/hooks/use-mobile.js.map +0 -1
package/src/index.ts CHANGED
@@ -1,400 +1,408 @@
1
- export {
2
- Accordion,
3
- AccordionItem,
4
- AccordionTrigger,
5
- AccordionContent,
6
- } from "./components/ui/accordion";
7
-
8
- export {
9
- AlertDialog,
10
- AlertDialogPortal,
11
- AlertDialogOverlay,
12
- AlertDialogTrigger,
13
- AlertDialogContent,
14
- AlertDialogHeader,
15
- AlertDialogFooter,
16
- AlertDialogTitle,
17
- AlertDialogDescription,
18
- AlertDialogAction,
19
- AlertDialogCancel,
20
- } from "./components/ui/alert-dialog";
21
-
22
- export { Alert, AlertTitle, AlertDescription } from "./components/ui/alert";
23
-
24
- export { AspectRatio } from "./components/ui/aspect-ratio";
25
-
26
- export { Avatar, AvatarImage, AvatarFallback } from "./components/ui/avatar";
27
-
28
- export { Badge, badgeVariants } from "./components/ui/badge";
29
-
30
- export {
31
- Breadcrumb,
32
- BreadcrumbList,
33
- BreadcrumbItem,
34
- BreadcrumbLink,
35
- BreadcrumbPage,
36
- BreadcrumbSeparator,
37
- BreadcrumbEllipsis,
38
- } from "./components/ui/breadcrumb";
39
-
40
- export { Button, buttonVariants } from "./components/ui/button";
41
-
42
- export { Calendar } from "./components/ui/calendar";
43
-
44
- export {
45
- Card,
46
- CardAction,
47
- CardHeader,
48
- CardFooter,
49
- CardTitle,
50
- CardDescription,
51
- CardContent,
52
- } from "./components/ui/card";
53
-
54
- export {
55
- type CarouselApi,
56
- Carousel,
57
- CarouselContent,
58
- CarouselItem,
59
- CarouselPrevious,
60
- CarouselNext,
61
- } from "./components/ui/carousel";
62
-
63
- export {
64
- ChartContainer,
65
- ChartTooltip,
66
- ChartTooltipContent,
67
- ChartLegend,
68
- ChartLegendContent,
69
- ChartStyle,
70
- } from "./components/ui/chart";
71
-
72
- export { Checkbox } from "./components/ui/checkbox";
73
-
74
- export {
75
- Collapsible,
76
- CollapsibleTrigger,
77
- CollapsibleContent,
78
- } from "./components/ui/collapsible";
79
-
80
- export {
81
- Command,
82
- CommandDialog,
83
- CommandInput,
84
- CommandList,
85
- CommandEmpty,
86
- CommandGroup,
87
- CommandItem,
88
- CommandShortcut,
89
- CommandSeparator,
90
- } from "./components/ui/command";
91
-
92
- export {
93
- ContextMenu,
94
- ContextMenuTrigger,
95
- ContextMenuContent,
96
- ContextMenuItem,
97
- ContextMenuCheckboxItem,
98
- ContextMenuRadioItem,
99
- ContextMenuLabel,
100
- ContextMenuSeparator,
101
- ContextMenuShortcut,
102
- ContextMenuGroup,
103
- ContextMenuPortal,
104
- ContextMenuSub,
105
- ContextMenuSubContent,
106
- ContextMenuSubTrigger,
107
- ContextMenuRadioGroup,
108
- } from "./components/ui/context-menu";
109
-
110
- export {
111
- Dialog,
112
- DialogClose,
113
- DialogContent,
114
- DialogDescription,
115
- DialogFooter,
116
- DialogHeader,
117
- DialogOverlay,
118
- DialogPortal,
119
- DialogTitle,
120
- DialogTrigger,
121
- } from "./components/ui/dialog";
122
-
123
- export {
124
- Drawer,
125
- DrawerPortal,
126
- DrawerOverlay,
127
- DrawerTrigger,
128
- DrawerClose,
129
- DrawerContent,
130
- DrawerHeader,
131
- DrawerFooter,
132
- DrawerTitle,
133
- DrawerDescription,
134
- } from "./components/ui/drawer";
135
-
136
- export {
137
- DropdownMenu,
138
- DropdownMenuPortal,
139
- DropdownMenuTrigger,
140
- DropdownMenuContent,
141
- DropdownMenuGroup,
142
- DropdownMenuLabel,
143
- DropdownMenuItem,
144
- DropdownMenuCheckboxItem,
145
- DropdownMenuRadioGroup,
146
- DropdownMenuRadioItem,
147
- DropdownMenuSeparator,
148
- DropdownMenuShortcut,
149
- DropdownMenuSub,
150
- DropdownMenuSubTrigger,
151
- DropdownMenuSubContent,
152
- } from "./components/ui/dropdown-menu";
153
-
154
- export {
155
- useFormField,
156
- Form,
157
- FormItem,
158
- FormLabel,
159
- FormControl,
160
- FormDescription,
161
- FormMessage,
162
- FormField,
163
- } from "./components/ui/form";
164
-
165
- export {
166
- HoverCard,
167
- HoverCardTrigger,
168
- HoverCardContent,
169
- } from "./components/ui/hover-card";
170
-
171
- export {
172
- InputOTP,
173
- InputOTPGroup,
174
- InputOTPSlot,
175
- InputOTPSeparator,
176
- } from "./components/ui/input-otp";
177
-
178
- export { Input } from "./components/ui/input";
179
-
180
- export { Label } from "./components/ui/label";
181
-
182
- export {
183
- Menubar,
184
- MenubarPortal,
185
- MenubarMenu,
186
- MenubarTrigger,
187
- MenubarContent,
188
- MenubarGroup,
189
- MenubarSeparator,
190
- MenubarLabel,
191
- MenubarItem,
192
- MenubarShortcut,
193
- MenubarCheckboxItem,
194
- MenubarRadioGroup,
195
- MenubarRadioItem,
196
- MenubarSub,
197
- MenubarSubTrigger,
198
- MenubarSubContent,
199
- } from "./components/ui/menubar";
200
-
201
- export {
202
- NavigationMenu,
203
- NavigationMenuList,
204
- NavigationMenuItem,
205
- NavigationMenuContent,
206
- NavigationMenuTrigger,
207
- NavigationMenuLink,
208
- NavigationMenuIndicator,
209
- NavigationMenuViewport,
210
- navigationMenuTriggerStyle,
211
- } from "./components/ui/navigation-menu";
212
-
213
- export {
214
- Pagination,
215
- PaginationContent,
216
- PaginationLink,
217
- PaginationItem,
218
- PaginationPrevious,
219
- PaginationNext,
220
- PaginationEllipsis,
221
- } from "./components/ui/pagination";
222
-
223
- export {
224
- Popover,
225
- PopoverTrigger,
226
- PopoverContent,
227
- PopoverAnchor,
228
- } from "./components/ui/popover";
229
-
230
- export { Progress } from "./components/ui/progress";
231
-
232
- export { RadioGroup, RadioGroupItem } from "./components/ui/radio-group";
233
-
234
- export {
235
- ResizablePanelGroup,
236
- ResizablePanel,
237
- ResizableHandle,
238
- } from "./components/ui/resizable";
239
-
240
- export { ScrollArea, ScrollBar } from "./components/ui/scroll-area";
241
-
242
- export {
243
- Select,
244
- SelectContent,
245
- SelectGroup,
246
- SelectItem,
247
- SelectLabel,
248
- SelectScrollDownButton,
249
- SelectScrollUpButton,
250
- SelectSeparator,
251
- SelectTrigger,
252
- SelectValue,
253
- } from "./components/ui/select";
254
-
255
- export { Separator } from "./components/ui/separator";
256
-
257
- export {
258
- Sheet,
259
- SheetTrigger,
260
- SheetClose,
261
- SheetContent,
262
- SheetHeader,
263
- SheetFooter,
264
- SheetTitle,
265
- SheetDescription,
266
- } from "./components/ui/sheet";
267
-
268
- export {
269
- Sidebar,
270
- SidebarContent,
271
- SidebarFooter,
272
- SidebarGroup,
273
- SidebarGroupAction,
274
- SidebarGroupContent,
275
- SidebarGroupLabel,
276
- SidebarHeader,
277
- SidebarInput,
278
- SidebarInset,
279
- SidebarMenu,
280
- SidebarMenuAction,
281
- SidebarMenuBadge,
282
- SidebarMenuButton,
283
- SidebarMenuItem,
284
- SidebarMenuSkeleton,
285
- SidebarMenuSub,
286
- SidebarMenuSubButton,
287
- SidebarMenuSubItem,
288
- SidebarProvider,
289
- SidebarRail,
290
- SidebarSeparator,
291
- SidebarTrigger,
292
- useSidebar,
293
- } from "./components/ui/sidebar";
294
-
295
- export { Skeleton } from "./components/ui/skeleton";
296
-
297
- export { Slider } from "./components/ui/slider";
298
-
299
- export { Toaster, toast } from "./components/ui/sonner";
300
-
301
- export { Switch } from "./components/ui/switch";
302
-
303
- export {
304
- Table,
305
- TableHeader,
306
- TableBody,
307
- TableFooter,
308
- TableHead,
309
- TableRow,
310
- TableCell,
311
- TableCaption,
312
- } from "./components/ui/table";
313
-
314
- export { Tabs, TabsList, TabsTrigger, TabsContent } from "./components/ui/tabs";
315
-
316
- export { Textarea } from "./components/ui/textarea";
317
-
318
- export { ToggleGroup, ToggleGroupItem } from "./components/ui/toggle-group";
319
-
320
- export { Toggle, toggleVariants } from "./components/ui/toggle";
321
-
322
- export {
323
- Tooltip,
324
- TooltipTrigger,
325
- TooltipContent,
326
- TooltipProvider,
327
- } from "./components/ui/tooltip";
328
-
329
- export { useIsMobile } from "./hooks/use-mobile";
330
-
331
- export { cn } from "./lib/utils";
332
-
333
- // Animate-UI exports:
334
- export {
335
- FlipButton,
336
- type FlipButtonProps,
337
- type FlipDirection,
338
- } from "./components/ui/flip-button";
339
-
340
- export {
341
- RippleButton,
342
- type RippleButtonProps,
343
- } from "./components/ui/ripple-button";
344
-
345
- export {
346
- CountingNumber,
347
- type CountingNumberProps,
348
- } from "./components/ui/counting-number";
349
-
350
- export {
351
- GradientText,
352
- type GradientTextProps,
353
- } from "./components/ui/gradient-text";
354
-
355
- export {
356
- HighlightText,
357
- type HighlightTextProps,
358
- } from "./components/ui/highlight-text";
359
-
360
- export {
361
- BubbleBackground,
362
- type BubbleBackgroundProps,
363
- } from "./components/ui/bubble-background";
364
-
365
- export {
366
- FireworksBackground,
367
- type FireworksBackgroundProps,
368
- } from "./components/ui/fireworks-background";
369
-
370
- export {
371
- GradientBackground,
372
- type GradientBackgroundProps,
373
- } from "./components/ui/gradient-background";
374
-
375
- export {
376
- HoleBackground,
377
- type HoleBackgroundProps,
378
- } from "./components/ui/hole-background";
379
-
380
- // Magic UI exports:
381
- export { Scratcher } from "./components/ui/scratcher";
382
- export { DotBackground } from "./components/ui/dot-background";
383
-
384
- // Aceternity UI exports:
385
- export { BackgroundBeams } from "./components/ui/background-beams";
386
-
387
- // Jia Wei Ng export (https://github.com/jiaweing/DropDrawer):
388
- export {
389
- DropDrawer,
390
- DropDrawerContent,
391
- DropDrawerFooter,
392
- DropDrawerGroup,
393
- DropDrawerItem,
394
- DropDrawerLabel,
395
- DropDrawerSeparator,
396
- DropDrawerSub,
397
- DropDrawerSubContent,
398
- DropDrawerSubTrigger,
399
- DropDrawerTrigger,
400
- } from "./components/ui/dropdrawer";
1
+ export {
2
+ Accordion,
3
+ AccordionItem,
4
+ AccordionTrigger,
5
+ AccordionContent,
6
+ } from "./components/ui/accordion";
7
+
8
+ export {
9
+ AlertDialog,
10
+ AlertDialogPortal,
11
+ AlertDialogOverlay,
12
+ AlertDialogTrigger,
13
+ AlertDialogContent,
14
+ AlertDialogHeader,
15
+ AlertDialogFooter,
16
+ AlertDialogTitle,
17
+ AlertDialogDescription,
18
+ AlertDialogAction,
19
+ AlertDialogCancel,
20
+ } from "./components/ui/alert-dialog";
21
+
22
+ export { Alert, AlertTitle, AlertDescription } from "./components/ui/alert";
23
+
24
+ export { AspectRatio } from "./components/ui/aspect-ratio";
25
+
26
+ export { Avatar, AvatarImage, AvatarFallback } from "./components/ui/avatar";
27
+
28
+ export { Badge, badgeVariants } from "./components/ui/badge";
29
+
30
+ export {
31
+ Breadcrumb,
32
+ BreadcrumbList,
33
+ BreadcrumbItem,
34
+ BreadcrumbLink,
35
+ BreadcrumbPage,
36
+ BreadcrumbSeparator,
37
+ BreadcrumbEllipsis,
38
+ } from "./components/ui/breadcrumb";
39
+
40
+ export { Button, buttonVariants } from "./components/ui/button";
41
+
42
+ export { Calendar } from "./components/ui/calendar";
43
+
44
+ export {
45
+ Card,
46
+ CardAction,
47
+ CardHeader,
48
+ CardFooter,
49
+ CardTitle,
50
+ CardDescription,
51
+ CardContent,
52
+ } from "./components/ui/card";
53
+
54
+ export {
55
+ type CarouselApi,
56
+ Carousel,
57
+ CarouselContent,
58
+ CarouselItem,
59
+ CarouselPrevious,
60
+ CarouselNext,
61
+ } from "./components/ui/carousel";
62
+
63
+ export {
64
+ type ChartConfig,
65
+ type ChartLegendContentProps,
66
+ type CustomTooltipProps,
67
+ ChartContainer,
68
+ ChartTooltip,
69
+ ChartTooltipContent,
70
+ ChartLegend,
71
+ ChartLegendContent,
72
+ ChartStyle,
73
+ } from "./components/ui/chart";
74
+
75
+ export { Checkbox } from "./components/ui/checkbox";
76
+
77
+ export {
78
+ Collapsible,
79
+ CollapsibleTrigger,
80
+ CollapsibleContent,
81
+ } from "./components/ui/collapsible";
82
+
83
+ export {
84
+ Command,
85
+ CommandDialog,
86
+ CommandInput,
87
+ CommandList,
88
+ CommandEmpty,
89
+ CommandGroup,
90
+ CommandItem,
91
+ CommandShortcut,
92
+ CommandSeparator,
93
+ } from "./components/ui/command";
94
+
95
+ export {
96
+ ContextMenu,
97
+ ContextMenuTrigger,
98
+ ContextMenuContent,
99
+ ContextMenuItem,
100
+ ContextMenuCheckboxItem,
101
+ ContextMenuRadioItem,
102
+ ContextMenuLabel,
103
+ ContextMenuSeparator,
104
+ ContextMenuShortcut,
105
+ ContextMenuGroup,
106
+ ContextMenuPortal,
107
+ ContextMenuSub,
108
+ ContextMenuSubContent,
109
+ ContextMenuSubTrigger,
110
+ ContextMenuRadioGroup,
111
+ } from "./components/ui/context-menu";
112
+
113
+ export {
114
+ Dialog,
115
+ DialogClose,
116
+ DialogContent,
117
+ DialogDescription,
118
+ DialogFooter,
119
+ DialogHeader,
120
+ DialogOverlay,
121
+ DialogPortal,
122
+ DialogTitle,
123
+ DialogTrigger,
124
+ } from "./components/ui/dialog";
125
+
126
+ export {
127
+ Drawer,
128
+ DrawerPortal,
129
+ DrawerOverlay,
130
+ DrawerTrigger,
131
+ DrawerClose,
132
+ DrawerContent,
133
+ DrawerHeader,
134
+ DrawerFooter,
135
+ DrawerTitle,
136
+ DrawerDescription,
137
+ } from "./components/ui/drawer";
138
+
139
+ export {
140
+ DropdownMenu,
141
+ DropdownMenuPortal,
142
+ DropdownMenuTrigger,
143
+ DropdownMenuContent,
144
+ DropdownMenuGroup,
145
+ DropdownMenuLabel,
146
+ DropdownMenuItem,
147
+ DropdownMenuCheckboxItem,
148
+ DropdownMenuRadioGroup,
149
+ DropdownMenuRadioItem,
150
+ DropdownMenuSeparator,
151
+ DropdownMenuShortcut,
152
+ DropdownMenuSub,
153
+ DropdownMenuSubTrigger,
154
+ DropdownMenuSubContent,
155
+ } from "./components/ui/dropdown-menu";
156
+
157
+ export {
158
+ useFormField,
159
+ Form,
160
+ FormItem,
161
+ FormLabel,
162
+ FormControl,
163
+ FormDescription,
164
+ FormMessage,
165
+ FormField,
166
+ } from "./components/ui/form";
167
+
168
+ export {
169
+ HoverCard,
170
+ HoverCardTrigger,
171
+ HoverCardContent,
172
+ } from "./components/ui/hover-card";
173
+
174
+ export {
175
+ InputOTP,
176
+ InputOTPGroup,
177
+ InputOTPSlot,
178
+ InputOTPSeparator,
179
+ } from "./components/ui/input-otp";
180
+
181
+ export { Input } from "./components/ui/input";
182
+
183
+ export { Label } from "./components/ui/label";
184
+
185
+ export {
186
+ Menubar,
187
+ MenubarPortal,
188
+ MenubarMenu,
189
+ MenubarTrigger,
190
+ MenubarContent,
191
+ MenubarGroup,
192
+ MenubarSeparator,
193
+ MenubarLabel,
194
+ MenubarItem,
195
+ MenubarShortcut,
196
+ MenubarCheckboxItem,
197
+ MenubarRadioGroup,
198
+ MenubarRadioItem,
199
+ MenubarSub,
200
+ MenubarSubTrigger,
201
+ MenubarSubContent,
202
+ } from "./components/ui/menubar";
203
+
204
+ export {
205
+ NavigationMenu,
206
+ NavigationMenuList,
207
+ NavigationMenuItem,
208
+ NavigationMenuContent,
209
+ NavigationMenuTrigger,
210
+ NavigationMenuLink,
211
+ NavigationMenuIndicator,
212
+ NavigationMenuViewport,
213
+ navigationMenuTriggerStyle,
214
+ } from "./components/ui/navigation-menu";
215
+
216
+ export {
217
+ Pagination,
218
+ PaginationContent,
219
+ PaginationLink,
220
+ PaginationItem,
221
+ PaginationPrevious,
222
+ PaginationNext,
223
+ PaginationEllipsis,
224
+ } from "./components/ui/pagination";
225
+
226
+ export {
227
+ Popover,
228
+ PopoverTrigger,
229
+ PopoverContent,
230
+ PopoverAnchor,
231
+ } from "./components/ui/popover";
232
+
233
+ export { Progress } from "./components/ui/progress";
234
+
235
+ export { RadioGroup, RadioGroupItem } from "./components/ui/radio-group";
236
+
237
+ export {
238
+ ResizablePanelGroup,
239
+ ResizablePanel,
240
+ ResizableHandle,
241
+ } from "./components/ui/resizable";
242
+
243
+ export { ScrollArea, ScrollBar } from "./components/ui/scroll-area";
244
+
245
+ export {
246
+ Select,
247
+ SelectContent,
248
+ SelectGroup,
249
+ SelectItem,
250
+ SelectLabel,
251
+ SelectScrollDownButton,
252
+ SelectScrollUpButton,
253
+ SelectSeparator,
254
+ SelectTrigger,
255
+ SelectValue,
256
+ } from "./components/ui/select";
257
+
258
+ export { Separator } from "./components/ui/separator";
259
+
260
+ export {
261
+ Sheet,
262
+ SheetTrigger,
263
+ SheetClose,
264
+ SheetContent,
265
+ SheetHeader,
266
+ SheetFooter,
267
+ SheetTitle,
268
+ SheetDescription,
269
+ } from "./components/ui/sheet";
270
+
271
+ export {
272
+ Sidebar,
273
+ SidebarContent,
274
+ SidebarFooter,
275
+ SidebarGroup,
276
+ SidebarGroupAction,
277
+ SidebarGroupContent,
278
+ SidebarGroupLabel,
279
+ SidebarHeader,
280
+ SidebarInput,
281
+ SidebarInset,
282
+ SidebarMenu,
283
+ SidebarMenuAction,
284
+ SidebarMenuBadge,
285
+ SidebarMenuButton,
286
+ SidebarMenuItem,
287
+ SidebarMenuSkeleton,
288
+ SidebarMenuSub,
289
+ SidebarMenuSubButton,
290
+ SidebarMenuSubItem,
291
+ SidebarProvider,
292
+ SidebarRail,
293
+ SidebarSeparator,
294
+ SidebarTrigger,
295
+ useSidebar,
296
+ } from "./components/ui/sidebar";
297
+
298
+ export { Skeleton } from "./components/ui/skeleton";
299
+
300
+ export { Slider } from "./components/ui/slider";
301
+
302
+ export { Toaster, toast } from "./components/ui/sonner";
303
+
304
+ export { Switch } from "./components/ui/switch";
305
+
306
+ export {
307
+ Table,
308
+ TableHeader,
309
+ TableBody,
310
+ TableFooter,
311
+ TableHead,
312
+ TableRow,
313
+ TableCell,
314
+ TableCaption,
315
+ } from "./components/ui/table";
316
+
317
+ export { Tabs, TabsList, TabsTrigger, TabsContent } from "./components/ui/tabs";
318
+
319
+ export { Textarea } from "./components/ui/textarea";
320
+
321
+ export { ToggleGroup, ToggleGroupItem } from "./components/ui/toggle-group";
322
+
323
+ export { Toggle, toggleVariants } from "./components/ui/toggle";
324
+
325
+ export {
326
+ Tooltip,
327
+ TooltipTrigger,
328
+ TooltipContent,
329
+ TooltipProvider,
330
+ } from "./components/ui/tooltip";
331
+
332
+ export { useIsMobile } from "./hooks/useIsMobile";
333
+ export { useWindowSize } from "./hooks/useWindowSize";
334
+
335
+ export { cn } from "./lib/utils";
336
+
337
+ // Animate-UI exports:
338
+ export {
339
+ FlipButton,
340
+ type FlipButtonProps,
341
+ type FlipDirection,
342
+ } from "./components/ui/flip-button";
343
+
344
+ export {
345
+ RippleButton,
346
+ type RippleButtonProps,
347
+ } from "./components/ui/ripple-button";
348
+
349
+ export {
350
+ CountingNumber,
351
+ type CountingNumberProps,
352
+ } from "./components/ui/counting-number";
353
+
354
+ export {
355
+ GradientText,
356
+ type GradientTextProps,
357
+ } from "./components/ui/gradient-text";
358
+
359
+ export {
360
+ HighlightText,
361
+ type HighlightTextProps,
362
+ } from "./components/ui/highlight-text";
363
+
364
+ export {
365
+ BubbleBackground,
366
+ type BubbleBackgroundProps,
367
+ } from "./components/ui/bubble-background";
368
+
369
+ export {
370
+ FireworksBackground,
371
+ type FireworksBackgroundProps,
372
+ } from "./components/ui/fireworks-background";
373
+
374
+ export {
375
+ GradientBackground,
376
+ type GradientBackgroundProps,
377
+ } from "./components/ui/gradient-background";
378
+
379
+ export {
380
+ HoleBackground,
381
+ type HoleBackgroundProps,
382
+ } from "./components/ui/hole-background";
383
+
384
+ // Magic UI exports:
385
+ export { Scratcher } from "./components/ui/scratcher";
386
+ export { DotBackground } from "./components/ui/dot-background";
387
+
388
+ // Aceternity UI exports:
389
+ export { BackgroundBeams } from "./components/ui/background-beams";
390
+ export {
391
+ TypewriterText,
392
+ TypewriterTextSmooth,
393
+ } from "./components/ui/typewriter";
394
+
395
+ // Jia Wei Ng export (https://github.com/jiaweing/DropDrawer):
396
+ export {
397
+ DropDrawer,
398
+ DropDrawerContent,
399
+ DropDrawerFooter,
400
+ DropDrawerGroup,
401
+ DropDrawerItem,
402
+ DropDrawerLabel,
403
+ DropDrawerSeparator,
404
+ DropDrawerSub,
405
+ DropDrawerSubContent,
406
+ DropDrawerSubTrigger,
407
+ DropDrawerTrigger,
408
+ } from "./components/ui/dropdrawer";