@devalok/shilp-sutra 0.3.0 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/composed/date-picker/date-range-picker.js +9 -9
- package/dist/ui/accordion.d.ts +3 -0
- package/dist/ui/accordion.d.ts.map +1 -1
- package/dist/ui/alert-dialog.d.ts +2 -8
- package/dist/ui/alert-dialog.d.ts.map +1 -1
- package/dist/ui/alert-dialog.js +46 -46
- package/dist/ui/alert.d.ts +2 -2
- package/dist/ui/alert.d.ts.map +1 -1
- package/dist/ui/badge.d.ts +1 -1
- package/dist/ui/badge.d.ts.map +1 -1
- package/dist/ui/banner.d.ts +2 -2
- package/dist/ui/banner.d.ts.map +1 -1
- package/dist/ui/button-group.d.ts +1 -1
- package/dist/ui/button-group.d.ts.map +1 -1
- package/dist/ui/button.d.ts +1 -1
- package/dist/ui/button.d.ts.map +1 -1
- package/dist/ui/chip.d.ts +7 -7
- package/dist/ui/chip.d.ts.map +1 -1
- package/dist/ui/chip.js +41 -41
- package/dist/ui/collapsible.d.ts +1 -0
- package/dist/ui/collapsible.d.ts.map +1 -1
- package/dist/ui/hover-card.d.ts +1 -0
- package/dist/ui/hover-card.d.ts.map +1 -1
- package/dist/ui/index.d.ts +12 -12
- package/dist/ui/index.d.ts.map +1 -1
- package/dist/ui/index.js +334 -331
- package/dist/ui/radio.d.ts +2 -0
- package/dist/ui/radio.d.ts.map +1 -1
- package/dist/ui/segmented-control.d.ts +10 -10
- package/dist/ui/segmented-control.d.ts.map +1 -1
- package/dist/ui/segmented-control.js +70 -70
- package/dist/ui/separator.d.ts +1 -0
- package/dist/ui/separator.d.ts.map +1 -1
- package/dist/ui/toast.d.ts +1 -1
- package/dist/ui/toast.js +2 -2
- package/dist/ui/toaster.d.ts +1 -1
- package/dist/ui/toggle-group.d.ts +3 -0
- package/dist/ui/toggle-group.d.ts.map +1 -1
- package/dist/ui/toggle.d.ts +1 -0
- package/dist/ui/toggle.d.ts.map +1 -1
- package/dist/ui/toggle.js +1 -1
- package/dist/ui/tree-view/tree-item.d.ts +2 -0
- package/dist/ui/tree-view/tree-item.d.ts.map +1 -1
- package/dist/ui/tree-view/tree-item.js +20 -18
- package/package.json +208 -208
package/dist/ui/index.js
CHANGED
|
@@ -1,345 +1,348 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import { Button as
|
|
2
|
+
import { Button as o, buttonVariants as t } from "./button.js";
|
|
3
3
|
import { IconButton as n } from "./icon-button.js";
|
|
4
4
|
import { ButtonGroup as p, useButtonGroup as u } from "./button-group.js";
|
|
5
|
-
import { Input as m } from "./input.js";
|
|
6
|
-
import { Label as
|
|
7
|
-
import { Separator as
|
|
8
|
-
import { VisuallyHidden as
|
|
5
|
+
import { Input as m, inputVariants as x } from "./input.js";
|
|
6
|
+
import { Label as g } from "./label.js";
|
|
7
|
+
import { Separator as S } from "./separator.js";
|
|
8
|
+
import { VisuallyHidden as C } from "./visually-hidden.js";
|
|
9
9
|
import { Autocomplete as T } from "./autocomplete.js";
|
|
10
|
-
import { Combobox as
|
|
11
|
-
import { FileUpload as
|
|
12
|
-
import { Checkbox as
|
|
13
|
-
import { RadioGroup as
|
|
10
|
+
import { Combobox as c } from "./combobox.js";
|
|
11
|
+
import { FileUpload as I } from "./file-upload.js";
|
|
12
|
+
import { Checkbox as h } from "./checkbox.js";
|
|
13
|
+
import { RadioGroup as A, RadioGroupItem as w } from "./radio.js";
|
|
14
14
|
import { Switch as B } from "./switch.js";
|
|
15
|
-
import { Select as
|
|
16
|
-
import { Textarea as
|
|
17
|
-
import { NumberInput as
|
|
18
|
-
import { SearchInput as
|
|
19
|
-
import { InputOTP as
|
|
20
|
-
import { FormField as
|
|
21
|
-
import { Slider as
|
|
22
|
-
import { Toggle as
|
|
23
|
-
import { ToggleGroup as
|
|
24
|
-
import { AlertDialog as
|
|
25
|
-
import { Dialog as
|
|
26
|
-
import { Sheet as
|
|
27
|
-
import { Toast as
|
|
28
|
-
import { Toaster as
|
|
29
|
-
import { Tooltip as
|
|
30
|
-
import { Popover as
|
|
31
|
-
import { HoverCard as
|
|
32
|
-
import { Collapsible as
|
|
33
|
-
import { Alert as
|
|
34
|
-
import { Banner as
|
|
35
|
-
import { Spinner as
|
|
36
|
-
import { Card as
|
|
37
|
-
import { Badge as
|
|
38
|
-
import { Avatar as
|
|
39
|
-
import { Table as
|
|
40
|
-
import { DataTable as
|
|
41
|
-
import { DataTableToolbar as
|
|
42
|
-
import { Progress as
|
|
43
|
-
import { Skeleton as
|
|
44
|
-
import { StatCard as
|
|
45
|
-
import { Code as
|
|
46
|
-
import { AspectRatio as
|
|
47
|
-
import { Accordion as
|
|
48
|
-
import { Tabs as
|
|
49
|
-
import { Breadcrumb as
|
|
50
|
-
import { DropdownMenu as
|
|
51
|
-
import { ContextMenu as
|
|
52
|
-
import { Menubar as
|
|
53
|
-
import { PaginationContent as
|
|
54
|
-
import { NavigationMenu as
|
|
55
|
-
import { Sidebar as
|
|
56
|
-
import { Step as
|
|
57
|
-
import { Chip as
|
|
58
|
-
import { Collapse as
|
|
59
|
-
import { Text as
|
|
60
|
-
import { Stack as
|
|
61
|
-
import { Container as
|
|
62
|
-
import { SegmentedControl as
|
|
63
|
-
import { Link as
|
|
64
|
-
import { cn as
|
|
65
|
-
import { duration as
|
|
66
|
-
import { AreaChart as
|
|
67
|
-
import { BarChart as
|
|
68
|
-
import { ChartContainer as
|
|
69
|
-
import { GaugeChart as
|
|
70
|
-
import { Legend as
|
|
71
|
-
import { LineChart as
|
|
72
|
-
import { PieChart as
|
|
73
|
-
import { RadarChart as
|
|
74
|
-
import { Sparkline as
|
|
75
|
-
import { TreeItem as
|
|
76
|
-
import { TreeView as
|
|
77
|
-
import { useTree as
|
|
15
|
+
import { Select as k, SelectContent as L, SelectGroup as F, SelectItem as R, SelectLabel as H, SelectScrollDownButton as N, SelectScrollUpButton as O, SelectSeparator as y, SelectTrigger as E, SelectValue as U, selectTriggerVariants as j } from "./select.js";
|
|
16
|
+
import { Textarea as z, textareaVariants as J } from "./textarea.js";
|
|
17
|
+
import { NumberInput as Q } from "./number-input.js";
|
|
18
|
+
import { SearchInput as X } from "./search-input.js";
|
|
19
|
+
import { InputOTP as Z, InputOTPGroup as _, InputOTPSeparator as $, InputOTPSlot as ee } from "./input-otp.js";
|
|
20
|
+
import { FormField as oe, FormHelperText as te, useFormField as ae } from "./form.js";
|
|
21
|
+
import { Slider as ie } from "./slider.js";
|
|
22
|
+
import { Toggle as ue, toggleVariants as le } from "./toggle.js";
|
|
23
|
+
import { ToggleGroup as xe, ToggleGroupItem as de } from "./toggle-group.js";
|
|
24
|
+
import { AlertDialog as be, AlertDialogAction as Se, AlertDialogCancel as fe, AlertDialogContent as Ce, AlertDialogDescription as se, AlertDialogFooter as Te, AlertDialogHeader as Me, AlertDialogOverlay as ce, AlertDialogPortal as De, AlertDialogTitle as Ie, AlertDialogTrigger as Pe } from "./alert-dialog.js";
|
|
25
|
+
import { Dialog as ve, DialogClose as Ae, DialogContent as we, DialogContentRaw as Ve, DialogDescription as Be, DialogFooter as Ge, DialogHeader as ke, DialogOverlay as Le, DialogPortal as Fe, DialogTitle as Re, DialogTrigger as He } from "./dialog.js";
|
|
26
|
+
import { Sheet as Oe, SheetClose as ye, SheetContent as Ee, SheetDescription as Ue, SheetFooter as je, SheetHeader as qe, SheetOverlay as ze, SheetPortal as Je, SheetTitle as Ke, SheetTrigger as Qe } from "./sheet.js";
|
|
27
|
+
import { Toast as Xe, ToastAction as Ye, ToastClose as Ze, ToastDescription as _e, ToastProvider as $e, ToastTitle as er, ToastViewport as rr } from "./toast.js";
|
|
28
|
+
import { Toaster as tr } from "./toaster.js";
|
|
29
|
+
import { Tooltip as nr, TooltipContent as ir, TooltipProvider as pr, TooltipTrigger as ur } from "./tooltip.js";
|
|
30
|
+
import { Popover as mr, PopoverAnchor as xr, PopoverContent as dr, PopoverTrigger as gr } from "./popover.js";
|
|
31
|
+
import { HoverCard as Sr, HoverCardContent as fr, HoverCardTrigger as Cr } from "./hover-card.js";
|
|
32
|
+
import { Collapsible as Tr, CollapsibleContent as Mr, CollapsibleTrigger as cr } from "./collapsible.js";
|
|
33
|
+
import { Alert as Ir, alertVariants as Pr } from "./alert.js";
|
|
34
|
+
import { Banner as vr, bannerVariants as Ar } from "./banner.js";
|
|
35
|
+
import { Spinner as Vr } from "./spinner.js";
|
|
36
|
+
import { Card as Gr, CardContent as kr, CardDescription as Lr, CardFooter as Fr, CardHeader as Rr, CardTitle as Hr, cardVariants as Nr } from "./card.js";
|
|
37
|
+
import { Badge as yr, badgeVariants as Er } from "./badge.js";
|
|
38
|
+
import { Avatar as jr, AvatarFallback as qr, AvatarImage as zr, avatarVariants as Jr } from "./avatar.js";
|
|
39
|
+
import { Table as Qr, TableBody as Wr, TableCaption as Xr, TableCell as Yr, TableFooter as Zr, TableHead as _r, TableHeader as $r, TableRow as eo } from "./table.js";
|
|
40
|
+
import { DataTable as oo } from "./data-table.js";
|
|
41
|
+
import { DataTableToolbar as ao } from "./data-table-toolbar.js";
|
|
42
|
+
import { Progress as io, progressIndicatorVariants as po, progressTrackVariants as uo } from "./progress.js";
|
|
43
|
+
import { Skeleton as mo, skeletonVariants as xo } from "./skeleton.js";
|
|
44
|
+
import { StatCard as bo } from "./stat-card.js";
|
|
45
|
+
import { Code as fo } from "./code.js";
|
|
46
|
+
import { AspectRatio as so } from "./aspect-ratio.js";
|
|
47
|
+
import { Accordion as Mo, AccordionContent as co, AccordionItem as Do, AccordionTrigger as Io } from "./accordion.js";
|
|
48
|
+
import { Tabs as ho, TabsContent as vo, TabsList as Ao, TabsTrigger as wo } from "./tabs.js";
|
|
49
|
+
import { Breadcrumb as Bo, BreadcrumbEllipsis as Go, BreadcrumbItem as ko, BreadcrumbLink as Lo, BreadcrumbList as Fo, BreadcrumbPage as Ro, BreadcrumbSeparator as Ho } from "./breadcrumb.js";
|
|
50
|
+
import { DropdownMenu as Oo, DropdownMenuCheckboxItem as yo, DropdownMenuContent as Eo, DropdownMenuGroup as Uo, DropdownMenuItem as jo, DropdownMenuLabel as qo, DropdownMenuPortal as zo, DropdownMenuRadioGroup as Jo, DropdownMenuRadioItem as Ko, DropdownMenuSeparator as Qo, DropdownMenuShortcut as Wo, DropdownMenuSub as Xo, DropdownMenuSubContent as Yo, DropdownMenuSubTrigger as Zo, DropdownMenuTrigger as _o } from "./dropdown-menu.js";
|
|
51
|
+
import { ContextMenu as et, ContextMenuCheckboxItem as rt, ContextMenuContent as ot, ContextMenuGroup as tt, ContextMenuItem as at, ContextMenuLabel as nt, ContextMenuPortal as it, ContextMenuRadioGroup as pt, ContextMenuRadioItem as ut, ContextMenuSeparator as lt, ContextMenuShortcut as mt, ContextMenuSub as xt, ContextMenuSubContent as dt, ContextMenuSubTrigger as gt, ContextMenuTrigger as bt } from "./context-menu.js";
|
|
52
|
+
import { Menubar as ft, MenubarCheckboxItem as Ct, MenubarContent as st, MenubarGroup as Tt, MenubarItem as Mt, MenubarLabel as ct, MenubarMenu as Dt, MenubarPortal as It, MenubarRadioGroup as Pt, MenubarRadioItem as ht, MenubarSeparator as vt, MenubarShortcut as At, MenubarSub as wt, MenubarSubContent as Vt, MenubarSubTrigger as Bt, MenubarTrigger as Gt } from "./menubar.js";
|
|
53
|
+
import { PaginationContent as Lt, PaginationEllipsis as Ft, PaginationItem as Rt, PaginationLink as Ht, PaginationNav as Nt, PaginationNext as Ot, PaginationPrevious as yt, PaginationRoot as Et, generatePagination as Ut } from "./pagination.js";
|
|
54
|
+
import { NavigationMenu as qt, NavigationMenuContent as zt, NavigationMenuIndicator as Jt, NavigationMenuItem as Kt, NavigationMenuLink as Qt, NavigationMenuList as Wt, NavigationMenuTrigger as Xt, NavigationMenuViewport as Yt } from "./navigation-menu.js";
|
|
55
|
+
import { Sidebar as _t, SidebarContent as $t, SidebarFooter as ea, SidebarGroup as ra, SidebarGroupAction as oa, SidebarGroupContent as ta, SidebarGroupLabel as aa, SidebarHeader as na, SidebarInput as ia, SidebarInset as pa, SidebarMenu as ua, SidebarMenuAction as la, SidebarMenuBadge as ma, SidebarMenuButton as xa, SidebarMenuItem as da, SidebarMenuSkeleton as ga, SidebarMenuSub as ba, SidebarMenuSubButton as Sa, SidebarMenuSubItem as fa, SidebarProvider as Ca, SidebarRail as sa, SidebarSeparator as Ta, SidebarTrigger as Ma, useSidebar as ca } from "./sidebar.js";
|
|
56
|
+
import { Step as Ia, Stepper as Pa } from "./stepper.js";
|
|
57
|
+
import { Chip as va, chipVariants as Aa } from "./chip.js";
|
|
58
|
+
import { Collapse as Va, Fade as Ba, Grow as Ga, Slide as ka } from "./transitions.js";
|
|
59
|
+
import { Text as Fa, textVariants as Ra } from "./text.js";
|
|
60
|
+
import { Stack as Na } from "./stack.js";
|
|
61
|
+
import { Container as ya } from "./container.js";
|
|
62
|
+
import { SegmentedControl as Ua, SegmentedControlItem as ja, segmentedControlItemVariants as qa } from "./segmented-control.js";
|
|
63
|
+
import { Link as Ja } from "./link.js";
|
|
64
|
+
import { cn as Qa } from "./lib/utils.js";
|
|
65
|
+
import { duration as Xa, durations as Ya, easings as Za, motion as _a } from "./lib/motion.js";
|
|
66
|
+
import { AreaChart as en } from "./charts/area-chart.js";
|
|
67
|
+
import { BarChart as on } from "./charts/bar-chart.js";
|
|
68
|
+
import { ChartContainer as an } from "./charts/chart-container.js";
|
|
69
|
+
import { GaugeChart as pn } from "./charts/gauge-chart.js";
|
|
70
|
+
import { Legend as ln } from "./charts/_internal/legend.js";
|
|
71
|
+
import { LineChart as xn } from "./charts/line-chart.js";
|
|
72
|
+
import { PieChart as gn } from "./charts/pie-chart.js";
|
|
73
|
+
import { RadarChart as Sn } from "./charts/radar-chart.js";
|
|
74
|
+
import { Sparkline as Cn } from "./charts/sparkline.js";
|
|
75
|
+
import { TreeItem as Tn } from "./tree-view/tree-item.js";
|
|
76
|
+
import { TreeView as cn } from "./tree-view/tree-view.js";
|
|
77
|
+
import { useTree as In } from "./tree-view/use-tree.js";
|
|
78
78
|
export {
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
79
|
+
Mo as Accordion,
|
|
80
|
+
co as AccordionContent,
|
|
81
|
+
Do as AccordionItem,
|
|
82
|
+
Io as AccordionTrigger,
|
|
83
|
+
Ir as Alert,
|
|
84
|
+
be as AlertDialog,
|
|
85
|
+
Se as AlertDialogAction,
|
|
86
|
+
fe as AlertDialogCancel,
|
|
87
|
+
Ce as AlertDialogContent,
|
|
88
|
+
se as AlertDialogDescription,
|
|
89
|
+
Te as AlertDialogFooter,
|
|
90
|
+
Me as AlertDialogHeader,
|
|
91
|
+
ce as AlertDialogOverlay,
|
|
92
|
+
De as AlertDialogPortal,
|
|
93
|
+
Ie as AlertDialogTitle,
|
|
94
|
+
Pe as AlertDialogTrigger,
|
|
95
|
+
en as AreaChart,
|
|
96
|
+
so as AspectRatio,
|
|
97
97
|
T as Autocomplete,
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
98
|
+
jr as Avatar,
|
|
99
|
+
qr as AvatarFallback,
|
|
100
|
+
zr as AvatarImage,
|
|
101
|
+
yr as Badge,
|
|
102
|
+
vr as Banner,
|
|
103
|
+
on as BarChart,
|
|
104
|
+
Bo as Breadcrumb,
|
|
105
|
+
Go as BreadcrumbEllipsis,
|
|
106
|
+
ko as BreadcrumbItem,
|
|
107
|
+
Lo as BreadcrumbLink,
|
|
108
|
+
Fo as BreadcrumbList,
|
|
109
|
+
Ro as BreadcrumbPage,
|
|
110
|
+
Ho as BreadcrumbSeparator,
|
|
111
|
+
o as Button,
|
|
112
112
|
p as ButtonGroup,
|
|
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
|
-
|
|
113
|
+
Gr as Card,
|
|
114
|
+
kr as CardContent,
|
|
115
|
+
Lr as CardDescription,
|
|
116
|
+
Fr as CardFooter,
|
|
117
|
+
Rr as CardHeader,
|
|
118
|
+
Hr as CardTitle,
|
|
119
|
+
an as ChartContainer,
|
|
120
|
+
h as Checkbox,
|
|
121
|
+
va as Chip,
|
|
122
|
+
fo as Code,
|
|
123
|
+
Va as Collapse,
|
|
124
|
+
Tr as Collapsible,
|
|
125
|
+
Mr as CollapsibleContent,
|
|
126
|
+
cr as CollapsibleTrigger,
|
|
127
|
+
c as Combobox,
|
|
128
|
+
ya as Container,
|
|
129
|
+
et as ContextMenu,
|
|
130
|
+
rt as ContextMenuCheckboxItem,
|
|
131
|
+
ot as ContextMenuContent,
|
|
132
|
+
tt as ContextMenuGroup,
|
|
133
|
+
at as ContextMenuItem,
|
|
134
|
+
nt as ContextMenuLabel,
|
|
135
|
+
it as ContextMenuPortal,
|
|
136
|
+
pt as ContextMenuRadioGroup,
|
|
137
|
+
ut as ContextMenuRadioItem,
|
|
138
|
+
lt as ContextMenuSeparator,
|
|
139
|
+
mt as ContextMenuShortcut,
|
|
140
|
+
xt as ContextMenuSub,
|
|
141
|
+
dt as ContextMenuSubContent,
|
|
142
|
+
gt as ContextMenuSubTrigger,
|
|
143
|
+
bt as ContextMenuTrigger,
|
|
144
|
+
oo as DataTable,
|
|
145
|
+
ao as DataTableToolbar,
|
|
146
|
+
ve as Dialog,
|
|
147
|
+
Ae as DialogClose,
|
|
148
|
+
we as DialogContent,
|
|
149
|
+
Ve as DialogContentRaw,
|
|
150
|
+
Be as DialogDescription,
|
|
151
|
+
Ge as DialogFooter,
|
|
152
|
+
ke as DialogHeader,
|
|
153
|
+
Le as DialogOverlay,
|
|
154
|
+
Fe as DialogPortal,
|
|
155
|
+
Re as DialogTitle,
|
|
156
|
+
He as DialogTrigger,
|
|
157
|
+
Oo as DropdownMenu,
|
|
158
|
+
yo as DropdownMenuCheckboxItem,
|
|
159
|
+
Eo as DropdownMenuContent,
|
|
160
|
+
Uo as DropdownMenuGroup,
|
|
161
|
+
jo as DropdownMenuItem,
|
|
162
|
+
qo as DropdownMenuLabel,
|
|
163
|
+
zo as DropdownMenuPortal,
|
|
164
|
+
Jo as DropdownMenuRadioGroup,
|
|
165
|
+
Ko as DropdownMenuRadioItem,
|
|
166
|
+
Qo as DropdownMenuSeparator,
|
|
167
|
+
Wo as DropdownMenuShortcut,
|
|
168
|
+
Xo as DropdownMenuSub,
|
|
169
|
+
Yo as DropdownMenuSubContent,
|
|
170
|
+
Zo as DropdownMenuSubTrigger,
|
|
171
|
+
_o as DropdownMenuTrigger,
|
|
172
|
+
Ba as Fade,
|
|
173
|
+
I as FileUpload,
|
|
174
|
+
oe as FormField,
|
|
175
|
+
te as FormHelperText,
|
|
176
|
+
pn as GaugeChart,
|
|
177
|
+
Ga as Grow,
|
|
178
|
+
Sr as HoverCard,
|
|
179
|
+
fr as HoverCardContent,
|
|
180
|
+
Cr as HoverCardTrigger,
|
|
181
181
|
n as IconButton,
|
|
182
182
|
m as Input,
|
|
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
|
-
|
|
183
|
+
Z as InputOTP,
|
|
184
|
+
_ as InputOTPGroup,
|
|
185
|
+
$ as InputOTPSeparator,
|
|
186
|
+
ee as InputOTPSlot,
|
|
187
|
+
g as Label,
|
|
188
|
+
ln as Legend,
|
|
189
|
+
xn as LineChart,
|
|
190
|
+
Ja as Link,
|
|
191
|
+
ft as Menubar,
|
|
192
|
+
Ct as MenubarCheckboxItem,
|
|
193
|
+
st as MenubarContent,
|
|
194
|
+
Tt as MenubarGroup,
|
|
195
|
+
Mt as MenubarItem,
|
|
196
|
+
ct as MenubarLabel,
|
|
197
|
+
Dt as MenubarMenu,
|
|
198
|
+
It as MenubarPortal,
|
|
199
|
+
Pt as MenubarRadioGroup,
|
|
200
|
+
ht as MenubarRadioItem,
|
|
201
|
+
vt as MenubarSeparator,
|
|
202
|
+
At as MenubarShortcut,
|
|
203
|
+
wt as MenubarSub,
|
|
204
|
+
Vt as MenubarSubContent,
|
|
205
|
+
Bt as MenubarSubTrigger,
|
|
206
|
+
Gt as MenubarTrigger,
|
|
207
|
+
qt as NavigationMenu,
|
|
208
|
+
zt as NavigationMenuContent,
|
|
209
|
+
Jt as NavigationMenuIndicator,
|
|
210
|
+
Kt as NavigationMenuItem,
|
|
211
|
+
Qt as NavigationMenuLink,
|
|
212
|
+
Wt as NavigationMenuList,
|
|
213
|
+
Xt as NavigationMenuTrigger,
|
|
214
|
+
Yt as NavigationMenuViewport,
|
|
215
|
+
Q as NumberInput,
|
|
216
|
+
Lt as PaginationContent,
|
|
217
|
+
Ft as PaginationEllipsis,
|
|
218
|
+
Rt as PaginationItem,
|
|
219
|
+
Ht as PaginationLink,
|
|
220
|
+
Nt as PaginationNav,
|
|
221
|
+
Ot as PaginationNext,
|
|
222
|
+
yt as PaginationPrevious,
|
|
223
|
+
Et as PaginationRoot,
|
|
224
|
+
gn as PieChart,
|
|
225
|
+
mr as Popover,
|
|
226
|
+
xr as PopoverAnchor,
|
|
227
|
+
dr as PopoverContent,
|
|
228
|
+
gr as PopoverTrigger,
|
|
229
|
+
io as Progress,
|
|
230
|
+
Sn as RadarChart,
|
|
231
|
+
A as RadioGroup,
|
|
232
|
+
w as RadioGroupItem,
|
|
233
|
+
X as SearchInput,
|
|
234
|
+
Ua as SegmentedControl,
|
|
235
|
+
ja as SegmentedControlItem,
|
|
236
|
+
k as Select,
|
|
237
|
+
L as SelectContent,
|
|
238
|
+
F as SelectGroup,
|
|
239
|
+
R as SelectItem,
|
|
240
|
+
H as SelectLabel,
|
|
241
|
+
N as SelectScrollDownButton,
|
|
242
|
+
O as SelectScrollUpButton,
|
|
243
|
+
y as SelectSeparator,
|
|
244
|
+
E as SelectTrigger,
|
|
245
|
+
U as SelectValue,
|
|
246
|
+
S as Separator,
|
|
247
|
+
Oe as Sheet,
|
|
248
|
+
ye as SheetClose,
|
|
249
|
+
Ee as SheetContent,
|
|
250
|
+
Ue as SheetDescription,
|
|
251
|
+
je as SheetFooter,
|
|
252
|
+
qe as SheetHeader,
|
|
253
|
+
ze as SheetOverlay,
|
|
254
|
+
Je as SheetPortal,
|
|
255
|
+
Ke as SheetTitle,
|
|
256
|
+
Qe as SheetTrigger,
|
|
257
|
+
_t as Sidebar,
|
|
258
|
+
$t as SidebarContent,
|
|
259
|
+
ea as SidebarFooter,
|
|
260
|
+
ra as SidebarGroup,
|
|
261
|
+
oa as SidebarGroupAction,
|
|
262
|
+
ta as SidebarGroupContent,
|
|
263
|
+
aa as SidebarGroupLabel,
|
|
264
|
+
na as SidebarHeader,
|
|
265
|
+
ia as SidebarInput,
|
|
266
|
+
pa as SidebarInset,
|
|
267
|
+
ua as SidebarMenu,
|
|
268
|
+
la as SidebarMenuAction,
|
|
269
|
+
ma as SidebarMenuBadge,
|
|
270
|
+
xa as SidebarMenuButton,
|
|
271
|
+
da as SidebarMenuItem,
|
|
272
|
+
ga as SidebarMenuSkeleton,
|
|
273
|
+
ba as SidebarMenuSub,
|
|
274
|
+
Sa as SidebarMenuSubButton,
|
|
275
|
+
fa as SidebarMenuSubItem,
|
|
276
|
+
Ca as SidebarProvider,
|
|
277
|
+
sa as SidebarRail,
|
|
278
|
+
Ta as SidebarSeparator,
|
|
279
|
+
Ma as SidebarTrigger,
|
|
280
|
+
mo as Skeleton,
|
|
281
|
+
ka as Slide,
|
|
282
|
+
ie as Slider,
|
|
283
|
+
Cn as Sparkline,
|
|
284
|
+
Vr as Spinner,
|
|
285
|
+
Na as Stack,
|
|
286
|
+
bo as StatCard,
|
|
287
|
+
Ia as Step,
|
|
288
|
+
Pa as Stepper,
|
|
289
289
|
B as Switch,
|
|
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
|
-
|
|
290
|
+
Qr as Table,
|
|
291
|
+
Wr as TableBody,
|
|
292
|
+
Xr as TableCaption,
|
|
293
|
+
Yr as TableCell,
|
|
294
|
+
Zr as TableFooter,
|
|
295
|
+
_r as TableHead,
|
|
296
|
+
$r as TableHeader,
|
|
297
|
+
eo as TableRow,
|
|
298
|
+
ho as Tabs,
|
|
299
|
+
vo as TabsContent,
|
|
300
|
+
Ao as TabsList,
|
|
301
|
+
wo as TabsTrigger,
|
|
302
|
+
Fa as Text,
|
|
303
|
+
z as Textarea,
|
|
304
|
+
Xe as Toast,
|
|
305
|
+
Ye as ToastAction,
|
|
306
|
+
Ze as ToastClose,
|
|
307
|
+
_e as ToastDescription,
|
|
308
|
+
$e as ToastProvider,
|
|
309
|
+
er as ToastTitle,
|
|
310
|
+
rr as ToastViewport,
|
|
311
|
+
tr as Toaster,
|
|
312
|
+
ue as Toggle,
|
|
313
|
+
xe as ToggleGroup,
|
|
314
|
+
de as ToggleGroupItem,
|
|
315
|
+
nr as Tooltip,
|
|
316
|
+
ir as TooltipContent,
|
|
317
|
+
pr as TooltipProvider,
|
|
318
|
+
ur as TooltipTrigger,
|
|
319
|
+
Tn as TreeItem,
|
|
320
|
+
cn as TreeView,
|
|
321
|
+
C as VisuallyHidden,
|
|
322
|
+
Pr as alertVariants,
|
|
323
|
+
Jr as avatarVariants,
|
|
324
|
+
Er as badgeVariants,
|
|
325
|
+
Ar as bannerVariants,
|
|
326
326
|
t as buttonVariants,
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
327
|
+
Nr as cardVariants,
|
|
328
|
+
Aa as chipVariants,
|
|
329
|
+
Qa as cn,
|
|
330
|
+
Xa as duration,
|
|
331
|
+
Ya as durations,
|
|
332
|
+
Za as easings,
|
|
333
|
+
Ut as generatePagination,
|
|
334
|
+
x as inputVariants,
|
|
335
|
+
_a as motion,
|
|
336
|
+
po as progressIndicatorVariants,
|
|
337
|
+
uo as progressTrackVariants,
|
|
338
|
+
qa as segmentedControlItemVariants,
|
|
339
|
+
j as selectTriggerVariants,
|
|
340
|
+
xo as skeletonVariants,
|
|
341
|
+
Ra as textVariants,
|
|
342
|
+
J as textareaVariants,
|
|
343
|
+
le as toggleVariants,
|
|
341
344
|
u as useButtonGroup,
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
+
ae as useFormField,
|
|
346
|
+
ca as useSidebar,
|
|
347
|
+
In as useTree
|
|
345
348
|
};
|