@worldcoin/mini-apps-ui-kit-react 1.0.0-canary.1 → 1.0.0-canary.3
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/AlertDialog/AlertDialog.d.ts +22 -0
- package/dist/components/AlertDialog/AlertDialog.js +45 -48
- package/dist/components/AlertDialog/index.js +6 -7
- package/dist/components/Button/Button.d.ts +1 -1
- package/dist/components/Button/Button.js +19 -18
- package/dist/components/Tabs/Tabs.js +19 -19
- package/dist/index.d.ts +1 -0
- package/dist/index.js +57 -55
- package/package.json +1 -1
@@ -0,0 +1,22 @@
|
|
1
|
+
import { BottomBarProps } from '../BottomBar';
|
2
|
+
import { AlertDialogCloseProps, AlertDialogContentProps, AlertDialogDescriptionProps, AlertDialogHeaderProps, AlertDialogProps, AlertDialogTitleProps, AlertDialogTriggerProps } from './types';
|
3
|
+
import * as React from "react";
|
4
|
+
declare const AlertDialog: {
|
5
|
+
({ dismissible, modal, ...props }: AlertDialogProps): import("react/jsx-runtime").JSX.Element;
|
6
|
+
displayName: string;
|
7
|
+
};
|
8
|
+
declare const AlertDialogTrigger: React.ForwardRefExoticComponent<AlertDialogTriggerProps & React.RefAttributes<HTMLButtonElement>>;
|
9
|
+
declare const AlertDialogPortal: typeof import('vaul').Portal;
|
10
|
+
declare const AlertDialogClose: React.ForwardRefExoticComponent<AlertDialogCloseProps & React.RefAttributes<HTMLButtonElement>>;
|
11
|
+
declare const AlertDialogContent: React.ForwardRefExoticComponent<AlertDialogContentProps & React.RefAttributes<HTMLDivElement>>;
|
12
|
+
declare const AlertDialogHeader: {
|
13
|
+
({ icon, children, ...props }: AlertDialogHeaderProps): import("react/jsx-runtime").JSX.Element;
|
14
|
+
displayName: string;
|
15
|
+
};
|
16
|
+
declare const AlertDialogFooter: {
|
17
|
+
(props: BottomBarProps): import("react/jsx-runtime").JSX.Element;
|
18
|
+
displayName: string;
|
19
|
+
};
|
20
|
+
declare const AlertDialogTitle: React.ForwardRefExoticComponent<AlertDialogTitleProps & React.RefAttributes<HTMLHeadingElement>>;
|
21
|
+
declare const AlertDialogDescription: React.ForwardRefExoticComponent<AlertDialogDescriptionProps & React.RefAttributes<HTMLParagraphElement>>;
|
22
|
+
export { AlertDialog, AlertDialogPortal, AlertDialogTrigger, AlertDialogClose, AlertDialogContent, AlertDialogHeader, AlertDialogFooter, AlertDialogTitle, AlertDialogDescription, };
|
@@ -2,50 +2,48 @@
|
|
2
2
|
import { jsx as r, jsxs as n } from "react/jsx-runtime";
|
3
3
|
import { cn as s } from "../../lib/utils.js";
|
4
4
|
import * as i from "react";
|
5
|
-
import { Drawer as
|
6
|
-
import { BottomBar as
|
7
|
-
import { Button as
|
8
|
-
import { XMark as
|
5
|
+
import { Drawer as o } from "../../node_modules/.pnpm/vaul@1.1.2_@types_react-dom@18.3.5_@types_react@18.3.18__@types_react@18.3.18_react-dom@18.3._7iqkcrcg5qjc3n2ixm6rnrnx3e/node_modules/vaul/dist/index.js";
|
6
|
+
import { BottomBar as c } from "../BottomBar/BottomBar.js";
|
7
|
+
import { Button as g } from "../Button/Button.js";
|
8
|
+
import { XMark as f } from "../Icons/XMark.js";
|
9
9
|
import { Typography as m } from "../Typography/Typography.js";
|
10
|
-
import { AlertDialogContext as
|
11
|
-
const
|
12
|
-
|
10
|
+
import { AlertDialogContext as p, useAlertDialog as D } from "./use-alert-dialog.js";
|
11
|
+
const A = ({ dismissible: e = !0, modal: l = !0, ...t }) => /* @__PURE__ */ r(p.Provider, { value: { dismissible: e }, children: /* @__PURE__ */ r(
|
12
|
+
o.Root,
|
13
13
|
{
|
14
14
|
shouldScaleBackground: !1,
|
15
15
|
dismissible: e,
|
16
16
|
modal: l,
|
17
|
-
...
|
17
|
+
...t
|
18
18
|
}
|
19
19
|
) });
|
20
|
-
|
21
|
-
const h = i.forwardRef((e, l) => /* @__PURE__ */ r(
|
20
|
+
A.displayName = "AlertDialog";
|
21
|
+
const h = i.forwardRef((e, l) => /* @__PURE__ */ r(o.Trigger, { ref: l, ...e }));
|
22
22
|
h.displayName = "AlertDialogTrigger";
|
23
|
-
const
|
23
|
+
const u = o.Portal, d = i.forwardRef((e, l) => /* @__PURE__ */ r(o.Close, { ref: l, ...e }));
|
24
24
|
d.displayName = "AlertDialogClose";
|
25
|
-
const
|
26
|
-
t.Overlay,
|
27
|
-
{
|
28
|
-
ref: a,
|
29
|
-
className: s("fixed inset-0 z-50 bg-gray-900/40", e),
|
30
|
-
...l
|
31
|
-
}
|
32
|
-
));
|
33
|
-
c.displayName = "AlertDialogOverlay";
|
34
|
-
const u = i.forwardRef(({ className: e, children: l, ...a }, o) => /* @__PURE__ */ n(N, { children: [
|
35
|
-
/* @__PURE__ */ r(c, {}),
|
25
|
+
const y = i.forwardRef(({ className: e, children: l, ...t }, a) => /* @__PURE__ */ n(u, { children: [
|
36
26
|
/* @__PURE__ */ r(
|
37
|
-
|
27
|
+
o.Overlay,
|
38
28
|
{
|
39
|
-
ref:
|
29
|
+
ref: a,
|
30
|
+
className: s("fixed inset-0 z-50 bg-gray-900/40", e),
|
31
|
+
...t
|
32
|
+
}
|
33
|
+
),
|
34
|
+
/* @__PURE__ */ r(
|
35
|
+
o.Content,
|
36
|
+
{
|
37
|
+
ref: a,
|
40
38
|
className: s("fixed inset-x-0 bottom-0 z-50 mt-24 h-auto", e),
|
41
|
-
...
|
39
|
+
...t,
|
42
40
|
children: /* @__PURE__ */ r("div", { className: "flex flex-col rounded-[1.75rem] bg-gray-0 m-3 p-8", children: l })
|
43
41
|
}
|
44
42
|
)
|
45
43
|
] }));
|
46
|
-
|
47
|
-
const
|
48
|
-
const { dismissible:
|
44
|
+
y.displayName = "AlertDialogContent";
|
45
|
+
const N = ({ icon: e, children: l, ...t }) => {
|
46
|
+
const { dismissible: a } = D();
|
49
47
|
return /* @__PURE__ */ n(
|
50
48
|
"div",
|
51
49
|
{
|
@@ -53,42 +51,41 @@ const x = ({ icon: e, children: l, ...a }) => {
|
|
53
51
|
"flex justify-between gap-4 mb-4 w-full",
|
54
52
|
e ? "items-start" : "items-center"
|
55
53
|
),
|
56
|
-
...
|
54
|
+
...t,
|
57
55
|
children: [
|
58
56
|
/* @__PURE__ */ n("div", { className: "flex flex-col gap-6", children: [
|
59
57
|
e,
|
60
58
|
l
|
61
59
|
] }),
|
62
|
-
|
60
|
+
a && /* @__PURE__ */ r("div", { className: "shrink-0", children: /* @__PURE__ */ r(d, { asChild: !0, children: /* @__PURE__ */ r(g, { variant: "tertiary", size: "icon", children: /* @__PURE__ */ r(f, {}) }) }) })
|
63
61
|
]
|
64
62
|
}
|
65
63
|
);
|
66
64
|
};
|
67
|
-
|
68
|
-
const
|
69
|
-
|
70
|
-
const
|
71
|
-
|
72
|
-
const
|
73
|
-
|
65
|
+
N.displayName = "AlertDialogHeader";
|
66
|
+
const x = (e) => /* @__PURE__ */ r(c, { ...e });
|
67
|
+
x.displayName = "AlertDialogFooter";
|
68
|
+
const v = i.forwardRef(({ className: e, children: l, ...t }, a) => /* @__PURE__ */ r(o.Title, { ref: a, ...t, asChild: !0, children: /* @__PURE__ */ r(m, { variant: "heading", level: 2, children: l }) }));
|
69
|
+
v.displayName = "AlertDialogTitle";
|
70
|
+
const C = i.forwardRef(({ className: e, children: l, ...t }, a) => /* @__PURE__ */ r(
|
71
|
+
o.Description,
|
74
72
|
{
|
75
|
-
ref:
|
73
|
+
ref: a,
|
76
74
|
className: s("text-gray-500 mb-8", e),
|
77
|
-
...
|
75
|
+
...t,
|
78
76
|
asChild: !0,
|
79
77
|
children: /* @__PURE__ */ r(m, { children: l })
|
80
78
|
}
|
81
79
|
));
|
82
|
-
|
80
|
+
C.displayName = "AlertDialogDescription";
|
83
81
|
export {
|
84
|
-
|
82
|
+
A as AlertDialog,
|
85
83
|
d as AlertDialogClose,
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
C as AlertDialogTitle,
|
84
|
+
y as AlertDialogContent,
|
85
|
+
C as AlertDialogDescription,
|
86
|
+
x as AlertDialogFooter,
|
87
|
+
N as AlertDialogHeader,
|
88
|
+
u as AlertDialogPortal,
|
89
|
+
v as AlertDialogTitle,
|
93
90
|
h as AlertDialogTrigger
|
94
91
|
};
|
@@ -1,13 +1,12 @@
|
|
1
|
-
import { AlertDialog as
|
1
|
+
import { AlertDialog as o, AlertDialogClose as r, AlertDialogContent as t, AlertDialogDescription as i, AlertDialogFooter as a, AlertDialogHeader as g, AlertDialogPortal as D, AlertDialogTitle as A, AlertDialogTrigger as n } from "./AlertDialog.js";
|
2
2
|
export {
|
3
|
-
|
4
|
-
|
3
|
+
o as AlertDialog,
|
4
|
+
r as AlertDialogClose,
|
5
5
|
t as AlertDialogContent,
|
6
6
|
i as AlertDialogDescription,
|
7
7
|
a as AlertDialogFooter,
|
8
8
|
g as AlertDialogHeader,
|
9
|
-
D as
|
10
|
-
A as
|
11
|
-
n as
|
12
|
-
p as AlertDialogTrigger
|
9
|
+
D as AlertDialogPortal,
|
10
|
+
A as AlertDialogTitle,
|
11
|
+
n as AlertDialogTrigger
|
13
12
|
};
|
@@ -6,7 +6,7 @@ declare const buttonVariants: (props?: ({
|
|
6
6
|
stateful?: boolean | null | undefined;
|
7
7
|
fullWidth?: boolean | null | undefined;
|
8
8
|
} & import('class-variance-authority/types').ClassProp) | undefined) => string;
|
9
|
-
export interface ButtonProps extends
|
9
|
+
export interface ButtonProps extends ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
|
10
10
|
/**
|
11
11
|
* The variant style to use
|
12
12
|
* @default "primary"
|
@@ -1,14 +1,14 @@
|
|
1
1
|
"use client";
|
2
|
-
import { jsxs as g, jsx as
|
3
|
-
import { cn as
|
4
|
-
import { Slot as
|
5
|
-
import { cva as
|
2
|
+
import { jsxs as g, jsx as r } from "react/jsx-runtime";
|
3
|
+
import { cn as m } from "../../lib/utils.js";
|
4
|
+
import { Slot as b } from "../../node_modules/.pnpm/@radix-ui_react-slot@1.1.1_@types_react@18.3.18_react@18.3.1/node_modules/@radix-ui/react-slot/dist/index.js";
|
5
|
+
import { cva as d } from "../../node_modules/.pnpm/class-variance-authority@0.7.1/node_modules/class-variance-authority/dist/index.js";
|
6
6
|
import { forwardRef as p } from "react";
|
7
7
|
import { Fail as f } from "../Icons/Fail.js";
|
8
8
|
import { Success as c } from "../Icons/Success.js";
|
9
9
|
import { Spinner as y } from "../Spinner/Spinner.js";
|
10
10
|
import { typographyVariants as u } from "../Typography/Typography.js";
|
11
|
-
const v =
|
11
|
+
const v = d(
|
12
12
|
"flex items-center justify-center rounded-full gap-2 font-sans leading-[1.2] tracking-normal transition-colors",
|
13
13
|
{
|
14
14
|
variants: {
|
@@ -38,28 +38,29 @@ const v = m(
|
|
38
38
|
}
|
39
39
|
}
|
40
40
|
), x = p(
|
41
|
-
({ variant:
|
42
|
-
|
41
|
+
({ variant: s = "primary", size: t = "lg", fullWidth: i, asChild: n, state: a, children: l, ...e }, o) => /* @__PURE__ */ g(
|
42
|
+
n ? b : "button",
|
43
43
|
{
|
44
|
-
ref:
|
45
|
-
|
44
|
+
ref: o,
|
45
|
+
...e,
|
46
|
+
className: m(
|
46
47
|
v({
|
47
|
-
variant:
|
48
|
+
variant: s,
|
48
49
|
size: t,
|
49
|
-
stateful: !!
|
50
|
-
fullWidth:
|
50
|
+
stateful: !!a,
|
51
|
+
fullWidth: i
|
51
52
|
}),
|
52
53
|
u({
|
53
54
|
variant: "label",
|
54
55
|
level: t === "lg" ? 1 : 2
|
55
|
-
})
|
56
|
+
}),
|
57
|
+
e.className
|
56
58
|
),
|
57
|
-
...o,
|
58
59
|
children: [
|
59
|
-
!
|
60
|
-
|
61
|
-
|
62
|
-
|
60
|
+
!a && l,
|
61
|
+
a === "pending" && /* @__PURE__ */ r(y, { className: "absolute size-6" }),
|
62
|
+
a === "success" && /* @__PURE__ */ r(c, { className: "absolute size-6" }),
|
63
|
+
a === "failed" && /* @__PURE__ */ r(f, { className: "absolute size-6" })
|
63
64
|
]
|
64
65
|
}
|
65
66
|
)
|
@@ -1,50 +1,50 @@
|
|
1
1
|
"use client";
|
2
|
-
import { jsx as
|
2
|
+
import { jsx as a, jsxs as l } from "react/jsx-runtime";
|
3
3
|
import { Slot as s } from "../../node_modules/.pnpm/@radix-ui_react-slot@1.1.1_@types_react@18.3.18_react@18.3.1/node_modules/@radix-ui/react-slot/dist/index.js";
|
4
|
-
import { Root as
|
4
|
+
import { Root as p, Item as c } from "../../node_modules/.pnpm/@radix-ui_react-toggle-group@1.1.2_@types_react-dom@18.3.5_@types_react@18.3.18__@types_react_3smwloudr6a3igss4kifyxcwju/node_modules/@radix-ui/react-toggle-group/dist/index.js";
|
5
5
|
import * as n from "react";
|
6
6
|
import { cn as o } from "../../lib/utils.js";
|
7
|
-
import { Typography as
|
8
|
-
const
|
9
|
-
({ children: r, ...
|
10
|
-
|
7
|
+
import { Typography as f } from "../Typography/Typography.js";
|
8
|
+
const d = n.forwardRef(
|
9
|
+
({ children: r, ...t }, e) => /* @__PURE__ */ a(
|
10
|
+
p,
|
11
11
|
{
|
12
12
|
ref: e,
|
13
13
|
type: "single",
|
14
14
|
className: "flex w-full justify-between px-5 items-center",
|
15
|
-
...
|
16
|
-
children:
|
15
|
+
...t,
|
16
|
+
children: r
|
17
17
|
}
|
18
18
|
)
|
19
19
|
);
|
20
|
-
|
20
|
+
d.displayName = "Tabs";
|
21
21
|
const x = n.forwardRef(
|
22
|
-
({ icon: r, label:
|
23
|
-
|
22
|
+
({ icon: r, label: t, activeIcon: e, ...i }, m) => /* @__PURE__ */ l(
|
23
|
+
c,
|
24
24
|
{
|
25
|
-
ref:
|
25
|
+
ref: m,
|
26
26
|
className: o(
|
27
27
|
"flex-1 flex flex-col items-center gap-1 relative min-w-0 group",
|
28
28
|
"focus:outline-none transition-colors duration-200",
|
29
29
|
"text-gray-350 hover:text-gray-500 data-[state=on]:text-gray-900"
|
30
30
|
),
|
31
|
-
...
|
31
|
+
...i,
|
32
32
|
children: [
|
33
|
-
/* @__PURE__ */
|
33
|
+
/* @__PURE__ */ a(
|
34
34
|
s,
|
35
35
|
{
|
36
36
|
className: o("h-[1.625rem] shrink-0", e && "group-data-[state=on]:hidden"),
|
37
37
|
children: r
|
38
38
|
}
|
39
39
|
),
|
40
|
-
e && /* @__PURE__ */
|
41
|
-
|
42
|
-
|
40
|
+
e && /* @__PURE__ */ a(s, { className: "h-[1.625rem] shrink-0 hidden group-data-[state=on]:block", children: e }),
|
41
|
+
t && /* @__PURE__ */ a(
|
42
|
+
f,
|
43
43
|
{
|
44
44
|
as: "span",
|
45
45
|
variant: "subtitle",
|
46
46
|
className: "text-2xs truncate w-full text-center px-1 leading-none",
|
47
|
-
children:
|
47
|
+
children: t
|
48
48
|
}
|
49
49
|
)
|
50
50
|
]
|
@@ -54,5 +54,5 @@ const x = n.forwardRef(
|
|
54
54
|
x.displayName = "TabItem";
|
55
55
|
export {
|
56
56
|
x as TabItem,
|
57
|
-
|
57
|
+
d as Tabs
|
58
58
|
};
|
package/dist/index.d.ts
CHANGED
@@ -32,4 +32,5 @@ export * from './components/Marble';
|
|
32
32
|
export * from './components/TopBar';
|
33
33
|
export * from './components/CountryDrawer';
|
34
34
|
export * from './components/ToggleGroup';
|
35
|
+
export * from './components/Tabs';
|
35
36
|
export { default as uiKitTailwindPlugin } from './tailwind';
|
package/dist/index.js
CHANGED
@@ -1,103 +1,105 @@
|
|
1
|
-
import { Button as
|
2
|
-
import { Checkbox as
|
1
|
+
import { Button as m } from "./components/Button/Button.js";
|
2
|
+
import { Checkbox as i } from "./components/Checkbox/Checkbox.js";
|
3
3
|
import { Chip as f } from "./components/Chip/Chip.js";
|
4
|
-
import { ColorPickerGroup as
|
4
|
+
import { ColorPickerGroup as s, ColorPickerItem as g } from "./components/ColorPicker/ColorPicker.js";
|
5
5
|
import { Flag as d } from "./components/Flag/Flag.js";
|
6
|
-
import { LazyFlag as
|
6
|
+
import { LazyFlag as T } from "./components/Flag/LazyFlag.js";
|
7
7
|
import { isSupportedCountryCode as C } from "./components/Flag/utils.js";
|
8
8
|
import * as r from "./components/Form/Form.js";
|
9
|
-
import { Input as
|
9
|
+
import { Input as w, iconVariants as A, inputVariants as F } from "./components/Input/Input.js";
|
10
10
|
import { ListItem as y } from "./components/ListItem/ListItem.js";
|
11
|
-
import { NumberPad as
|
12
|
-
import { OTPField as
|
13
|
-
import { Pill as
|
14
|
-
import { RadioGroup as
|
11
|
+
import { NumberPad as I } from "./components/NumberPad/NumberPad.js";
|
12
|
+
import { OTPField as b } from "./components/OTPField/OTPField.js";
|
13
|
+
import { Pill as S } from "./components/Pill/Pill.js";
|
14
|
+
import { RadioGroup as k } from "./components/RadioGroup/RadioGroup.js";
|
15
15
|
import { RadioGroupItem as R } from "./components/RadioGroup/RadioGroupItem.js";
|
16
|
-
import { Select as
|
17
|
-
import { SearchField as
|
18
|
-
import { PhoneField as
|
19
|
-
import { getValidatedCountryCode as
|
16
|
+
import { Select as _ } from "./components/Select/Select.js";
|
17
|
+
import { SearchField as z } from "./components/SearchField/SearchField.js";
|
18
|
+
import { PhoneField as M } from "./components/PhoneField/PhoneField.js";
|
19
|
+
import { getValidatedCountryCode as O } from "./components/PhoneField/utils.js";
|
20
20
|
import { Spinner as j } from "./components/Spinner/Spinner.js";
|
21
21
|
import { Switch as E } from "./components/Switch/Switch.js";
|
22
22
|
import { Token as Q } from "./components/Token/Token.js";
|
23
23
|
import { Toast as X, ToastProvider as Y, ToastViewport as Z } from "./components/Toast/Toast.js";
|
24
24
|
import { Toaster as rr } from "./components/Toast/Toaster.js";
|
25
25
|
import { reducer as er, toast as tr, useToast as pr } from "./components/Toast/use-toast.js";
|
26
|
-
import { Typography as
|
27
|
-
import { Drawer as fr, DrawerClose as xr, DrawerContent as
|
28
|
-
import { Progress as
|
26
|
+
import { Typography as ar, typographyVariants as ir } from "./components/Typography/Typography.js";
|
27
|
+
import { Drawer as fr, DrawerClose as xr, DrawerContent as sr, DrawerHeader as gr, DrawerTitle as nr, DrawerTrigger as dr } from "./components/Drawer/Drawer.js";
|
28
|
+
import { Progress as Tr } from "./components/Progress/Progress.js";
|
29
29
|
import "./components/TextArea/TextArea.js";
|
30
30
|
import { WalletAddressField as Cr } from "./components/WalletAddressField/WalletAddressField.js";
|
31
|
-
import { AlertDialog as
|
32
|
-
import { BottomBar as
|
33
|
-
import { BulletList as
|
34
|
-
import { BulletListItem as
|
31
|
+
import { AlertDialog as wr, AlertDialogClose as Ar, AlertDialogContent as Fr, AlertDialogDescription as Pr, AlertDialogFooter as yr, AlertDialogHeader as hr, AlertDialogPortal as Ir, AlertDialogTitle as Br, AlertDialogTrigger as br } from "./components/AlertDialog/AlertDialog.js";
|
32
|
+
import { BottomBar as Sr } from "./components/BottomBar/BottomBar.js";
|
33
|
+
import { BulletList as kr } from "./components/BulletList/BulletList.js";
|
34
|
+
import { BulletListItem as Rr } from "./components/BulletListItem/BulletListItem.js";
|
35
35
|
import "./components/BulletPoint/BulletPoint.js";
|
36
|
-
import { Marble as
|
36
|
+
import { Marble as _r } from "./components/Marble/Marble.js";
|
37
37
|
import { TopBar as zr } from "./components/TopBar/TopBar.js";
|
38
38
|
import { CountryDrawer as Mr } from "./components/CountryDrawer/CountryDrawer.js";
|
39
|
-
import { ToggleGroupItem as
|
40
|
-
import {
|
39
|
+
import { ToggleGroupItem as Or, ToggleGroupRoot as Wr } from "./components/ToggleGroup/ToggleGroup.js";
|
40
|
+
import { TabItem as qr, Tabs as Er } from "./components/Tabs/Tabs.js";
|
41
|
+
import { default as Qr } from "./tailwind/index.js";
|
41
42
|
export {
|
42
|
-
|
43
|
-
|
43
|
+
wr as AlertDialog,
|
44
|
+
Ar as AlertDialogClose,
|
44
45
|
Fr as AlertDialogContent,
|
45
46
|
Pr as AlertDialogDescription,
|
46
47
|
yr as AlertDialogFooter,
|
47
48
|
hr as AlertDialogHeader,
|
48
|
-
Br as AlertDialogOverlay,
|
49
49
|
Ir as AlertDialogPortal,
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
50
|
+
Br as AlertDialogTitle,
|
51
|
+
br as AlertDialogTrigger,
|
52
|
+
Sr as BottomBar,
|
53
|
+
kr as BulletList,
|
54
|
+
Rr as BulletListItem,
|
55
|
+
m as Button,
|
56
|
+
i as Checkbox,
|
57
57
|
f as Chip,
|
58
|
-
|
59
|
-
|
58
|
+
s as ColorPickerGroup,
|
59
|
+
g as ColorPickerItem,
|
60
60
|
Mr as CountryDrawer,
|
61
61
|
fr as Drawer,
|
62
62
|
xr as DrawerClose,
|
63
|
-
|
64
|
-
|
63
|
+
sr as DrawerContent,
|
64
|
+
gr as DrawerHeader,
|
65
65
|
nr as DrawerTitle,
|
66
66
|
dr as DrawerTrigger,
|
67
67
|
d as Flag,
|
68
68
|
r as Form,
|
69
|
-
|
70
|
-
|
69
|
+
w as Input,
|
70
|
+
T as LazyFlag,
|
71
71
|
y as ListItem,
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
72
|
+
_r as Marble,
|
73
|
+
I as NumberPad,
|
74
|
+
b as OTPField,
|
75
|
+
M as PhoneField,
|
76
|
+
S as Pill,
|
77
|
+
Tr as Progress,
|
78
|
+
k as RadioGroup,
|
79
79
|
R as RadioGroupItem,
|
80
|
-
|
81
|
-
|
80
|
+
z as SearchField,
|
81
|
+
_ as Select,
|
82
82
|
j as Spinner,
|
83
83
|
E as Switch,
|
84
|
+
qr as TabItem,
|
85
|
+
Er as Tabs,
|
84
86
|
X as Toast,
|
85
87
|
Y as ToastProvider,
|
86
88
|
Z as ToastViewport,
|
87
89
|
rr as Toaster,
|
88
|
-
|
89
|
-
|
90
|
+
Or as ToggleGroupItem,
|
91
|
+
Wr as ToggleGroupRoot,
|
90
92
|
Q as Token,
|
91
93
|
zr as TopBar,
|
92
|
-
|
94
|
+
ar as Typography,
|
93
95
|
Cr as WalletAddressField,
|
94
|
-
|
95
|
-
|
96
|
+
O as getValidatedCountryCode,
|
97
|
+
A as iconVariants,
|
96
98
|
F as inputVariants,
|
97
99
|
C as isSupportedCountryCode,
|
98
100
|
er as reducer,
|
99
101
|
tr as toast,
|
100
|
-
|
101
|
-
|
102
|
+
ir as typographyVariants,
|
103
|
+
Qr as uiKitTailwindPlugin,
|
102
104
|
pr as useToast
|
103
105
|
};
|