@devalok/shilp-sutra 0.6.2 → 0.8.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/_virtual/client.js +5 -0
- package/dist/_virtual/index.js +5 -0
- package/dist/_virtual/react-dom-client.development.js +5 -0
- package/dist/_virtual/react-dom-client.production.js +5 -0
- package/dist/_virtual/scheduler.development.js +5 -0
- package/dist/_virtual/scheduler.production.js +5 -0
- package/dist/composed/command-palette.d.ts.map +1 -1
- package/dist/composed/command-palette.js +84 -73
- package/dist/composed/confirm-dialog.d.ts +27 -0
- package/dist/composed/confirm-dialog.d.ts.map +1 -0
- package/dist/composed/confirm-dialog.js +45 -0
- package/dist/composed/extensions/emoji-suggestion.d.ts +9 -0
- package/dist/composed/extensions/emoji-suggestion.d.ts.map +1 -0
- package/dist/composed/extensions/emoji-suggestion.js +119 -0
- package/dist/composed/extensions/file-attachment.d.ts +4 -0
- package/dist/composed/extensions/file-attachment.d.ts.map +1 -0
- package/dist/composed/extensions/file-attachment.js +55 -0
- package/dist/composed/extensions/mention-suggestion.d.ts +10 -0
- package/dist/composed/extensions/mention-suggestion.d.ts.map +1 -0
- package/dist/composed/extensions/mention-suggestion.js +79 -0
- package/dist/composed/index.d.ts +3 -1
- package/dist/composed/index.d.ts.map +1 -1
- package/dist/composed/index.js +28 -26
- package/dist/composed/rich-text-editor.d.ts +19 -0
- package/dist/composed/rich-text-editor.d.ts.map +1 -1
- package/dist/composed/rich-text-editor.js +347 -176
- package/dist/composed/status-badge.d.ts +11 -1
- package/dist/composed/status-badge.d.ts.map +1 -1
- package/dist/composed/status-badge.js +48 -20
- package/dist/hooks/use-color-mode.d.ts.map +1 -1
- package/dist/hooks/use-color-mode.js +8 -4
- package/dist/hooks/use-mobile.d.ts +5 -0
- package/dist/hooks/use-mobile.d.ts.map +1 -1
- package/dist/node_modules/.pnpm/@emoji-mart_data@1.2.1/node_modules/@emoji-mart/data/sets/15/native.json.js +40141 -0
- package/dist/node_modules/.pnpm/@emoji-mart_react@1.1.1_emoji-mart@5.6.0_react@19.2.4/node_modules/@emoji-mart/react/dist/module.js +17 -0
- package/dist/node_modules/.pnpm/emoji-mart@5.6.0/node_modules/emoji-mart/dist/module.js +2958 -0
- package/dist/node_modules/.pnpm/react-dom@19.2.4_react@19.2.4/node_modules/react-dom/cjs/react-dom-client.development.js +17062 -0
- package/dist/node_modules/.pnpm/react-dom@19.2.4_react@19.2.4/node_modules/react-dom/cjs/react-dom-client.production.js +9790 -0
- package/dist/node_modules/.pnpm/react-dom@19.2.4_react@19.2.4/node_modules/react-dom/client.js +20 -0
- package/dist/node_modules/.pnpm/scheduler@0.27.0/node_modules/scheduler/cjs/scheduler.development.js +237 -0
- package/dist/node_modules/.pnpm/scheduler@0.27.0/node_modules/scheduler/cjs/scheduler.production.js +234 -0
- package/dist/node_modules/.pnpm/scheduler@0.27.0/node_modules/scheduler/index.js +11 -0
- package/dist/primitives/_internal/react-arrow.js +8 -19
- package/dist/primitives/_internal/react-compose-refs.js +14 -14
- package/dist/primitives/_internal/react-context.js +41 -39
- package/dist/primitives/_internal/react-dismissable-layer.js +62 -90
- package/dist/primitives/_internal/react-popper.js +107 -169
- package/dist/primitives/_internal/react-portal.js +1 -1
- package/dist/primitives/_internal/react-primitive.js +1 -1
- package/dist/primitives/_internal/react-use-size.js +8 -8
- package/dist/primitives/react-slot.js +12 -12
- package/dist/shell/app-command-palette.d.ts +3 -1
- package/dist/shell/app-command-palette.d.ts.map +1 -1
- package/dist/shell/app-command-palette.js +35 -34
- package/dist/shell/bottom-navbar.d.ts.map +1 -1
- package/dist/shell/bottom-navbar.js +31 -31
- package/dist/shell/index.d.ts +1 -1
- package/dist/shell/index.d.ts.map +1 -1
- package/dist/shell/notification-center.d.ts +10 -0
- package/dist/shell/notification-center.d.ts.map +1 -1
- package/dist/shell/notification-center.js +129 -117
- package/dist/shell/top-bar.d.ts +20 -0
- package/dist/shell/top-bar.d.ts.map +1 -1
- package/dist/shell/top-bar.js +100 -70
- package/dist/tailwind/index.cjs +3 -0
- package/dist/tailwind/preset.d.ts.map +1 -1
- package/dist/tailwind/preset.js +3 -0
- package/dist/tokens/semantic.css +10 -1
- package/dist/ui/alert.js +42 -63
- package/dist/ui/avatar.js +20 -62
- package/dist/ui/badge.d.ts +1 -1
- package/dist/ui/badge.d.ts.map +1 -1
- package/dist/ui/badge.js +89 -112
- package/dist/ui/banner.js +12 -12
- package/dist/ui/button-group.js +14 -29
- package/dist/ui/button.js +64 -108
- package/dist/ui/card.js +18 -62
- package/dist/ui/checkbox.js +1 -21
- package/dist/ui/chip.d.ts.map +1 -1
- package/dist/ui/chip.js +1 -1
- package/dist/ui/color-input.d.ts +17 -0
- package/dist/ui/color-input.d.ts.map +1 -0
- package/dist/ui/color-input.js +88 -0
- package/dist/ui/combobox.d.ts +20 -11
- package/dist/ui/combobox.d.ts.map +1 -1
- package/dist/ui/dialog.js +9 -9
- package/dist/ui/form.js +14 -35
- package/dist/ui/index.d.ts +1 -0
- package/dist/ui/index.d.ts.map +1 -1
- package/dist/ui/index.js +314 -312
- package/dist/ui/input.d.ts.map +1 -1
- package/dist/ui/input.js +31 -56
- package/dist/ui/label.js +1 -15
- package/dist/ui/number-input.d.ts.map +1 -1
- package/dist/ui/number-input.js +39 -35
- package/dist/ui/popover.js +6 -6
- package/dist/ui/separator.js +4 -19
- package/dist/ui/sheet.js +21 -21
- package/dist/ui/spinner.js +1 -36
- package/dist/ui/switch.js +1 -20
- package/dist/ui/tabs.js +20 -47
- package/dist/ui/textarea.d.ts.map +1 -1
- package/dist/ui/textarea.js +30 -24
- package/dist/ui/toast.js +18 -18
- package/dist/ui/tooltip.js +6 -17
- package/llms-full.txt +123 -13
- package/llms.txt +9 -6
- package/package.json +80 -11
package/dist/ui/index.js
CHANGED
|
@@ -3,324 +3,326 @@ import { Button as r, 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
5
|
import { Input as m, inputVariants as d } from "./input.js";
|
|
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 {
|
|
58
|
-
import {
|
|
59
|
-
import {
|
|
60
|
-
import {
|
|
61
|
-
import {
|
|
62
|
-
import {
|
|
63
|
-
import {
|
|
64
|
-
import {
|
|
65
|
-
import {
|
|
66
|
-
import {
|
|
6
|
+
import { ColorInput as x } from "./color-input.js";
|
|
7
|
+
import { Label as S } from "./label.js";
|
|
8
|
+
import { Separator as s } from "./separator.js";
|
|
9
|
+
import { VisuallyHidden as M } from "./visually-hidden.js";
|
|
10
|
+
import { Autocomplete as c } from "./autocomplete.js";
|
|
11
|
+
import { Combobox as I } from "./combobox.js";
|
|
12
|
+
import { FileUpload as v } from "./file-upload.js";
|
|
13
|
+
import { Checkbox as w } from "./checkbox.js";
|
|
14
|
+
import { RadioGroup as V, RadioGroupItem as B } from "./radio.js";
|
|
15
|
+
import { Switch as k } from "./switch.js";
|
|
16
|
+
import { Select as L, SelectContent as R, SelectGroup as H, SelectItem as N, SelectLabel as O, SelectScrollDownButton as y, SelectScrollUpButton as E, SelectSeparator as U, SelectTrigger as j, SelectValue as q, selectTriggerVariants as z } from "./select.js";
|
|
17
|
+
import { Textarea as K, textareaVariants as Q } from "./textarea.js";
|
|
18
|
+
import { NumberInput as X } from "./number-input.js";
|
|
19
|
+
import { SearchInput as Z } from "./search-input.js";
|
|
20
|
+
import { InputOTP as $, InputOTPGroup as ee, InputOTPSeparator as oe, InputOTPSlot as re } from "./input-otp.js";
|
|
21
|
+
import { FormField as ae, FormHelperText as ne, useFormField as ie } from "./form.js";
|
|
22
|
+
import { Slider as ue } from "./slider.js";
|
|
23
|
+
import { Toggle as me, toggleVariants as de } from "./toggle.js";
|
|
24
|
+
import { ToggleGroup as xe, ToggleGroupItem as be } from "./toggle-group.js";
|
|
25
|
+
import { AlertDialog as Ce, AlertDialogAction as se, AlertDialogCancel as fe, AlertDialogContent as Me, AlertDialogDescription as Te, AlertDialogFooter as ce, AlertDialogHeader as De, AlertDialogOverlay as Ie, AlertDialogPortal as Pe, AlertDialogTitle as ve, AlertDialogTrigger as Ae } from "./alert-dialog.js";
|
|
26
|
+
import { Dialog as he, DialogClose as Ve, DialogContent as Be, DialogContentRaw as Ge, DialogDescription as ke, DialogFooter as Fe, DialogHeader as Le, DialogOverlay as Re, DialogPortal as He, DialogTitle as Ne, DialogTrigger as Oe } from "./dialog.js";
|
|
27
|
+
import { Sheet as Ee, SheetClose as Ue, SheetContent as je, SheetDescription as qe, SheetFooter as ze, SheetHeader as Je, SheetOverlay as Ke, SheetPortal as Qe, SheetTitle as We, SheetTrigger as Xe } from "./sheet.js";
|
|
28
|
+
import { Toast as Ze, ToastAction as _e, ToastClose as $e, ToastDescription as eo, ToastProvider as oo, ToastTitle as ro, ToastViewport as to } from "./toast.js";
|
|
29
|
+
import { Toaster as no } from "./toaster.js";
|
|
30
|
+
import { Tooltip as po, TooltipContent as uo, TooltipProvider as lo, TooltipTrigger as mo } from "./tooltip.js";
|
|
31
|
+
import { Popover as xo, PopoverAnchor as bo, PopoverContent as So, PopoverTrigger as Co } from "./popover.js";
|
|
32
|
+
import { HoverCard as fo, HoverCardContent as Mo, HoverCardTrigger as To } from "./hover-card.js";
|
|
33
|
+
import { Collapsible as Do, CollapsibleContent as Io, CollapsibleTrigger as Po } from "./collapsible.js";
|
|
34
|
+
import { Alert as Ao, alertVariants as wo } from "./alert.js";
|
|
35
|
+
import { Banner as Vo, bannerVariants as Bo } from "./banner.js";
|
|
36
|
+
import { Spinner as ko } from "./spinner.js";
|
|
37
|
+
import { Card as Lo, CardContent as Ro, CardDescription as Ho, CardFooter as No, CardHeader as Oo, CardTitle as yo, cardVariants as Eo } from "./card.js";
|
|
38
|
+
import { Badge as jo, badgeVariants as qo } from "./badge.js";
|
|
39
|
+
import { Avatar as Jo, AvatarFallback as Ko, AvatarImage as Qo, avatarVariants as Wo } from "./avatar.js";
|
|
40
|
+
import { Table as Yo, TableBody as Zo, TableCaption as _o, TableCell as $o, TableFooter as er, TableHead as or, TableHeader as rr, TableRow as tr } from "./table.js";
|
|
41
|
+
import { Progress as nr, progressIndicatorVariants as ir, progressTrackVariants as pr } from "./progress.js";
|
|
42
|
+
import { Skeleton as lr, skeletonVariants as mr } from "./skeleton.js";
|
|
43
|
+
import { StatCard as gr } from "./stat-card.js";
|
|
44
|
+
import { Code as br } from "./code.js";
|
|
45
|
+
import { AspectRatio as Cr } from "./aspect-ratio.js";
|
|
46
|
+
import { Accordion as fr, AccordionContent as Mr, AccordionItem as Tr, AccordionTrigger as cr } from "./accordion.js";
|
|
47
|
+
import { Tabs as Ir, TabsContent as Pr, TabsList as vr, TabsTrigger as Ar } from "./tabs.js";
|
|
48
|
+
import { Breadcrumb as hr, BreadcrumbEllipsis as Vr, BreadcrumbItem as Br, BreadcrumbLink as Gr, BreadcrumbList as kr, BreadcrumbPage as Fr, BreadcrumbSeparator as Lr } from "./breadcrumb.js";
|
|
49
|
+
import { DropdownMenu as Hr, DropdownMenuCheckboxItem as Nr, DropdownMenuContent as Or, DropdownMenuGroup as yr, DropdownMenuItem as Er, DropdownMenuLabel as Ur, DropdownMenuPortal as jr, DropdownMenuRadioGroup as qr, DropdownMenuRadioItem as zr, DropdownMenuSeparator as Jr, DropdownMenuShortcut as Kr, DropdownMenuSub as Qr, DropdownMenuSubContent as Wr, DropdownMenuSubTrigger as Xr, DropdownMenuTrigger as Yr } from "./dropdown-menu.js";
|
|
50
|
+
import { ContextMenu as _r, ContextMenuCheckboxItem as $r, ContextMenuContent as et, ContextMenuGroup as ot, ContextMenuItem as rt, ContextMenuLabel as tt, ContextMenuPortal as at, ContextMenuRadioGroup as nt, ContextMenuRadioItem as it, ContextMenuSeparator as pt, ContextMenuShortcut as ut, ContextMenuSub as lt, ContextMenuSubContent as mt, ContextMenuSubTrigger as dt, ContextMenuTrigger as gt } from "./context-menu.js";
|
|
51
|
+
import { Menubar as bt, MenubarCheckboxItem as St, MenubarContent as Ct, MenubarGroup as st, MenubarItem as ft, MenubarLabel as Mt, MenubarMenu as Tt, MenubarPortal as ct, MenubarRadioGroup as Dt, MenubarRadioItem as It, MenubarSeparator as Pt, MenubarShortcut as vt, MenubarSub as At, MenubarSubContent as wt, MenubarSubTrigger as ht, MenubarTrigger as Vt } from "./menubar.js";
|
|
52
|
+
import { PaginationContent as Gt, PaginationEllipsis as kt, PaginationItem as Ft, PaginationLink as Lt, PaginationNav as Rt, PaginationNext as Ht, PaginationPrevious as Nt, PaginationRoot as Ot, generatePagination as yt } from "./pagination.js";
|
|
53
|
+
import { NavigationMenu as Ut, NavigationMenuContent as jt, NavigationMenuIndicator as qt, NavigationMenuItem as zt, NavigationMenuLink as Jt, NavigationMenuList as Kt, NavigationMenuTrigger as Qt, NavigationMenuViewport as Wt } from "./navigation-menu.js";
|
|
54
|
+
import { Sidebar as Yt, SidebarContent as Zt, SidebarFooter as _t, SidebarGroup as $t, SidebarGroupAction as ea, SidebarGroupContent as oa, SidebarGroupLabel as ra, SidebarHeader as ta, SidebarInput as aa, SidebarInset as na, SidebarMenu as ia, SidebarMenuAction as pa, SidebarMenuBadge as ua, SidebarMenuButton as la, SidebarMenuItem as ma, SidebarMenuSkeleton as da, SidebarMenuSub as ga, SidebarMenuSubButton as xa, SidebarMenuSubItem as ba, SidebarProvider as Sa, SidebarRail as Ca, SidebarSeparator as sa, SidebarTrigger as fa, useSidebar as Ma } from "./sidebar.js";
|
|
55
|
+
import { Step as ca, Stepper as Da } from "./stepper.js";
|
|
56
|
+
import { Chip as Pa, chipVariants as va } from "./chip.js";
|
|
57
|
+
import { Collapse as wa, Fade as ha, Grow as Va, Slide as Ba } from "./transitions.js";
|
|
58
|
+
import { Text as ka, textVariants as Fa } from "./text.js";
|
|
59
|
+
import { Stack as Ra } from "./stack.js";
|
|
60
|
+
import { Container as Na } from "./container.js";
|
|
61
|
+
import { SegmentedControl as ya, SegmentedControlItem as Ea, segmentedControlItemVariants as Ua } from "./segmented-control.js";
|
|
62
|
+
import { Link as qa } from "./link.js";
|
|
63
|
+
import { cn as Ja } from "./lib/utils.js";
|
|
64
|
+
import { duration as Qa, durations as Wa, easings as Xa, motion as Ya } from "./lib/motion.js";
|
|
65
|
+
import { TreeItem as _a } from "./tree-view/tree-item.js";
|
|
66
|
+
import { TreeView as en } from "./tree-view/tree-view.js";
|
|
67
|
+
import { useTree as rn } from "./tree-view/use-tree.js";
|
|
67
68
|
export {
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
69
|
+
fr as Accordion,
|
|
70
|
+
Mr as AccordionContent,
|
|
71
|
+
Tr as AccordionItem,
|
|
72
|
+
cr as AccordionTrigger,
|
|
73
|
+
Ao as Alert,
|
|
74
|
+
Ce as AlertDialog,
|
|
75
|
+
se as AlertDialogAction,
|
|
76
|
+
fe as AlertDialogCancel,
|
|
77
|
+
Me as AlertDialogContent,
|
|
78
|
+
Te as AlertDialogDescription,
|
|
79
|
+
ce as AlertDialogFooter,
|
|
80
|
+
De as AlertDialogHeader,
|
|
81
|
+
Ie as AlertDialogOverlay,
|
|
82
|
+
Pe as AlertDialogPortal,
|
|
83
|
+
ve as AlertDialogTitle,
|
|
84
|
+
Ae as AlertDialogTrigger,
|
|
85
|
+
Cr as AspectRatio,
|
|
86
|
+
c as Autocomplete,
|
|
87
|
+
Jo as Avatar,
|
|
88
|
+
Ko as AvatarFallback,
|
|
89
|
+
Qo as AvatarImage,
|
|
90
|
+
jo as Badge,
|
|
91
|
+
Vo as Banner,
|
|
92
|
+
hr as Breadcrumb,
|
|
93
|
+
Vr as BreadcrumbEllipsis,
|
|
94
|
+
Br as BreadcrumbItem,
|
|
95
|
+
Gr as BreadcrumbLink,
|
|
96
|
+
kr as BreadcrumbList,
|
|
97
|
+
Fr as BreadcrumbPage,
|
|
98
|
+
Lr as BreadcrumbSeparator,
|
|
98
99
|
r as Button,
|
|
99
100
|
p as ButtonGroup,
|
|
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
|
-
|
|
101
|
+
Lo as Card,
|
|
102
|
+
Ro as CardContent,
|
|
103
|
+
Ho as CardDescription,
|
|
104
|
+
No as CardFooter,
|
|
105
|
+
Oo as CardHeader,
|
|
106
|
+
yo as CardTitle,
|
|
107
|
+
w as Checkbox,
|
|
108
|
+
Pa as Chip,
|
|
109
|
+
br as Code,
|
|
110
|
+
wa as Collapse,
|
|
111
|
+
Do as Collapsible,
|
|
112
|
+
Io as CollapsibleContent,
|
|
113
|
+
Po as CollapsibleTrigger,
|
|
114
|
+
x as ColorInput,
|
|
115
|
+
I as Combobox,
|
|
116
|
+
Na as Container,
|
|
117
|
+
_r as ContextMenu,
|
|
118
|
+
$r as ContextMenuCheckboxItem,
|
|
119
|
+
et as ContextMenuContent,
|
|
120
|
+
ot as ContextMenuGroup,
|
|
121
|
+
rt as ContextMenuItem,
|
|
122
|
+
tt as ContextMenuLabel,
|
|
123
|
+
at as ContextMenuPortal,
|
|
124
|
+
nt as ContextMenuRadioGroup,
|
|
125
|
+
it as ContextMenuRadioItem,
|
|
126
|
+
pt as ContextMenuSeparator,
|
|
127
|
+
ut as ContextMenuShortcut,
|
|
128
|
+
lt as ContextMenuSub,
|
|
129
|
+
mt as ContextMenuSubContent,
|
|
130
|
+
dt as ContextMenuSubTrigger,
|
|
131
|
+
gt as ContextMenuTrigger,
|
|
132
|
+
he as Dialog,
|
|
133
|
+
Ve as DialogClose,
|
|
134
|
+
Be as DialogContent,
|
|
135
|
+
Ge as DialogContentRaw,
|
|
136
|
+
ke as DialogDescription,
|
|
137
|
+
Fe as DialogFooter,
|
|
138
|
+
Le as DialogHeader,
|
|
139
|
+
Re as DialogOverlay,
|
|
140
|
+
He as DialogPortal,
|
|
141
|
+
Ne as DialogTitle,
|
|
142
|
+
Oe as DialogTrigger,
|
|
143
|
+
Hr as DropdownMenu,
|
|
144
|
+
Nr as DropdownMenuCheckboxItem,
|
|
145
|
+
Or as DropdownMenuContent,
|
|
146
|
+
yr as DropdownMenuGroup,
|
|
147
|
+
Er as DropdownMenuItem,
|
|
148
|
+
Ur as DropdownMenuLabel,
|
|
149
|
+
jr as DropdownMenuPortal,
|
|
150
|
+
qr as DropdownMenuRadioGroup,
|
|
151
|
+
zr as DropdownMenuRadioItem,
|
|
152
|
+
Jr as DropdownMenuSeparator,
|
|
153
|
+
Kr as DropdownMenuShortcut,
|
|
154
|
+
Qr as DropdownMenuSub,
|
|
155
|
+
Wr as DropdownMenuSubContent,
|
|
156
|
+
Xr as DropdownMenuSubTrigger,
|
|
157
|
+
Yr as DropdownMenuTrigger,
|
|
158
|
+
ha as Fade,
|
|
159
|
+
v as FileUpload,
|
|
160
|
+
ae as FormField,
|
|
161
|
+
ne as FormHelperText,
|
|
162
|
+
Va as Grow,
|
|
163
|
+
fo as HoverCard,
|
|
164
|
+
Mo as HoverCardContent,
|
|
165
|
+
To as HoverCardTrigger,
|
|
164
166
|
n as IconButton,
|
|
165
167
|
m as Input,
|
|
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
|
-
|
|
168
|
+
$ as InputOTP,
|
|
169
|
+
ee as InputOTPGroup,
|
|
170
|
+
oe as InputOTPSeparator,
|
|
171
|
+
re as InputOTPSlot,
|
|
172
|
+
S as Label,
|
|
173
|
+
qa as Link,
|
|
174
|
+
bt as Menubar,
|
|
175
|
+
St as MenubarCheckboxItem,
|
|
176
|
+
Ct as MenubarContent,
|
|
177
|
+
st as MenubarGroup,
|
|
178
|
+
ft as MenubarItem,
|
|
179
|
+
Mt as MenubarLabel,
|
|
180
|
+
Tt as MenubarMenu,
|
|
181
|
+
ct as MenubarPortal,
|
|
182
|
+
Dt as MenubarRadioGroup,
|
|
183
|
+
It as MenubarRadioItem,
|
|
184
|
+
Pt as MenubarSeparator,
|
|
185
|
+
vt as MenubarShortcut,
|
|
186
|
+
At as MenubarSub,
|
|
187
|
+
wt as MenubarSubContent,
|
|
188
|
+
ht as MenubarSubTrigger,
|
|
189
|
+
Vt as MenubarTrigger,
|
|
190
|
+
Ut as NavigationMenu,
|
|
191
|
+
jt as NavigationMenuContent,
|
|
192
|
+
qt as NavigationMenuIndicator,
|
|
193
|
+
zt as NavigationMenuItem,
|
|
194
|
+
Jt as NavigationMenuLink,
|
|
195
|
+
Kt as NavigationMenuList,
|
|
196
|
+
Qt as NavigationMenuTrigger,
|
|
197
|
+
Wt as NavigationMenuViewport,
|
|
198
|
+
X as NumberInput,
|
|
199
|
+
Gt as PaginationContent,
|
|
200
|
+
kt as PaginationEllipsis,
|
|
201
|
+
Ft as PaginationItem,
|
|
202
|
+
Lt as PaginationLink,
|
|
203
|
+
Rt as PaginationNav,
|
|
204
|
+
Ht as PaginationNext,
|
|
205
|
+
Nt as PaginationPrevious,
|
|
206
|
+
Ot as PaginationRoot,
|
|
207
|
+
xo as Popover,
|
|
208
|
+
bo as PopoverAnchor,
|
|
209
|
+
So as PopoverContent,
|
|
210
|
+
Co as PopoverTrigger,
|
|
211
|
+
nr as Progress,
|
|
212
|
+
V as RadioGroup,
|
|
213
|
+
B as RadioGroupItem,
|
|
214
|
+
Z as SearchInput,
|
|
215
|
+
ya as SegmentedControl,
|
|
216
|
+
Ea as SegmentedControlItem,
|
|
217
|
+
L as Select,
|
|
218
|
+
R as SelectContent,
|
|
219
|
+
H as SelectGroup,
|
|
220
|
+
N as SelectItem,
|
|
221
|
+
O as SelectLabel,
|
|
222
|
+
y as SelectScrollDownButton,
|
|
223
|
+
E as SelectScrollUpButton,
|
|
224
|
+
U as SelectSeparator,
|
|
225
|
+
j as SelectTrigger,
|
|
226
|
+
q as SelectValue,
|
|
227
|
+
s as Separator,
|
|
228
|
+
Ee as Sheet,
|
|
229
|
+
Ue as SheetClose,
|
|
230
|
+
je as SheetContent,
|
|
231
|
+
qe as SheetDescription,
|
|
232
|
+
ze as SheetFooter,
|
|
233
|
+
Je as SheetHeader,
|
|
234
|
+
Ke as SheetOverlay,
|
|
235
|
+
Qe as SheetPortal,
|
|
236
|
+
We as SheetTitle,
|
|
237
|
+
Xe as SheetTrigger,
|
|
238
|
+
Yt as Sidebar,
|
|
239
|
+
Zt as SidebarContent,
|
|
240
|
+
_t as SidebarFooter,
|
|
241
|
+
$t as SidebarGroup,
|
|
242
|
+
ea as SidebarGroupAction,
|
|
243
|
+
oa as SidebarGroupContent,
|
|
244
|
+
ra as SidebarGroupLabel,
|
|
245
|
+
ta as SidebarHeader,
|
|
246
|
+
aa as SidebarInput,
|
|
247
|
+
na as SidebarInset,
|
|
248
|
+
ia as SidebarMenu,
|
|
249
|
+
pa as SidebarMenuAction,
|
|
250
|
+
ua as SidebarMenuBadge,
|
|
251
|
+
la as SidebarMenuButton,
|
|
252
|
+
ma as SidebarMenuItem,
|
|
253
|
+
da as SidebarMenuSkeleton,
|
|
254
|
+
ga as SidebarMenuSub,
|
|
255
|
+
xa as SidebarMenuSubButton,
|
|
256
|
+
ba as SidebarMenuSubItem,
|
|
257
|
+
Sa as SidebarProvider,
|
|
258
|
+
Ca as SidebarRail,
|
|
259
|
+
sa as SidebarSeparator,
|
|
260
|
+
fa as SidebarTrigger,
|
|
261
|
+
lr as Skeleton,
|
|
262
|
+
Ba as Slide,
|
|
263
|
+
ue as Slider,
|
|
264
|
+
ko as Spinner,
|
|
265
|
+
Ra as Stack,
|
|
266
|
+
gr as StatCard,
|
|
267
|
+
ca as Step,
|
|
268
|
+
Da as Stepper,
|
|
269
|
+
k as Switch,
|
|
270
|
+
Yo as Table,
|
|
271
|
+
Zo as TableBody,
|
|
272
|
+
_o as TableCaption,
|
|
273
|
+
$o as TableCell,
|
|
274
|
+
er as TableFooter,
|
|
275
|
+
or as TableHead,
|
|
276
|
+
rr as TableHeader,
|
|
277
|
+
tr as TableRow,
|
|
278
|
+
Ir as Tabs,
|
|
279
|
+
Pr as TabsContent,
|
|
280
|
+
vr as TabsList,
|
|
281
|
+
Ar as TabsTrigger,
|
|
282
|
+
ka as Text,
|
|
283
|
+
K as Textarea,
|
|
284
|
+
Ze as Toast,
|
|
285
|
+
_e as ToastAction,
|
|
286
|
+
$e as ToastClose,
|
|
287
|
+
eo as ToastDescription,
|
|
288
|
+
oo as ToastProvider,
|
|
289
|
+
ro as ToastTitle,
|
|
290
|
+
to as ToastViewport,
|
|
291
|
+
no as Toaster,
|
|
292
|
+
me as Toggle,
|
|
293
|
+
xe as ToggleGroup,
|
|
294
|
+
be as ToggleGroupItem,
|
|
295
|
+
po as Tooltip,
|
|
296
|
+
uo as TooltipContent,
|
|
297
|
+
lo as TooltipProvider,
|
|
298
|
+
mo as TooltipTrigger,
|
|
299
|
+
_a as TreeItem,
|
|
300
|
+
en as TreeView,
|
|
301
|
+
M as VisuallyHidden,
|
|
302
|
+
wo as alertVariants,
|
|
303
|
+
Wo as avatarVariants,
|
|
304
|
+
qo as badgeVariants,
|
|
305
|
+
Bo as bannerVariants,
|
|
304
306
|
t as buttonVariants,
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
307
|
+
Eo as cardVariants,
|
|
308
|
+
va as chipVariants,
|
|
309
|
+
Ja as cn,
|
|
310
|
+
Qa as duration,
|
|
311
|
+
Wa as durations,
|
|
312
|
+
Xa as easings,
|
|
313
|
+
yt as generatePagination,
|
|
312
314
|
d as inputVariants,
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
315
|
+
Ya as motion,
|
|
316
|
+
ir as progressIndicatorVariants,
|
|
317
|
+
pr as progressTrackVariants,
|
|
318
|
+
Ua as segmentedControlItemVariants,
|
|
319
|
+
z as selectTriggerVariants,
|
|
320
|
+
mr as skeletonVariants,
|
|
321
|
+
Fa as textVariants,
|
|
322
|
+
Q as textareaVariants,
|
|
323
|
+
de as toggleVariants,
|
|
322
324
|
u as useButtonGroup,
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
325
|
+
ie as useFormField,
|
|
326
|
+
Ma as useSidebar,
|
|
327
|
+
rn as useTree
|
|
326
328
|
};
|