@getpara/react-sdk-lite 2.0.0-alpha.67 → 2.0.0-alpha.68

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.
Files changed (29) hide show
  1. package/dist/modal/components/Account/AccountWalletSelect.js +15 -2
  2. package/dist/modal/components/ChainSwitch/ChainSwitch.js +8 -3
  3. package/dist/modal/components/ExternalWalletNetworkSelectStep/ExternalWalletNetworkSelectStep.js +2 -2
  4. package/dist/modal/components/ExternalWalletStep/ExternalWalletStep.d.ts +2 -1
  5. package/dist/modal/components/ExternalWalletStep/ExternalWalletStep.js +36 -29
  6. package/dist/modal/components/ExternalWallets/ExternalWallets.js +2 -2
  7. package/dist/modal/components/IFrameStep/IFrameStep.js +8 -6
  8. package/dist/modal/components/OAuth/FarcasterOAuthStep.js +6 -5
  9. package/dist/modal/components/OAuth/TelegramOAuthStep.js +6 -5
  10. package/dist/modal/components/WalletSelectOld/WalletSelectOld.js +17 -4
  11. package/dist/modal/hooks/useFarcasterLogin.js +8 -1
  12. package/dist/modal/hooks/useTelegramLogin.js +4 -0
  13. package/dist/modal/stores/modal/useModalStore.d.ts +1 -0
  14. package/dist/modal/stores/modal/useModalStore.js +2 -1
  15. package/dist/modal/utils/openPopup.d.ts +1 -1
  16. package/dist/modal/utils/openPopup.js +3 -1
  17. package/dist/modal/utils/stringFormatters.js +10 -1
  18. package/dist/modal/utils/validatePortalOrigin.d.ts +2 -0
  19. package/dist/modal/utils/validatePortalOrigin.js +14 -0
  20. package/dist/provider/hooks/mutations/useAddAuthMethod.d.ts +3 -3
  21. package/dist/provider/hooks/mutations/useLoginExternalWallet.d.ts +6 -0
  22. package/dist/provider/hooks/mutations/useVerifyExternalWallet.d.ts +16 -28
  23. package/dist/provider/hooks/utils/useEventListeners.js +2 -0
  24. package/dist/provider/providers/AuthProvider.js +73 -34
  25. package/dist/provider/providers/ExternalWalletProvider.d.ts +7 -1
  26. package/dist/provider/providers/ExternalWalletProvider.js +240 -27
  27. package/package.json +8 -8
  28. package/dist/modal/utils/routeMobileExternalWallet.d.ts +0 -1
  29. package/dist/modal/utils/routeMobileExternalWallet.js +0 -31
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@getpara/react-sdk-lite",
3
- "version": "2.0.0-alpha.67",
3
+ "version": "2.0.0-alpha.68",
4
4
  "bin": {
5
5
  "setup-para": "dist/cli/cli.mjs"
6
6
  },
7
7
  "dependencies": {
8
- "@getpara/react-common": "2.0.0-alpha.67",
9
- "@getpara/react-components": "2.0.0-alpha.67",
10
- "@getpara/web-sdk": "2.0.0-alpha.67",
8
+ "@getpara/react-common": "2.0.0-alpha.68",
9
+ "@getpara/react-components": "2.0.0-alpha.68",
10
+ "@getpara/web-sdk": "2.0.0-alpha.68",
11
11
  "date-fns": "^3.6.0",
12
12
  "framer-motion": "^11.3.31",
13
13
  "libphonenumber-js": "^1.11.7",
@@ -16,9 +16,9 @@
16
16
  "zustand-sync-tabs": "^0.2.2"
17
17
  },
18
18
  "devDependencies": {
19
- "@getpara/cosmos-wallet-connectors": "2.0.0-alpha.67",
20
- "@getpara/evm-wallet-connectors": "2.0.0-alpha.67",
21
- "@getpara/solana-wallet-connectors": "2.0.0-alpha.67",
19
+ "@getpara/cosmos-wallet-connectors": "2.0.0-alpha.68",
20
+ "@getpara/evm-wallet-connectors": "2.0.0-alpha.68",
21
+ "@getpara/solana-wallet-connectors": "2.0.0-alpha.68",
22
22
  "@tanstack/react-query": "^5.74.0",
23
23
  "@testing-library/dom": "^10.4.0",
24
24
  "@testing-library/react": "^16.3.0",
@@ -38,7 +38,7 @@
38
38
  "package.json",
39
39
  "styles.css"
40
40
  ],
41
- "gitHead": "0266cc49e978575fed0b12c9bb0c832651e140eb",
41
+ "gitHead": "98955203281606201609bb4674f5984acb63d3bf",
42
42
  "main": "dist/index.js",
43
43
  "peerDependencies": {
44
44
  "@tanstack/react-query": ">=5.0.0",
@@ -1 +0,0 @@
1
- export declare const routeMobileExternalWallet: (qrUri?: string) => void;
@@ -1,31 +0,0 @@
1
- "use client";
2
- import "../../chunk-MMUBH76A.js";
3
- import { isAndroid, isMobile, isTelegram } from "@getpara/web-sdk";
4
- const routeMobileExternalWallet = (qrUri) => {
5
- if (typeof window === "undefined") {
6
- return;
7
- }
8
- if (isMobile()) {
9
- if (!qrUri) return;
10
- if (!isTelegram() && qrUri.startsWith("http")) {
11
- const link = document.createElement("a");
12
- link.href = qrUri;
13
- link.target = "_blank";
14
- link.rel = "noreferrer noopener";
15
- link.click();
16
- } else {
17
- if (isTelegram()) {
18
- let href = qrUri;
19
- if (isAndroid()) {
20
- href = encodeURI(qrUri);
21
- }
22
- window.open(href, "_blank", "noreferrer noopener");
23
- } else {
24
- window.location.href = qrUri;
25
- }
26
- }
27
- }
28
- };
29
- export {
30
- routeMobileExternalWallet
31
- };