@matchain/matchid-sdk-react 0.1.56-alpha.2 → 0.1.56-alpha.4
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/api.js +57 -48
- package/dist/api.js.map +1 -1
- package/dist/api.mjs +3 -3
- package/dist/{chunk-NIGHV7RT.mjs → chunk-2HVTQUPR.mjs} +358 -343
- package/dist/chunk-2HVTQUPR.mjs.map +1 -0
- package/dist/{chunk-SPVA3A6Z.mjs → chunk-NGNJ44SH.mjs} +2 -2
- package/dist/{chunk-FKXS2XRG.mjs → chunk-OSY7MTZY.mjs} +34 -1
- package/dist/chunk-OSY7MTZY.mjs.map +1 -0
- package/dist/components.js +369 -360
- package/dist/components.js.map +1 -1
- package/dist/components.mjs +2 -2
- package/dist/hooks.js +187 -178
- package/dist/hooks.js.map +1 -1
- package/dist/hooks.mjs +2 -2
- package/dist/icon.d.mts +1 -1
- package/dist/icon.d.ts +1 -1
- package/dist/icon.js +33 -0
- package/dist/icon.js.map +1 -1
- package/dist/icon.mjs +5 -1
- package/dist/{index-C82WIWvx.d.ts → index-AtpUyTIk.d.ts} +9 -2
- package/dist/{index-D7E317WV.d.mts → index-CRLiCVf9.d.mts} +9 -2
- package/dist/{index-DK7l3lsH.d.ts → index-nwqg5fYH.d.ts} +8 -2
- package/dist/{index-YPRyEYt6.d.mts → index-zmJl2a0q.d.mts} +8 -2
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +456 -413
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -3
- package/dist/ui.d.mts +1 -1
- package/dist/ui.d.ts +1 -1
- package/dist/ui.js +145 -105
- package/dist/ui.js.map +1 -1
- package/dist/ui.mjs +4 -2
- package/example/src/pages/UI/components/Checkbox.tsx +10 -0
- package/example/src/pages/UI/components/Modal.tsx +38 -0
- package/example/src/pages/UI/index.tsx +4 -0
- package/package.json +1 -1
- package/dist/chunk-FKXS2XRG.mjs.map +0 -1
- package/dist/chunk-NIGHV7RT.mjs.map +0 -1
- /package/dist/{chunk-SPVA3A6Z.mjs.map → chunk-NGNJ44SH.mjs.map} +0 -0
package/dist/icon.mjs
CHANGED
|
@@ -9,6 +9,8 @@ import {
|
|
|
9
9
|
BitgetIcon,
|
|
10
10
|
CheckIcon,
|
|
11
11
|
CheckRoundIcon,
|
|
12
|
+
CheckboxCheckedIcon,
|
|
13
|
+
CheckboxIcon,
|
|
12
14
|
CloseEyeIcon,
|
|
13
15
|
CloseIcon,
|
|
14
16
|
CloseRoundIcon,
|
|
@@ -49,7 +51,7 @@ import {
|
|
|
49
51
|
XIcon,
|
|
50
52
|
XverseIcon,
|
|
51
53
|
YoutubeIcon
|
|
52
|
-
} from "./chunk-
|
|
54
|
+
} from "./chunk-OSY7MTZY.mjs";
|
|
53
55
|
import "./chunk-J5LGTIGS.mjs";
|
|
54
56
|
export {
|
|
55
57
|
ArrowDownIcon,
|
|
@@ -62,6 +64,8 @@ export {
|
|
|
62
64
|
BitgetIcon,
|
|
63
65
|
CheckIcon,
|
|
64
66
|
CheckRoundIcon,
|
|
67
|
+
CheckboxCheckedIcon,
|
|
68
|
+
CheckboxIcon,
|
|
65
69
|
CloseEyeIcon,
|
|
66
70
|
CloseIcon,
|
|
67
71
|
CloseRoundIcon,
|
|
@@ -63,6 +63,7 @@ type IconProps = {
|
|
|
63
63
|
width?: string|number,
|
|
64
64
|
className?: string
|
|
65
65
|
size?: number
|
|
66
|
+
onClick?: ()=>void
|
|
66
67
|
}
|
|
67
68
|
|
|
68
69
|
type IconSizeColorProps = Omit<IconProps, 'height' |'width'>
|
|
@@ -147,6 +148,10 @@ declare function PhantomIcon({ size, ...props }: IconSizeProps): react_jsx_runti
|
|
|
147
148
|
|
|
148
149
|
declare function MoreIcon({ width, height, color, ...props }: IconHWColorProps): react_jsx_runtime.JSX.Element;
|
|
149
150
|
|
|
151
|
+
declare function CheckboxIcon({ size, color, ...props }: IconSizeColorProps): react_jsx_runtime.JSX.Element;
|
|
152
|
+
|
|
153
|
+
declare function CheckboxCheckedIcon({ size, color, ...props }: IconSizeColorProps): react_jsx_runtime.JSX.Element;
|
|
154
|
+
|
|
150
155
|
declare const index_ArrowDownIcon: typeof ArrowDownIcon;
|
|
151
156
|
declare const index_ArrowLeftIcon: typeof ArrowLeftIcon;
|
|
152
157
|
declare const index_ArrowRightIcon: typeof ArrowRightIcon;
|
|
@@ -157,6 +162,8 @@ declare const index_BackIcon: typeof BackIcon;
|
|
|
157
162
|
declare const index_BitgetIcon: typeof BitgetIcon;
|
|
158
163
|
declare const index_CheckIcon: typeof CheckIcon;
|
|
159
164
|
declare const index_CheckRoundIcon: typeof CheckRoundIcon;
|
|
165
|
+
declare const index_CheckboxCheckedIcon: typeof CheckboxCheckedIcon;
|
|
166
|
+
declare const index_CheckboxIcon: typeof CheckboxIcon;
|
|
160
167
|
declare const index_CloseEyeIcon: typeof CloseEyeIcon;
|
|
161
168
|
declare const index_CloseIcon: typeof CloseIcon;
|
|
162
169
|
declare const index_CloseRoundIcon: typeof CloseRoundIcon;
|
|
@@ -197,7 +204,7 @@ declare const index_XIcon: typeof XIcon;
|
|
|
197
204
|
declare const index_XverseIcon: typeof XverseIcon;
|
|
198
205
|
declare const index_YoutubeIcon: typeof YoutubeIcon;
|
|
199
206
|
declare namespace index {
|
|
200
|
-
export { index_ArrowDownIcon as ArrowDownIcon, index_ArrowLeftIcon as ArrowLeftIcon, index_ArrowRightIcon as ArrowRightIcon, index_ArrowSendIcon as ArrowSendIcon, index_BTCDarkIcon as BTCDarkIcon, index_BTCLightIcon as BTCLightIcon, index_BackIcon as BackIcon, index_BitgetIcon as BitgetIcon, index_CheckIcon as CheckIcon, index_CheckRoundIcon as CheckRoundIcon, index_CloseEyeIcon as CloseEyeIcon, index_CloseIcon as CloseIcon, index_CloseRoundIcon as CloseRoundIcon, index_CopyIcon as CopyIcon, index_DeleteRoundIcon as DeleteRoundIcon, index_DiscordIcon as DiscordIcon, index_EVMDarkIcon as EVMDarkIcon, index_EVMLightIcon as EVMLightIcon, index_EmailIcon as EmailIcon, index_EmailLineIcon as EmailLineIcon, index_ErrorRoundIcon as ErrorRoundIcon, index_FacebookIcon as FacebookIcon, index_GithubIcon as GithubIcon, index_GoogleIcon as GoogleIcon, index_InfoLineIcon as InfoLineIcon, index_InfoRoundIcon as InfoRoundIcon, index_LeatherIcon as LeatherIcon, index_LinkedinIcon as LinkedinIcon, index_LoadingIcon as LoadingIcon, index_LoginIcon as LoginIcon, index_MoreIcon as MoreIcon, index_OKXIcon as OKXIcon, index_OpenEyeIcon as OpenEyeIcon, index_PasswordRoundIcon as PasswordRoundIcon, index_PhantomIcon as PhantomIcon, index_SOLDarkIcon as SOLDarkIcon, index_SOLLightIcon as SOLLightIcon, index_TRXDarkIcon as TRXDarkIcon, index_TRXLightIcon as TRXLightIcon, index_TelegramIcon as TelegramIcon, TonLightIcon$1 as TonDarkIcon, index_TonLightIcon as TonLightIcon, index_TransferIcon as TransferIcon, index_TronLinkIcon as TronLinkIcon, index_UnLoginIcon as UnLoginIcon, index_UnisatIcon as UnisatIcon, index_WalletIcon as WalletIcon, index_XIcon as XIcon, index_XverseIcon as XverseIcon, index_YoutubeIcon as YoutubeIcon };
|
|
207
|
+
export { index_ArrowDownIcon as ArrowDownIcon, index_ArrowLeftIcon as ArrowLeftIcon, index_ArrowRightIcon as ArrowRightIcon, index_ArrowSendIcon as ArrowSendIcon, index_BTCDarkIcon as BTCDarkIcon, index_BTCLightIcon as BTCLightIcon, index_BackIcon as BackIcon, index_BitgetIcon as BitgetIcon, index_CheckIcon as CheckIcon, index_CheckRoundIcon as CheckRoundIcon, index_CheckboxCheckedIcon as CheckboxCheckedIcon, index_CheckboxIcon as CheckboxIcon, index_CloseEyeIcon as CloseEyeIcon, index_CloseIcon as CloseIcon, index_CloseRoundIcon as CloseRoundIcon, index_CopyIcon as CopyIcon, index_DeleteRoundIcon as DeleteRoundIcon, index_DiscordIcon as DiscordIcon, index_EVMDarkIcon as EVMDarkIcon, index_EVMLightIcon as EVMLightIcon, index_EmailIcon as EmailIcon, index_EmailLineIcon as EmailLineIcon, index_ErrorRoundIcon as ErrorRoundIcon, index_FacebookIcon as FacebookIcon, index_GithubIcon as GithubIcon, index_GoogleIcon as GoogleIcon, index_InfoLineIcon as InfoLineIcon, index_InfoRoundIcon as InfoRoundIcon, index_LeatherIcon as LeatherIcon, index_LinkedinIcon as LinkedinIcon, index_LoadingIcon as LoadingIcon, index_LoginIcon as LoginIcon, index_MoreIcon as MoreIcon, index_OKXIcon as OKXIcon, index_OpenEyeIcon as OpenEyeIcon, index_PasswordRoundIcon as PasswordRoundIcon, index_PhantomIcon as PhantomIcon, index_SOLDarkIcon as SOLDarkIcon, index_SOLLightIcon as SOLLightIcon, index_TRXDarkIcon as TRXDarkIcon, index_TRXLightIcon as TRXLightIcon, index_TelegramIcon as TelegramIcon, TonLightIcon$1 as TonDarkIcon, index_TonLightIcon as TonLightIcon, index_TransferIcon as TransferIcon, index_TronLinkIcon as TronLinkIcon, index_UnLoginIcon as UnLoginIcon, index_UnisatIcon as UnisatIcon, index_WalletIcon as WalletIcon, index_XIcon as XIcon, index_XverseIcon as XverseIcon, index_YoutubeIcon as YoutubeIcon };
|
|
201
208
|
}
|
|
202
209
|
|
|
203
|
-
export { ArrowRightIcon as A, BackIcon as B, CloseIcon as C, DeleteRoundIcon as D, EmailIcon as E, FacebookIcon as F, GoogleIcon as G, TonLightIcon$1 as H, TonLightIcon as I, ErrorRoundIcon as J, InfoLineIcon as K, LoadingIcon as L, InfoRoundIcon as M, TransferIcon as N, OpenEyeIcon as O, PasswordRoundIcon as P, ArrowSendIcon as Q, PhantomIcon as R, SOLDarkIcon as S, TelegramIcon as T, UnLoginIcon as U, MoreIcon as V, WalletIcon as W, XIcon as X, YoutubeIcon as Y, CloseRoundIcon as a, EmailLineIcon as b, LoginIcon as c, CheckRoundIcon as d, CloseEyeIcon as e, ArrowLeftIcon as f, GithubIcon as g, DiscordIcon as h, index as i, CheckIcon as j, CopyIcon as k, LinkedinIcon as l, BTCDarkIcon as m, BTCLightIcon as n, EVMDarkIcon as o, EVMLightIcon as p, SOLLightIcon as q, TRXDarkIcon as r, TRXLightIcon as s, ArrowDownIcon as t, LeatherIcon as u, UnisatIcon as v, XverseIcon as w, TronLinkIcon as x, OKXIcon as y, BitgetIcon as z };
|
|
210
|
+
export { ArrowRightIcon as A, BackIcon as B, CloseIcon as C, DeleteRoundIcon as D, EmailIcon as E, FacebookIcon as F, GoogleIcon as G, TonLightIcon$1 as H, TonLightIcon as I, ErrorRoundIcon as J, InfoLineIcon as K, LoadingIcon as L, InfoRoundIcon as M, TransferIcon as N, OpenEyeIcon as O, PasswordRoundIcon as P, ArrowSendIcon as Q, PhantomIcon as R, SOLDarkIcon as S, TelegramIcon as T, UnLoginIcon as U, MoreIcon as V, WalletIcon as W, XIcon as X, YoutubeIcon as Y, CheckboxIcon as Z, CheckboxCheckedIcon as _, CloseRoundIcon as a, EmailLineIcon as b, LoginIcon as c, CheckRoundIcon as d, CloseEyeIcon as e, ArrowLeftIcon as f, GithubIcon as g, DiscordIcon as h, index as i, CheckIcon as j, CopyIcon as k, LinkedinIcon as l, BTCDarkIcon as m, BTCLightIcon as n, EVMDarkIcon as o, EVMLightIcon as p, SOLLightIcon as q, TRXDarkIcon as r, TRXLightIcon as s, ArrowDownIcon as t, LeatherIcon as u, UnisatIcon as v, XverseIcon as w, TronLinkIcon as x, OKXIcon as y, BitgetIcon as z };
|
|
@@ -63,6 +63,7 @@ type IconProps = {
|
|
|
63
63
|
width?: string|number,
|
|
64
64
|
className?: string
|
|
65
65
|
size?: number
|
|
66
|
+
onClick?: ()=>void
|
|
66
67
|
}
|
|
67
68
|
|
|
68
69
|
type IconSizeColorProps = Omit<IconProps, 'height' |'width'>
|
|
@@ -147,6 +148,10 @@ declare function PhantomIcon({ size, ...props }: IconSizeProps): react_jsx_runti
|
|
|
147
148
|
|
|
148
149
|
declare function MoreIcon({ width, height, color, ...props }: IconHWColorProps): react_jsx_runtime.JSX.Element;
|
|
149
150
|
|
|
151
|
+
declare function CheckboxIcon({ size, color, ...props }: IconSizeColorProps): react_jsx_runtime.JSX.Element;
|
|
152
|
+
|
|
153
|
+
declare function CheckboxCheckedIcon({ size, color, ...props }: IconSizeColorProps): react_jsx_runtime.JSX.Element;
|
|
154
|
+
|
|
150
155
|
declare const index_ArrowDownIcon: typeof ArrowDownIcon;
|
|
151
156
|
declare const index_ArrowLeftIcon: typeof ArrowLeftIcon;
|
|
152
157
|
declare const index_ArrowRightIcon: typeof ArrowRightIcon;
|
|
@@ -157,6 +162,8 @@ declare const index_BackIcon: typeof BackIcon;
|
|
|
157
162
|
declare const index_BitgetIcon: typeof BitgetIcon;
|
|
158
163
|
declare const index_CheckIcon: typeof CheckIcon;
|
|
159
164
|
declare const index_CheckRoundIcon: typeof CheckRoundIcon;
|
|
165
|
+
declare const index_CheckboxCheckedIcon: typeof CheckboxCheckedIcon;
|
|
166
|
+
declare const index_CheckboxIcon: typeof CheckboxIcon;
|
|
160
167
|
declare const index_CloseEyeIcon: typeof CloseEyeIcon;
|
|
161
168
|
declare const index_CloseIcon: typeof CloseIcon;
|
|
162
169
|
declare const index_CloseRoundIcon: typeof CloseRoundIcon;
|
|
@@ -197,7 +204,7 @@ declare const index_XIcon: typeof XIcon;
|
|
|
197
204
|
declare const index_XverseIcon: typeof XverseIcon;
|
|
198
205
|
declare const index_YoutubeIcon: typeof YoutubeIcon;
|
|
199
206
|
declare namespace index {
|
|
200
|
-
export { index_ArrowDownIcon as ArrowDownIcon, index_ArrowLeftIcon as ArrowLeftIcon, index_ArrowRightIcon as ArrowRightIcon, index_ArrowSendIcon as ArrowSendIcon, index_BTCDarkIcon as BTCDarkIcon, index_BTCLightIcon as BTCLightIcon, index_BackIcon as BackIcon, index_BitgetIcon as BitgetIcon, index_CheckIcon as CheckIcon, index_CheckRoundIcon as CheckRoundIcon, index_CloseEyeIcon as CloseEyeIcon, index_CloseIcon as CloseIcon, index_CloseRoundIcon as CloseRoundIcon, index_CopyIcon as CopyIcon, index_DeleteRoundIcon as DeleteRoundIcon, index_DiscordIcon as DiscordIcon, index_EVMDarkIcon as EVMDarkIcon, index_EVMLightIcon as EVMLightIcon, index_EmailIcon as EmailIcon, index_EmailLineIcon as EmailLineIcon, index_ErrorRoundIcon as ErrorRoundIcon, index_FacebookIcon as FacebookIcon, index_GithubIcon as GithubIcon, index_GoogleIcon as GoogleIcon, index_InfoLineIcon as InfoLineIcon, index_InfoRoundIcon as InfoRoundIcon, index_LeatherIcon as LeatherIcon, index_LinkedinIcon as LinkedinIcon, index_LoadingIcon as LoadingIcon, index_LoginIcon as LoginIcon, index_MoreIcon as MoreIcon, index_OKXIcon as OKXIcon, index_OpenEyeIcon as OpenEyeIcon, index_PasswordRoundIcon as PasswordRoundIcon, index_PhantomIcon as PhantomIcon, index_SOLDarkIcon as SOLDarkIcon, index_SOLLightIcon as SOLLightIcon, index_TRXDarkIcon as TRXDarkIcon, index_TRXLightIcon as TRXLightIcon, index_TelegramIcon as TelegramIcon, TonLightIcon$1 as TonDarkIcon, index_TonLightIcon as TonLightIcon, index_TransferIcon as TransferIcon, index_TronLinkIcon as TronLinkIcon, index_UnLoginIcon as UnLoginIcon, index_UnisatIcon as UnisatIcon, index_WalletIcon as WalletIcon, index_XIcon as XIcon, index_XverseIcon as XverseIcon, index_YoutubeIcon as YoutubeIcon };
|
|
207
|
+
export { index_ArrowDownIcon as ArrowDownIcon, index_ArrowLeftIcon as ArrowLeftIcon, index_ArrowRightIcon as ArrowRightIcon, index_ArrowSendIcon as ArrowSendIcon, index_BTCDarkIcon as BTCDarkIcon, index_BTCLightIcon as BTCLightIcon, index_BackIcon as BackIcon, index_BitgetIcon as BitgetIcon, index_CheckIcon as CheckIcon, index_CheckRoundIcon as CheckRoundIcon, index_CheckboxCheckedIcon as CheckboxCheckedIcon, index_CheckboxIcon as CheckboxIcon, index_CloseEyeIcon as CloseEyeIcon, index_CloseIcon as CloseIcon, index_CloseRoundIcon as CloseRoundIcon, index_CopyIcon as CopyIcon, index_DeleteRoundIcon as DeleteRoundIcon, index_DiscordIcon as DiscordIcon, index_EVMDarkIcon as EVMDarkIcon, index_EVMLightIcon as EVMLightIcon, index_EmailIcon as EmailIcon, index_EmailLineIcon as EmailLineIcon, index_ErrorRoundIcon as ErrorRoundIcon, index_FacebookIcon as FacebookIcon, index_GithubIcon as GithubIcon, index_GoogleIcon as GoogleIcon, index_InfoLineIcon as InfoLineIcon, index_InfoRoundIcon as InfoRoundIcon, index_LeatherIcon as LeatherIcon, index_LinkedinIcon as LinkedinIcon, index_LoadingIcon as LoadingIcon, index_LoginIcon as LoginIcon, index_MoreIcon as MoreIcon, index_OKXIcon as OKXIcon, index_OpenEyeIcon as OpenEyeIcon, index_PasswordRoundIcon as PasswordRoundIcon, index_PhantomIcon as PhantomIcon, index_SOLDarkIcon as SOLDarkIcon, index_SOLLightIcon as SOLLightIcon, index_TRXDarkIcon as TRXDarkIcon, index_TRXLightIcon as TRXLightIcon, index_TelegramIcon as TelegramIcon, TonLightIcon$1 as TonDarkIcon, index_TonLightIcon as TonLightIcon, index_TransferIcon as TransferIcon, index_TronLinkIcon as TronLinkIcon, index_UnLoginIcon as UnLoginIcon, index_UnisatIcon as UnisatIcon, index_WalletIcon as WalletIcon, index_XIcon as XIcon, index_XverseIcon as XverseIcon, index_YoutubeIcon as YoutubeIcon };
|
|
201
208
|
}
|
|
202
209
|
|
|
203
|
-
export { ArrowRightIcon as A, BackIcon as B, CloseIcon as C, DeleteRoundIcon as D, EmailIcon as E, FacebookIcon as F, GoogleIcon as G, TonLightIcon$1 as H, TonLightIcon as I, ErrorRoundIcon as J, InfoLineIcon as K, LoadingIcon as L, InfoRoundIcon as M, TransferIcon as N, OpenEyeIcon as O, PasswordRoundIcon as P, ArrowSendIcon as Q, PhantomIcon as R, SOLDarkIcon as S, TelegramIcon as T, UnLoginIcon as U, MoreIcon as V, WalletIcon as W, XIcon as X, YoutubeIcon as Y, CloseRoundIcon as a, EmailLineIcon as b, LoginIcon as c, CheckRoundIcon as d, CloseEyeIcon as e, ArrowLeftIcon as f, GithubIcon as g, DiscordIcon as h, index as i, CheckIcon as j, CopyIcon as k, LinkedinIcon as l, BTCDarkIcon as m, BTCLightIcon as n, EVMDarkIcon as o, EVMLightIcon as p, SOLLightIcon as q, TRXDarkIcon as r, TRXLightIcon as s, ArrowDownIcon as t, LeatherIcon as u, UnisatIcon as v, XverseIcon as w, TronLinkIcon as x, OKXIcon as y, BitgetIcon as z };
|
|
210
|
+
export { ArrowRightIcon as A, BackIcon as B, CloseIcon as C, DeleteRoundIcon as D, EmailIcon as E, FacebookIcon as F, GoogleIcon as G, TonLightIcon$1 as H, TonLightIcon as I, ErrorRoundIcon as J, InfoLineIcon as K, LoadingIcon as L, InfoRoundIcon as M, TransferIcon as N, OpenEyeIcon as O, PasswordRoundIcon as P, ArrowSendIcon as Q, PhantomIcon as R, SOLDarkIcon as S, TelegramIcon as T, UnLoginIcon as U, MoreIcon as V, WalletIcon as W, XIcon as X, YoutubeIcon as Y, CheckboxIcon as Z, CheckboxCheckedIcon as _, CloseRoundIcon as a, EmailLineIcon as b, LoginIcon as c, CheckRoundIcon as d, CloseEyeIcon as e, ArrowLeftIcon as f, GithubIcon as g, DiscordIcon as h, index as i, CheckIcon as j, CopyIcon as k, LinkedinIcon as l, BTCDarkIcon as m, BTCLightIcon as n, EVMDarkIcon as o, EVMLightIcon as p, SOLLightIcon as q, TRXDarkIcon as r, TRXLightIcon as s, ArrowDownIcon as t, LeatherIcon as u, UnisatIcon as v, XverseIcon as w, TronLinkIcon as x, OKXIcon as y, BitgetIcon as z };
|
|
@@ -64,8 +64,14 @@ declare const LazyLottie: (props: {
|
|
|
64
64
|
style?: React.CSSProperties;
|
|
65
65
|
}) => React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
66
66
|
|
|
67
|
+
declare function Checkbox({ checked, onChange }: {
|
|
68
|
+
checked?: boolean;
|
|
69
|
+
onChange?: (checked: boolean) => void;
|
|
70
|
+
}): react_jsx_runtime.JSX.Element;
|
|
71
|
+
|
|
67
72
|
declare const index_AlphaAvatar: typeof AlphaAvatar;
|
|
68
73
|
declare const index_Button: typeof Button;
|
|
74
|
+
declare const index_Checkbox: typeof Checkbox;
|
|
69
75
|
declare const index_ConfirmModal: typeof ConfirmModal;
|
|
70
76
|
declare const index_Drawer: typeof Drawer;
|
|
71
77
|
declare const index_Field: typeof Field;
|
|
@@ -80,7 +86,7 @@ declare const index_Skeleton: typeof Skeleton;
|
|
|
80
86
|
declare const index_Switch: typeof Switch;
|
|
81
87
|
declare const index_Tabs: typeof Tabs;
|
|
82
88
|
declare namespace index {
|
|
83
|
-
export { index_AlphaAvatar as AlphaAvatar, index_Button as Button, index_ConfirmModal as ConfirmModal, index_Drawer as Drawer, index_Field as Field, export_default as HashPanel, index_Input as Input, LazyLottie as Lottie, index_Modal as Modal, index_ModalDrawer as ModalDrawer, index_ModalWithHeader as ModalWithHeader, index_Overlay as Overlay, index_Popover as Popover, index_Radio as Radio, index_Skeleton as Skeleton, index_Switch as Switch, index_Tabs as Tabs };
|
|
89
|
+
export { index_AlphaAvatar as AlphaAvatar, index_Button as Button, index_Checkbox as Checkbox, index_ConfirmModal as ConfirmModal, index_Drawer as Drawer, index_Field as Field, export_default as HashPanel, index_Input as Input, LazyLottie as Lottie, index_Modal as Modal, index_ModalDrawer as ModalDrawer, index_ModalWithHeader as ModalWithHeader, index_Overlay as Overlay, index_Popover as Popover, index_Radio as Radio, index_Skeleton as Skeleton, index_Switch as Switch, index_Tabs as Tabs };
|
|
84
90
|
}
|
|
85
91
|
|
|
86
|
-
export { AlphaAvatar as A, Drawer as D, LazyLottie as L, ModalDrawer as M, Radio as R, Switch as S, Tabs as T, Skeleton as a, export_default as e, index as i };
|
|
92
|
+
export { AlphaAvatar as A, Checkbox as C, Drawer as D, LazyLottie as L, ModalDrawer as M, Radio as R, Switch as S, Tabs as T, Skeleton as a, export_default as e, index as i };
|
|
@@ -64,8 +64,14 @@ declare const LazyLottie: (props: {
|
|
|
64
64
|
style?: React.CSSProperties;
|
|
65
65
|
}) => React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
66
66
|
|
|
67
|
+
declare function Checkbox({ checked, onChange }: {
|
|
68
|
+
checked?: boolean;
|
|
69
|
+
onChange?: (checked: boolean) => void;
|
|
70
|
+
}): react_jsx_runtime.JSX.Element;
|
|
71
|
+
|
|
67
72
|
declare const index_AlphaAvatar: typeof AlphaAvatar;
|
|
68
73
|
declare const index_Button: typeof Button;
|
|
74
|
+
declare const index_Checkbox: typeof Checkbox;
|
|
69
75
|
declare const index_ConfirmModal: typeof ConfirmModal;
|
|
70
76
|
declare const index_Drawer: typeof Drawer;
|
|
71
77
|
declare const index_Field: typeof Field;
|
|
@@ -80,7 +86,7 @@ declare const index_Skeleton: typeof Skeleton;
|
|
|
80
86
|
declare const index_Switch: typeof Switch;
|
|
81
87
|
declare const index_Tabs: typeof Tabs;
|
|
82
88
|
declare namespace index {
|
|
83
|
-
export { index_AlphaAvatar as AlphaAvatar, index_Button as Button, index_ConfirmModal as ConfirmModal, index_Drawer as Drawer, index_Field as Field, export_default as HashPanel, index_Input as Input, LazyLottie as Lottie, index_Modal as Modal, index_ModalDrawer as ModalDrawer, index_ModalWithHeader as ModalWithHeader, index_Overlay as Overlay, index_Popover as Popover, index_Radio as Radio, index_Skeleton as Skeleton, index_Switch as Switch, index_Tabs as Tabs };
|
|
89
|
+
export { index_AlphaAvatar as AlphaAvatar, index_Button as Button, index_Checkbox as Checkbox, index_ConfirmModal as ConfirmModal, index_Drawer as Drawer, index_Field as Field, export_default as HashPanel, index_Input as Input, LazyLottie as Lottie, index_Modal as Modal, index_ModalDrawer as ModalDrawer, index_ModalWithHeader as ModalWithHeader, index_Overlay as Overlay, index_Popover as Popover, index_Radio as Radio, index_Skeleton as Skeleton, index_Switch as Switch, index_Tabs as Tabs };
|
|
84
90
|
}
|
|
85
91
|
|
|
86
|
-
export { AlphaAvatar as A, Drawer as D, LazyLottie as L, ModalDrawer as M, Radio as R, Switch as S, Tabs as T, Skeleton as a, export_default as e, index as i };
|
|
92
|
+
export { AlphaAvatar as A, Checkbox as C, Drawer as D, LazyLottie as L, ModalDrawer as M, Radio as R, Switch as S, Tabs as T, Skeleton as a, export_default as e, index as i };
|
package/dist/index.d.mts
CHANGED
|
@@ -7,11 +7,11 @@ import React__default, { ReactNode } from 'react';
|
|
|
7
7
|
import { I as IMatchEvents, L as LocaleType, a as IEnvConfigType, W as WalletConfigType } from './types-DEsY_CPH.mjs';
|
|
8
8
|
export { i as Hooks, M as ModalProvider, T as ToastProvider } from './index-CPTgrfjn.mjs';
|
|
9
9
|
export { i as Components } from './index-BXbfmVoU.mjs';
|
|
10
|
-
export { i as UI } from './index-
|
|
10
|
+
export { i as UI } from './index-zmJl2a0q.mjs';
|
|
11
11
|
export { i as Api } from './index-TjbO7d74.mjs';
|
|
12
12
|
export { i as Chains } from './index-B50DU_xT.mjs';
|
|
13
13
|
export { i as Types } from './index-FKxw4Vaa.mjs';
|
|
14
|
-
export { i as Icon } from './index-
|
|
14
|
+
export { i as Icon } from './index-CRLiCVf9.mjs';
|
|
15
15
|
export { i as Lottie } from './index-CHgaOUiW.mjs';
|
|
16
16
|
import '@tanstack/react-query/src/types';
|
|
17
17
|
import './request-B0CyrGFT.mjs';
|
package/dist/index.d.ts
CHANGED
|
@@ -7,11 +7,11 @@ import React__default, { ReactNode } from 'react';
|
|
|
7
7
|
import { I as IMatchEvents, L as LocaleType, a as IEnvConfigType, W as WalletConfigType } from './types-DEsY_CPH.js';
|
|
8
8
|
export { i as Hooks, M as ModalProvider, T as ToastProvider } from './index-B7ZEyP1j.js';
|
|
9
9
|
export { i as Components } from './index-CsUEaGtM.js';
|
|
10
|
-
export { i as UI } from './index-
|
|
10
|
+
export { i as UI } from './index-nwqg5fYH.js';
|
|
11
11
|
export { i as Api } from './index-CwHXzvvB.js';
|
|
12
12
|
export { i as Chains } from './index-B50DU_xT.js';
|
|
13
13
|
export { i as Types } from './index-4dZbgWG2.js';
|
|
14
|
-
export { i as Icon } from './index-
|
|
14
|
+
export { i as Icon } from './index-AtpUyTIk.js';
|
|
15
15
|
export { i as Lottie } from './index-CHgaOUiW.js';
|
|
16
16
|
import '@tanstack/react-query/src/types';
|
|
17
17
|
import './request-B0CyrGFT.js';
|