UNPKG

@web3auth-mpc/ui

Version:
86 lines (85 loc) 2.93 kB
import { SafeEventEmitter } from "@toruslabs/openlogin-jrpc"; import { WhiteLabelData } from "@toruslabs/openlogin-utils"; import { BaseAdapterConfig, IWalletConnectExtensionAdapter, LoginMethodConfig, WALLET_ADAPTER_TYPE } from "@web3auth-mpc/base"; export interface UIConfig extends WhiteLabelData { /** * order of how login methods are shown * * @defaultValue `["google", "facebook", "twitter", "reddit", "discord", "twitch", "apple", "line", "github", "kakao", "linkedin", "weibo", "wechat", "email_passwordless"]` */ loginMethodsOrder?: string[]; /** * Z-index of the modal and iframe * @defaultValue 99998 */ modalZIndex?: string; /** * Whether to show errors on Web3Auth modal. * * @defaultValue `true` */ displayErrorsOnModal?: boolean; /** * number of columns to display the Social Login buttons * * @defaultValue `3` */ loginGridCol?: 2 | 3; /** * decides which button will be displayed as primary button in modal * only one button will be primary and other buttons in modal will be secondary * * @defaultValue `socialLogin` */ primaryButton?: "externalLogin" | "socialLogin" | "emailLogin"; adapterListener: SafeEventEmitter; } export declare const LOGIN_MODAL_EVENTS: { INIT_EXTERNAL_WALLETS: string; LOGIN: string; DISCONNECT: string; MODAL_VISIBILITY: string; }; export type SocialLoginsConfig = { loginMethodsOrder: string[]; loginMethods: LoginMethodConfig; adapter: WALLET_ADAPTER_TYPE; uiConfig: Omit<UIConfig, "adapterListener">; }; export declare const MODAL_STATUS: { INITIALIZED: string; CONNECTED: string; CONNECTING: string; ERRORED: string; }; export type ModalStatusType = (typeof MODAL_STATUS)[keyof typeof MODAL_STATUS]; export interface ModalState { status: ModalStatusType; externalWalletsInitialized: boolean; hasExternalWallets: boolean; externalWalletsVisibility: boolean; modalVisibility: boolean; modalVisibilityDelayed: boolean; postLoadingMessage: string; walletConnectUri: string; socialLoginsConfig: SocialLoginsConfig; externalWalletsConfig: Record<string, BaseAdapterConfig>; detailedLoaderAdapter: string; detailedLoaderAdapterName: string; showExternalWalletsOnly: boolean; wcAdapters: IWalletConnectExtensionAdapter[]; } export type SocialLoginEventType = { adapter: string; loginParams: { loginProvider: string; login_hint?: string; name: string; }; }; export type ExternalWalletEventType = { adapter: string; }; export declare const DEFAULT_LOGO_LIGHT = "https://images.web3auth.io/web3auth-logo-w-light.svg"; export declare const DEFAULT_LOGO_DARK = "https://images.web3auth.io/web3auth-logo-w.svg"; export declare const WALLET_CONNECT_LOGO = "https://images.web3auth.io/login-wallet-connect.svg";