@oneplatformdev/ui 0.0.1-beta.3 → 0.0.1-beta.5
Sign up to get free protection for your applications and to get access to all the features.
- package/AlertDialog/AlertDialog.d.ts +14 -0
- package/FormInput/FormInput.mjs +6 -7
- package/Input/index.mjs +5 -8
- package/Search/Search.mjs +10 -11
- package/Sidebar/Sidebar.mjs +13 -14
- package/index.mjs +351 -354
- package/package.json +1 -1
@@ -6,6 +6,10 @@ import { FC, PropsWithChildren } from 'react';
|
|
6
6
|
* @public
|
7
7
|
* @see [Documentation](#)
|
8
8
|
* @example
|
9
|
+
* > Import:
|
10
|
+
* ```tsx
|
11
|
+
* import { AlertDialog } from '@oneplatformdev/ui/AlertDialog';
|
12
|
+
* ```
|
9
13
|
* > Simple example:
|
10
14
|
* ```tsx
|
11
15
|
* <AlertDialog
|
@@ -25,6 +29,16 @@ import { FC, PropsWithChildren } from 'react';
|
|
25
29
|
* onConfirm={(event) => console.log(event, 'Confirm')}
|
26
30
|
* />
|
27
31
|
* ```
|
32
|
+
* > Trigger example: Button with icon children
|
33
|
+
* ```tsx
|
34
|
+
* <AlertDialog
|
35
|
+
* trigger={<Button variant="outline" size="icon"><PencilLine /></Button>}
|
36
|
+
* title="Dialog title with icon trigger"
|
37
|
+
* description="Description text..."
|
38
|
+
* onCancel={(event) => console.log(event, 'Cancel')}
|
39
|
+
* onConfirm={(event) => console.log(event, 'Confirm')}
|
40
|
+
* />
|
41
|
+
* ```
|
28
42
|
*
|
29
43
|
* > Full content example:
|
30
44
|
* ```tsx
|
package/FormInput/FormInput.mjs
CHANGED
@@ -1,18 +1,17 @@
|
|
1
1
|
import { jsx as r } from "react/jsx-runtime";
|
2
2
|
import { FormControl as l } from "../Form/Form.mjs";
|
3
|
-
import { FormRenderControl as
|
4
|
-
import "../Input/
|
5
|
-
|
6
|
-
const d = (m) => {
|
3
|
+
import { FormRenderControl as u } from "../Form/FormRenderControl.mjs";
|
4
|
+
import { Input as a } from "../Input/Input.mjs";
|
5
|
+
const F = (m) => {
|
7
6
|
const { form: t, label: e, name: n, ...p } = m;
|
8
7
|
return /* @__PURE__ */ r(
|
9
|
-
|
8
|
+
u,
|
10
9
|
{
|
11
10
|
form: t,
|
12
11
|
name: n,
|
13
12
|
label: e,
|
14
13
|
render: ({ field: o }) => /* @__PURE__ */ r(l, { children: /* @__PURE__ */ r(
|
15
|
-
|
14
|
+
a,
|
16
15
|
{
|
17
16
|
...o,
|
18
17
|
value: o.value || "",
|
@@ -23,5 +22,5 @@ const d = (m) => {
|
|
23
22
|
);
|
24
23
|
};
|
25
24
|
export {
|
26
|
-
|
25
|
+
F as FormInput
|
27
26
|
};
|
package/Input/index.mjs
CHANGED
@@ -1,10 +1,7 @@
|
|
1
|
-
import { BaseInput as
|
2
|
-
import { inputVariants as s } from "./inputVariants.mjs";
|
3
|
-
e;
|
1
|
+
import { BaseInput as u, Input as a, PasswordInput as n, Input as s } from "./Input.mjs";
|
4
2
|
export {
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
s as inputVariants
|
3
|
+
u as BaseInput,
|
4
|
+
a as Input,
|
5
|
+
n as PasswordInput,
|
6
|
+
s as default
|
10
7
|
};
|
package/Search/Search.mjs
CHANGED
@@ -1,10 +1,9 @@
|
|
1
1
|
import { jsx as o } from "react/jsx-runtime";
|
2
2
|
import { useState as S } from "react";
|
3
|
-
import "../Input/
|
4
|
-
import { useDebounceCallback as
|
5
|
-
import { cn as
|
6
|
-
|
7
|
-
const k = (t) => {
|
3
|
+
import { Input as f } from "../Input/Input.mjs";
|
4
|
+
import { useDebounceCallback as v } from "@oneplatformdev/hooks";
|
5
|
+
import { cn as d } from "@oneplatformdev/utils";
|
6
|
+
const j = (t) => {
|
8
7
|
const {
|
9
8
|
search: a,
|
10
9
|
onChange: e,
|
@@ -12,20 +11,20 @@ const k = (t) => {
|
|
12
11
|
placeholder: s = "Search",
|
13
12
|
className: n,
|
14
13
|
...m
|
15
|
-
} = t, [i, l] = S(a),
|
14
|
+
} = t, [i, l] = S(a), h = v(c, 1e3), p = (r) => {
|
16
15
|
const u = r.target.value;
|
17
|
-
l(u), e == null || e(r),
|
16
|
+
l(u), e == null || e(r), h(r.target.value);
|
18
17
|
};
|
19
|
-
return /* @__PURE__ */ o("div", { className:
|
20
|
-
|
18
|
+
return /* @__PURE__ */ o("div", { className: d("space-y-4", n), children: /* @__PURE__ */ o(
|
19
|
+
f,
|
21
20
|
{
|
22
21
|
placeholder: s,
|
23
22
|
value: i,
|
24
|
-
onChange:
|
23
|
+
onChange: p,
|
25
24
|
...m
|
26
25
|
}
|
27
26
|
) });
|
28
27
|
};
|
29
28
|
export {
|
30
|
-
|
29
|
+
j as Search
|
31
30
|
};
|
package/Sidebar/Sidebar.mjs
CHANGED
@@ -6,13 +6,12 @@ import { PanelLeft as k } from "lucide-react";
|
|
6
6
|
import { cn as d } from "@oneplatformdev/utils";
|
7
7
|
import { Button as E } from "../Button/Button.mjs";
|
8
8
|
import "../Button/buttonVariants.mjs";
|
9
|
-
import "../Input/
|
10
|
-
import { Separator as
|
11
|
-
import { Sheet as
|
9
|
+
import { Input as z } from "../Input/Input.mjs";
|
10
|
+
import { Separator as B } from "../Separator/Separator.mjs";
|
11
|
+
import { Sheet as T, SheetContent as A } from "../Sheet/Sheet.mjs";
|
12
12
|
import { Skeleton as M } from "../Skeleton/Skeleton.mjs";
|
13
|
-
import { TooltipProvider as
|
14
|
-
import { Tooltip as
|
15
|
-
import { Input as G } from "../Input/Input.mjs";
|
13
|
+
import { TooltipProvider as D, TooltipTrigger as O, TooltipContent as L } from "../Tooltip/TooltipRoot.mjs";
|
14
|
+
import { Tooltip as G } from "../Tooltip/Tooltip.mjs";
|
16
15
|
const K = 768;
|
17
16
|
function H(a = {}) {
|
18
17
|
const {
|
@@ -67,7 +66,7 @@ const V = i.forwardRef(
|
|
67
66
|
}),
|
68
67
|
[y, g, x, c, p, u, w]
|
69
68
|
);
|
70
|
-
return /* @__PURE__ */ r(R.Provider, { value: I, children: /* @__PURE__ */ r(
|
69
|
+
return /* @__PURE__ */ r(R.Provider, { value: I, children: /* @__PURE__ */ r(D, { delayDuration: 0, children: /* @__PURE__ */ r(
|
71
70
|
"div",
|
72
71
|
{
|
73
72
|
style: {
|
@@ -108,8 +107,8 @@ const U = i.forwardRef(
|
|
108
107
|
...s,
|
109
108
|
children: n
|
110
109
|
}
|
111
|
-
) : m ? /* @__PURE__ */ r(
|
112
|
-
|
110
|
+
) : m ? /* @__PURE__ */ r(T, { open: p, onOpenChange: u, ...s, children: /* @__PURE__ */ r(
|
111
|
+
A,
|
113
112
|
{
|
114
113
|
"data-sidebar": "sidebar",
|
115
114
|
"data-mobile": "true",
|
@@ -229,7 +228,7 @@ const J = i.forwardRef(({ className: a, ...e }, t) => /* @__PURE__ */ r(
|
|
229
228
|
));
|
230
229
|
J.displayName = "SidebarInset";
|
231
230
|
const Q = i.forwardRef(({ className: a, ...e }, t) => /* @__PURE__ */ r(
|
232
|
-
|
231
|
+
z,
|
233
232
|
{
|
234
233
|
ref: t,
|
235
234
|
"data-sidebar": "input",
|
@@ -262,7 +261,7 @@ const ee = i.forwardRef(({ className: a, ...e }, t) => /* @__PURE__ */ r(
|
|
262
261
|
));
|
263
262
|
ee.displayName = "SidebarFooter";
|
264
263
|
const ae = i.forwardRef(({ className: a, ...e }, t) => /* @__PURE__ */ r(
|
265
|
-
|
264
|
+
B,
|
266
265
|
{
|
267
266
|
ref: t,
|
268
267
|
"data-sidebar": "separator",
|
@@ -396,10 +395,10 @@ const le = C(
|
|
396
395
|
);
|
397
396
|
return n ? (typeof n == "string" && (n = {
|
398
397
|
children: n
|
399
|
-
}), /* @__PURE__ */ S(
|
400
|
-
/* @__PURE__ */ r(
|
398
|
+
}), /* @__PURE__ */ S(G, { children: [
|
399
|
+
/* @__PURE__ */ r(O, { asChild: !0, children: v }),
|
401
400
|
/* @__PURE__ */ r(
|
402
|
-
|
401
|
+
L,
|
403
402
|
{
|
404
403
|
side: "right",
|
405
404
|
align: "center",
|
package/index.mjs
CHANGED
@@ -1,356 +1,353 @@
|
|
1
|
-
import { Accordion as
|
2
|
-
import { Alert as
|
3
|
-
import { AlertDialogAction as
|
4
|
-
import { AlertDialog as
|
5
|
-
import { AreaChart as
|
6
|
-
import { Aside as
|
7
|
-
import { AsideSidebar as
|
8
|
-
import { AspectRatio as
|
9
|
-
import { Avatar as
|
10
|
-
import { Badge as
|
11
|
-
import { badgeVariants as
|
12
|
-
import { Breadcrumb as
|
13
|
-
import { Button as
|
14
|
-
import { buttonVariants as
|
15
|
-
import { ButtonIcon as
|
16
|
-
import { buttonIconVariants as
|
17
|
-
import { Calendar as
|
18
|
-
import { Card as
|
19
|
-
import { Carousel as
|
20
|
-
import { ChartContainer as
|
21
|
-
import { Checkbox as
|
22
|
-
import { Collapsible as
|
23
|
-
import { Combobox as
|
24
|
-
import { Command as
|
25
|
-
import { DataTable as
|
26
|
-
import { DatePicker as
|
27
|
-
import { Dialog as
|
28
|
-
import { Drawer as
|
29
|
-
import { DropdownMenu as
|
30
|
-
import { Form as
|
31
|
-
import { FormRenderControl as
|
32
|
-
import { FormCheckbox as
|
33
|
-
import { FormCombobox as
|
34
|
-
import { FormDatePicker as
|
35
|
-
import { FormInput as
|
36
|
-
import { FormSelect as
|
37
|
-
import { FormTextarea as
|
38
|
-
import { Header as
|
39
|
-
import { HoverCard as
|
40
|
-
import "./Input/
|
41
|
-
import { InputOTP as
|
42
|
-
import { Label as
|
43
|
-
import { labelVariants as
|
44
|
-
import { LazyLoader as
|
45
|
-
import { LoadingMask as
|
46
|
-
import { LoadingProgress as
|
47
|
-
import { loadingProgressVariants as
|
48
|
-
import { Menubar as
|
49
|
-
import { NavigationMenu as
|
50
|
-
import { navigationMenuVariants as
|
51
|
-
import { Pagination as
|
52
|
-
import { Popover as
|
53
|
-
import { Progress as
|
54
|
-
import { RadioGroup as
|
55
|
-
import { ResizableHandle as
|
56
|
-
import { ScrollArea as
|
57
|
-
import { Search as
|
58
|
-
import { SelectContent as
|
59
|
-
import { Select as
|
60
|
-
import { Separator as
|
61
|
-
import { Sheet as
|
62
|
-
import { Sidebar as
|
63
|
-
import { Skeleton as
|
64
|
-
import { Slider as
|
65
|
-
import { Sonner as
|
66
|
-
import { Switch as
|
67
|
-
import { Table as
|
68
|
-
import { TabsContent as
|
69
|
-
import { Tabs as
|
70
|
-
import { Textarea as
|
71
|
-
import { ThemeProvider as
|
72
|
-
import { ThemeModeToggle as
|
73
|
-
import { Toast as
|
74
|
-
import { reducer as
|
75
|
-
import { Toaster as
|
76
|
-
import { Toggle as
|
77
|
-
import { ToggleGroup as
|
78
|
-
import { TooltipContent as
|
79
|
-
import { Tooltip as
|
80
|
-
import { BaseInput as vn, Input as Fn, PasswordInput as Ln } from "./Input/Input.mjs";
|
81
|
-
import { inputVariants as Rn } from "./Input/inputVariants.mjs";
|
1
|
+
import { Accordion as e, AccordionContent as t, AccordionItem as a, AccordionTrigger as n } from "./Accordion/Accordion.mjs";
|
2
|
+
import { Alert as p, AlertDescription as l, AlertTitle as m } from "./Alert/Alert.mjs";
|
3
|
+
import { AlertDialogAction as d, AlertDialogCancel as g, AlertDialogContent as b, AlertDialogDescription as x, AlertDialogFooter as f, AlertDialogHeader as S, AlertDialogOverlay as s, AlertDialogPortal as C, AlertDialogRoot as T, AlertDialogTitle as c, AlertDialogTrigger as D } from "./AlertDialog/AlertDialogRoot.mjs";
|
4
|
+
import { AlertDialog as P } from "./AlertDialog/AlertDialog.mjs";
|
5
|
+
import { AreaChart as A } from "./AreaChart/AreaChart.mjs";
|
6
|
+
import { Aside as h } from "./Aside/Aside.mjs";
|
7
|
+
import { AsideSidebar as F } from "./Aside/AsideSidebar.mjs";
|
8
|
+
import { AspectRatio as B } from "./AspectRatio/AspectRatio.mjs";
|
9
|
+
import { Avatar as G, AvatarFallback as k, AvatarImage as H } from "./Avatar/Avatar.mjs";
|
10
|
+
import { Badge as V } from "./Badge/Badge.mjs";
|
11
|
+
import { badgeVariants as O } from "./Badge/badgeVariants.mjs";
|
12
|
+
import { Breadcrumb as E, BreadcrumbEllipsis as U, BreadcrumbItem as j, BreadcrumbLink as q, BreadcrumbList as J, BreadcrumbPage as K, BreadcrumbSeparator as Q } from "./Breadcrumb/Breadcrumb.mjs";
|
13
|
+
import { Button as X } from "./Button/Button.mjs";
|
14
|
+
import { buttonVariants as Z } from "./Button/buttonVariants.mjs";
|
15
|
+
import { ButtonIcon as $ } from "./ButtonIcon/ButtonIcon.mjs";
|
16
|
+
import { buttonIconVariants as or } from "./ButtonIcon/buttonIconVariants.mjs";
|
17
|
+
import { Calendar as tr } from "./Calendar/Calendar.mjs";
|
18
|
+
import { Card as nr, CardContent as ir, CardDescription as pr, CardFooter as lr, CardHeader as mr, CardTitle as ur } from "./Card/Card.mjs";
|
19
|
+
import { Carousel as gr, CarouselContent as br, CarouselItem as xr, CarouselNext as fr, CarouselPrevious as Sr } from "./Carousel/Carousel.mjs";
|
20
|
+
import { ChartContainer as Cr, ChartLegend as Tr, ChartLegendContent as cr, ChartStyle as Dr, ChartTooltip as Mr, ChartTooltipContent as Pr } from "./Chart/Chart.mjs";
|
21
|
+
import { Checkbox as Ar } from "./Checkbox/Checkbox.mjs";
|
22
|
+
import { Collapsible as hr, CollapsibleContent as vr, CollapsibleTrigger as Fr } from "./Collapsible/Collapsible.mjs";
|
23
|
+
import { Combobox as Br } from "./Combobox/Combobox.mjs";
|
24
|
+
import { Command as Gr, CommandDialog as kr, CommandEmpty as Hr, CommandGroup as Nr, CommandInput as Vr, CommandItem as yr, CommandList as Or, CommandSeparator as zr, CommandShortcut as Er } from "./Command/Command.mjs";
|
25
|
+
import { DataTable as jr } from "./DataTable/DataTable.mjs";
|
26
|
+
import { DatePicker as Jr } from "./DatePicker/DatePicker.mjs";
|
27
|
+
import { Dialog as Qr, DialogClose as Wr, DialogContent as Xr, DialogDescription as Yr, DialogFooter as Zr, DialogHeader as _r, DialogOverlay as $r, DialogPortal as ro, DialogTitle as oo, DialogTrigger as eo } from "./Dialog/Dialog.mjs";
|
28
|
+
import { Drawer as ao, DrawerClose as no, DrawerContent as io, DrawerDescription as po, DrawerFooter as lo, DrawerHeader as mo, DrawerOverlay as uo, DrawerPortal as go, DrawerTitle as bo, DrawerTrigger as xo } from "./Drawer/Drawer.mjs";
|
29
|
+
import { DropdownMenu as So, DropdownMenuCheckboxItem as so, DropdownMenuContent as Co, DropdownMenuGroup as To, DropdownMenuItem as co, DropdownMenuLabel as Do, DropdownMenuPortal as Mo, DropdownMenuRadioGroup as Po, DropdownMenuRadioItem as Io, DropdownMenuSeparator as Ao, DropdownMenuShortcut as wo, DropdownMenuSub as ho, DropdownMenuSubContent as vo, DropdownMenuSubTrigger as Fo, DropdownMenuTrigger as Lo } from "./DropdownMenu/DropdownMenu.mjs";
|
30
|
+
import { Form as Ro, FormControl as Go, FormDescription as ko, FormField as Ho, FormItem as No, FormLabel as Vo, FormMessage as yo, useFormField as Oo } from "./Form/Form.mjs";
|
31
|
+
import { FormRenderControl as Eo } from "./Form/FormRenderControl.mjs";
|
32
|
+
import { FormCheckbox as jo } from "./FormCheckbox/FormCheckbox.mjs";
|
33
|
+
import { FormCombobox as Jo } from "./FormCombobox/FormCombobox.mjs";
|
34
|
+
import { FormDatePicker as Qo } from "./FormDatePicker/FormDatePicker.mjs";
|
35
|
+
import { FormInput as Xo } from "./FormInput/FormInput.mjs";
|
36
|
+
import { FormSelect as Zo } from "./FormSelect/FormSelect.mjs";
|
37
|
+
import { FormTextarea as $o } from "./FormTextarea/FormTextarea.mjs";
|
38
|
+
import { Header as oe } from "./Header/Header.mjs";
|
39
|
+
import { HoverCard as te, HoverCardContent as ae, HoverCardTrigger as ne } from "./HoverCard/HoverCard.mjs";
|
40
|
+
import { BaseInput as pe, Input as le, PasswordInput as me } from "./Input/Input.mjs";
|
41
|
+
import { InputOTP as de, InputOTPGroup as ge, InputOTPSeparator as be, InputOTPSlot as xe } from "./InputOTP/InputOTP.mjs";
|
42
|
+
import { Label as Se } from "./Label/Label.mjs";
|
43
|
+
import { labelVariants as Ce } from "./Label/labelVariants.mjs";
|
44
|
+
import { LazyLoader as ce } from "./LazyLoader/LazyLoader.mjs";
|
45
|
+
import { LoadingMask as Me } from "./LoadingMask/LoadingMask.mjs";
|
46
|
+
import { LoadingProgress as Ie } from "./LoadingProgress/LoadingProgress.mjs";
|
47
|
+
import { loadingProgressVariants as we } from "./LoadingProgress/loadingProgressVariants.mjs";
|
48
|
+
import { Menubar as ve, MenubarCheckboxItem as Fe, MenubarContent as Le, MenubarGroup as Be, MenubarItem as Re, MenubarLabel as Ge, MenubarMenu as ke, MenubarPortal as He, MenubarRadioGroup as Ne, MenubarRadioItem as Ve, MenubarSeparator as ye, MenubarShortcut as Oe, MenubarSub as ze, MenubarSubContent as Ee, MenubarSubTrigger as Ue, MenubarTrigger as je } from "./Menubar/Menubar.mjs";
|
49
|
+
import { NavigationMenu as Je, NavigationMenuContent as Ke, NavigationMenuIndicator as Qe, NavigationMenuItem as We, NavigationMenuLink as Xe, NavigationMenuList as Ye, NavigationMenuTrigger as Ze, NavigationMenuViewport as _e } from "./NavigationMenu/NavigationMenu.mjs";
|
50
|
+
import { navigationMenuVariants as rt } from "./NavigationMenu/navigationMenuVariants.mjs";
|
51
|
+
import { Pagination as et, PaginationContent as tt, PaginationEllipsis as at, PaginationItem as nt, PaginationLink as it, PaginationNext as pt, PaginationPrevious as lt } from "./Pagination/Pagination.mjs";
|
52
|
+
import { Popover as ut, PopoverAnchor as dt, PopoverContent as gt, PopoverTrigger as bt } from "./Popover/Popover.mjs";
|
53
|
+
import { Progress as ft } from "./Progress/Progress.mjs";
|
54
|
+
import { RadioGroup as st, RadioGroupItem as Ct } from "./RadioGroup/RadioGroup.mjs";
|
55
|
+
import { ResizableHandle as ct, ResizablePanel as Dt, ResizablePanelGroup as Mt } from "./Resizable/Resizable.mjs";
|
56
|
+
import { ScrollArea as It, ScrollBar as At } from "./ScrollArea/ScrollArea.mjs";
|
57
|
+
import { Search as ht } from "./Search/Search.mjs";
|
58
|
+
import { SelectContent as Ft, SelectGroup as Lt, SelectItem as Bt, SelectLabel as Rt, SelectRoot as Gt, SelectScrollDownButton as kt, SelectScrollUpButton as Ht, SelectSeparator as Nt, SelectTrigger as Vt, SelectValue as yt } from "./Select/SelectRoot.mjs";
|
59
|
+
import { Select as zt } from "./Select/Select.mjs";
|
60
|
+
import { Separator as Ut } from "./Separator/Separator.mjs";
|
61
|
+
import { Sheet as qt, SheetClose as Jt, SheetContent as Kt, SheetDescription as Qt, SheetFooter as Wt, SheetHeader as Xt, SheetOverlay as Yt, SheetPortal as Zt, SheetTitle as _t, SheetTrigger as $t } from "./Sheet/Sheet.mjs";
|
62
|
+
import { Sidebar as oa, SidebarContent as ea, SidebarFooter as ta, SidebarGroup as aa, SidebarGroupAction as na, SidebarGroupContent as ia, SidebarGroupLabel as pa, SidebarHeader as la, SidebarInput as ma, SidebarInset as ua, SidebarMenu as da, SidebarMenuAction as ga, SidebarMenuBadge as ba, SidebarMenuButton as xa, SidebarMenuItem as fa, SidebarMenuSkeleton as Sa, SidebarMenuSub as sa, SidebarMenuSubButton as Ca, SidebarMenuSubItem as Ta, SidebarProvider as ca, SidebarRail as Da, SidebarSeparator as Ma, SidebarTrigger as Pa, useSidebar as Ia } from "./Sidebar/Sidebar.mjs";
|
63
|
+
import { Skeleton as wa } from "./Skeleton/Skeleton.mjs";
|
64
|
+
import { Slider as va } from "./Slider/Slider.mjs";
|
65
|
+
import { Sonner as La } from "./Sonner/Sonner.mjs";
|
66
|
+
import { Switch as Ra } from "./Switch/Switch.mjs";
|
67
|
+
import { Table as ka, TableBody as Ha, TableCaption as Na, TableCell as Va, TableFooter as ya, TableHead as Oa, TableHeader as za, TableRow as Ea } from "./Table/Table.mjs";
|
68
|
+
import { TabsContent as ja, TabsList as qa, TabsRoot as Ja, TabsTrigger as Ka } from "./Tabs/TabsRoot.mjs";
|
69
|
+
import { Tabs as Wa } from "./Tabs/Tabs.mjs";
|
70
|
+
import { Textarea as Ya } from "./Textarea/Textarea.mjs";
|
71
|
+
import { ThemeProvider as _a } from "./Theme/ThemeProvider.mjs";
|
72
|
+
import { ThemeModeToggle as rn } from "./Theme/ThemeModeToggle.mjs";
|
73
|
+
import { Toast as en, ToastAction as tn, ToastClose as an, ToastDescription as nn, ToastProvider as pn, ToastTitle as ln, ToastViewport as mn } from "./Toast/Toast.mjs";
|
74
|
+
import { reducer as dn, toast as gn, useNotify as bn, useToast as xn } from "./Toast/useToast.mjs";
|
75
|
+
import { Toaster as Sn } from "./Toaster/Toaster.mjs";
|
76
|
+
import { Toggle as Cn, toggleVariants as Tn } from "./Toggle/Toggle.mjs";
|
77
|
+
import { ToggleGroup as Dn, ToggleGroupItem as Mn } from "./ToggleGroup/ToggleGroup.mjs";
|
78
|
+
import { TooltipContent as In, TooltipProvider as An, TooltipRoot as wn, TooltipTrigger as hn } from "./Tooltip/TooltipRoot.mjs";
|
79
|
+
import { Tooltip as Fn } from "./Tooltip/Tooltip.mjs";
|
82
80
|
export {
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
dn as useToast
|
81
|
+
e as Accordion,
|
82
|
+
t as AccordionContent,
|
83
|
+
a as AccordionItem,
|
84
|
+
n as AccordionTrigger,
|
85
|
+
p as Alert,
|
86
|
+
l as AlertDescription,
|
87
|
+
P as AlertDialog,
|
88
|
+
d as AlertDialogAction,
|
89
|
+
g as AlertDialogCancel,
|
90
|
+
b as AlertDialogContent,
|
91
|
+
x as AlertDialogDescription,
|
92
|
+
f as AlertDialogFooter,
|
93
|
+
S as AlertDialogHeader,
|
94
|
+
s as AlertDialogOverlay,
|
95
|
+
C as AlertDialogPortal,
|
96
|
+
T as AlertDialogRoot,
|
97
|
+
c as AlertDialogTitle,
|
98
|
+
D as AlertDialogTrigger,
|
99
|
+
m as AlertTitle,
|
100
|
+
A as AreaChart,
|
101
|
+
h as Aside,
|
102
|
+
F as AsideSidebar,
|
103
|
+
B as AspectRatio,
|
104
|
+
G as Avatar,
|
105
|
+
k as AvatarFallback,
|
106
|
+
H as AvatarImage,
|
107
|
+
V as Badge,
|
108
|
+
pe as BaseInput,
|
109
|
+
E as Breadcrumb,
|
110
|
+
U as BreadcrumbEllipsis,
|
111
|
+
j as BreadcrumbItem,
|
112
|
+
q as BreadcrumbLink,
|
113
|
+
J as BreadcrumbList,
|
114
|
+
K as BreadcrumbPage,
|
115
|
+
Q as BreadcrumbSeparator,
|
116
|
+
X as Button,
|
117
|
+
$ as ButtonIcon,
|
118
|
+
tr as Calendar,
|
119
|
+
nr as Card,
|
120
|
+
ir as CardContent,
|
121
|
+
pr as CardDescription,
|
122
|
+
lr as CardFooter,
|
123
|
+
mr as CardHeader,
|
124
|
+
ur as CardTitle,
|
125
|
+
gr as Carousel,
|
126
|
+
br as CarouselContent,
|
127
|
+
xr as CarouselItem,
|
128
|
+
fr as CarouselNext,
|
129
|
+
Sr as CarouselPrevious,
|
130
|
+
Cr as ChartContainer,
|
131
|
+
Tr as ChartLegend,
|
132
|
+
cr as ChartLegendContent,
|
133
|
+
Dr as ChartStyle,
|
134
|
+
Mr as ChartTooltip,
|
135
|
+
Pr as ChartTooltipContent,
|
136
|
+
Ar as Checkbox,
|
137
|
+
hr as Collapsible,
|
138
|
+
vr as CollapsibleContent,
|
139
|
+
Fr as CollapsibleTrigger,
|
140
|
+
Br as Combobox,
|
141
|
+
Gr as Command,
|
142
|
+
kr as CommandDialog,
|
143
|
+
Hr as CommandEmpty,
|
144
|
+
Nr as CommandGroup,
|
145
|
+
Vr as CommandInput,
|
146
|
+
yr as CommandItem,
|
147
|
+
Or as CommandList,
|
148
|
+
zr as CommandSeparator,
|
149
|
+
Er as CommandShortcut,
|
150
|
+
jr as DataTable,
|
151
|
+
Jr as DatePicker,
|
152
|
+
Qr as Dialog,
|
153
|
+
Wr as DialogClose,
|
154
|
+
Xr as DialogContent,
|
155
|
+
Yr as DialogDescription,
|
156
|
+
Zr as DialogFooter,
|
157
|
+
_r as DialogHeader,
|
158
|
+
$r as DialogOverlay,
|
159
|
+
ro as DialogPortal,
|
160
|
+
oo as DialogTitle,
|
161
|
+
eo as DialogTrigger,
|
162
|
+
ao as Drawer,
|
163
|
+
no as DrawerClose,
|
164
|
+
io as DrawerContent,
|
165
|
+
po as DrawerDescription,
|
166
|
+
lo as DrawerFooter,
|
167
|
+
mo as DrawerHeader,
|
168
|
+
uo as DrawerOverlay,
|
169
|
+
go as DrawerPortal,
|
170
|
+
bo as DrawerTitle,
|
171
|
+
xo as DrawerTrigger,
|
172
|
+
So as DropdownMenu,
|
173
|
+
so as DropdownMenuCheckboxItem,
|
174
|
+
Co as DropdownMenuContent,
|
175
|
+
To as DropdownMenuGroup,
|
176
|
+
co as DropdownMenuItem,
|
177
|
+
Do as DropdownMenuLabel,
|
178
|
+
Mo as DropdownMenuPortal,
|
179
|
+
Po as DropdownMenuRadioGroup,
|
180
|
+
Io as DropdownMenuRadioItem,
|
181
|
+
Ao as DropdownMenuSeparator,
|
182
|
+
wo as DropdownMenuShortcut,
|
183
|
+
ho as DropdownMenuSub,
|
184
|
+
vo as DropdownMenuSubContent,
|
185
|
+
Fo as DropdownMenuSubTrigger,
|
186
|
+
Lo as DropdownMenuTrigger,
|
187
|
+
Ro as Form,
|
188
|
+
jo as FormCheckbox,
|
189
|
+
Jo as FormCombobox,
|
190
|
+
Go as FormControl,
|
191
|
+
Qo as FormDatePicker,
|
192
|
+
ko as FormDescription,
|
193
|
+
Ho as FormField,
|
194
|
+
Xo as FormInput,
|
195
|
+
No as FormItem,
|
196
|
+
Vo as FormLabel,
|
197
|
+
yo as FormMessage,
|
198
|
+
Eo as FormRenderControl,
|
199
|
+
Zo as FormSelect,
|
200
|
+
$o as FormTextarea,
|
201
|
+
oe as Header,
|
202
|
+
te as HoverCard,
|
203
|
+
ae as HoverCardContent,
|
204
|
+
ne as HoverCardTrigger,
|
205
|
+
le as Input,
|
206
|
+
de as InputOTP,
|
207
|
+
ge as InputOTPGroup,
|
208
|
+
be as InputOTPSeparator,
|
209
|
+
xe as InputOTPSlot,
|
210
|
+
Se as Label,
|
211
|
+
ce as LazyLoader,
|
212
|
+
Me as LoadingMask,
|
213
|
+
Ie as LoadingProgress,
|
214
|
+
ve as Menubar,
|
215
|
+
Fe as MenubarCheckboxItem,
|
216
|
+
Le as MenubarContent,
|
217
|
+
Be as MenubarGroup,
|
218
|
+
Re as MenubarItem,
|
219
|
+
Ge as MenubarLabel,
|
220
|
+
ke as MenubarMenu,
|
221
|
+
He as MenubarPortal,
|
222
|
+
Ne as MenubarRadioGroup,
|
223
|
+
Ve as MenubarRadioItem,
|
224
|
+
ye as MenubarSeparator,
|
225
|
+
Oe as MenubarShortcut,
|
226
|
+
ze as MenubarSub,
|
227
|
+
Ee as MenubarSubContent,
|
228
|
+
Ue as MenubarSubTrigger,
|
229
|
+
je as MenubarTrigger,
|
230
|
+
Je as NavigationMenu,
|
231
|
+
Ke as NavigationMenuContent,
|
232
|
+
Qe as NavigationMenuIndicator,
|
233
|
+
We as NavigationMenuItem,
|
234
|
+
Xe as NavigationMenuLink,
|
235
|
+
Ye as NavigationMenuList,
|
236
|
+
Ze as NavigationMenuTrigger,
|
237
|
+
_e as NavigationMenuViewport,
|
238
|
+
et as Pagination,
|
239
|
+
tt as PaginationContent,
|
240
|
+
at as PaginationEllipsis,
|
241
|
+
nt as PaginationItem,
|
242
|
+
it as PaginationLink,
|
243
|
+
pt as PaginationNext,
|
244
|
+
lt as PaginationPrevious,
|
245
|
+
me as PasswordInput,
|
246
|
+
ut as Popover,
|
247
|
+
dt as PopoverAnchor,
|
248
|
+
gt as PopoverContent,
|
249
|
+
bt as PopoverTrigger,
|
250
|
+
ft as Progress,
|
251
|
+
st as RadioGroup,
|
252
|
+
Ct as RadioGroupItem,
|
253
|
+
ct as ResizableHandle,
|
254
|
+
Dt as ResizablePanel,
|
255
|
+
Mt as ResizablePanelGroup,
|
256
|
+
It as ScrollArea,
|
257
|
+
At as ScrollBar,
|
258
|
+
ht as Search,
|
259
|
+
zt as Select,
|
260
|
+
Ft as SelectContent,
|
261
|
+
Lt as SelectGroup,
|
262
|
+
Bt as SelectItem,
|
263
|
+
Rt as SelectLabel,
|
264
|
+
Gt as SelectRoot,
|
265
|
+
kt as SelectScrollDownButton,
|
266
|
+
Ht as SelectScrollUpButton,
|
267
|
+
Nt as SelectSeparator,
|
268
|
+
Vt as SelectTrigger,
|
269
|
+
yt as SelectValue,
|
270
|
+
Ut as Separator,
|
271
|
+
qt as Sheet,
|
272
|
+
Jt as SheetClose,
|
273
|
+
Kt as SheetContent,
|
274
|
+
Qt as SheetDescription,
|
275
|
+
Wt as SheetFooter,
|
276
|
+
Xt as SheetHeader,
|
277
|
+
Yt as SheetOverlay,
|
278
|
+
Zt as SheetPortal,
|
279
|
+
_t as SheetTitle,
|
280
|
+
$t as SheetTrigger,
|
281
|
+
oa as Sidebar,
|
282
|
+
ea as SidebarContent,
|
283
|
+
ta as SidebarFooter,
|
284
|
+
aa as SidebarGroup,
|
285
|
+
na as SidebarGroupAction,
|
286
|
+
ia as SidebarGroupContent,
|
287
|
+
pa as SidebarGroupLabel,
|
288
|
+
la as SidebarHeader,
|
289
|
+
ma as SidebarInput,
|
290
|
+
ua as SidebarInset,
|
291
|
+
da as SidebarMenu,
|
292
|
+
ga as SidebarMenuAction,
|
293
|
+
ba as SidebarMenuBadge,
|
294
|
+
xa as SidebarMenuButton,
|
295
|
+
fa as SidebarMenuItem,
|
296
|
+
Sa as SidebarMenuSkeleton,
|
297
|
+
sa as SidebarMenuSub,
|
298
|
+
Ca as SidebarMenuSubButton,
|
299
|
+
Ta as SidebarMenuSubItem,
|
300
|
+
ca as SidebarProvider,
|
301
|
+
Da as SidebarRail,
|
302
|
+
Ma as SidebarSeparator,
|
303
|
+
Pa as SidebarTrigger,
|
304
|
+
wa as Skeleton,
|
305
|
+
va as Slider,
|
306
|
+
La as Sonner,
|
307
|
+
Ra as Switch,
|
308
|
+
ka as Table,
|
309
|
+
Ha as TableBody,
|
310
|
+
Na as TableCaption,
|
311
|
+
Va as TableCell,
|
312
|
+
ya as TableFooter,
|
313
|
+
Oa as TableHead,
|
314
|
+
za as TableHeader,
|
315
|
+
Ea as TableRow,
|
316
|
+
Wa as Tabs,
|
317
|
+
ja as TabsContent,
|
318
|
+
qa as TabsList,
|
319
|
+
Ja as TabsRoot,
|
320
|
+
Ka as TabsTrigger,
|
321
|
+
Ya as Textarea,
|
322
|
+
rn as ThemeModeToggle,
|
323
|
+
_a as ThemeProvider,
|
324
|
+
en as Toast,
|
325
|
+
tn as ToastAction,
|
326
|
+
an as ToastClose,
|
327
|
+
nn as ToastDescription,
|
328
|
+
pn as ToastProvider,
|
329
|
+
ln as ToastTitle,
|
330
|
+
mn as ToastViewport,
|
331
|
+
Sn as Toaster,
|
332
|
+
Cn as Toggle,
|
333
|
+
Dn as ToggleGroup,
|
334
|
+
Mn as ToggleGroupItem,
|
335
|
+
Fn as Tooltip,
|
336
|
+
In as TooltipContent,
|
337
|
+
An as TooltipProvider,
|
338
|
+
wn as TooltipRoot,
|
339
|
+
hn as TooltipTrigger,
|
340
|
+
O as badgeVariants,
|
341
|
+
or as buttonIconVariants,
|
342
|
+
Z as buttonVariants,
|
343
|
+
Ce as labelVariants,
|
344
|
+
we as loadingProgressVariants,
|
345
|
+
rt as navigationMenuVariants,
|
346
|
+
dn as reducer,
|
347
|
+
gn as toast,
|
348
|
+
Tn as toggleVariants,
|
349
|
+
Oo as useFormField,
|
350
|
+
bn as useNotify,
|
351
|
+
Ia as useSidebar,
|
352
|
+
xn as useToast
|
356
353
|
};
|