react-shadcn-kit 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -6
- package/dist/assets/global.css +1 -1
- package/dist/atoms/chart.d.ts +12 -2
- package/dist/atoms/chart.js +35 -35
- package/dist/atoms/sidebar.d.ts +2 -1
- package/dist/atoms/sidebar.js +44 -42
- package/dist/config/default-Sidebar.js +83 -0
- package/dist/config/default-layout.js +21 -0
- package/dist/config/default-navigation.js +3 -82
- package/dist/config/sidebar.config.js +11 -0
- package/dist/index.d.ts +3 -2
- package/dist/index.js +342 -341
- package/dist/molecules/theme-toggle.d.ts +9 -0
- package/dist/molecules/theme-toggle.js +30 -0
- package/dist/molecules/user-menu.d.ts +18 -0
- package/dist/molecules/user-menu.js +29 -0
- package/dist/{molecules → organisms}/app-navbar.d.ts +4 -2
- package/dist/organisms/app-navbar.js +89 -0
- package/dist/{molecules → organisms}/app-sidebar.d.ts +4 -1
- package/dist/organisms/app-sidebar.js +169 -0
- package/package.json +33 -10
- package/dist/molecules/app-navbar.js +0 -117
- package/dist/molecules/app-sidebar.js +0 -121
- package/dist/organisms/layout.d.ts +0 -3
- package/dist/organisms/layout.js +0 -16
package/dist/index.js
CHANGED
|
@@ -1,347 +1,348 @@
|
|
|
1
1
|
import './assets/global.css';/* empty css */
|
|
2
|
-
import { AppSidebar as t } from "./
|
|
3
|
-
import { AppNavbar as n } from "./
|
|
4
|
-
import { defaultNavbarConfig as p
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
17
|
-
import {
|
|
18
|
-
import {
|
|
19
|
-
import {
|
|
20
|
-
import {
|
|
21
|
-
import {
|
|
22
|
-
import {
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
import {
|
|
26
|
-
import {
|
|
27
|
-
import {
|
|
28
|
-
import {
|
|
29
|
-
import {
|
|
30
|
-
import {
|
|
31
|
-
import {
|
|
32
|
-
import {
|
|
33
|
-
import {
|
|
34
|
-
import {
|
|
35
|
-
import {
|
|
36
|
-
import {
|
|
37
|
-
import {
|
|
38
|
-
import {
|
|
39
|
-
import {
|
|
40
|
-
import {
|
|
41
|
-
import {
|
|
42
|
-
import {
|
|
43
|
-
import {
|
|
44
|
-
import {
|
|
45
|
-
import {
|
|
46
|
-
import {
|
|
47
|
-
import {
|
|
48
|
-
import {
|
|
49
|
-
import {
|
|
50
|
-
import {
|
|
51
|
-
import {
|
|
52
|
-
import {
|
|
53
|
-
import {
|
|
54
|
-
import {
|
|
55
|
-
import {
|
|
56
|
-
import {
|
|
57
|
-
import {
|
|
2
|
+
import { AppSidebar as t } from "./organisms/app-sidebar.js";
|
|
3
|
+
import { AppNavbar as n } from "./organisms/app-navbar.js";
|
|
4
|
+
import { defaultNavbarConfig as p } from "./config/default-navigation.js";
|
|
5
|
+
import { defaultLayoutConfig as l } from "./config/default-layout.js";
|
|
6
|
+
import { Accordion as d, AccordionContent as b, AccordionItem as g, AccordionTrigger as C } from "./atoms/accordion.js";
|
|
7
|
+
import { AlertDialog as x, AlertDialogAction as M, AlertDialogCancel as f, AlertDialogContent as D, AlertDialogDescription as T, AlertDialogFooter as c, AlertDialogHeader as s, AlertDialogOverlay as I, AlertDialogPortal as A, AlertDialogTitle as G, AlertDialogTrigger as w } from "./atoms/alert-dialog.js";
|
|
8
|
+
import { Alert as P, AlertDescription as v, AlertTitle as h } from "./atoms/alert.js";
|
|
9
|
+
import { AspectRatio as L } from "./atoms/aspect-ratio.js";
|
|
10
|
+
import { Avatar as H, AvatarFallback as R, AvatarImage as N } from "./atoms/avatar.js";
|
|
11
|
+
import { Badge as E, badgeVariants as O } from "./atoms/badge.js";
|
|
12
|
+
import { Breadcrumb as z, BreadcrumbEllipsis as K, BreadcrumbItem as U, BreadcrumbLink as j, BreadcrumbList as q, BreadcrumbPage as J, BreadcrumbSeparator as Q } from "./atoms/breadcrumb.js";
|
|
13
|
+
import { ButtonGroup as X, ButtonGroupSeparator as Y, ButtonGroupText as Z, buttonGroupVariants as _ } from "./atoms/button-group.js";
|
|
14
|
+
import { Button as ee, buttonVariants as re } from "./atoms/button.js";
|
|
15
|
+
import { Calendar as te, CalendarDayButton as ae } from "./atoms/calendar.js";
|
|
16
|
+
import { Card as ie, CardAction as pe, CardContent as ue, CardDescription as le, CardFooter as me, CardHeader as de, CardTitle as be } from "./atoms/card.js";
|
|
17
|
+
import { Carousel as Ce, CarouselContent as Se, CarouselItem as xe, CarouselNext as Me, CarouselPrevious as fe } from "./atoms/carousel.js";
|
|
18
|
+
import { ChartContainer as Te, ChartLegend as ce, ChartLegendContent as se, ChartStyle as Ie, ChartTooltip as Ae, ChartTooltipContent as Ge } from "./atoms/chart.js";
|
|
19
|
+
import { Checkbox as Fe } from "./atoms/checkbox.js";
|
|
20
|
+
import { Collapsible as ve, CollapsibleContent as he, CollapsibleTrigger as Be } from "./atoms/collapsible.js";
|
|
21
|
+
import { Command as ye, CommandDialog as He, CommandEmpty as Re, CommandGroup as Ne, CommandInput as ke, CommandItem as Ee, CommandList as Oe, CommandSeparator as Ve, CommandShortcut as ze } from "./atoms/command.js";
|
|
22
|
+
import { ContextMenu as Ue, ContextMenuCheckboxItem as je, ContextMenuContent as qe, ContextMenuGroup as Je, ContextMenuItem as Qe, ContextMenuLabel as We, ContextMenuPortal as Xe, ContextMenuRadioGroup as Ye, ContextMenuRadioItem as Ze, ContextMenuSeparator as _e, ContextMenuShortcut as $e, ContextMenuSub as er, ContextMenuSubContent as rr, ContextMenuSubTrigger as or, ContextMenuTrigger as tr } from "./atoms/context-menu.js";
|
|
23
|
+
import { Dialog as nr, DialogClose as ir, DialogContent as pr, DialogDescription as ur, DialogFooter as lr, DialogHeader as mr, DialogOverlay as dr, DialogPortal as br, DialogTitle as gr, DialogTrigger as Cr } from "./atoms/dialog.js";
|
|
24
|
+
import { Drawer as xr, DrawerClose as Mr, DrawerContent as fr, DrawerDescription as Dr, DrawerFooter as Tr, DrawerHeader as cr, DrawerOverlay as sr, DrawerPortal as Ir, DrawerTitle as Ar, DrawerTrigger as Gr } from "./atoms/drawer.js";
|
|
25
|
+
import { DropdownMenu as Fr, DropdownMenuCheckboxItem as Pr, DropdownMenuContent as vr, DropdownMenuGroup as hr, DropdownMenuItem as Br, DropdownMenuLabel as Lr, DropdownMenuPortal as yr, DropdownMenuRadioGroup as Hr, DropdownMenuRadioItem as Rr, DropdownMenuSeparator as Nr, DropdownMenuShortcut as kr, DropdownMenuSub as Er, DropdownMenuSubContent as Or, DropdownMenuSubTrigger as Vr, DropdownMenuTrigger as zr } from "./atoms/dropdown-menu.js";
|
|
26
|
+
import { Empty as Ur, EmptyContent as jr, EmptyDescription as qr, EmptyHeader as Jr, EmptyMedia as Qr, EmptyTitle as Wr } from "./atoms/empty.js";
|
|
27
|
+
import { Field as Yr, FieldContent as Zr, FieldDescription as _r, FieldError as $r, FieldGroup as eo, FieldLabel as ro, FieldLegend as oo, FieldSeparator as to, FieldSet as ao, FieldTitle as no } from "./atoms/field.js";
|
|
28
|
+
import { Form as po, FormControl as uo, FormDescription as lo, FormField as mo, FormItem as bo, FormLabel as go, FormMessage as Co, useFormField as So } from "./atoms/form.js";
|
|
29
|
+
import { HoverCard as Mo, HoverCardContent as fo, HoverCardTrigger as Do } from "./atoms/hover-card.js";
|
|
30
|
+
import { InputGroup as co, InputGroupAddon as so, InputGroupButton as Io, InputGroupInput as Ao, InputGroupText as Go, InputGroupTextarea as wo } from "./atoms/input-group.js";
|
|
31
|
+
import { InputOTP as Po, InputOTPGroup as vo, InputOTPSeparator as ho, InputOTPSlot as Bo } from "./atoms/input-otp.js";
|
|
32
|
+
import { Input as yo } from "./atoms/input.js";
|
|
33
|
+
import { Item as Ro, ItemActions as No, ItemContent as ko, ItemDescription as Eo, ItemFooter as Oo, ItemGroup as Vo, ItemHeader as zo, ItemMedia as Ko, ItemSeparator as Uo, ItemTitle as jo } from "./atoms/item.js";
|
|
34
|
+
import { Kbd as Jo, KbdGroup as Qo } from "./atoms/kbd.js";
|
|
35
|
+
import { Label as Xo } from "./atoms/label.js";
|
|
36
|
+
import { Menubar as Zo, MenubarCheckboxItem as _o, MenubarContent as $o, MenubarGroup as et, MenubarItem as rt, MenubarLabel as ot, MenubarMenu as tt, MenubarPortal as at, MenubarRadioGroup as nt, MenubarRadioItem as it, MenubarSeparator as pt, MenubarShortcut as ut, MenubarSub as lt, MenubarSubContent as mt, MenubarSubTrigger as dt, MenubarTrigger as bt } from "./atoms/menubar.js";
|
|
37
|
+
import { NavigationMenu as Ct, NavigationMenuContent as St, NavigationMenuIndicator as xt, NavigationMenuItem as Mt, NavigationMenuLink as ft, NavigationMenuList as Dt, NavigationMenuTrigger as Tt, NavigationMenuViewport as ct, navigationMenuTriggerStyle as st } from "./atoms/navigation-menu.js";
|
|
38
|
+
import { Pagination as At, PaginationContent as Gt, PaginationEllipsis as wt, PaginationItem as Ft, PaginationLink as Pt, PaginationNext as vt, PaginationPrevious as ht } from "./atoms/pagination.js";
|
|
39
|
+
import { Popover as Lt, PopoverAnchor as yt, PopoverContent as Ht, PopoverTrigger as Rt } from "./atoms/popover.js";
|
|
40
|
+
import { Progress as kt } from "./atoms/progress.js";
|
|
41
|
+
import { RadioGroup as Ot, RadioGroupItem as Vt } from "./atoms/radio-group.js";
|
|
42
|
+
import { ResizableHandle as Kt, ResizablePanel as Ut, ResizablePanelGroup as jt } from "./atoms/resizable.js";
|
|
43
|
+
import { ScrollArea as Jt, ScrollBar as Qt } from "./atoms/scroll-area.js";
|
|
44
|
+
import { Select as Xt, SelectContent as Yt, SelectGroup as Zt, SelectItem as _t, SelectLabel as $t, SelectScrollDownButton as ea, SelectScrollUpButton as ra, SelectSeparator as oa, SelectTrigger as ta, SelectValue as aa } from "./atoms/select.js";
|
|
45
|
+
import { Separator as ia } from "./atoms/separator.js";
|
|
46
|
+
import { Sheet as ua, SheetClose as la, SheetContent as ma, SheetDescription as da, SheetFooter as ba, SheetHeader as ga, SheetTitle as Ca, SheetTrigger as Sa } from "./atoms/sheet.js";
|
|
47
|
+
import { Sidebar as Ma, SidebarContent as fa, SidebarFooter as Da, SidebarGroup as Ta, SidebarGroupAction as ca, SidebarGroupContent as sa, SidebarGroupLabel as Ia, SidebarHeader as Aa, SidebarInput as Ga, SidebarInset as wa, SidebarMenu as Fa, SidebarMenuAction as Pa, SidebarMenuBadge as va, SidebarMenuButton as ha, SidebarMenuItem as Ba, SidebarMenuSkeleton as La, SidebarMenuSub as ya, SidebarMenuSubButton as Ha, SidebarMenuSubItem as Ra, SidebarProvider as Na, SidebarRail as ka, SidebarSeparator as Ea, SidebarTrigger as Oa, useSidebar as Va } from "./atoms/sidebar.js";
|
|
48
|
+
import { Skeleton as Ka } from "./atoms/skeleton.js";
|
|
49
|
+
import { Slider as ja } from "./atoms/slider.js";
|
|
50
|
+
import { Toaster as Ja } from "./atoms/sonner.js";
|
|
51
|
+
import { Spinner as Wa } from "./atoms/spinner.js";
|
|
52
|
+
import { Switch as Ya } from "./atoms/switch.js";
|
|
53
|
+
import { Table as _a, TableBody as $a, TableCaption as en, TableCell as rn, TableFooter as on, TableHead as tn, TableHeader as an, TableRow as nn } from "./atoms/table.js";
|
|
54
|
+
import { Tabs as un, TabsContent as ln, TabsList as mn, TabsTrigger as dn } from "./atoms/tabs.js";
|
|
55
|
+
import { Textarea as gn } from "./atoms/textarea.js";
|
|
56
|
+
import { ToggleGroup as Sn, ToggleGroupItem as xn } from "./atoms/toggle-group.js";
|
|
57
|
+
import { Toggle as fn, toggleVariants as Dn } from "./atoms/toggle.js";
|
|
58
|
+
import { Tooltip as cn, TooltipContent as sn, TooltipProvider as In, TooltipTrigger as An } from "./atoms/tooltip.js";
|
|
58
59
|
export {
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
60
|
+
d as Accordion,
|
|
61
|
+
b as AccordionContent,
|
|
62
|
+
g as AccordionItem,
|
|
63
|
+
C as AccordionTrigger,
|
|
64
|
+
P as Alert,
|
|
65
|
+
v as AlertDescription,
|
|
66
|
+
x as AlertDialog,
|
|
67
|
+
M as AlertDialogAction,
|
|
68
|
+
f as AlertDialogCancel,
|
|
69
|
+
D as AlertDialogContent,
|
|
70
|
+
T as AlertDialogDescription,
|
|
71
|
+
c as AlertDialogFooter,
|
|
72
|
+
s as AlertDialogHeader,
|
|
73
|
+
I as AlertDialogOverlay,
|
|
74
|
+
A as AlertDialogPortal,
|
|
75
|
+
G as AlertDialogTitle,
|
|
76
|
+
w as AlertDialogTrigger,
|
|
77
|
+
h as AlertTitle,
|
|
77
78
|
n as AppNavbar,
|
|
78
79
|
t as AppSidebar,
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
80
|
+
L as AspectRatio,
|
|
81
|
+
H as Avatar,
|
|
82
|
+
R as AvatarFallback,
|
|
83
|
+
N as AvatarImage,
|
|
84
|
+
E as Badge,
|
|
85
|
+
z as Breadcrumb,
|
|
86
|
+
K as BreadcrumbEllipsis,
|
|
87
|
+
U as BreadcrumbItem,
|
|
88
|
+
j as BreadcrumbLink,
|
|
89
|
+
q as BreadcrumbList,
|
|
90
|
+
J as BreadcrumbPage,
|
|
91
|
+
Q as BreadcrumbSeparator,
|
|
92
|
+
ee as Button,
|
|
93
|
+
X as ButtonGroup,
|
|
94
|
+
Y as ButtonGroupSeparator,
|
|
95
|
+
Z as ButtonGroupText,
|
|
96
|
+
te as Calendar,
|
|
97
|
+
ae as CalendarDayButton,
|
|
98
|
+
ie as Card,
|
|
99
|
+
pe as CardAction,
|
|
100
|
+
ue as CardContent,
|
|
101
|
+
le as CardDescription,
|
|
102
|
+
me as CardFooter,
|
|
103
|
+
de as CardHeader,
|
|
104
|
+
be as CardTitle,
|
|
105
|
+
Ce as Carousel,
|
|
106
|
+
Se as CarouselContent,
|
|
107
|
+
xe as CarouselItem,
|
|
108
|
+
Me as CarouselNext,
|
|
109
|
+
fe as CarouselPrevious,
|
|
110
|
+
Te as ChartContainer,
|
|
111
|
+
ce as ChartLegend,
|
|
112
|
+
se as ChartLegendContent,
|
|
113
|
+
Ie as ChartStyle,
|
|
114
|
+
Ae as ChartTooltip,
|
|
115
|
+
Ge as ChartTooltipContent,
|
|
116
|
+
Fe as Checkbox,
|
|
117
|
+
ve as Collapsible,
|
|
118
|
+
he as CollapsibleContent,
|
|
119
|
+
Be as CollapsibleTrigger,
|
|
120
|
+
ye as Command,
|
|
121
|
+
He as CommandDialog,
|
|
122
|
+
Re as CommandEmpty,
|
|
123
|
+
Ne as CommandGroup,
|
|
124
|
+
ke as CommandInput,
|
|
125
|
+
Ee as CommandItem,
|
|
126
|
+
Oe as CommandList,
|
|
127
|
+
Ve as CommandSeparator,
|
|
128
|
+
ze as CommandShortcut,
|
|
129
|
+
Ue as ContextMenu,
|
|
130
|
+
je as ContextMenuCheckboxItem,
|
|
131
|
+
qe as ContextMenuContent,
|
|
132
|
+
Je as ContextMenuGroup,
|
|
133
|
+
Qe as ContextMenuItem,
|
|
134
|
+
We as ContextMenuLabel,
|
|
135
|
+
Xe as ContextMenuPortal,
|
|
136
|
+
Ye as ContextMenuRadioGroup,
|
|
137
|
+
Ze as ContextMenuRadioItem,
|
|
138
|
+
_e as ContextMenuSeparator,
|
|
139
|
+
$e as ContextMenuShortcut,
|
|
140
|
+
er as ContextMenuSub,
|
|
141
|
+
rr as ContextMenuSubContent,
|
|
142
|
+
or as ContextMenuSubTrigger,
|
|
143
|
+
tr as ContextMenuTrigger,
|
|
144
|
+
nr as Dialog,
|
|
145
|
+
ir as DialogClose,
|
|
146
|
+
pr as DialogContent,
|
|
147
|
+
ur as DialogDescription,
|
|
148
|
+
lr as DialogFooter,
|
|
149
|
+
mr as DialogHeader,
|
|
150
|
+
dr as DialogOverlay,
|
|
151
|
+
br as DialogPortal,
|
|
152
|
+
gr as DialogTitle,
|
|
153
|
+
Cr as DialogTrigger,
|
|
154
|
+
xr as Drawer,
|
|
155
|
+
Mr as DrawerClose,
|
|
156
|
+
fr as DrawerContent,
|
|
157
|
+
Dr as DrawerDescription,
|
|
158
|
+
Tr as DrawerFooter,
|
|
159
|
+
cr as DrawerHeader,
|
|
160
|
+
sr as DrawerOverlay,
|
|
161
|
+
Ir as DrawerPortal,
|
|
162
|
+
Ar as DrawerTitle,
|
|
163
|
+
Gr as DrawerTrigger,
|
|
164
|
+
Fr as DropdownMenu,
|
|
165
|
+
Pr as DropdownMenuCheckboxItem,
|
|
166
|
+
vr as DropdownMenuContent,
|
|
167
|
+
hr as DropdownMenuGroup,
|
|
168
|
+
Br as DropdownMenuItem,
|
|
169
|
+
Lr as DropdownMenuLabel,
|
|
170
|
+
yr as DropdownMenuPortal,
|
|
171
|
+
Hr as DropdownMenuRadioGroup,
|
|
172
|
+
Rr as DropdownMenuRadioItem,
|
|
173
|
+
Nr as DropdownMenuSeparator,
|
|
174
|
+
kr as DropdownMenuShortcut,
|
|
175
|
+
Er as DropdownMenuSub,
|
|
176
|
+
Or as DropdownMenuSubContent,
|
|
177
|
+
Vr as DropdownMenuSubTrigger,
|
|
178
|
+
zr as DropdownMenuTrigger,
|
|
179
|
+
Ur as Empty,
|
|
180
|
+
jr as EmptyContent,
|
|
181
|
+
qr as EmptyDescription,
|
|
182
|
+
Jr as EmptyHeader,
|
|
183
|
+
Qr as EmptyMedia,
|
|
184
|
+
Wr as EmptyTitle,
|
|
185
|
+
Yr as Field,
|
|
186
|
+
Zr as FieldContent,
|
|
187
|
+
_r as FieldDescription,
|
|
188
|
+
$r as FieldError,
|
|
189
|
+
eo as FieldGroup,
|
|
190
|
+
ro as FieldLabel,
|
|
191
|
+
oo as FieldLegend,
|
|
192
|
+
to as FieldSeparator,
|
|
193
|
+
ao as FieldSet,
|
|
194
|
+
no as FieldTitle,
|
|
195
|
+
po as Form,
|
|
196
|
+
uo as FormControl,
|
|
197
|
+
lo as FormDescription,
|
|
198
|
+
mo as FormField,
|
|
199
|
+
bo as FormItem,
|
|
200
|
+
go as FormLabel,
|
|
201
|
+
Co as FormMessage,
|
|
202
|
+
Mo as HoverCard,
|
|
203
|
+
fo as HoverCardContent,
|
|
204
|
+
Do as HoverCardTrigger,
|
|
205
|
+
yo as Input,
|
|
206
|
+
co as InputGroup,
|
|
207
|
+
so as InputGroupAddon,
|
|
208
|
+
Io as InputGroupButton,
|
|
209
|
+
Ao as InputGroupInput,
|
|
210
|
+
Go as InputGroupText,
|
|
211
|
+
wo as InputGroupTextarea,
|
|
212
|
+
Po as InputOTP,
|
|
213
|
+
vo as InputOTPGroup,
|
|
214
|
+
ho as InputOTPSeparator,
|
|
215
|
+
Bo as InputOTPSlot,
|
|
216
|
+
Ro as Item,
|
|
217
|
+
No as ItemActions,
|
|
218
|
+
ko as ItemContent,
|
|
219
|
+
Eo as ItemDescription,
|
|
220
|
+
Oo as ItemFooter,
|
|
221
|
+
Vo as ItemGroup,
|
|
222
|
+
zo as ItemHeader,
|
|
223
|
+
Ko as ItemMedia,
|
|
224
|
+
Uo as ItemSeparator,
|
|
225
|
+
jo as ItemTitle,
|
|
226
|
+
Jo as Kbd,
|
|
227
|
+
Qo as KbdGroup,
|
|
228
|
+
Xo as Label,
|
|
229
|
+
Zo as Menubar,
|
|
230
|
+
_o as MenubarCheckboxItem,
|
|
231
|
+
$o as MenubarContent,
|
|
232
|
+
et as MenubarGroup,
|
|
233
|
+
rt as MenubarItem,
|
|
234
|
+
ot as MenubarLabel,
|
|
235
|
+
tt as MenubarMenu,
|
|
236
|
+
at as MenubarPortal,
|
|
237
|
+
nt as MenubarRadioGroup,
|
|
238
|
+
it as MenubarRadioItem,
|
|
239
|
+
pt as MenubarSeparator,
|
|
240
|
+
ut as MenubarShortcut,
|
|
241
|
+
lt as MenubarSub,
|
|
242
|
+
mt as MenubarSubContent,
|
|
243
|
+
dt as MenubarSubTrigger,
|
|
244
|
+
bt as MenubarTrigger,
|
|
245
|
+
Ct as NavigationMenu,
|
|
246
|
+
St as NavigationMenuContent,
|
|
247
|
+
xt as NavigationMenuIndicator,
|
|
248
|
+
Mt as NavigationMenuItem,
|
|
249
|
+
ft as NavigationMenuLink,
|
|
250
|
+
Dt as NavigationMenuList,
|
|
251
|
+
Tt as NavigationMenuTrigger,
|
|
252
|
+
ct as NavigationMenuViewport,
|
|
253
|
+
At as Pagination,
|
|
254
|
+
Gt as PaginationContent,
|
|
255
|
+
wt as PaginationEllipsis,
|
|
256
|
+
Ft as PaginationItem,
|
|
257
|
+
Pt as PaginationLink,
|
|
258
|
+
vt as PaginationNext,
|
|
259
|
+
ht as PaginationPrevious,
|
|
260
|
+
Lt as Popover,
|
|
261
|
+
yt as PopoverAnchor,
|
|
262
|
+
Ht as PopoverContent,
|
|
263
|
+
Rt as PopoverTrigger,
|
|
264
|
+
kt as Progress,
|
|
265
|
+
Ot as RadioGroup,
|
|
266
|
+
Vt as RadioGroupItem,
|
|
267
|
+
Kt as ResizableHandle,
|
|
268
|
+
Ut as ResizablePanel,
|
|
269
|
+
jt as ResizablePanelGroup,
|
|
270
|
+
Jt as ScrollArea,
|
|
271
|
+
Qt as ScrollBar,
|
|
272
|
+
Xt as Select,
|
|
273
|
+
Yt as SelectContent,
|
|
274
|
+
Zt as SelectGroup,
|
|
275
|
+
_t as SelectItem,
|
|
276
|
+
$t as SelectLabel,
|
|
277
|
+
ea as SelectScrollDownButton,
|
|
278
|
+
ra as SelectScrollUpButton,
|
|
279
|
+
oa as SelectSeparator,
|
|
280
|
+
ta as SelectTrigger,
|
|
281
|
+
aa as SelectValue,
|
|
282
|
+
ia as Separator,
|
|
283
|
+
ua as Sheet,
|
|
284
|
+
la as SheetClose,
|
|
285
|
+
ma as SheetContent,
|
|
286
|
+
da as SheetDescription,
|
|
287
|
+
ba as SheetFooter,
|
|
288
|
+
ga as SheetHeader,
|
|
289
|
+
Ca as SheetTitle,
|
|
290
|
+
Sa as SheetTrigger,
|
|
291
|
+
Ma as Sidebar,
|
|
292
|
+
fa as SidebarContent,
|
|
293
|
+
Da as SidebarFooter,
|
|
294
|
+
Ta as SidebarGroup,
|
|
295
|
+
ca as SidebarGroupAction,
|
|
296
|
+
sa as SidebarGroupContent,
|
|
297
|
+
Ia as SidebarGroupLabel,
|
|
298
|
+
Aa as SidebarHeader,
|
|
299
|
+
Ga as SidebarInput,
|
|
300
|
+
wa as SidebarInset,
|
|
301
|
+
Fa as SidebarMenu,
|
|
302
|
+
Pa as SidebarMenuAction,
|
|
303
|
+
va as SidebarMenuBadge,
|
|
304
|
+
ha as SidebarMenuButton,
|
|
305
|
+
Ba as SidebarMenuItem,
|
|
306
|
+
La as SidebarMenuSkeleton,
|
|
307
|
+
ya as SidebarMenuSub,
|
|
308
|
+
Ha as SidebarMenuSubButton,
|
|
309
|
+
Ra as SidebarMenuSubItem,
|
|
310
|
+
Na as SidebarProvider,
|
|
311
|
+
ka as SidebarRail,
|
|
312
|
+
Ea as SidebarSeparator,
|
|
313
|
+
Oa as SidebarTrigger,
|
|
314
|
+
Ka as Skeleton,
|
|
315
|
+
ja as Slider,
|
|
316
|
+
Wa as Spinner,
|
|
317
|
+
Ya as Switch,
|
|
318
|
+
_a as Table,
|
|
319
|
+
$a as TableBody,
|
|
320
|
+
en as TableCaption,
|
|
321
|
+
rn as TableCell,
|
|
322
|
+
on as TableFooter,
|
|
323
|
+
tn as TableHead,
|
|
324
|
+
an as TableHeader,
|
|
325
|
+
nn as TableRow,
|
|
326
|
+
un as Tabs,
|
|
327
|
+
ln as TabsContent,
|
|
328
|
+
mn as TabsList,
|
|
329
|
+
dn as TabsTrigger,
|
|
330
|
+
gn as Textarea,
|
|
331
|
+
Ja as Toaster,
|
|
332
|
+
fn as Toggle,
|
|
333
|
+
Sn as ToggleGroup,
|
|
334
|
+
xn as ToggleGroupItem,
|
|
335
|
+
cn as Tooltip,
|
|
336
|
+
sn as TooltipContent,
|
|
337
|
+
In as TooltipProvider,
|
|
338
|
+
An as TooltipTrigger,
|
|
339
|
+
O as badgeVariants,
|
|
340
|
+
_ as buttonGroupVariants,
|
|
341
|
+
re as buttonVariants,
|
|
342
|
+
l as defaultLayoutConfig,
|
|
341
343
|
p as defaultNavbarConfig,
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
Oa as useSidebar
|
|
344
|
+
st as navigationMenuTriggerStyle,
|
|
345
|
+
Dn as toggleVariants,
|
|
346
|
+
So as useFormField,
|
|
347
|
+
Va as useSidebar
|
|
347
348
|
};
|