@oneplatformdev/ui 0.0.1-beta.126 → 0.0.1-beta.128
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/Dialog/Dialog.d.ts +2 -1
- package/Dialog/Dialog.mjs +58 -50
- package/Dialog/DialogOverlayScope.d.ts +3 -2
- package/Dialog/DialogOverlayScope.mjs +8 -5
- package/Dialog/index.d.ts +1 -1
- package/Dialog/index.mjs +11 -9
- package/Popover/Popover.mjs +4 -5
- package/index.mjs +280 -278
- package/package.json +4 -4
package/Dialog/Dialog.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
|
|
2
3
|
import * as DialogPrimitive from '@radix-ui/react-dialog';
|
|
3
4
|
declare const Dialog: React.FC<DialogPrimitive.DialogProps>;
|
|
4
5
|
declare const DialogTrigger: React.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & React.RefAttributes<HTMLButtonElement>>;
|
package/Dialog/Dialog.mjs
CHANGED
|
@@ -1,54 +1,63 @@
|
|
|
1
|
-
import { jsx as o, jsxs as
|
|
2
|
-
import
|
|
3
|
-
import { useRef as y, useState as N, useLayoutEffect as D } from "react";
|
|
1
|
+
import { jsx as o, jsxs as c } from "react/jsx-runtime";
|
|
2
|
+
import i, { useRef as h, useMemo as D, useState as v, useEffect as b } from "react";
|
|
4
3
|
import * as e from "@radix-ui/react-dialog";
|
|
5
|
-
import { XIcon as
|
|
6
|
-
import { cn as
|
|
7
|
-
import { DialogOverlayScope as
|
|
8
|
-
const
|
|
4
|
+
import { XIcon as C } from "lucide-react";
|
|
5
|
+
import { cn as n, composeRefs as w } from "@oneplatformdev/utils";
|
|
6
|
+
import { DialogOverlayScope as E } from "./DialogOverlayScope.mjs";
|
|
7
|
+
const q = e.Root, B = e.Trigger, R = e.Portal, M = e.Close, g = i.forwardRef(({ className: t, ...a }, s) => /* @__PURE__ */ o(
|
|
9
8
|
e.Overlay,
|
|
10
9
|
{
|
|
11
10
|
ref: s,
|
|
12
|
-
className:
|
|
11
|
+
className: n(
|
|
13
12
|
"fixed inset-0 z-40 bg-black/80 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0",
|
|
14
13
|
t
|
|
15
14
|
),
|
|
16
15
|
...a
|
|
17
16
|
}
|
|
18
17
|
));
|
|
19
|
-
|
|
20
|
-
const
|
|
18
|
+
g.displayName = e.Overlay.displayName;
|
|
19
|
+
const z = i.forwardRef(
|
|
21
20
|
({
|
|
22
21
|
className: t,
|
|
23
22
|
children: a,
|
|
24
23
|
showCloseButton: s = !0,
|
|
25
|
-
onOpenAutoFocus:
|
|
26
|
-
preventAutoFocus:
|
|
27
|
-
...
|
|
28
|
-
},
|
|
29
|
-
const
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
24
|
+
onOpenAutoFocus: d,
|
|
25
|
+
preventAutoFocus: u,
|
|
26
|
+
...y
|
|
27
|
+
}, m) => {
|
|
28
|
+
const f = h(null), x = D(
|
|
29
|
+
() => w(m, f),
|
|
30
|
+
[m]
|
|
31
|
+
), [N, p] = v(null);
|
|
32
|
+
return b(() => {
|
|
33
|
+
const r = f.current;
|
|
34
|
+
if (!r || !r.parentElement) return;
|
|
35
|
+
const l = document.createElement("div");
|
|
36
|
+
return l.dataset.overlayHost = "", l.style.position = "fixed", l.style.inset = "0", l.style.zIndex = "80", r.parentElement.appendChild(l), p(l), () => {
|
|
37
|
+
l.remove(), p(null);
|
|
38
|
+
};
|
|
39
|
+
}, []), /* @__PURE__ */ c(R, { children: [
|
|
40
|
+
/* @__PURE__ */ o(g, {}),
|
|
41
|
+
/* @__PURE__ */ o(E, { value: N, children: /* @__PURE__ */ c(
|
|
33
42
|
e.Content,
|
|
34
43
|
{
|
|
35
|
-
ref:
|
|
36
|
-
className:
|
|
44
|
+
ref: x,
|
|
45
|
+
className: n(
|
|
37
46
|
"fixed left-[50%] top-[50%] z-50 grid w-full max-w-lg translate-x-[-50%] translate-y-[-50%] gap-4 border bg-background p-6 shadow-lg",
|
|
38
47
|
"duration-200 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[state=closed]:slide-out-to-left-1/2 data-[state=closed]:slide-out-to-top-[48%] data-[state=open]:slide-in-from-left-1/2 data-[state=open]:slide-in-from-top-[48%] sm:rounded-lg",
|
|
39
48
|
"max-w-[90%] max-h-[90%] overflow-hidden",
|
|
40
49
|
"bg-[#FCFCFC] border border-[#E8E9EB] rounded-[16px]",
|
|
41
50
|
t
|
|
42
51
|
),
|
|
43
|
-
onOpenAutoFocus: (
|
|
44
|
-
...
|
|
52
|
+
onOpenAutoFocus: (r) => (u && r.preventDefault(), d == null ? void 0 : d(r)),
|
|
53
|
+
...y,
|
|
45
54
|
children: [
|
|
46
55
|
a,
|
|
47
|
-
s && /* @__PURE__ */
|
|
56
|
+
s && /* @__PURE__ */ c(
|
|
48
57
|
e.Close,
|
|
49
58
|
{
|
|
50
59
|
"aria-label": "Close",
|
|
51
|
-
className:
|
|
60
|
+
className: n(
|
|
52
61
|
"absolute right-4 top-4 rounded-sm ring-offset-background w-10 aspect-square",
|
|
53
62
|
"flex items-center justify-center",
|
|
54
63
|
"data-[state=open]:bg-accent data-[state=open]:text-muted-foreground",
|
|
@@ -60,77 +69,76 @@ const w = r.forwardRef(
|
|
|
60
69
|
"transition-opacity"
|
|
61
70
|
),
|
|
62
71
|
children: [
|
|
63
|
-
/* @__PURE__ */ o(
|
|
72
|
+
/* @__PURE__ */ o(C, { className: "h-4 w-4" }),
|
|
64
73
|
/* @__PURE__ */ o("span", { className: "sr-only", children: "Close" })
|
|
65
74
|
]
|
|
66
75
|
}
|
|
67
76
|
)
|
|
68
77
|
]
|
|
69
78
|
}
|
|
70
|
-
) })
|
|
71
|
-
/* @__PURE__ */ o("div", { ref: d, className: "fixed inset-0 z-80" })
|
|
79
|
+
) })
|
|
72
80
|
] });
|
|
73
81
|
}
|
|
74
82
|
);
|
|
75
|
-
|
|
76
|
-
const
|
|
83
|
+
z.displayName = e.Content.displayName;
|
|
84
|
+
const T = ({
|
|
77
85
|
className: t,
|
|
78
86
|
...a
|
|
79
87
|
}) => /* @__PURE__ */ o(
|
|
80
88
|
"div",
|
|
81
89
|
{
|
|
82
|
-
className:
|
|
90
|
+
className: n(
|
|
83
91
|
"flex flex-col space-y-1.5 text-center sm:text-left",
|
|
84
92
|
t
|
|
85
93
|
),
|
|
86
94
|
...a
|
|
87
95
|
}
|
|
88
96
|
);
|
|
89
|
-
|
|
90
|
-
const
|
|
97
|
+
T.displayName = "DialogHeader";
|
|
98
|
+
const j = ({
|
|
91
99
|
className: t,
|
|
92
100
|
...a
|
|
93
101
|
}) => /* @__PURE__ */ o(
|
|
94
102
|
"div",
|
|
95
103
|
{
|
|
96
|
-
className:
|
|
104
|
+
className: n(
|
|
97
105
|
"flex flex-col-reverse sm:flex-row sm:justify-end sm:space-x-2",
|
|
98
106
|
t
|
|
99
107
|
),
|
|
100
108
|
...a
|
|
101
109
|
}
|
|
102
110
|
);
|
|
103
|
-
|
|
104
|
-
const
|
|
111
|
+
j.displayName = "DialogFooter";
|
|
112
|
+
const k = i.forwardRef(({ className: t, ...a }, s) => /* @__PURE__ */ o(
|
|
105
113
|
e.Title,
|
|
106
114
|
{
|
|
107
115
|
ref: s,
|
|
108
|
-
className:
|
|
116
|
+
className: n(
|
|
109
117
|
"text-lg font-semibold leading-none tracking-tight",
|
|
110
118
|
t
|
|
111
119
|
),
|
|
112
120
|
...a
|
|
113
121
|
}
|
|
114
122
|
));
|
|
115
|
-
|
|
116
|
-
const
|
|
123
|
+
k.displayName = e.Title.displayName;
|
|
124
|
+
const H = i.forwardRef(({ className: t, ...a }, s) => /* @__PURE__ */ o(
|
|
117
125
|
e.Description,
|
|
118
126
|
{
|
|
119
127
|
ref: s,
|
|
120
|
-
className:
|
|
128
|
+
className: n("text-sm text-muted-foreground", t),
|
|
121
129
|
...a
|
|
122
130
|
}
|
|
123
131
|
));
|
|
124
|
-
|
|
132
|
+
H.displayName = e.Description.displayName;
|
|
125
133
|
export {
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
134
|
+
q as Dialog,
|
|
135
|
+
M as DialogClose,
|
|
136
|
+
z as DialogContent,
|
|
137
|
+
H as DialogDescription,
|
|
138
|
+
j as DialogFooter,
|
|
139
|
+
T as DialogHeader,
|
|
140
|
+
g as DialogOverlay,
|
|
141
|
+
R as DialogPortal,
|
|
142
|
+
k as DialogTitle,
|
|
143
|
+
B as DialogTrigger
|
|
136
144
|
};
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
import { PropsWithChildren } from 'react';
|
|
1
|
+
import { Context, PropsWithChildren } from 'react';
|
|
2
2
|
|
|
3
|
+
export declare const DialogOverlayContainerCtx: Context<HTMLElement | null>;
|
|
4
|
+
export declare const useDialogOverlayContainer: () => HTMLElement | null;
|
|
3
5
|
interface IDialogOverlayScopeProps extends PropsWithChildren {
|
|
4
6
|
value: HTMLElement | null;
|
|
5
7
|
}
|
|
6
8
|
export declare const DialogOverlayScope: ({ value, children }: IDialogOverlayScopeProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
-
export declare const useDialogOverlayContainer: () => HTMLElement | null;
|
|
8
9
|
export {};
|
|
@@ -1,7 +1,10 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
import { createContext as
|
|
3
|
-
const o =
|
|
1
|
+
import { jsx as a } from "react/jsx-runtime";
|
|
2
|
+
import { createContext as t, useContext as i } from "react";
|
|
3
|
+
const o = Symbol.for("@oneplatformdev/ui.dialog-overlay-scope-context"), e = globalThis;
|
|
4
|
+
e[o] || (e[o] = t(null));
|
|
5
|
+
const r = t(null), g = () => i(r), m = ({ value: l, children: n }) => /* @__PURE__ */ a(r.Provider, { value: l, children: n });
|
|
4
6
|
export {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
+
r as DialogOverlayContainerCtx,
|
|
8
|
+
m as DialogOverlayScope,
|
|
9
|
+
g as useDialogOverlayContainer
|
|
7
10
|
};
|
package/Dialog/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export * from './Dialog';
|
|
2
|
-
export
|
|
2
|
+
export * from './DialogOverlayScope';
|
package/Dialog/index.mjs
CHANGED
|
@@ -1,15 +1,17 @@
|
|
|
1
|
-
import { Dialog as
|
|
2
|
-
import { useDialogOverlayContainer as
|
|
1
|
+
import { Dialog as l, DialogClose as i, DialogContent as e, DialogDescription as r, DialogFooter as g, DialogHeader as D, DialogOverlay as t, DialogPortal as n, DialogTitle as C, DialogTrigger as p } from "./Dialog.mjs";
|
|
2
|
+
import { DialogOverlayContainerCtx as y, DialogOverlayScope as O, useDialogOverlayContainer as s } from "./DialogOverlayScope.mjs";
|
|
3
3
|
export {
|
|
4
|
-
|
|
5
|
-
|
|
4
|
+
l as Dialog,
|
|
5
|
+
i as DialogClose,
|
|
6
6
|
e as DialogContent,
|
|
7
|
-
|
|
8
|
-
|
|
7
|
+
r as DialogDescription,
|
|
8
|
+
g as DialogFooter,
|
|
9
9
|
D as DialogHeader,
|
|
10
10
|
t as DialogOverlay,
|
|
11
|
+
y as DialogOverlayContainerCtx,
|
|
12
|
+
O as DialogOverlayScope,
|
|
11
13
|
n as DialogPortal,
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
14
|
+
C as DialogTitle,
|
|
15
|
+
p as DialogTrigger,
|
|
16
|
+
s as useDialogOverlayContainer
|
|
15
17
|
};
|
package/Popover/Popover.mjs
CHANGED
|
@@ -2,9 +2,8 @@ import { jsx as e } from "react/jsx-runtime";
|
|
|
2
2
|
import * as m from "react";
|
|
3
3
|
import * as o from "@radix-ui/react-popover";
|
|
4
4
|
import { cn as p } from "@oneplatformdev/utils";
|
|
5
|
-
import "../Dialog/Dialog.mjs";
|
|
6
5
|
import { useDialogOverlayContainer as l } from "../Dialog/DialogOverlayScope.mjs";
|
|
7
|
-
const
|
|
6
|
+
const v = o.Root, P = o.Trigger, h = o.Anchor, c = m.forwardRef(({ className: a, align: r = "center", sideOffset: n = 4, style: i, ...d }, s) => {
|
|
8
7
|
const t = l();
|
|
9
8
|
return console.log("container", t), /* @__PURE__ */ e(o.Portal, { container: t ?? void 0, children: /* @__PURE__ */ e(
|
|
10
9
|
o.Content,
|
|
@@ -26,8 +25,8 @@ const P = o.Root, h = o.Trigger, b = o.Anchor, c = m.forwardRef(({ className: a,
|
|
|
26
25
|
});
|
|
27
26
|
c.displayName = o.Content.displayName;
|
|
28
27
|
export {
|
|
29
|
-
|
|
30
|
-
|
|
28
|
+
v as Popover,
|
|
29
|
+
h as PopoverAnchor,
|
|
31
30
|
c as PopoverContent,
|
|
32
|
-
|
|
31
|
+
P as PopoverTrigger
|
|
33
32
|
};
|
package/index.mjs
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import { Accordion as e, AccordionContent as t, AccordionItem as a, AccordionTrigger as n } from "./Accordion/Accordion.mjs";
|
|
2
2
|
import { Alert as p, AlertDescription as l, AlertTitle as m } from "./Alert/Alert.mjs";
|
|
3
|
-
import { AlertDialogAction as d, AlertDialogCancel as
|
|
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 D, AlertDialogTrigger as c } from "./AlertDialog/AlertDialogRoot.mjs";
|
|
4
4
|
import { AlertDialog as P } from "./AlertDialog/AlertDialog.mjs";
|
|
5
5
|
import { AreaChart as A } from "./AreaChart/AreaChart.mjs";
|
|
6
|
-
import { Aside as
|
|
6
|
+
import { Aside as w } from "./Aside/Aside.mjs";
|
|
7
7
|
import { AsideSidebar as F } from "./Aside/AsideSidebar.mjs";
|
|
8
8
|
import { AspectRatio as R } from "./AspectRatio/AspectRatio.mjs";
|
|
9
9
|
import { Avatar as G, AvatarFallback as k, AvatarImage as H } from "./Avatar/Avatar.mjs";
|
|
10
|
-
import { Badge as
|
|
11
|
-
import { badgeVariants as
|
|
10
|
+
import { Badge as N } from "./Badge/Badge.mjs";
|
|
11
|
+
import { badgeVariants as V } from "./Badge/badgeVariants.mjs";
|
|
12
12
|
import { Breadcrumb as z, BreadcrumbEllipsis as _, BreadcrumbItem as U, BreadcrumbLink as Y, BreadcrumbList as j, BreadcrumbPage as q, BreadcrumbSeparator as J } from "./Breadcrumb/Breadcrumb.mjs";
|
|
13
13
|
import { Button as Q } from "./Button/Button.mjs";
|
|
14
14
|
import { buttonVariants as X } from "./Button/buttonVariants.mjs";
|
|
@@ -16,74 +16,74 @@ import { ButtonIcon as $ } from "./ButtonIcon/ButtonIcon.mjs";
|
|
|
16
16
|
import { buttonIconVariants as ro } from "./ButtonIcon/buttonIconVariants.mjs";
|
|
17
17
|
import { Calendar as to } from "./Calendar/Calendar.mjs";
|
|
18
18
|
import { Card as no, CardContent as io, CardDescription as po, CardFooter as lo, CardHeader as mo, CardTitle as uo } from "./Card/Card.mjs";
|
|
19
|
-
import { Carousel as
|
|
19
|
+
import { Carousel as bo, CarouselContent as xo, CarouselItem as fo, CarouselNext as So, CarouselPrevious as so } from "./Carousel/Carousel.mjs";
|
|
20
20
|
import { ChartContainer as To, ChartLegend as Do, ChartLegendContent as co, ChartStyle as Mo, ChartTooltip as Po, ChartTooltipContent as Io } from "./Chart/Chart.mjs";
|
|
21
|
-
import { Checkbox as
|
|
21
|
+
import { Checkbox as vo, CheckboxLabel as wo } from "./Checkbox/Checkbox.mjs";
|
|
22
22
|
import { Collapsible as Fo, CollapsibleContent as Lo, CollapsibleTrigger as Ro } from "./Collapsible/Collapsible.mjs";
|
|
23
23
|
import { C as Go } from "./Combobox-CkGEIfTD.js";
|
|
24
|
-
import { Command as Ho, CommandDialog as
|
|
24
|
+
import { Command as Ho, CommandDialog as yo, CommandEmpty as No, CommandGroup as Oo, CommandInput as Vo, CommandItem as Eo, CommandList as zo, CommandSeparator as _o, CommandShortcut as Uo } from "./Command/Command.mjs";
|
|
25
25
|
import { DataTable as jo } from "./DataTable/DataTable.mjs";
|
|
26
26
|
import { DatePicker as Jo } from "./DatePicker/DatePicker.mjs";
|
|
27
27
|
import { Dialog as Qo, DialogClose as Wo, DialogContent as Xo, DialogDescription as Zo, DialogFooter as $o, DialogHeader as or, DialogOverlay as rr, DialogPortal as er, DialogTitle as tr, DialogTrigger as ar } from "./Dialog/Dialog.mjs";
|
|
28
|
-
import {
|
|
29
|
-
import { Drawer as
|
|
30
|
-
import { DropdownMenu as
|
|
31
|
-
import { Form as
|
|
32
|
-
import { FormRenderControl as
|
|
33
|
-
import { FormCheckbox as
|
|
34
|
-
import { FormCombobox as
|
|
35
|
-
import { FormDatePicker as
|
|
36
|
-
import { FormInput as
|
|
37
|
-
import { FormSelect as
|
|
38
|
-
import { FormTextarea as
|
|
39
|
-
import { Header as
|
|
40
|
-
import { HoverCard as
|
|
41
|
-
import { BaseInput as
|
|
42
|
-
import { InputOTP as
|
|
43
|
-
import { Label as
|
|
44
|
-
import { labelVariants as
|
|
45
|
-
import { LazyLoader as
|
|
46
|
-
import { LoadedIcon as
|
|
47
|
-
import { LoadingMask as
|
|
48
|
-
import { RenderLoadingMask as
|
|
49
|
-
import { LoadingProgress as
|
|
50
|
-
import { loadingProgressVariants as
|
|
51
|
-
import { Menubar as
|
|
52
|
-
import { NavigationMenu as
|
|
53
|
-
import { navigationMenuVariants as
|
|
54
|
-
import { Pagination as
|
|
55
|
-
import { Popover as
|
|
56
|
-
import { Progress as
|
|
57
|
-
import { RadioGroup as
|
|
58
|
-
import { ResizableHandle as
|
|
59
|
-
import { ScrollArea as
|
|
60
|
-
import { Search as
|
|
61
|
-
import { SelectContent as
|
|
62
|
-
import { Select as
|
|
63
|
-
import { Separator as
|
|
64
|
-
import { Sheet as
|
|
65
|
-
import { Sidebar as
|
|
66
|
-
import { Skeleton as
|
|
67
|
-
import { Slider as
|
|
68
|
-
import { Sonner as
|
|
69
|
-
import { Switch as
|
|
70
|
-
import { Table as
|
|
71
|
-
import { TabsContent as
|
|
72
|
-
import { TabRender as
|
|
73
|
-
import { Textarea as
|
|
74
|
-
import { ThemeProvider as
|
|
75
|
-
import { ThemeModeToggle as
|
|
76
|
-
import { Toast as
|
|
77
|
-
import { reducer as
|
|
78
|
-
import { Toaster as
|
|
79
|
-
import { Toggle as
|
|
80
|
-
import { ToggleGroup as
|
|
81
|
-
import { TooltipContent as
|
|
82
|
-
import { Tooltip as
|
|
83
|
-
import { Dropzone as
|
|
84
|
-
import { D as
|
|
85
|
-
import { FormDropzone as
|
|
86
|
-
import { TablePagination as
|
|
28
|
+
import { DialogOverlayContainerCtx as ir, DialogOverlayScope as pr, useDialogOverlayContainer as lr } from "./Dialog/DialogOverlayScope.mjs";
|
|
29
|
+
import { Drawer as ur, DrawerClose as dr, DrawerContent as gr, DrawerDescription as br, DrawerFooter as xr, DrawerHeader as fr, DrawerOverlay as Sr, DrawerPortal as sr, DrawerTitle as Cr, DrawerTrigger as Tr } from "./Drawer/Drawer.mjs";
|
|
30
|
+
import { DropdownMenu as cr, DropdownMenuCheckboxItem as Mr, DropdownMenuContent as Pr, DropdownMenuGroup as Ir, DropdownMenuItem as Ar, DropdownMenuLabel as vr, DropdownMenuPortal as wr, DropdownMenuRadioGroup as hr, DropdownMenuRadioItem as Fr, DropdownMenuSeparator as Lr, DropdownMenuShortcut as Rr, DropdownMenuSub as Br, DropdownMenuSubContent as Gr, DropdownMenuSubTrigger as kr, DropdownMenuTrigger as Hr } from "./DropdownMenu/DropdownMenu.mjs";
|
|
31
|
+
import { Form as Nr, FormControl as Or, FormDescription as Vr, FormField as Er, FormItem as zr, FormLabel as _r, FormMessage as Ur, useFormField as Yr } from "./Form/Form.mjs";
|
|
32
|
+
import { FormRenderControl as qr } from "./Form/FormRenderControl.mjs";
|
|
33
|
+
import { FormCheckbox as Kr } from "./FormCheckbox/FormCheckbox.mjs";
|
|
34
|
+
import { FormCombobox as Wr } from "./FormCombobox/FormCombobox.mjs";
|
|
35
|
+
import { FormDatePicker as Zr } from "./FormDatePicker/FormDatePicker.mjs";
|
|
36
|
+
import { FormInput as oe } from "./FormInput/FormInput.mjs";
|
|
37
|
+
import { FormSelect as ee } from "./FormSelect/FormSelect.mjs";
|
|
38
|
+
import { FormTextarea as ae } from "./FormTextarea/FormTextarea.mjs";
|
|
39
|
+
import { Header as ie } from "./Header/Header.mjs";
|
|
40
|
+
import { HoverCard as le, HoverCardContent as me, HoverCardTrigger as ue } from "./HoverCard/HoverCard.mjs";
|
|
41
|
+
import { BaseInput as ge, Input as be, PasswordInput as xe } from "./Input/Input.mjs";
|
|
42
|
+
import { InputOTP as Se, InputOTPGroup as se, InputOTPSeparator as Ce, InputOTPSlot as Te } from "./InputOTP/InputOTP.mjs";
|
|
43
|
+
import { Label as ce } from "./Label/Label.mjs";
|
|
44
|
+
import { labelVariants as Pe } from "./Label/labelVariants.mjs";
|
|
45
|
+
import { LazyLoader as Ae } from "./LazyLoader/LazyLoader.mjs";
|
|
46
|
+
import { LoadedIcon as we } from "./LoadedIcon/LoadedIcon.mjs";
|
|
47
|
+
import { LoadingMask as Fe } from "./LoadingMask/LoadingMask.mjs";
|
|
48
|
+
import { RenderLoadingMask as Re } from "./LoadingMask/RenderLoadingMask.mjs";
|
|
49
|
+
import { LoadingProgress as Ge } from "./LoadingProgress/LoadingProgress.mjs";
|
|
50
|
+
import { loadingProgressVariants as He } from "./LoadingProgress/loadingProgressVariants.mjs";
|
|
51
|
+
import { Menubar as Ne, MenubarCheckboxItem as Oe, MenubarContent as Ve, MenubarGroup as Ee, MenubarItem as ze, MenubarLabel as _e, MenubarMenu as Ue, MenubarPortal as Ye, MenubarRadioGroup as je, MenubarRadioItem as qe, MenubarSeparator as Je, MenubarShortcut as Ke, MenubarSub as Qe, MenubarSubContent as We, MenubarSubTrigger as Xe, MenubarTrigger as Ze } from "./Menubar/Menubar.mjs";
|
|
52
|
+
import { NavigationMenu as ot, NavigationMenuContent as rt, NavigationMenuIndicator as et, NavigationMenuItem as tt, NavigationMenuLink as at, NavigationMenuList as nt, NavigationMenuTrigger as it, NavigationMenuViewport as pt } from "./NavigationMenu/NavigationMenu.mjs";
|
|
53
|
+
import { navigationMenuVariants as mt } from "./NavigationMenu/navigationMenuVariants.mjs";
|
|
54
|
+
import { Pagination as dt, PaginationContent as gt, PaginationEllipsis as bt, PaginationItem as xt, PaginationLink as ft, PaginationNext as St, PaginationPrevious as st } from "./Pagination/Pagination.mjs";
|
|
55
|
+
import { Popover as Tt, PopoverAnchor as Dt, PopoverContent as ct, PopoverTrigger as Mt } from "./Popover/Popover.mjs";
|
|
56
|
+
import { Progress as It } from "./Progress/Progress.mjs";
|
|
57
|
+
import { RadioGroup as vt, RadioGroupItem as wt, RadioGroupLabel as ht } from "./RadioGroup/RadioGroup.mjs";
|
|
58
|
+
import { ResizableHandle as Lt, ResizablePanel as Rt, ResizablePanelGroup as Bt } from "./Resizable/Resizable.mjs";
|
|
59
|
+
import { ScrollArea as kt, ScrollBar as Ht } from "./ScrollArea/ScrollArea.mjs";
|
|
60
|
+
import { Search as Nt } from "./Search/Search.mjs";
|
|
61
|
+
import { SelectContent as Vt, SelectGroup as Et, SelectItem as zt, SelectLabel as _t, SelectRoot as Ut, SelectScrollDownButton as Yt, SelectScrollUpButton as jt, SelectSeparator as qt, SelectTrigger as Jt, SelectValue as Kt } from "./Select/SelectRoot.mjs";
|
|
62
|
+
import { Select as Wt } from "./Select/Select.mjs";
|
|
63
|
+
import { Separator as Zt } from "./Separator/Separator.mjs";
|
|
64
|
+
import { Sheet as oa, SheetClose as ra, SheetContent as ea, SheetDescription as ta, SheetFooter as aa, SheetHeader as na, SheetOverlay as ia, SheetPortal as pa, SheetTitle as la, SheetTrigger as ma } from "./Sheet/Sheet.mjs";
|
|
65
|
+
import { Sidebar as da, SidebarContent as ga, SidebarFooter as ba, SidebarGroup as xa, SidebarGroupAction as fa, SidebarGroupContent as Sa, SidebarGroupLabel as sa, SidebarHeader as Ca, SidebarInput as Ta, SidebarInset as Da, SidebarMenu as ca, SidebarMenuAction as Ma, SidebarMenuBadge as Pa, SidebarMenuButton as Ia, SidebarMenuItem as Aa, SidebarMenuSkeleton as va, SidebarMenuSub as wa, SidebarMenuSubButton as ha, SidebarMenuSubItem as Fa, SidebarProvider as La, SidebarRail as Ra, SidebarSeparator as Ba, SidebarTrigger as Ga, useSidebar as ka } from "./Sidebar/Sidebar.mjs";
|
|
66
|
+
import { Skeleton as ya } from "./Skeleton/Skeleton.mjs";
|
|
67
|
+
import { Slider as Oa } from "./Slider/Slider.mjs";
|
|
68
|
+
import { Sonner as Ea } from "./Sonner/Sonner.mjs";
|
|
69
|
+
import { Switch as _a } from "./Switch/Switch.mjs";
|
|
70
|
+
import { Table as Ya, TableBody as ja, TableCaption as qa, TableCell as Ja, TableFooter as Ka, TableHead as Qa, TableHeader as Wa, TableRow as Xa } from "./Table/Table.mjs";
|
|
71
|
+
import { TabsContent as $a, TabsList as on, TabsRoot as rn, TabsTrigger as en } from "./Tabs/TabsRoot.mjs";
|
|
72
|
+
import { TabRender as an, Tabs as nn } from "./Tabs/Tabs.mjs";
|
|
73
|
+
import { Textarea as ln } from "./Textarea/Textarea.mjs";
|
|
74
|
+
import { ThemeProvider as un } from "./Theme/ThemeProvider.mjs";
|
|
75
|
+
import { ThemeModeToggle as gn } from "./Theme/ThemeModeToggle.mjs";
|
|
76
|
+
import { Toast as xn, ToastAction as fn, ToastClose as Sn, ToastDescription as sn, ToastProvider as Cn, ToastTitle as Tn, ToastViewport as Dn } from "./Toast/Toast.mjs";
|
|
77
|
+
import { reducer as Mn, toast as Pn, useNotify as In, useToast as An } from "./Toast/useToast.mjs";
|
|
78
|
+
import { Toaster as wn } from "./Toaster/Toaster.mjs";
|
|
79
|
+
import { Toggle as Fn, toggleVariants as Ln } from "./Toggle/Toggle.mjs";
|
|
80
|
+
import { ToggleGroup as Bn, ToggleGroupItem as Gn } from "./ToggleGroup/ToggleGroup.mjs";
|
|
81
|
+
import { TooltipContent as Hn, TooltipProvider as yn, TooltipRoot as Nn, TooltipTrigger as On } from "./Tooltip/TooltipRoot.mjs";
|
|
82
|
+
import { Tooltip as En } from "./Tooltip/Tooltip.mjs";
|
|
83
|
+
import { Dropzone as _n } from "./Dropzone/Dropzone.mjs";
|
|
84
|
+
import { D as Yn, a as jn } from "./DropzoneFilePreview-Dhtv8F4u.js";
|
|
85
|
+
import { FormDropzone as Jn } from "./FormDropzone/FormDropzone.mjs";
|
|
86
|
+
import { TablePagination as Qn } from "./TablePagination/TablePagination.mjs";
|
|
87
87
|
export {
|
|
88
88
|
e as Accordion,
|
|
89
89
|
t as AccordionContent,
|
|
@@ -93,8 +93,8 @@ export {
|
|
|
93
93
|
l as AlertDescription,
|
|
94
94
|
P as AlertDialog,
|
|
95
95
|
d as AlertDialogAction,
|
|
96
|
-
|
|
97
|
-
|
|
96
|
+
g as AlertDialogCancel,
|
|
97
|
+
b as AlertDialogContent,
|
|
98
98
|
x as AlertDialogDescription,
|
|
99
99
|
f as AlertDialogFooter,
|
|
100
100
|
S as AlertDialogHeader,
|
|
@@ -105,14 +105,14 @@ export {
|
|
|
105
105
|
c as AlertDialogTrigger,
|
|
106
106
|
m as AlertTitle,
|
|
107
107
|
A as AreaChart,
|
|
108
|
-
|
|
108
|
+
w as Aside,
|
|
109
109
|
F as AsideSidebar,
|
|
110
110
|
R as AspectRatio,
|
|
111
111
|
G as Avatar,
|
|
112
112
|
k as AvatarFallback,
|
|
113
113
|
H as AvatarImage,
|
|
114
|
-
|
|
115
|
-
|
|
114
|
+
N as Badge,
|
|
115
|
+
ge as BaseInput,
|
|
116
116
|
z as Breadcrumb,
|
|
117
117
|
_ as BreadcrumbEllipsis,
|
|
118
118
|
U as BreadcrumbItem,
|
|
@@ -129,7 +129,7 @@ export {
|
|
|
129
129
|
lo as CardFooter,
|
|
130
130
|
mo as CardHeader,
|
|
131
131
|
uo as CardTitle,
|
|
132
|
-
|
|
132
|
+
bo as Carousel,
|
|
133
133
|
xo as CarouselContent,
|
|
134
134
|
fo as CarouselItem,
|
|
135
135
|
So as CarouselNext,
|
|
@@ -140,23 +140,23 @@ export {
|
|
|
140
140
|
Mo as ChartStyle,
|
|
141
141
|
Po as ChartTooltip,
|
|
142
142
|
Io as ChartTooltipContent,
|
|
143
|
-
|
|
144
|
-
|
|
143
|
+
vo as Checkbox,
|
|
144
|
+
wo as CheckboxLabel,
|
|
145
145
|
Fo as Collapsible,
|
|
146
146
|
Lo as CollapsibleContent,
|
|
147
147
|
Ro as CollapsibleTrigger,
|
|
148
148
|
Go as Combobox,
|
|
149
149
|
Ho as Command,
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
150
|
+
yo as CommandDialog,
|
|
151
|
+
No as CommandEmpty,
|
|
152
|
+
Oo as CommandGroup,
|
|
153
|
+
Vo as CommandInput,
|
|
154
|
+
Eo as CommandItem,
|
|
155
155
|
zo as CommandList,
|
|
156
156
|
_o as CommandSeparator,
|
|
157
157
|
Uo as CommandShortcut,
|
|
158
|
-
|
|
159
|
-
|
|
158
|
+
Yn as DEFAULT_FILE_TYPES,
|
|
159
|
+
jn as DEFAULT_IMAGES_TYPES,
|
|
160
160
|
jo as DataTable,
|
|
161
161
|
Jo as DatePicker,
|
|
162
162
|
Qo as Dialog,
|
|
@@ -166,206 +166,208 @@ export {
|
|
|
166
166
|
$o as DialogFooter,
|
|
167
167
|
or as DialogHeader,
|
|
168
168
|
rr as DialogOverlay,
|
|
169
|
+
ir as DialogOverlayContainerCtx,
|
|
170
|
+
pr as DialogOverlayScope,
|
|
169
171
|
er as DialogPortal,
|
|
170
172
|
tr as DialogTitle,
|
|
171
173
|
ar as DialogTrigger,
|
|
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
|
-
|
|
356
|
-
|
|
357
|
-
|
|
174
|
+
ur as Drawer,
|
|
175
|
+
dr as DrawerClose,
|
|
176
|
+
gr as DrawerContent,
|
|
177
|
+
br as DrawerDescription,
|
|
178
|
+
xr as DrawerFooter,
|
|
179
|
+
fr as DrawerHeader,
|
|
180
|
+
Sr as DrawerOverlay,
|
|
181
|
+
sr as DrawerPortal,
|
|
182
|
+
Cr as DrawerTitle,
|
|
183
|
+
Tr as DrawerTrigger,
|
|
184
|
+
cr as DropdownMenu,
|
|
185
|
+
Mr as DropdownMenuCheckboxItem,
|
|
186
|
+
Pr as DropdownMenuContent,
|
|
187
|
+
Ir as DropdownMenuGroup,
|
|
188
|
+
Ar as DropdownMenuItem,
|
|
189
|
+
vr as DropdownMenuLabel,
|
|
190
|
+
wr as DropdownMenuPortal,
|
|
191
|
+
hr as DropdownMenuRadioGroup,
|
|
192
|
+
Fr as DropdownMenuRadioItem,
|
|
193
|
+
Lr as DropdownMenuSeparator,
|
|
194
|
+
Rr as DropdownMenuShortcut,
|
|
195
|
+
Br as DropdownMenuSub,
|
|
196
|
+
Gr as DropdownMenuSubContent,
|
|
197
|
+
kr as DropdownMenuSubTrigger,
|
|
198
|
+
Hr as DropdownMenuTrigger,
|
|
199
|
+
_n as Dropzone,
|
|
200
|
+
Nr as Form,
|
|
201
|
+
Kr as FormCheckbox,
|
|
202
|
+
Wr as FormCombobox,
|
|
203
|
+
Or as FormControl,
|
|
204
|
+
Zr as FormDatePicker,
|
|
205
|
+
Vr as FormDescription,
|
|
206
|
+
Jn as FormDropzone,
|
|
207
|
+
Er as FormField,
|
|
208
|
+
oe as FormInput,
|
|
209
|
+
zr as FormItem,
|
|
210
|
+
_r as FormLabel,
|
|
211
|
+
Ur as FormMessage,
|
|
212
|
+
qr as FormRenderControl,
|
|
213
|
+
ee as FormSelect,
|
|
214
|
+
ae as FormTextarea,
|
|
215
|
+
ie as Header,
|
|
216
|
+
le as HoverCard,
|
|
217
|
+
me as HoverCardContent,
|
|
218
|
+
ue as HoverCardTrigger,
|
|
219
|
+
be as Input,
|
|
220
|
+
Se as InputOTP,
|
|
221
|
+
se as InputOTPGroup,
|
|
222
|
+
Ce as InputOTPSeparator,
|
|
223
|
+
Te as InputOTPSlot,
|
|
224
|
+
ce as Label,
|
|
225
|
+
Ae as LazyLoader,
|
|
226
|
+
we as LoadedIcon,
|
|
227
|
+
Fe as LoadingMask,
|
|
228
|
+
Ge as LoadingProgress,
|
|
229
|
+
Ne as Menubar,
|
|
230
|
+
Oe as MenubarCheckboxItem,
|
|
231
|
+
Ve as MenubarContent,
|
|
232
|
+
Ee as MenubarGroup,
|
|
233
|
+
ze as MenubarItem,
|
|
234
|
+
_e as MenubarLabel,
|
|
235
|
+
Ue as MenubarMenu,
|
|
236
|
+
Ye as MenubarPortal,
|
|
237
|
+
je as MenubarRadioGroup,
|
|
238
|
+
qe as MenubarRadioItem,
|
|
239
|
+
Je as MenubarSeparator,
|
|
240
|
+
Ke as MenubarShortcut,
|
|
241
|
+
Qe as MenubarSub,
|
|
242
|
+
We as MenubarSubContent,
|
|
243
|
+
Xe as MenubarSubTrigger,
|
|
244
|
+
Ze as MenubarTrigger,
|
|
245
|
+
ot as NavigationMenu,
|
|
246
|
+
rt as NavigationMenuContent,
|
|
247
|
+
et as NavigationMenuIndicator,
|
|
248
|
+
tt as NavigationMenuItem,
|
|
249
|
+
at as NavigationMenuLink,
|
|
250
|
+
nt as NavigationMenuList,
|
|
251
|
+
it as NavigationMenuTrigger,
|
|
252
|
+
pt as NavigationMenuViewport,
|
|
253
|
+
dt as Pagination,
|
|
254
|
+
gt as PaginationContent,
|
|
255
|
+
bt as PaginationEllipsis,
|
|
256
|
+
xt as PaginationItem,
|
|
257
|
+
ft as PaginationLink,
|
|
258
|
+
St as PaginationNext,
|
|
259
|
+
st as PaginationPrevious,
|
|
260
|
+
xe as PasswordInput,
|
|
261
|
+
Tt as Popover,
|
|
262
|
+
Dt as PopoverAnchor,
|
|
263
|
+
ct as PopoverContent,
|
|
264
|
+
Mt as PopoverTrigger,
|
|
265
|
+
It as Progress,
|
|
266
|
+
vt as RadioGroup,
|
|
267
|
+
wt as RadioGroupItem,
|
|
268
|
+
ht as RadioGroupLabel,
|
|
269
|
+
Re as RenderLoadingMask,
|
|
270
|
+
Lt as ResizableHandle,
|
|
271
|
+
Rt as ResizablePanel,
|
|
272
|
+
Bt as ResizablePanelGroup,
|
|
273
|
+
kt as ScrollArea,
|
|
274
|
+
Ht as ScrollBar,
|
|
275
|
+
Nt as Search,
|
|
276
|
+
Wt as Select,
|
|
277
|
+
Vt as SelectContent,
|
|
278
|
+
Et as SelectGroup,
|
|
279
|
+
zt as SelectItem,
|
|
280
|
+
_t as SelectLabel,
|
|
281
|
+
Ut as SelectRoot,
|
|
282
|
+
Yt as SelectScrollDownButton,
|
|
283
|
+
jt as SelectScrollUpButton,
|
|
284
|
+
qt as SelectSeparator,
|
|
285
|
+
Jt as SelectTrigger,
|
|
286
|
+
Kt as SelectValue,
|
|
287
|
+
Zt as Separator,
|
|
288
|
+
oa as Sheet,
|
|
289
|
+
ra as SheetClose,
|
|
290
|
+
ea as SheetContent,
|
|
291
|
+
ta as SheetDescription,
|
|
292
|
+
aa as SheetFooter,
|
|
293
|
+
na as SheetHeader,
|
|
294
|
+
ia as SheetOverlay,
|
|
295
|
+
pa as SheetPortal,
|
|
296
|
+
la as SheetTitle,
|
|
297
|
+
ma as SheetTrigger,
|
|
298
|
+
da as Sidebar,
|
|
299
|
+
ga as SidebarContent,
|
|
300
|
+
ba as SidebarFooter,
|
|
301
|
+
xa as SidebarGroup,
|
|
302
|
+
fa as SidebarGroupAction,
|
|
303
|
+
Sa as SidebarGroupContent,
|
|
304
|
+
sa as SidebarGroupLabel,
|
|
305
|
+
Ca as SidebarHeader,
|
|
306
|
+
Ta as SidebarInput,
|
|
307
|
+
Da as SidebarInset,
|
|
308
|
+
ca as SidebarMenu,
|
|
309
|
+
Ma as SidebarMenuAction,
|
|
310
|
+
Pa as SidebarMenuBadge,
|
|
311
|
+
Ia as SidebarMenuButton,
|
|
312
|
+
Aa as SidebarMenuItem,
|
|
313
|
+
va as SidebarMenuSkeleton,
|
|
314
|
+
wa as SidebarMenuSub,
|
|
315
|
+
ha as SidebarMenuSubButton,
|
|
316
|
+
Fa as SidebarMenuSubItem,
|
|
317
|
+
La as SidebarProvider,
|
|
318
|
+
Ra as SidebarRail,
|
|
319
|
+
Ba as SidebarSeparator,
|
|
320
|
+
Ga as SidebarTrigger,
|
|
321
|
+
ya as Skeleton,
|
|
322
|
+
Oa as Slider,
|
|
323
|
+
Ea as Sonner,
|
|
324
|
+
_a as Switch,
|
|
325
|
+
an as TabRender,
|
|
326
|
+
Ya as Table,
|
|
327
|
+
ja as TableBody,
|
|
328
|
+
qa as TableCaption,
|
|
329
|
+
Ja as TableCell,
|
|
330
|
+
Ka as TableFooter,
|
|
331
|
+
Qa as TableHead,
|
|
332
|
+
Wa as TableHeader,
|
|
333
|
+
Qn as TablePagination,
|
|
334
|
+
Xa as TableRow,
|
|
335
|
+
nn as Tabs,
|
|
336
|
+
$a as TabsContent,
|
|
337
|
+
on as TabsList,
|
|
338
|
+
rn as TabsRoot,
|
|
339
|
+
en as TabsTrigger,
|
|
340
|
+
ln as Textarea,
|
|
341
|
+
gn as ThemeModeToggle,
|
|
342
|
+
un as ThemeProvider,
|
|
343
|
+
xn as Toast,
|
|
344
|
+
fn as ToastAction,
|
|
345
|
+
Sn as ToastClose,
|
|
346
|
+
sn as ToastDescription,
|
|
347
|
+
Cn as ToastProvider,
|
|
348
|
+
Tn as ToastTitle,
|
|
349
|
+
Dn as ToastViewport,
|
|
350
|
+
wn as Toaster,
|
|
351
|
+
Fn as Toggle,
|
|
352
|
+
Bn as ToggleGroup,
|
|
353
|
+
Gn as ToggleGroupItem,
|
|
354
|
+
En as Tooltip,
|
|
355
|
+
Hn as TooltipContent,
|
|
356
|
+
yn as TooltipProvider,
|
|
357
|
+
Nn as TooltipRoot,
|
|
358
|
+
On as TooltipTrigger,
|
|
359
|
+
V as badgeVariants,
|
|
358
360
|
ro as buttonIconVariants,
|
|
359
361
|
X as buttonVariants,
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
362
|
+
Pe as labelVariants,
|
|
363
|
+
He as loadingProgressVariants,
|
|
364
|
+
mt as navigationMenuVariants,
|
|
365
|
+
Mn as reducer,
|
|
366
|
+
Pn as toast,
|
|
367
|
+
Ln as toggleVariants,
|
|
368
|
+
lr as useDialogOverlayContainer,
|
|
369
|
+
Yr as useFormField,
|
|
370
|
+
In as useNotify,
|
|
371
|
+
ka as useSidebar,
|
|
372
|
+
An as useToast
|
|
371
373
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oneplatformdev/ui",
|
|
3
|
-
"version": "0.0.1-beta.
|
|
3
|
+
"version": "0.0.1-beta.128",
|
|
4
4
|
"description": "UI React Components.",
|
|
5
5
|
"author": "One Platform Development Team",
|
|
6
6
|
"keywords": [
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"registry": "https://registry.npmjs.org/",
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@oneplatformdev/hooks": "~0.0.1-beta.3",
|
|
39
|
-
"@oneplatformdev/utils": "~0.0.2-beta.
|
|
39
|
+
"@oneplatformdev/utils": "~0.0.2-beta.19"
|
|
40
40
|
}
|
|
41
41
|
},
|
|
42
42
|
"peerDependency": {
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"react": "^17.0.0 || ^18.0.0 || ^19.0.0",
|
|
45
45
|
"react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0",
|
|
46
46
|
"@oneplatformdev/hooks": "~0.0.1-beta.7",
|
|
47
|
-
"@oneplatformdev/utils": "~0.0.2-beta.
|
|
47
|
+
"@oneplatformdev/utils": "~0.0.2-beta.19",
|
|
48
48
|
"lucide-react": "^0.469.0"
|
|
49
49
|
},
|
|
50
50
|
"peerDependenciesMeta": {
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
"dependencies": {
|
|
59
59
|
"@hookform/resolvers": "^3.9.1",
|
|
60
60
|
"@oneplatformdev/hooks": "~0.0.1-beta.7",
|
|
61
|
-
"@oneplatformdev/utils": "~0.0.2-beta.
|
|
61
|
+
"@oneplatformdev/utils": "~0.0.2-beta.19",
|
|
62
62
|
"@radix-ui/react-accordion": "^1.2.2",
|
|
63
63
|
"@radix-ui/react-alert-dialog": "^1.1.4",
|
|
64
64
|
"@radix-ui/react-aspect-ratio": "^1.1.1",
|