laif-ds 0.1.4 → 0.1.6
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/components/ui/button.js +1 -1
- package/dist/components/ui/card.js +41 -34
- package/dist/components/ui/data-table.js +122 -0
- package/dist/components/ui/toaster.js +26 -0
- package/dist/components/ui/typo.js +53 -0
- package/dist/dist/_virtual/jsx-runtime.js +6 -0
- package/dist/dist/_virtual/jsx-runtime2.js +5 -0
- package/dist/dist/_virtual/react-jsx-runtime.development.js +5 -0
- package/dist/dist/_virtual/react-jsx-runtime.production.js +5 -0
- package/dist/dist/components/ui/checkbox.js +32 -0
- package/dist/dist/components/ui/scroll-area.js +61 -0
- package/dist/dist/components/ui/table.js +87 -0
- package/dist/dist/lib/utils.js +9 -0
- package/dist/dist/node_modules/@radix-ui/number/dist/index.js +7 -0
- package/dist/dist/node_modules/@radix-ui/primitive/dist/index.js +10 -0
- package/dist/dist/node_modules/@radix-ui/react-checkbox/dist/index.js +136 -0
- package/dist/dist/node_modules/@radix-ui/react-compose-refs/dist/index.js +30 -0
- package/dist/dist/node_modules/@radix-ui/react-context/dist/index.js +56 -0
- package/dist/dist/node_modules/@radix-ui/react-direction/dist/index.js +10 -0
- package/dist/dist/node_modules/@radix-ui/react-presence/dist/index.js +72 -0
- package/dist/dist/node_modules/@radix-ui/react-primitive/dist/index.js +32 -0
- package/dist/dist/node_modules/@radix-ui/react-scroll-area/dist/index.js +534 -0
- package/dist/dist/node_modules/@radix-ui/react-slot/dist/index.js +50 -0
- package/dist/dist/node_modules/@radix-ui/react-use-callback-ref/dist/index.js +14 -0
- package/dist/dist/node_modules/@radix-ui/react-use-controllable-state/dist/index.js +33 -0
- package/dist/dist/node_modules/@radix-ui/react-use-layout-effect/dist/index.js +7 -0
- package/dist/dist/node_modules/@radix-ui/react-use-previous/dist/index.js +9 -0
- package/dist/dist/node_modules/@radix-ui/react-use-size/dist/index.js +28 -0
- package/dist/dist/node_modules/clsx/dist/clsx.js +18 -0
- package/dist/dist/node_modules/lucide-react/dist/esm/Icon.js +41 -0
- package/dist/dist/node_modules/lucide-react/dist/esm/createLucideIcon.js +28 -0
- package/dist/dist/node_modules/lucide-react/dist/esm/defaultAttributes.js +21 -0
- package/dist/dist/node_modules/lucide-react/dist/esm/icons/check.js +13 -0
- package/dist/dist/node_modules/lucide-react/dist/esm/shared/src/utils.js +20 -0
- package/dist/dist/node_modules/react/cjs/react-jsx-runtime.development.js +248 -0
- package/dist/dist/node_modules/react/cjs/react-jsx-runtime.production.js +36 -0
- package/dist/dist/node_modules/react/jsx-runtime.js +11 -0
- package/dist/dist/node_modules/tailwind-merge/dist/bundle-mjs.js +2732 -0
- package/dist/index.d.ts +85 -18
- package/dist/index.js +253 -249
- package/dist/node_modules/@tanstack/react-table/build/lib/index.js +103 -0
- package/dist/node_modules/@tanstack/table-core/build/lib/index.js +1896 -0
- package/dist/styles.css +1 -1
- package/package.json +9 -7
- package/dist/components/ui/sonner.js +0 -23
package/dist/index.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import { AspectRatio as
|
|
2
|
+
import { AspectRatio as r } from "./components/ui/aspect-ratio.js";
|
|
3
3
|
import { Avatar as a, AvatarFallback as n, AvatarImage as i } from "./components/ui/avatar.js";
|
|
4
4
|
import { Badge as l, badgeVariants as u } from "./components/ui/badge.js";
|
|
5
|
-
import { Button as g, buttonVariants as
|
|
5
|
+
import { Button as g, buttonVariants as x } from "./components/ui/button.js";
|
|
6
6
|
import { Checkbox as b } from "./components/ui/checkbox.js";
|
|
7
7
|
import { Collapsible as S, CollapsibleContent as f, CollapsibleTrigger as s } from "./components/ui/collapsible.js";
|
|
8
8
|
import { CopyButton as T } from "./components/ui/copy-button.js";
|
|
@@ -12,288 +12,292 @@ import { InputOTP as h, InputOTPGroup as v, InputOTPSlot as F } from "./componen
|
|
|
12
12
|
import { Label as L } from "./components/ui/label.js";
|
|
13
13
|
import { Progress as w } from "./components/ui/progress.js";
|
|
14
14
|
import { RadioGroup as k, RadioGroupItem as N } from "./components/ui/radio-group.js";
|
|
15
|
-
import { Separator as
|
|
15
|
+
import { Separator as B } from "./components/ui/separator.js";
|
|
16
16
|
import { Skeleton as z } from "./components/ui/skeleton.js";
|
|
17
17
|
import { Switch as E } from "./components/ui/switch.js";
|
|
18
18
|
import { Textarea as q } from "./components/ui/textarea.js";
|
|
19
19
|
import { Toggle as K, toggleVariants as Q } from "./components/ui/toggle.js";
|
|
20
20
|
import { Tooltip as W, TooltipContent as X, TooltipProvider as Y, TooltipTrigger as Z } from "./components/ui/tooltip.js";
|
|
21
21
|
import { TypingIndicator as $ } from "./components/ui/typing-indicator.js";
|
|
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 {
|
|
22
|
+
import { Toaster as oe } from "./components/ui/toaster.js";
|
|
23
|
+
import { Accordion as te, AccordionContent as ae, AccordionItem as ne, AccordionTrigger as ie } from "./components/ui/accordion.js";
|
|
24
|
+
import { Alert as le, AlertDescription as ue, AlertTitle as me } from "./components/ui/alert.js";
|
|
25
|
+
import { AlertDialog as xe, AlertDialogAction as Ce, AlertDialogCancel as be, AlertDialogContent as de, AlertDialogDescription as Se, AlertDialogFooter as fe, AlertDialogHeader as se, AlertDialogTitle as Me, AlertDialogTrigger as Te } from "./components/ui/alert-dialog.js";
|
|
26
|
+
import { AsyncSelect as De } from "./components/ui/async-select.js";
|
|
27
|
+
import { Calendar as Ae } from "./components/ui/calendar.js";
|
|
28
|
+
import { Card as he, CardContent as ve, CardDescription as Fe, CardFooter as Ge, CardHeader as Le, CardTitle as Re } from "./components/ui/card.js";
|
|
29
|
+
import { Typo as He } from "./components/ui/typo.js";
|
|
30
|
+
import { Command as Ne, CommandDialog as ye, CommandEmpty as Be, CommandGroup as Ve, CommandInput as ze, CommandItem as Oe, CommandList as Ee, CommandSeparator as je, CommandShortcut as qe } from "./components/ui/command.js";
|
|
31
|
+
import { ContextMenu as Ke, ContextMenuCheckboxItem as Qe, ContextMenuContent as Ue, ContextMenuGroup as We, ContextMenuItem as Xe, ContextMenuLabel as Ye, ContextMenuPortal as Ze, ContextMenuRadioGroup as _e, ContextMenuRadioItem as $e, ContextMenuSeparator as eo, ContextMenuShortcut as oo, ContextMenuSub as ro, ContextMenuSubContent as to, ContextMenuSubTrigger as ao, ContextMenuTrigger as no } from "./components/ui/context-menu.js";
|
|
32
|
+
import { DatePicker as po } from "./components/ui/date-picker.js";
|
|
33
|
+
import { InputSelector as uo } from "./components/ui/input-selector.js";
|
|
34
|
+
import { Dialog as go, DialogContent as xo, DialogDescription as Co, DialogFooter as bo, DialogHeader as So, DialogTitle as fo, DialogTrigger as so } from "./components/ui/dialog.js";
|
|
35
|
+
import { Drawer as To, DrawerContent as co, DrawerDescription as Do, DrawerFooter as Io, DrawerHeader as Ao, DrawerTitle as Po, DrawerTrigger as ho } from "./components/ui/drawer.js";
|
|
36
|
+
import { Form as Fo, FormControl as Go, FormDescription as Lo, FormField as Ro, FormItem as wo, FormLabel as Ho, FormMessage as ko, useFormField as No } from "./components/ui/form.js";
|
|
37
|
+
import { HoverCard as Bo, HoverCardContent as Vo, HoverCardTrigger as zo } from "./components/ui/hover-card.js";
|
|
38
|
+
import { Menubar as Eo, MenubarCheckboxItem as jo, MenubarContent as qo, MenubarGroup as Jo, MenubarItem as Ko, MenubarLabel as Qo, MenubarMenu as Uo, MenubarPortal as Wo, MenubarRadioGroup as Xo, MenubarRadioItem as Yo, MenubarSeparator as Zo, MenubarShortcut as _o, MenubarSub as $o, MenubarSubContent as er, MenubarSubTrigger as or, MenubarTrigger as rr } from "./components/ui/menubar.js";
|
|
39
|
+
import { MultipleSelector as ar } from "./components/ui/multiple-selector.js";
|
|
40
|
+
import { Pagination as ir, PaginationContent as pr, PaginationEllipsis as lr, PaginationItem as ur, PaginationLink as mr, PaginationNext as gr, PaginationPrevious as xr } from "./components/ui/pagination.js";
|
|
41
|
+
import { Popover as br, PopoverContent as dr, PopoverTrigger as Sr } from "./components/ui/popover.js";
|
|
42
|
+
import { PromptSuggestions as sr } from "./components/ui/prompt-suggestions.js";
|
|
43
|
+
import { ResizableHandle as Tr, ResizablePanel as cr, ResizablePanelGroup as Dr } from "./components/ui/resizable.js";
|
|
44
|
+
import { ScrollArea as Ar, ScrollBar as Pr } from "./components/ui/scroll-area.js";
|
|
45
|
+
import { Select as vr, SelectContent as Fr, SelectGroup as Gr, SelectItem as Lr, SelectLabel as Rr, SelectSeparator as wr, SelectTrigger as Hr, SelectValue as kr } from "./components/ui/select.js";
|
|
46
|
+
import { Sheet as yr, SheetContent as Br, SheetDescription as Vr, SheetFooter as zr, SheetHeader as Or, SheetTitle as Er, SheetTrigger as jr } from "./components/ui/sheet.js";
|
|
47
|
+
import { Table as Jr, TableBody as Kr, TableCaption as Qr, TableCell as Ur, TableFooter as Wr, TableHead as Xr, TableHeader as Yr, TableRow as Zr } from "./components/ui/table.js";
|
|
48
|
+
import { Tabs as $r, TabsContent as et, TabsList as ot, TabsTrigger as rt } from "./components/ui/tabs.js";
|
|
49
|
+
import { ToggleGroup as at, ToggleGroupItem as nt } from "./components/ui/toggle-group.js";
|
|
50
|
+
import { AudioVisualizer as pt } from "./components/ui/audio-visualizer.js";
|
|
51
|
+
import { Carousel as ut, CarouselContent as mt, CarouselItem as gt, CarouselNext as xt, CarouselPrevious as Ct } from "./components/ui/carousel.js";
|
|
52
|
+
import { ChartContainer as dt, ChartLegend as St, ChartLegendContent as ft, ChartStyle as st, ChartTooltip as Mt, ChartTooltipContent as Tt } from "./components/ui/chart.js";
|
|
53
|
+
import { Chat as Dt, ChatContainer as It, ChatForm as At, ChatMessages as Pt } from "./components/ui/chat.js";
|
|
54
|
+
import { ChatMessage as vt } from "./components/ui/chat-message.js";
|
|
55
|
+
import { FilePreview as Gt } from "./components/ui/file-preview.js";
|
|
56
|
+
import { InterruptPrompt as Rt } from "./components/ui/interrupt-prompt.js";
|
|
57
|
+
import { MarkdownRenderer as Ht } from "./components/ui/markdown-renderer.js";
|
|
58
|
+
import { MessageInput as Nt } from "./components/ui/message-input.js";
|
|
59
|
+
import { MessageList as Bt } from "./components/ui/message-list.js";
|
|
60
|
+
import { NavigationMenu as zt, NavigationMenuContent as Ot, NavigationMenuIndicator as Et, NavigationMenuItem as jt, NavigationMenuLink as qt, NavigationMenuList as Jt, NavigationMenuTrigger as Kt, NavigationMenuViewport as Qt } from "./components/ui/navigation-menu.js";
|
|
61
|
+
import { Sidebar as Wt, SidebarContent as Xt, SidebarFooter as Yt, SidebarGroup as Zt, SidebarGroupAction as _t, SidebarGroupContent as $t, SidebarGroupLabel as ea, SidebarHeader as oa, SidebarInput as ra, SidebarInset as ta, SidebarMenu as aa, SidebarMenuAction as na, SidebarMenuBadge as ia, SidebarMenuButton as pa, SidebarMenuItem as la, SidebarMenuSkeleton as ua, SidebarMenuSub as ma, SidebarMenuSubButton as ga, SidebarMenuSubItem as xa, SidebarProvider as Ca, SidebarRail as ba, SidebarSeparator as da, SidebarTrigger as Sa, useSidebar as fa } from "./components/ui/sidebar.js";
|
|
62
|
+
import { DataTable as Ma } from "./components/ui/data-table.js";
|
|
63
|
+
import { useAudioRecording as ca } from "./hooks/use-audio-recording.js";
|
|
64
|
+
import { useAutoScroll as Ia } from "./hooks/use-auto-scroll.js";
|
|
65
|
+
import { useAutosizeTextArea as Pa } from "./hooks/use-autosize-textarea.js";
|
|
66
|
+
import { useCopyToClipboard as va } from "./hooks/use-copy-to-clipboard.js";
|
|
67
|
+
import { useDebounce as Ga } from "./hooks/use-debounce.js";
|
|
68
|
+
import { useIsMobile as Ra } from "./hooks/use-mobile.js";
|
|
67
69
|
export {
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
70
|
+
te as Accordion,
|
|
71
|
+
ae as AccordionContent,
|
|
72
|
+
ne as AccordionItem,
|
|
73
|
+
ie as AccordionTrigger,
|
|
74
|
+
le as Alert,
|
|
75
|
+
ue as AlertDescription,
|
|
76
|
+
xe as AlertDialog,
|
|
77
|
+
Ce as AlertDialogAction,
|
|
78
|
+
be as AlertDialogCancel,
|
|
79
|
+
de as AlertDialogContent,
|
|
80
|
+
Se as AlertDialogDescription,
|
|
81
|
+
fe as AlertDialogFooter,
|
|
82
|
+
se as AlertDialogHeader,
|
|
83
|
+
Me as AlertDialogTitle,
|
|
84
|
+
Te as AlertDialogTrigger,
|
|
85
|
+
me as AlertTitle,
|
|
86
|
+
r as AspectRatio,
|
|
87
|
+
De as AsyncSelect,
|
|
88
|
+
pt as AudioVisualizer,
|
|
87
89
|
a as Avatar,
|
|
88
90
|
n as AvatarFallback,
|
|
89
91
|
i as AvatarImage,
|
|
90
92
|
l as Badge,
|
|
91
93
|
g as Button,
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
94
|
+
Ae as Calendar,
|
|
95
|
+
he as Card,
|
|
96
|
+
ve as CardContent,
|
|
97
|
+
Fe as CardDescription,
|
|
98
|
+
Ge as CardFooter,
|
|
99
|
+
Le as CardHeader,
|
|
100
|
+
Re as CardTitle,
|
|
101
|
+
ut as Carousel,
|
|
102
|
+
mt as CarouselContent,
|
|
103
|
+
gt as CarouselItem,
|
|
104
|
+
xt as CarouselNext,
|
|
105
|
+
Ct as CarouselPrevious,
|
|
106
|
+
dt as ChartContainer,
|
|
107
|
+
St as ChartLegend,
|
|
108
|
+
ft as ChartLegendContent,
|
|
109
|
+
st as ChartStyle,
|
|
110
|
+
Mt as ChartTooltip,
|
|
111
|
+
Tt as ChartTooltipContent,
|
|
112
|
+
Dt as Chat,
|
|
113
|
+
It as ChatContainer,
|
|
114
|
+
At as ChatForm,
|
|
115
|
+
vt as ChatMessage,
|
|
116
|
+
Pt as ChatMessages,
|
|
115
117
|
b as Checkbox,
|
|
116
118
|
S as Collapsible,
|
|
117
119
|
f as CollapsibleContent,
|
|
118
120
|
s as CollapsibleTrigger,
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
121
|
+
Ne as Command,
|
|
122
|
+
ye as CommandDialog,
|
|
123
|
+
Be as CommandEmpty,
|
|
124
|
+
Ve as CommandGroup,
|
|
125
|
+
ze as CommandInput,
|
|
126
|
+
Oe as CommandItem,
|
|
127
|
+
Ee as CommandList,
|
|
128
|
+
je as CommandSeparator,
|
|
129
|
+
qe as CommandShortcut,
|
|
130
|
+
Ke as ContextMenu,
|
|
131
|
+
Qe as ContextMenuCheckboxItem,
|
|
132
|
+
Ue as ContextMenuContent,
|
|
133
|
+
We as ContextMenuGroup,
|
|
134
|
+
Xe as ContextMenuItem,
|
|
135
|
+
Ye as ContextMenuLabel,
|
|
136
|
+
Ze as ContextMenuPortal,
|
|
137
|
+
_e as ContextMenuRadioGroup,
|
|
138
|
+
$e as ContextMenuRadioItem,
|
|
139
|
+
eo as ContextMenuSeparator,
|
|
140
|
+
oo as ContextMenuShortcut,
|
|
141
|
+
ro as ContextMenuSub,
|
|
142
|
+
to as ContextMenuSubContent,
|
|
143
|
+
ao as ContextMenuSubTrigger,
|
|
144
|
+
no as ContextMenuTrigger,
|
|
143
145
|
T as CopyButton,
|
|
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
|
-
|
|
146
|
+
Ma as DataTable,
|
|
147
|
+
po as DatePicker,
|
|
148
|
+
go as Dialog,
|
|
149
|
+
xo as DialogContent,
|
|
150
|
+
Co as DialogDescription,
|
|
151
|
+
bo as DialogFooter,
|
|
152
|
+
So as DialogHeader,
|
|
153
|
+
fo as DialogTitle,
|
|
154
|
+
so as DialogTrigger,
|
|
155
|
+
To as Drawer,
|
|
156
|
+
co as DrawerContent,
|
|
157
|
+
Do as DrawerDescription,
|
|
158
|
+
Io as DrawerFooter,
|
|
159
|
+
Ao as DrawerHeader,
|
|
160
|
+
Po as DrawerTitle,
|
|
161
|
+
ho as DrawerTrigger,
|
|
162
|
+
Gt as FilePreview,
|
|
163
|
+
Fo as Form,
|
|
164
|
+
Go as FormControl,
|
|
165
|
+
Lo as FormDescription,
|
|
166
|
+
Ro as FormField,
|
|
167
|
+
wo as FormItem,
|
|
168
|
+
Ho as FormLabel,
|
|
169
|
+
ko as FormMessage,
|
|
170
|
+
Bo as HoverCard,
|
|
171
|
+
Vo as HoverCardContent,
|
|
172
|
+
zo as HoverCardTrigger,
|
|
170
173
|
D as Icon,
|
|
171
174
|
A as Input,
|
|
172
175
|
h as InputOTP,
|
|
173
176
|
v as InputOTPGroup,
|
|
174
177
|
F as InputOTPSlot,
|
|
175
|
-
|
|
176
|
-
|
|
178
|
+
uo as InputSelector,
|
|
179
|
+
Rt as InterruptPrompt,
|
|
177
180
|
L as Label,
|
|
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
|
-
|
|
181
|
+
Ht as MarkdownRenderer,
|
|
182
|
+
Eo as Menubar,
|
|
183
|
+
jo as MenubarCheckboxItem,
|
|
184
|
+
qo as MenubarContent,
|
|
185
|
+
Jo as MenubarGroup,
|
|
186
|
+
Ko as MenubarItem,
|
|
187
|
+
Qo as MenubarLabel,
|
|
188
|
+
Uo as MenubarMenu,
|
|
189
|
+
Wo as MenubarPortal,
|
|
190
|
+
Xo as MenubarRadioGroup,
|
|
191
|
+
Yo as MenubarRadioItem,
|
|
192
|
+
Zo as MenubarSeparator,
|
|
193
|
+
_o as MenubarShortcut,
|
|
194
|
+
$o as MenubarSub,
|
|
195
|
+
er as MenubarSubContent,
|
|
196
|
+
or as MenubarSubTrigger,
|
|
197
|
+
rr as MenubarTrigger,
|
|
198
|
+
Nt as MessageInput,
|
|
199
|
+
Bt as MessageList,
|
|
200
|
+
ar as MultipleSelector,
|
|
201
|
+
zt as NavigationMenu,
|
|
202
|
+
Ot as NavigationMenuContent,
|
|
203
|
+
Et as NavigationMenuIndicator,
|
|
204
|
+
jt as NavigationMenuItem,
|
|
205
|
+
qt as NavigationMenuLink,
|
|
206
|
+
Jt as NavigationMenuList,
|
|
207
|
+
Kt as NavigationMenuTrigger,
|
|
208
|
+
Qt as NavigationMenuViewport,
|
|
209
|
+
ir as Pagination,
|
|
210
|
+
pr as PaginationContent,
|
|
211
|
+
lr as PaginationEllipsis,
|
|
212
|
+
ur as PaginationItem,
|
|
213
|
+
mr as PaginationLink,
|
|
214
|
+
gr as PaginationNext,
|
|
215
|
+
xr as PaginationPrevious,
|
|
216
|
+
br as Popover,
|
|
217
|
+
dr as PopoverContent,
|
|
218
|
+
Sr as PopoverTrigger,
|
|
216
219
|
w as Progress,
|
|
217
|
-
|
|
220
|
+
sr as PromptSuggestions,
|
|
218
221
|
k as RadioGroup,
|
|
219
222
|
N as RadioGroupItem,
|
|
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
|
-
|
|
223
|
+
Tr as ResizableHandle,
|
|
224
|
+
cr as ResizablePanel,
|
|
225
|
+
Dr as ResizablePanelGroup,
|
|
226
|
+
Ar as ScrollArea,
|
|
227
|
+
Pr as ScrollBar,
|
|
228
|
+
vr as Select,
|
|
229
|
+
Fr as SelectContent,
|
|
230
|
+
Gr as SelectGroup,
|
|
231
|
+
Lr as SelectItem,
|
|
232
|
+
Rr as SelectLabel,
|
|
233
|
+
wr as SelectSeparator,
|
|
234
|
+
Hr as SelectTrigger,
|
|
235
|
+
kr as SelectValue,
|
|
236
|
+
B as Separator,
|
|
237
|
+
yr as Sheet,
|
|
238
|
+
Br as SheetContent,
|
|
239
|
+
Vr as SheetDescription,
|
|
240
|
+
zr as SheetFooter,
|
|
241
|
+
Or as SheetHeader,
|
|
242
|
+
Er as SheetTitle,
|
|
243
|
+
jr as SheetTrigger,
|
|
244
|
+
Wt as Sidebar,
|
|
245
|
+
Xt as SidebarContent,
|
|
246
|
+
Yt as SidebarFooter,
|
|
247
|
+
Zt as SidebarGroup,
|
|
248
|
+
_t as SidebarGroupAction,
|
|
249
|
+
$t as SidebarGroupContent,
|
|
250
|
+
ea as SidebarGroupLabel,
|
|
251
|
+
oa as SidebarHeader,
|
|
252
|
+
ra as SidebarInput,
|
|
253
|
+
ta as SidebarInset,
|
|
254
|
+
aa as SidebarMenu,
|
|
255
|
+
na as SidebarMenuAction,
|
|
256
|
+
ia as SidebarMenuBadge,
|
|
257
|
+
pa as SidebarMenuButton,
|
|
258
|
+
la as SidebarMenuItem,
|
|
259
|
+
ua as SidebarMenuSkeleton,
|
|
260
|
+
ma as SidebarMenuSub,
|
|
261
|
+
ga as SidebarMenuSubButton,
|
|
262
|
+
xa as SidebarMenuSubItem,
|
|
263
|
+
Ca as SidebarProvider,
|
|
264
|
+
ba as SidebarRail,
|
|
265
|
+
da as SidebarSeparator,
|
|
266
|
+
Sa as SidebarTrigger,
|
|
264
267
|
z as Skeleton,
|
|
265
268
|
E as Switch,
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
269
|
+
Jr as Table,
|
|
270
|
+
Kr as TableBody,
|
|
271
|
+
Qr as TableCaption,
|
|
272
|
+
Ur as TableCell,
|
|
273
|
+
Wr as TableFooter,
|
|
274
|
+
Xr as TableHead,
|
|
275
|
+
Yr as TableHeader,
|
|
276
|
+
Zr as TableRow,
|
|
277
|
+
$r as Tabs,
|
|
278
|
+
et as TabsContent,
|
|
279
|
+
ot as TabsList,
|
|
280
|
+
rt as TabsTrigger,
|
|
278
281
|
q as Textarea,
|
|
279
|
-
|
|
282
|
+
oe as Toaster,
|
|
280
283
|
K as Toggle,
|
|
281
|
-
|
|
282
|
-
|
|
284
|
+
at as ToggleGroup,
|
|
285
|
+
nt as ToggleGroupItem,
|
|
283
286
|
W as Tooltip,
|
|
284
287
|
X as TooltipContent,
|
|
285
288
|
Y as TooltipProvider,
|
|
286
289
|
Z as TooltipTrigger,
|
|
287
290
|
$ as TypingIndicator,
|
|
291
|
+
He as Typo,
|
|
288
292
|
u as badgeVariants,
|
|
289
|
-
|
|
293
|
+
x as buttonVariants,
|
|
290
294
|
Q as toggleVariants,
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
295
|
+
ca as useAudioRecording,
|
|
296
|
+
Ia as useAutoScroll,
|
|
297
|
+
Pa as useAutosizeTextArea,
|
|
298
|
+
va as useCopyToClipboard,
|
|
299
|
+
Ga as useDebounce,
|
|
300
|
+
No as useFormField,
|
|
301
|
+
Ra as useIsMobile,
|
|
302
|
+
fa as useSidebar
|
|
299
303
|
};
|