@blips/ui 0.0.1
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/index.cjs +2675 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +514 -0
- package/dist/index.d.ts +514 -0
- package/dist/index.js +2418 -0
- package/dist/index.js.map +1 -0
- package/package.json +153 -0
- package/src/components/accordion.tsx +56 -0
- package/src/components/alert-dialog.tsx +138 -0
- package/src/components/alert.tsx +59 -0
- package/src/components/aspect-ratio.tsx +5 -0
- package/src/components/avatar.tsx +50 -0
- package/src/components/badge.tsx +36 -0
- package/src/components/breadcrumb.tsx +115 -0
- package/src/components/button.tsx +56 -0
- package/src/components/calendar.tsx +216 -0
- package/src/components/card.tsx +86 -0
- package/src/components/carousel.tsx +259 -0
- package/src/components/checkbox.tsx +28 -0
- package/src/components/collapsible.tsx +11 -0
- package/src/components/command.tsx +150 -0
- package/src/components/context-menu.tsx +198 -0
- package/src/components/dialog.tsx +122 -0
- package/src/components/drawer.tsx +116 -0
- package/src/components/dropdown-menu.tsx +200 -0
- package/src/components/hover-card.tsx +27 -0
- package/src/components/input-otp.tsx +69 -0
- package/src/components/input.tsx +22 -0
- package/src/components/label.tsx +26 -0
- package/src/components/menubar.tsx +254 -0
- package/src/components/navigation-menu.tsx +128 -0
- package/src/components/pagination.tsx +116 -0
- package/src/components/popover.tsx +29 -0
- package/src/components/progress.tsx +28 -0
- package/src/components/radio-group.tsx +42 -0
- package/src/components/resizable.tsx +45 -0
- package/src/components/scroll-area.tsx +46 -0
- package/src/components/select.tsx +160 -0
- package/src/components/separator.tsx +29 -0
- package/src/components/sheet.tsx +140 -0
- package/src/components/skeleton.tsx +15 -0
- package/src/components/slider.tsx +26 -0
- package/src/components/sonner.tsx +45 -0
- package/src/components/switch.tsx +27 -0
- package/src/components/table.tsx +117 -0
- package/src/components/tabs.tsx +53 -0
- package/src/components/textarea.tsx +22 -0
- package/src/components/toggle-group.tsx +60 -0
- package/src/components/toggle.tsx +43 -0
- package/src/components/tooltip.tsx +30 -0
- package/src/globals.css +77 -0
- package/src/index.ts +322 -0
- package/src/lib/utils.ts +6 -0
package/src/index.ts
ADDED
|
@@ -0,0 +1,322 @@
|
|
|
1
|
+
// Accordion
|
|
2
|
+
export {
|
|
3
|
+
Accordion,
|
|
4
|
+
AccordionContent,
|
|
5
|
+
AccordionItem,
|
|
6
|
+
AccordionTrigger,
|
|
7
|
+
} from "./components/accordion";
|
|
8
|
+
|
|
9
|
+
// Alert
|
|
10
|
+
export { Alert, AlertDescription, AlertTitle } from "./components/alert";
|
|
11
|
+
|
|
12
|
+
// Alert Dialog
|
|
13
|
+
export {
|
|
14
|
+
AlertDialog,
|
|
15
|
+
AlertDialogAction,
|
|
16
|
+
AlertDialogCancel,
|
|
17
|
+
AlertDialogContent,
|
|
18
|
+
AlertDialogDescription,
|
|
19
|
+
AlertDialogFooter,
|
|
20
|
+
AlertDialogHeader,
|
|
21
|
+
AlertDialogOverlay,
|
|
22
|
+
AlertDialogPortal,
|
|
23
|
+
AlertDialogTitle,
|
|
24
|
+
AlertDialogTrigger,
|
|
25
|
+
} from "./components/alert-dialog";
|
|
26
|
+
|
|
27
|
+
// Aspect Ratio
|
|
28
|
+
export { AspectRatio } from "./components/aspect-ratio";
|
|
29
|
+
|
|
30
|
+
// Avatar
|
|
31
|
+
export { Avatar, AvatarFallback, AvatarImage } from "./components/avatar";
|
|
32
|
+
|
|
33
|
+
// Badge
|
|
34
|
+
export { Badge, badgeVariants } from "./components/badge";
|
|
35
|
+
|
|
36
|
+
// Breadcrumb
|
|
37
|
+
export {
|
|
38
|
+
Breadcrumb,
|
|
39
|
+
BreadcrumbEllipsis,
|
|
40
|
+
BreadcrumbItem,
|
|
41
|
+
BreadcrumbLink,
|
|
42
|
+
BreadcrumbList,
|
|
43
|
+
BreadcrumbPage,
|
|
44
|
+
BreadcrumbSeparator,
|
|
45
|
+
} from "./components/breadcrumb";
|
|
46
|
+
|
|
47
|
+
// Button
|
|
48
|
+
export { Button, type ButtonProps, buttonVariants } from "./components/button";
|
|
49
|
+
|
|
50
|
+
// Calendar
|
|
51
|
+
export { Calendar, CalendarDayButton } from "./components/calendar";
|
|
52
|
+
|
|
53
|
+
// Card
|
|
54
|
+
export {
|
|
55
|
+
Card,
|
|
56
|
+
CardContent,
|
|
57
|
+
CardDescription,
|
|
58
|
+
CardFooter,
|
|
59
|
+
CardHeader,
|
|
60
|
+
CardTitle,
|
|
61
|
+
} from "./components/card";
|
|
62
|
+
|
|
63
|
+
// Carousel
|
|
64
|
+
export {
|
|
65
|
+
Carousel,
|
|
66
|
+
type CarouselApi,
|
|
67
|
+
CarouselContent,
|
|
68
|
+
CarouselItem,
|
|
69
|
+
CarouselNext,
|
|
70
|
+
CarouselPrevious,
|
|
71
|
+
} from "./components/carousel";
|
|
72
|
+
|
|
73
|
+
// Checkbox
|
|
74
|
+
export { Checkbox } from "./components/checkbox";
|
|
75
|
+
|
|
76
|
+
// Collapsible
|
|
77
|
+
export {
|
|
78
|
+
Collapsible,
|
|
79
|
+
CollapsibleContent,
|
|
80
|
+
CollapsibleTrigger,
|
|
81
|
+
} from "./components/collapsible";
|
|
82
|
+
|
|
83
|
+
// Command
|
|
84
|
+
export {
|
|
85
|
+
Command,
|
|
86
|
+
CommandDialog,
|
|
87
|
+
CommandEmpty,
|
|
88
|
+
CommandGroup,
|
|
89
|
+
CommandInput,
|
|
90
|
+
CommandItem,
|
|
91
|
+
CommandList,
|
|
92
|
+
CommandSeparator,
|
|
93
|
+
CommandShortcut,
|
|
94
|
+
} from "./components/command";
|
|
95
|
+
|
|
96
|
+
// Context Menu
|
|
97
|
+
export {
|
|
98
|
+
ContextMenu,
|
|
99
|
+
ContextMenuCheckboxItem,
|
|
100
|
+
ContextMenuContent,
|
|
101
|
+
ContextMenuGroup,
|
|
102
|
+
ContextMenuItem,
|
|
103
|
+
ContextMenuLabel,
|
|
104
|
+
ContextMenuPortal,
|
|
105
|
+
ContextMenuRadioGroup,
|
|
106
|
+
ContextMenuRadioItem,
|
|
107
|
+
ContextMenuSeparator,
|
|
108
|
+
ContextMenuShortcut,
|
|
109
|
+
ContextMenuSub,
|
|
110
|
+
ContextMenuSubContent,
|
|
111
|
+
ContextMenuSubTrigger,
|
|
112
|
+
ContextMenuTrigger,
|
|
113
|
+
} from "./components/context-menu";
|
|
114
|
+
|
|
115
|
+
// Dialog
|
|
116
|
+
export {
|
|
117
|
+
Dialog,
|
|
118
|
+
DialogClose,
|
|
119
|
+
DialogContent,
|
|
120
|
+
DialogDescription,
|
|
121
|
+
DialogFooter,
|
|
122
|
+
DialogHeader,
|
|
123
|
+
DialogOverlay,
|
|
124
|
+
DialogPortal,
|
|
125
|
+
DialogTitle,
|
|
126
|
+
DialogTrigger,
|
|
127
|
+
} from "./components/dialog";
|
|
128
|
+
|
|
129
|
+
// Drawer
|
|
130
|
+
export {
|
|
131
|
+
Drawer,
|
|
132
|
+
DrawerClose,
|
|
133
|
+
DrawerContent,
|
|
134
|
+
DrawerDescription,
|
|
135
|
+
DrawerFooter,
|
|
136
|
+
DrawerHeader,
|
|
137
|
+
DrawerOverlay,
|
|
138
|
+
DrawerPortal,
|
|
139
|
+
DrawerTitle,
|
|
140
|
+
DrawerTrigger,
|
|
141
|
+
} from "./components/drawer";
|
|
142
|
+
|
|
143
|
+
// Dropdown Menu
|
|
144
|
+
export {
|
|
145
|
+
DropdownMenu,
|
|
146
|
+
DropdownMenuCheckboxItem,
|
|
147
|
+
DropdownMenuContent,
|
|
148
|
+
DropdownMenuGroup,
|
|
149
|
+
DropdownMenuItem,
|
|
150
|
+
DropdownMenuLabel,
|
|
151
|
+
DropdownMenuPortal,
|
|
152
|
+
DropdownMenuRadioGroup,
|
|
153
|
+
DropdownMenuRadioItem,
|
|
154
|
+
DropdownMenuSeparator,
|
|
155
|
+
DropdownMenuShortcut,
|
|
156
|
+
DropdownMenuSub,
|
|
157
|
+
DropdownMenuSubContent,
|
|
158
|
+
DropdownMenuSubTrigger,
|
|
159
|
+
DropdownMenuTrigger,
|
|
160
|
+
} from "./components/dropdown-menu";
|
|
161
|
+
|
|
162
|
+
// Hover Card
|
|
163
|
+
export {
|
|
164
|
+
HoverCard,
|
|
165
|
+
HoverCardContent,
|
|
166
|
+
HoverCardTrigger,
|
|
167
|
+
} from "./components/hover-card";
|
|
168
|
+
|
|
169
|
+
// Input
|
|
170
|
+
export { Input } from "./components/input";
|
|
171
|
+
|
|
172
|
+
// Input OTP
|
|
173
|
+
export {
|
|
174
|
+
InputOTP,
|
|
175
|
+
InputOTPGroup,
|
|
176
|
+
InputOTPSeparator,
|
|
177
|
+
InputOTPSlot,
|
|
178
|
+
} from "./components/input-otp";
|
|
179
|
+
|
|
180
|
+
// Label
|
|
181
|
+
export { Label } from "./components/label";
|
|
182
|
+
|
|
183
|
+
// Menubar
|
|
184
|
+
export {
|
|
185
|
+
Menubar,
|
|
186
|
+
MenubarCheckboxItem,
|
|
187
|
+
MenubarContent,
|
|
188
|
+
MenubarGroup,
|
|
189
|
+
MenubarItem,
|
|
190
|
+
MenubarLabel,
|
|
191
|
+
MenubarMenu,
|
|
192
|
+
MenubarPortal,
|
|
193
|
+
MenubarRadioGroup,
|
|
194
|
+
MenubarRadioItem,
|
|
195
|
+
MenubarSeparator,
|
|
196
|
+
MenubarShortcut,
|
|
197
|
+
MenubarSub,
|
|
198
|
+
MenubarSubContent,
|
|
199
|
+
MenubarSubTrigger,
|
|
200
|
+
MenubarTrigger,
|
|
201
|
+
} from "./components/menubar";
|
|
202
|
+
|
|
203
|
+
// Navigation Menu
|
|
204
|
+
export {
|
|
205
|
+
NavigationMenu,
|
|
206
|
+
NavigationMenuContent,
|
|
207
|
+
NavigationMenuIndicator,
|
|
208
|
+
NavigationMenuItem,
|
|
209
|
+
NavigationMenuLink,
|
|
210
|
+
NavigationMenuList,
|
|
211
|
+
NavigationMenuTrigger,
|
|
212
|
+
NavigationMenuViewport,
|
|
213
|
+
navigationMenuTriggerStyle,
|
|
214
|
+
} from "./components/navigation-menu";
|
|
215
|
+
|
|
216
|
+
// Pagination
|
|
217
|
+
export {
|
|
218
|
+
Pagination,
|
|
219
|
+
PaginationContent,
|
|
220
|
+
PaginationEllipsis,
|
|
221
|
+
PaginationItem,
|
|
222
|
+
PaginationLink,
|
|
223
|
+
PaginationNext,
|
|
224
|
+
PaginationPrevious,
|
|
225
|
+
} from "./components/pagination";
|
|
226
|
+
|
|
227
|
+
// Popover
|
|
228
|
+
export { Popover, PopoverContent, PopoverTrigger } from "./components/popover";
|
|
229
|
+
|
|
230
|
+
// Progress
|
|
231
|
+
export { Progress } from "./components/progress";
|
|
232
|
+
|
|
233
|
+
// Radio Group
|
|
234
|
+
export { RadioGroup, RadioGroupItem } from "./components/radio-group";
|
|
235
|
+
|
|
236
|
+
// Resizable
|
|
237
|
+
export {
|
|
238
|
+
ResizableHandle,
|
|
239
|
+
ResizablePanel,
|
|
240
|
+
ResizablePanelGroup,
|
|
241
|
+
} from "./components/resizable";
|
|
242
|
+
|
|
243
|
+
// Scroll Area
|
|
244
|
+
export { ScrollArea, ScrollBar } from "./components/scroll-area";
|
|
245
|
+
|
|
246
|
+
// Select
|
|
247
|
+
export {
|
|
248
|
+
Select,
|
|
249
|
+
SelectContent,
|
|
250
|
+
SelectGroup,
|
|
251
|
+
SelectItem,
|
|
252
|
+
SelectLabel,
|
|
253
|
+
SelectScrollDownButton,
|
|
254
|
+
SelectScrollUpButton,
|
|
255
|
+
SelectSeparator,
|
|
256
|
+
SelectTrigger,
|
|
257
|
+
SelectValue,
|
|
258
|
+
} from "./components/select";
|
|
259
|
+
|
|
260
|
+
// Separator
|
|
261
|
+
export { Separator } from "./components/separator";
|
|
262
|
+
|
|
263
|
+
// Sheet
|
|
264
|
+
export {
|
|
265
|
+
Sheet,
|
|
266
|
+
SheetClose,
|
|
267
|
+
SheetContent,
|
|
268
|
+
SheetDescription,
|
|
269
|
+
SheetFooter,
|
|
270
|
+
SheetHeader,
|
|
271
|
+
SheetOverlay,
|
|
272
|
+
SheetPortal,
|
|
273
|
+
SheetTitle,
|
|
274
|
+
SheetTrigger,
|
|
275
|
+
} from "./components/sheet";
|
|
276
|
+
|
|
277
|
+
// Skeleton
|
|
278
|
+
export { Skeleton } from "./components/skeleton";
|
|
279
|
+
|
|
280
|
+
// Slider
|
|
281
|
+
export { Slider } from "./components/slider";
|
|
282
|
+
|
|
283
|
+
// Sonner (Toast)
|
|
284
|
+
export { Toaster } from "./components/sonner";
|
|
285
|
+
|
|
286
|
+
// Switch
|
|
287
|
+
export { Switch } from "./components/switch";
|
|
288
|
+
|
|
289
|
+
// Table
|
|
290
|
+
export {
|
|
291
|
+
Table,
|
|
292
|
+
TableBody,
|
|
293
|
+
TableCaption,
|
|
294
|
+
TableCell,
|
|
295
|
+
TableFooter,
|
|
296
|
+
TableHead,
|
|
297
|
+
TableHeader,
|
|
298
|
+
TableRow,
|
|
299
|
+
} from "./components/table";
|
|
300
|
+
|
|
301
|
+
// Tabs
|
|
302
|
+
export { Tabs, TabsContent, TabsList, TabsTrigger } from "./components/tabs";
|
|
303
|
+
|
|
304
|
+
// Textarea
|
|
305
|
+
export { Textarea } from "./components/textarea";
|
|
306
|
+
|
|
307
|
+
// Toggle
|
|
308
|
+
export { Toggle, toggleVariants } from "./components/toggle";
|
|
309
|
+
|
|
310
|
+
// Toggle Group
|
|
311
|
+
export { ToggleGroup, ToggleGroupItem } from "./components/toggle-group";
|
|
312
|
+
|
|
313
|
+
// Tooltip
|
|
314
|
+
export {
|
|
315
|
+
Tooltip,
|
|
316
|
+
TooltipContent,
|
|
317
|
+
TooltipProvider,
|
|
318
|
+
TooltipTrigger,
|
|
319
|
+
} from "./components/tooltip";
|
|
320
|
+
|
|
321
|
+
// Utilities
|
|
322
|
+
export { cn } from "./lib/utils";
|