laif-ds 0.1.56 → 0.1.57
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +14 -10
- package/dist/index.js +69 -67
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -653,7 +653,7 @@ export declare enum DataRepeatTypes {
|
|
|
653
653
|
|
|
654
654
|
export declare function DataTable<TData, TValue>({ columns, data, loading, emptyComponent, className, rowSelection, onRowSelectionChange, checkable, onCheckedRowsChange, notFoundMessage, searchBar, dropdownFilters, totalItems, datatableSizes, paginationPlaceholders, serverOptions, setServerOptions, }: DataTableProps<TData, TValue>): JSX.Element;
|
|
655
655
|
|
|
656
|
-
declare interface DataTableProps<TData, TValue> {
|
|
656
|
+
export declare interface DataTableProps<TData, TValue> {
|
|
657
657
|
columns: ColumnDef<TData, TValue>[];
|
|
658
658
|
data: TData[];
|
|
659
659
|
loading?: boolean;
|
|
@@ -742,7 +742,7 @@ export declare const DropdownMenuSeparator: React_2.ForwardRefExoticComponent<Om
|
|
|
742
742
|
|
|
743
743
|
export declare const DropdownMenuTrigger: React_2.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuTriggerProps & React_2.RefAttributes<HTMLButtonElement>>;
|
|
744
744
|
|
|
745
|
-
declare enum ELogicalFilterOperator {
|
|
745
|
+
export declare enum ELogicalFilterOperator {
|
|
746
746
|
AND = "AND",
|
|
747
747
|
OR = "OR"
|
|
748
748
|
}
|
|
@@ -847,6 +847,10 @@ export declare function HoverCardContent({ className, align, sideOffset, ...prop
|
|
|
847
847
|
|
|
848
848
|
export declare function HoverCardTrigger({ ...props }: React_2.ComponentProps<typeof HoverCardPrimitive.Trigger>): JSX.Element;
|
|
849
849
|
|
|
850
|
+
export declare type IColumnDefWithSticky<TData, TValue = unknown> = ColumnDef<TData, TValue> & {
|
|
851
|
+
sticky?: boolean;
|
|
852
|
+
};
|
|
853
|
+
|
|
850
854
|
/**
|
|
851
855
|
* Componente Icon che renderizza un'icona da lucide-react
|
|
852
856
|
*
|
|
@@ -875,7 +879,7 @@ declare interface IconProps {
|
|
|
875
879
|
|
|
876
880
|
declare type IconSize = keyof typeof sizeMap;
|
|
877
881
|
|
|
878
|
-
declare interface IDatatablePaginationPlaceholders {
|
|
882
|
+
export declare interface IDatatablePaginationPlaceholders {
|
|
879
883
|
rows?: string;
|
|
880
884
|
pages?: string;
|
|
881
885
|
first?: string;
|
|
@@ -884,18 +888,18 @@ declare interface IDatatablePaginationPlaceholders {
|
|
|
884
888
|
last?: string;
|
|
885
889
|
}
|
|
886
890
|
|
|
887
|
-
declare interface IDatatableSizes {
|
|
891
|
+
export declare interface IDatatableSizes {
|
|
888
892
|
rowHeight?: number;
|
|
889
893
|
headerHeight?: number;
|
|
890
894
|
containerHeight?: number;
|
|
891
895
|
}
|
|
892
896
|
|
|
893
|
-
declare interface IDropdownFilterItem {
|
|
897
|
+
export declare interface IDropdownFilterItem {
|
|
894
898
|
label: string;
|
|
895
899
|
value: string;
|
|
896
900
|
}
|
|
897
901
|
|
|
898
|
-
declare interface IDropdownFilterProp {
|
|
902
|
+
export declare interface IDropdownFilterProp {
|
|
899
903
|
column: string;
|
|
900
904
|
placeholder: string;
|
|
901
905
|
label?: string;
|
|
@@ -946,17 +950,17 @@ declare interface InterruptPromptProps {
|
|
|
946
950
|
close: () => void;
|
|
947
951
|
}
|
|
948
952
|
|
|
949
|
-
declare interface IPaginationProps {
|
|
953
|
+
export declare interface IPaginationProps {
|
|
950
954
|
pageIndex: number;
|
|
951
955
|
pageSize: number;
|
|
952
956
|
}
|
|
953
957
|
|
|
954
|
-
declare interface ISearchBarProps {
|
|
958
|
+
export declare interface ISearchBarProps {
|
|
955
959
|
placeholder?: string;
|
|
956
960
|
columns: string[];
|
|
957
961
|
}
|
|
958
962
|
|
|
959
|
-
declare interface IServerFilterProps {
|
|
963
|
+
export declare interface IServerFilterProps {
|
|
960
964
|
searchbarFilters?: {
|
|
961
965
|
value: string;
|
|
962
966
|
columns: string[];
|
|
@@ -970,7 +974,7 @@ declare interface IServerFilterProps {
|
|
|
970
974
|
};
|
|
971
975
|
}
|
|
972
976
|
|
|
973
|
-
declare interface IServerOptionsProps {
|
|
977
|
+
export declare interface IServerOptionsProps {
|
|
974
978
|
pagination: IPaginationProps;
|
|
975
979
|
filters?: IServerFilterProps;
|
|
976
980
|
}
|
package/dist/index.js
CHANGED
|
@@ -3,13 +3,13 @@ import { default as o } from "./components/ui/gantt/components/Gantt/Gantt.js";
|
|
|
3
3
|
import { AspectRatio as a } from "./components/ui/aspect-ratio.js";
|
|
4
4
|
import { Avatar as i, AvatarFallback as p, AvatarImage as m } from "./components/ui/avatar.js";
|
|
5
5
|
import { Badge as u, badgeVariants as x } from "./components/ui/badge.js";
|
|
6
|
-
import { Button as
|
|
6
|
+
import { Button as g, buttonVariants as b } from "./components/ui/button.js";
|
|
7
7
|
import { Checkbox as f } from "./components/ui/checkbox.js";
|
|
8
8
|
import { Collapsible as S, CollapsibleContent as M, CollapsibleTrigger as c } from "./components/ui/collapsible.js";
|
|
9
9
|
import { CopyButton as D } from "./components/ui/copy-button.js";
|
|
10
10
|
import { Icon as A } from "./components/ui/icon.js";
|
|
11
11
|
import { Input as h } from "./components/ui/input.js";
|
|
12
|
-
import { InputOTP as
|
|
12
|
+
import { InputOTP as F, InputOTPGroup as w, InputOTPSlot as G } from "./components/ui/input-otp.js";
|
|
13
13
|
import { Label as B } from "./components/ui/label.js";
|
|
14
14
|
import { Progress as H } from "./components/ui/progress.js";
|
|
15
15
|
import { RadioGroup as N, RadioGroupItem as y } from "./components/ui/radio-group.js";
|
|
@@ -23,36 +23,36 @@ import { TypingIndicator as re } from "./components/ui/typing-indicator.js";
|
|
|
23
23
|
import { Toaster as te } from "./components/ui/toaster.js";
|
|
24
24
|
import { Accordion as ne, AccordionContent as ie, AccordionItem as pe, AccordionTrigger as me } from "./components/ui/accordion.js";
|
|
25
25
|
import { Alert as ue, AlertDescription as xe, AlertTitle as de } from "./components/ui/alert.js";
|
|
26
|
-
import { AlertDialog as
|
|
26
|
+
import { AlertDialog as be, AlertDialogAction as Ce, AlertDialogCancel as fe, AlertDialogContent as se, AlertDialogDescription as Se, AlertDialogFooter as Me, AlertDialogHeader as ce, AlertDialogTitle as Te, AlertDialogTrigger as De } from "./components/ui/alert-dialog.js";
|
|
27
27
|
import { AsyncSelect as Ae } from "./components/ui/async-select.js";
|
|
28
28
|
import { Calendar as he } from "./components/ui/calendar.js";
|
|
29
|
-
import { Card as
|
|
29
|
+
import { Card as Fe, CardContent as we, CardDescription as Ge, CardFooter as Le, CardHeader as Be, CardTitle as Re } from "./components/ui/card.js";
|
|
30
30
|
import { Typo as ke } from "./components/ui/typo.js";
|
|
31
31
|
import { Command as ye, CommandDialog as ze, CommandEmpty as Ve, CommandGroup as Ee, CommandInput as Oe, CommandItem as je, CommandList as qe, CommandSeparator as Je, CommandShortcut as Ke } from "./components/ui/command.js";
|
|
32
32
|
import { ContextMenu as Ue, ContextMenuCheckboxItem as We, ContextMenuContent as Xe, ContextMenuGroup as Ye, ContextMenuItem as Ze, ContextMenuLabel as _e, ContextMenuPortal as $e, ContextMenuRadioGroup as er, ContextMenuRadioItem as rr, ContextMenuSeparator as or, ContextMenuShortcut as tr, ContextMenuSub as ar, ContextMenuSubContent as nr, ContextMenuSubTrigger as ir, ContextMenuTrigger as pr } from "./components/ui/context-menu.js";
|
|
33
33
|
import { DatePicker as lr } from "./components/ui/date-picker.js";
|
|
34
34
|
import { InputSelector as xr } from "./components/ui/input-selector.js";
|
|
35
|
-
import { Dialog as
|
|
35
|
+
import { Dialog as gr, DialogContent as br, DialogDescription as Cr, DialogFooter as fr, DialogHeader as sr, DialogTitle as Sr, DialogTrigger as Mr } from "./components/ui/dialog.js";
|
|
36
36
|
import { Drawer as Tr, DrawerContent as Dr, DrawerDescription as Ir, DrawerFooter as Ar, DrawerHeader as Pr, DrawerTitle as hr, DrawerTrigger as vr } from "./components/ui/drawer.js";
|
|
37
|
-
import { Form as
|
|
37
|
+
import { Form as wr, FormControl as Gr, FormDescription as Lr, FormField as Br, FormItem as Rr, FormLabel as Hr, FormMessage as kr, useFormField as Nr } from "./components/ui/form.js";
|
|
38
38
|
import { HoverCard as zr, HoverCardContent as Vr, HoverCardTrigger as Er } from "./components/ui/hover-card.js";
|
|
39
39
|
import { Menubar as jr, MenubarCheckboxItem as qr, MenubarContent as Jr, MenubarGroup as Kr, MenubarItem as Qr, MenubarLabel as Ur, MenubarMenu as Wr, MenubarPortal as Xr, MenubarRadioGroup as Yr, MenubarRadioItem as Zr, MenubarSeparator as _r, MenubarShortcut as $r, MenubarSub as eo, MenubarSubContent as ro, MenubarSubTrigger as oo, MenubarTrigger as to } from "./components/ui/menubar.js";
|
|
40
40
|
import { MultipleSelector as no } from "./components/ui/multiple-selector.js";
|
|
41
|
-
import { Pagination as po, PaginationContent as mo, PaginationEllipsis as lo, PaginationItem as uo, PaginationLink as xo, PaginationNext as
|
|
41
|
+
import { Pagination as po, PaginationContent as mo, PaginationEllipsis as lo, PaginationItem as uo, PaginationLink as xo, PaginationNext as go, PaginationPrevious as bo } from "./components/ui/pagination.js";
|
|
42
42
|
import { Popover as fo, PopoverContent as so, PopoverTrigger as So } from "./components/ui/popover.js";
|
|
43
43
|
import { PromptSuggestions as co } from "./components/ui/prompt-suggestions.js";
|
|
44
44
|
import { ResizableHandle as Do, ResizablePanel as Io, ResizablePanelGroup as Ao } from "./components/ui/resizable.js";
|
|
45
45
|
import { ScrollArea as ho, ScrollBar as vo } from "./components/ui/scroll-area.js";
|
|
46
|
-
import { Select as
|
|
46
|
+
import { Select as wo, SelectContent as Go, SelectGroup as Lo, SelectItem as Bo, SelectLabel as Ro, SelectSeparator as Ho, SelectTrigger as ko, SelectValue as No } from "./components/ui/select.js";
|
|
47
47
|
import { Sheet as zo, SheetContent as Vo, SheetDescription as Eo, SheetFooter as Oo, SheetHeader as jo, SheetTitle as qo, SheetTrigger as Jo } from "./components/ui/sheet.js";
|
|
48
48
|
import { Table as Qo, TableBody as Uo, TableCaption as Wo, TableCell as Xo, TableFooter as Yo, TableHead as Zo, TableHeader as _o, TableRow as $o } from "./components/ui/table.js";
|
|
49
49
|
import { Tabs as rt, TabsContent as ot, TabsList as tt, TabsTrigger as at } from "./components/ui/tabs.js";
|
|
50
50
|
import { ToggleGroup as it, ToggleGroupItem as pt } from "./components/ui/toggle-group.js";
|
|
51
|
-
import { Breadcrumb as lt, BreadcrumbEllipsis as ut, BreadcrumbItem as xt, BreadcrumbLink as dt, BreadcrumbList as
|
|
51
|
+
import { Breadcrumb as lt, BreadcrumbEllipsis as ut, BreadcrumbItem as xt, BreadcrumbLink as dt, BreadcrumbList as gt, BreadcrumbPage as bt, BreadcrumbSeparator as Ct } from "./components/ui/breadcrumb.js";
|
|
52
52
|
import { Slider as st } from "./components/ui/slider.js";
|
|
53
53
|
import { CircularProgress as Mt } from "./components/ui/charts/circular.js";
|
|
54
54
|
import { ThemeSwitcher as Tt } from "./components/ui/theme-switcher.js";
|
|
55
|
-
import { DropdownMenu as It, DropdownMenuContent as At, DropdownMenuItem as Pt, DropdownMenuLabel as ht, DropdownMenuSeparator as vt, DropdownMenuTrigger as
|
|
55
|
+
import { DropdownMenu as It, DropdownMenuContent as At, DropdownMenuItem as Pt, DropdownMenuLabel as ht, DropdownMenuSeparator as vt, DropdownMenuTrigger as Ft } from "./components/ui/dropdown-menu.js";
|
|
56
56
|
import { AudioVisualizer as Gt } from "./components/ui/audio-visualizer.js";
|
|
57
57
|
import { Carousel as Bt, CarouselContent as Rt, CarouselItem as Ht, CarouselNext as kt, CarouselPrevious as Nt } from "./components/ui/carousel.js";
|
|
58
58
|
import { ChartContainer as zt, ChartLegend as Vt, ChartLegendContent as Et, ChartStyle as Ot, ChartTooltip as jt, ChartTooltipContent as qt } from "./components/ui/chart.js";
|
|
@@ -63,26 +63,27 @@ import { InterruptPrompt as ea } from "./components/ui/interrupt-prompt.js";
|
|
|
63
63
|
import { MarkdownRenderer as oa } from "./components/ui/markdown-renderer.js";
|
|
64
64
|
import { MessageInput as aa } from "./components/ui/message-input.js";
|
|
65
65
|
import { MessageList as ia } from "./components/ui/message-list.js";
|
|
66
|
-
import { NavigationMenu as ma, NavigationMenuContent as la, NavigationMenuIndicator as ua, NavigationMenuItem as xa, NavigationMenuLink as da, NavigationMenuList as
|
|
67
|
-
import { Sidebar as sa, SidebarContent as Sa, SidebarFooter as Ma, SidebarGroup as ca, SidebarGroupAction as Ta, SidebarGroupContent as Da, SidebarGroupLabel as Ia, SidebarHeader as Aa, SidebarInput as Pa, SidebarInset as ha, SidebarMenu as va, SidebarMenuAction as
|
|
66
|
+
import { NavigationMenu as ma, NavigationMenuContent as la, NavigationMenuIndicator as ua, NavigationMenuItem as xa, NavigationMenuLink as da, NavigationMenuList as ga, NavigationMenuTrigger as ba, NavigationMenuViewport as Ca } from "./components/ui/navigation-menu.js";
|
|
67
|
+
import { Sidebar as sa, SidebarContent as Sa, SidebarFooter as Ma, SidebarGroup as ca, SidebarGroupAction as Ta, SidebarGroupContent as Da, SidebarGroupLabel as Ia, SidebarHeader as Aa, SidebarInput as Pa, SidebarInset as ha, SidebarMenu as va, SidebarMenuAction as Fa, SidebarMenuBadge as wa, SidebarMenuButton as Ga, SidebarMenuItem as La, SidebarMenuSkeleton as Ba, SidebarMenuSub as Ra, SidebarMenuSubButton as Ha, SidebarMenuSubItem as ka, SidebarProvider as Na, SidebarRail as ya, SidebarSeparator as za, SidebarTrigger as Va, useSidebar as Ea } from "./components/ui/sidebar.js";
|
|
68
68
|
import { DataTable as ja } from "./components/ui/data-table.js";
|
|
69
|
-
import {
|
|
70
|
-
import {
|
|
71
|
-
import {
|
|
72
|
-
import {
|
|
73
|
-
import {
|
|
74
|
-
import {
|
|
75
|
-
import {
|
|
76
|
-
import {
|
|
77
|
-
import {
|
|
78
|
-
import {
|
|
79
|
-
import {
|
|
80
|
-
import {
|
|
81
|
-
import {
|
|
82
|
-
import {
|
|
83
|
-
import {
|
|
84
|
-
import {
|
|
85
|
-
import {
|
|
69
|
+
import { ELogicalFilterOperator as Ja } from "./components/ui/data-table.service.js";
|
|
70
|
+
import { GanttDimensions as Qa } from "./components/ui/gantt/enums/GanttDimensions.js";
|
|
71
|
+
import { GanttConsts as Wa } from "./components/ui/gantt/constants/GanttConsts.js";
|
|
72
|
+
import { DragStepSizes as Ya } from "./components/ui/gantt/enums/DragStepSizes.js";
|
|
73
|
+
import { DataRepeatTypes as _a } from "./components/ui/gantt/enums/DataRepeatTimes.js";
|
|
74
|
+
import { AppSidebar as en } from "./components/ui/app-sidebar.js";
|
|
75
|
+
import { Confirmer as on, confirm as tn } from "./components/ui/confirmer.js";
|
|
76
|
+
import { AppSelect as nn } from "./components/ui/app-select.js";
|
|
77
|
+
import { AppMultipleSelectDropdown as mn } from "./components/ui/app-multiple-select-dropdown.js";
|
|
78
|
+
import { DataCrossTable as un } from "./components/ui/tables/data-cross-table/data-cross-table.js";
|
|
79
|
+
import { DataCrossTableButtonsGroup as dn } from "./components/ui/tables/data-cross-table/data-cross-table-buttons.js";
|
|
80
|
+
import { DataCrossTableProvider as bn } from "./components/ui/tables/data-cross-table/data-cross-table-context.js";
|
|
81
|
+
import { useAudioRecording as fn } from "./hooks/use-audio-recording.js";
|
|
82
|
+
import { useAutoScroll as Sn } from "./hooks/use-auto-scroll.js";
|
|
83
|
+
import { useAutosizeTextArea as cn } from "./hooks/use-autosize-textarea.js";
|
|
84
|
+
import { useCopyToClipboard as Dn } from "./hooks/use-copy-to-clipboard.js";
|
|
85
|
+
import { useDebounce as An } from "./hooks/use-debounce.js";
|
|
86
|
+
import { useIsMobile as hn } from "./hooks/use-mobile.js";
|
|
86
87
|
export {
|
|
87
88
|
ne as Accordion,
|
|
88
89
|
ie as AccordionContent,
|
|
@@ -90,7 +91,7 @@ export {
|
|
|
90
91
|
me as AccordionTrigger,
|
|
91
92
|
ue as Alert,
|
|
92
93
|
xe as AlertDescription,
|
|
93
|
-
|
|
94
|
+
be as AlertDialog,
|
|
94
95
|
Ce as AlertDialogAction,
|
|
95
96
|
fe as AlertDialogCancel,
|
|
96
97
|
se as AlertDialogContent,
|
|
@@ -100,9 +101,9 @@ export {
|
|
|
100
101
|
Te as AlertDialogTitle,
|
|
101
102
|
De as AlertDialogTrigger,
|
|
102
103
|
de as AlertTitle,
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
104
|
+
mn as AppMultipleSelectDropdown,
|
|
105
|
+
nn as AppSelect,
|
|
106
|
+
en as AppSidebar,
|
|
106
107
|
a as AspectRatio,
|
|
107
108
|
Ae as AsyncSelect,
|
|
108
109
|
Gt as AudioVisualizer,
|
|
@@ -114,13 +115,13 @@ export {
|
|
|
114
115
|
ut as BreadcrumbEllipsis,
|
|
115
116
|
xt as BreadcrumbItem,
|
|
116
117
|
dt as BreadcrumbLink,
|
|
117
|
-
|
|
118
|
-
|
|
118
|
+
gt as BreadcrumbList,
|
|
119
|
+
bt as BreadcrumbPage,
|
|
119
120
|
Ct as BreadcrumbSeparator,
|
|
120
|
-
|
|
121
|
+
g as Button,
|
|
121
122
|
he as Calendar,
|
|
122
|
-
|
|
123
|
-
|
|
123
|
+
Fe as Card,
|
|
124
|
+
we as CardContent,
|
|
124
125
|
Ge as CardDescription,
|
|
125
126
|
Le as CardFooter,
|
|
126
127
|
Be as CardHeader,
|
|
@@ -155,7 +156,7 @@ export {
|
|
|
155
156
|
qe as CommandList,
|
|
156
157
|
Je as CommandSeparator,
|
|
157
158
|
Ke as CommandShortcut,
|
|
158
|
-
|
|
159
|
+
on as Confirmer,
|
|
159
160
|
Ue as ContextMenu,
|
|
160
161
|
We as ContextMenuCheckboxItem,
|
|
161
162
|
Xe as ContextMenuContent,
|
|
@@ -172,20 +173,20 @@ export {
|
|
|
172
173
|
ir as ContextMenuSubTrigger,
|
|
173
174
|
pr as ContextMenuTrigger,
|
|
174
175
|
D as CopyButton,
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
176
|
+
un as DataCrossTable,
|
|
177
|
+
dn as DataCrossTableButtonsGroup,
|
|
178
|
+
bn as DataCrossTableProvider,
|
|
179
|
+
_a as DataRepeatTypes,
|
|
179
180
|
ja as DataTable,
|
|
180
181
|
lr as DatePicker,
|
|
181
|
-
|
|
182
|
-
|
|
182
|
+
gr as Dialog,
|
|
183
|
+
br as DialogContent,
|
|
183
184
|
Cr as DialogDescription,
|
|
184
185
|
fr as DialogFooter,
|
|
185
186
|
sr as DialogHeader,
|
|
186
187
|
Sr as DialogTitle,
|
|
187
188
|
Mr as DialogTrigger,
|
|
188
|
-
|
|
189
|
+
Ya as DragStepSizes,
|
|
189
190
|
Tr as Drawer,
|
|
190
191
|
Dr as DrawerContent,
|
|
191
192
|
Ir as DrawerDescription,
|
|
@@ -198,9 +199,10 @@ export {
|
|
|
198
199
|
Pt as DropdownMenuItem,
|
|
199
200
|
ht as DropdownMenuLabel,
|
|
200
201
|
vt as DropdownMenuSeparator,
|
|
201
|
-
|
|
202
|
+
Ft as DropdownMenuTrigger,
|
|
203
|
+
Ja as ELogicalFilterOperator,
|
|
202
204
|
_t as FilePreview,
|
|
203
|
-
|
|
205
|
+
wr as Form,
|
|
204
206
|
Gr as FormControl,
|
|
205
207
|
Lr as FormDescription,
|
|
206
208
|
Br as FormField,
|
|
@@ -208,15 +210,15 @@ export {
|
|
|
208
210
|
Hr as FormLabel,
|
|
209
211
|
kr as FormMessage,
|
|
210
212
|
o as Gantt,
|
|
211
|
-
|
|
212
|
-
|
|
213
|
+
Wa as GanttConsts,
|
|
214
|
+
Qa as GanttDimensions,
|
|
213
215
|
zr as HoverCard,
|
|
214
216
|
Vr as HoverCardContent,
|
|
215
217
|
Er as HoverCardTrigger,
|
|
216
218
|
A as Icon,
|
|
217
219
|
h as Input,
|
|
218
|
-
|
|
219
|
-
|
|
220
|
+
F as InputOTP,
|
|
221
|
+
w as InputOTPGroup,
|
|
220
222
|
G as InputOTPSlot,
|
|
221
223
|
xr as InputSelector,
|
|
222
224
|
ea as InterruptPrompt,
|
|
@@ -246,16 +248,16 @@ export {
|
|
|
246
248
|
ua as NavigationMenuIndicator,
|
|
247
249
|
xa as NavigationMenuItem,
|
|
248
250
|
da as NavigationMenuLink,
|
|
249
|
-
|
|
250
|
-
|
|
251
|
+
ga as NavigationMenuList,
|
|
252
|
+
ba as NavigationMenuTrigger,
|
|
251
253
|
Ca as NavigationMenuViewport,
|
|
252
254
|
po as Pagination,
|
|
253
255
|
mo as PaginationContent,
|
|
254
256
|
lo as PaginationEllipsis,
|
|
255
257
|
uo as PaginationItem,
|
|
256
258
|
xo as PaginationLink,
|
|
257
|
-
|
|
258
|
-
|
|
259
|
+
go as PaginationNext,
|
|
260
|
+
bo as PaginationPrevious,
|
|
259
261
|
fo as Popover,
|
|
260
262
|
so as PopoverContent,
|
|
261
263
|
So as PopoverTrigger,
|
|
@@ -268,7 +270,7 @@ export {
|
|
|
268
270
|
Ao as ResizablePanelGroup,
|
|
269
271
|
ho as ScrollArea,
|
|
270
272
|
vo as ScrollBar,
|
|
271
|
-
|
|
273
|
+
wo as Select,
|
|
272
274
|
Go as SelectContent,
|
|
273
275
|
Lo as SelectGroup,
|
|
274
276
|
Bo as SelectItem,
|
|
@@ -295,8 +297,8 @@ export {
|
|
|
295
297
|
Pa as SidebarInput,
|
|
296
298
|
ha as SidebarInset,
|
|
297
299
|
va as SidebarMenu,
|
|
298
|
-
|
|
299
|
-
|
|
300
|
+
Fa as SidebarMenuAction,
|
|
301
|
+
wa as SidebarMenuBadge,
|
|
300
302
|
Ga as SidebarMenuButton,
|
|
301
303
|
La as SidebarMenuItem,
|
|
302
304
|
Ba as SidebarMenuSkeleton,
|
|
@@ -335,15 +337,15 @@ export {
|
|
|
335
337
|
re as TypingIndicator,
|
|
336
338
|
ke as Typo,
|
|
337
339
|
x as badgeVariants,
|
|
338
|
-
|
|
339
|
-
|
|
340
|
+
b as buttonVariants,
|
|
341
|
+
tn as confirm,
|
|
340
342
|
W as toggleVariants,
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
343
|
+
fn as useAudioRecording,
|
|
344
|
+
Sn as useAutoScroll,
|
|
345
|
+
cn as useAutosizeTextArea,
|
|
346
|
+
Dn as useCopyToClipboard,
|
|
347
|
+
An as useDebounce,
|
|
346
348
|
Nr as useFormField,
|
|
347
|
-
|
|
349
|
+
hn as useIsMobile,
|
|
348
350
|
Ea as useSidebar
|
|
349
351
|
};
|