@matchain/matchid-sdk-react 0.1.20 → 0.1.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +7 -1
- package/dist/index.d.ts +7 -1
- package/dist/index.js +391 -283
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +413 -305
- package/dist/index.mjs.map +1 -1
- package/example/src/components/Login/index.tsx +1 -1
- package/example/src/pages/User.tsx +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -219,6 +219,11 @@ declare function EVMModal({ type, onSuccess, ...props }: ModalWithHeaderProps &
|
|
|
219
219
|
onSuccess?: () => void;
|
|
220
220
|
}): react_jsx_runtime.JSX.Element;
|
|
221
221
|
|
|
222
|
+
declare function SOLModal({ type, onSuccess, ...props }: ModalWithHeaderProps & {
|
|
223
|
+
type?: 'login' | 'bind' | '';
|
|
224
|
+
onSuccess?: () => void;
|
|
225
|
+
}): react_jsx_runtime.JSX.Element;
|
|
226
|
+
|
|
222
227
|
declare const index$3_Button: typeof Button;
|
|
223
228
|
declare const index$3_EVMModal: typeof EVMModal;
|
|
224
229
|
declare const index$3_EmailModal: typeof EmailModal;
|
|
@@ -232,9 +237,10 @@ declare const index$3_Modal: typeof Modal;
|
|
|
232
237
|
declare const index$3_ModalWithHeader: typeof ModalWithHeader;
|
|
233
238
|
declare const index$3_PasswordModal: typeof PasswordModal;
|
|
234
239
|
declare const index$3_Popover: typeof Popover;
|
|
240
|
+
declare const index$3_SOLModal: typeof SOLModal;
|
|
235
241
|
declare const index$3_UsernameModal: typeof UsernameModal;
|
|
236
242
|
declare namespace index$3 {
|
|
237
|
-
export { index$3_Button as Button, index$3_EVMModal as EVMModal, index$3_EmailModal as EmailModal, index$3_Field as Field, index$3_Input as Input, index$3_LoginBox as LoginBox, index$3_LoginButton as LoginButton, index$3_LoginModal as LoginModal, index$3_LoginPanel as LoginPanel, index$3_Modal as Modal, index$3_ModalWithHeader as ModalWithHeader, index$3_PasswordModal as PasswordModal, index$3_Popover as Popover, index$3_UsernameModal as UsernameModal };
|
|
243
|
+
export { index$3_Button as Button, index$3_EVMModal as EVMModal, index$3_EmailModal as EmailModal, index$3_Field as Field, index$3_Input as Input, index$3_LoginBox as LoginBox, index$3_LoginButton as LoginButton, index$3_LoginModal as LoginModal, index$3_LoginPanel as LoginPanel, index$3_Modal as Modal, index$3_ModalWithHeader as ModalWithHeader, index$3_PasswordModal as PasswordModal, index$3_Popover as Popover, index$3_SOLModal as SOLModal, index$3_UsernameModal as UsernameModal };
|
|
238
244
|
}
|
|
239
245
|
|
|
240
246
|
declare function useUserInfo(): {
|
package/dist/index.d.ts
CHANGED
|
@@ -219,6 +219,11 @@ declare function EVMModal({ type, onSuccess, ...props }: ModalWithHeaderProps &
|
|
|
219
219
|
onSuccess?: () => void;
|
|
220
220
|
}): react_jsx_runtime.JSX.Element;
|
|
221
221
|
|
|
222
|
+
declare function SOLModal({ type, onSuccess, ...props }: ModalWithHeaderProps & {
|
|
223
|
+
type?: 'login' | 'bind' | '';
|
|
224
|
+
onSuccess?: () => void;
|
|
225
|
+
}): react_jsx_runtime.JSX.Element;
|
|
226
|
+
|
|
222
227
|
declare const index$3_Button: typeof Button;
|
|
223
228
|
declare const index$3_EVMModal: typeof EVMModal;
|
|
224
229
|
declare const index$3_EmailModal: typeof EmailModal;
|
|
@@ -232,9 +237,10 @@ declare const index$3_Modal: typeof Modal;
|
|
|
232
237
|
declare const index$3_ModalWithHeader: typeof ModalWithHeader;
|
|
233
238
|
declare const index$3_PasswordModal: typeof PasswordModal;
|
|
234
239
|
declare const index$3_Popover: typeof Popover;
|
|
240
|
+
declare const index$3_SOLModal: typeof SOLModal;
|
|
235
241
|
declare const index$3_UsernameModal: typeof UsernameModal;
|
|
236
242
|
declare namespace index$3 {
|
|
237
|
-
export { index$3_Button as Button, index$3_EVMModal as EVMModal, index$3_EmailModal as EmailModal, index$3_Field as Field, index$3_Input as Input, index$3_LoginBox as LoginBox, index$3_LoginButton as LoginButton, index$3_LoginModal as LoginModal, index$3_LoginPanel as LoginPanel, index$3_Modal as Modal, index$3_ModalWithHeader as ModalWithHeader, index$3_PasswordModal as PasswordModal, index$3_Popover as Popover, index$3_UsernameModal as UsernameModal };
|
|
243
|
+
export { index$3_Button as Button, index$3_EVMModal as EVMModal, index$3_EmailModal as EmailModal, index$3_Field as Field, index$3_Input as Input, index$3_LoginBox as LoginBox, index$3_LoginButton as LoginButton, index$3_LoginModal as LoginModal, index$3_LoginPanel as LoginPanel, index$3_Modal as Modal, index$3_ModalWithHeader as ModalWithHeader, index$3_PasswordModal as PasswordModal, index$3_Popover as Popover, index$3_SOLModal as SOLModal, index$3_UsernameModal as UsernameModal };
|
|
238
244
|
}
|
|
239
245
|
|
|
240
246
|
declare function useUserInfo(): {
|