forked from perawallet/connect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.ts
35 lines (33 loc) · 1.93 KB
/
App.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import {PeraWalletModalHeader} from "./modal/header/PeraWalletModalHeader";
import {PeraWalletDownloadQRCode} from "./modal/mode/desktop/download-qr-code/PeraWalletDownloadQRCode";
import {PeraWalletModalDesktopMode} from "./modal/mode/desktop/PeraWalletConnectModalDesktopMode";
import {PeraWalletModalTouchScreenMode} from "./modal/mode/touch-screen/PeraWalletModalTouchScreenMode";
import {PeraWalletConnectModal} from "./modal/PeraWalletConnectModal";
import {PeraWalletRedirectModal} from "./modal/redirect/PeraWalletRedirectModal";
import {PeraWalletConnectModalInformationSection} from "./modal/section/information/PeraWalletConnectModalInformationSection";
import {PeraWalletConnectModalPendingMessageSection} from "./modal/section/pending-message/PeraWalletConnectModalPendingMessage";
import {PeraWalletSignTxnToast} from "./modal/sign-toast/PeraWalletSignTxnToast";
import {PeraWalletSignTxnModal} from "./modal/sign-txn/PeraWalletSignTxnModal";
import "./util/screen/setDynamicVhValue";
window.customElements.define("pera-wallet-connect-modal", PeraWalletConnectModal);
window.customElements.define(
"pera-wallet-modal-desktop-mode",
PeraWalletModalDesktopMode
);
window.customElements.define("pera-wallet-modal-header", PeraWalletModalHeader);
window.customElements.define(
"pera-wallet-modal-touch-screen-mode",
PeraWalletModalTouchScreenMode
);
window.customElements.define("pera-wallet-redirect-modal", PeraWalletRedirectModal);
window.customElements.define(
"pera-wallet-connect-modal-information-section",
PeraWalletConnectModalInformationSection
);
window.customElements.define(
"pera-wallet-connect-modal-pending-message-section",
PeraWalletConnectModalPendingMessageSection
);
window.customElements.define("pera-wallet-sign-txn-toast", PeraWalletSignTxnToast);
window.customElements.define("pera-wallet-sign-txn-modal", PeraWalletSignTxnModal);
window.customElements.define("pera-wallet-download-qr-code", PeraWalletDownloadQRCode);