luncconnect 1.1.0 → 1.2.0
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/build/index.d.ts +1 -1
- package/build/index.es.js +2 -2
- package/package.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const CONNECTKIT_VERSION = "1.
|
|
1
|
+
export declare const CONNECTKIT_VERSION = "1.2.0";
|
|
2
2
|
export * as Types from './types';
|
|
3
3
|
export { default as getDefaultConfig } from './defaultConfig';
|
|
4
4
|
export { default as getDefaultConnectors } from './defaultConnectors';
|
package/build/index.es.js
CHANGED
|
@@ -2920,7 +2920,7 @@ const walletConfigs = {
|
|
|
2920
2920
|
website: 'https://luncdash.com/',
|
|
2921
2921
|
},
|
|
2922
2922
|
getWalletConnectDeeplink: (uri) => {
|
|
2923
|
-
return `luncdash://wallet_connect
|
|
2923
|
+
return `luncdash://wallet_connect?payload=${encodeURIComponent(uri)}`;
|
|
2924
2924
|
},
|
|
2925
2925
|
isStation: true,
|
|
2926
2926
|
isLuncDash: true,
|
|
@@ -8372,7 +8372,7 @@ const ConnectModal = ({ theme = 'auto', customTheme = customThemeDefault, lang =
|
|
|
8372
8372
|
return (jsx(Web3ContextProvider, { enabled: isOpen, children: jsx(ConnectKitThemeProvider, { theme: theme, customTheme: customTheme, mode: mode, children: jsxs(Container, { ref: ref, children: [inline && onClose && (jsxs(Fragment, { children: [jsx(Cursor, { ref: cursorRef }), jsx(ButtonContainer, { children: jsx(ConnectKitButton, { customTheme: customTheme, theme: theme, mode: mode }) })] })), jsx(Modal, { demo: { theme: theme, customTheme: customTheme, mode: mode }, onClose: onModalClose , positionInside: inline, open: isOpen, pages: pages, pageId: context.route, onInfo: showInfoButton ? () => context.setRoute(routes.ABOUT) : undefined, onBack: showBackButton ? onBack : undefined })] }) }) }));
|
|
8373
8373
|
};
|
|
8374
8374
|
|
|
8375
|
-
const CONNECTKIT_VERSION = '1.
|
|
8375
|
+
const CONNECTKIT_VERSION = '1.2.0';
|
|
8376
8376
|
|
|
8377
8377
|
export { Avatar, Balance, BalanceButton, CONNECTKIT_VERSION, Chain as ChainIcon, ConnectKitButton, ConnectModal as ConnectKitModalDemo, ConnectKitProvider, Context, types as Types, defaultConfig as getDefaultConfig, defaultConnectors as getDefaultConnectors, useIsMounted, useModal, wallets };
|
|
8378
8378
|
//# sourceMappingURL=index.es.js.map
|