@web3auth/modal 10.0.0-beta.8 → 10.0.0-beta.9
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/lib.cjs/packages/modal/src/config.js +1 -1
- package/dist/lib.cjs/packages/modal/src/react/solana/hooks/useSolanaWallet.js +4 -0
- package/dist/lib.cjs/packages/modal/src/react/wagmi/provider.js +3 -4
- package/dist/lib.cjs/packages/modal/src/ui/components/ConnectWallet/ConnectWalletQrCode/ConnectWalletQrCode.js +1 -0
- package/dist/lib.cjs/packages/modal/src/ui/components/Root/Root.js +5 -0
- package/dist/lib.cjs/packages/modal/src/vue/solana/composables/useSolanaWallet.js +6 -3
- package/dist/lib.cjs/packages/modal/src/vue/wagmi/provider.js +1 -1
- package/dist/lib.cjs/types/react/wagmi/provider.d.ts +1 -2
- package/dist/lib.esm/packages/modal/src/config.js +1 -1
- package/dist/lib.esm/packages/modal/src/react/solana/hooks/useSolanaWallet.js +5 -1
- package/dist/lib.esm/packages/modal/src/react/wagmi/provider.js +4 -5
- package/dist/lib.esm/packages/modal/src/ui/components/ConnectWallet/ConnectWalletQrCode/ConnectWalletQrCode.js +1 -0
- package/dist/lib.esm/packages/modal/src/ui/components/Root/Root.js +5 -0
- package/dist/lib.esm/packages/modal/src/vue/solana/composables/useSolanaWallet.js +7 -4
- package/dist/lib.esm/packages/modal/src/vue/wagmi/provider.js +2 -2
- package/dist/modal.umd.min.js +1 -1
- package/dist/modal.umd.min.js.LICENSE.txt +2 -2
- package/package.json +4 -20
|
@@ -62,9 +62,9 @@ PERFORMANCE OF THIS SOFTWARE.
|
|
|
62
62
|
|
|
63
63
|
/**
|
|
64
64
|
* @license React
|
|
65
|
-
* react.production.
|
|
65
|
+
* react.production.js
|
|
66
66
|
*
|
|
67
|
-
* Copyright (c)
|
|
67
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
68
68
|
*
|
|
69
69
|
* This source code is licensed under the MIT license found in the
|
|
70
70
|
* LICENSE file in the root directory of this source tree.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@web3auth/modal",
|
|
3
|
-
"version": "10.0.0-beta.
|
|
3
|
+
"version": "10.0.0-beta.9",
|
|
4
4
|
"description": "Multi chain wallet aggregator for web3Auth",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"web3Auth/ui",
|
|
@@ -35,36 +35,21 @@
|
|
|
35
35
|
"@coinbase/wallet-sdk": {
|
|
36
36
|
"optional": true
|
|
37
37
|
},
|
|
38
|
-
"@tanstack/react-query": {
|
|
39
|
-
"optional": true
|
|
40
|
-
},
|
|
41
|
-
"@wagmi/core": {
|
|
42
|
-
"optional": true
|
|
43
|
-
},
|
|
44
|
-
"@wagmi/vue": {
|
|
45
|
-
"optional": true
|
|
46
|
-
},
|
|
47
38
|
"viem": {
|
|
48
39
|
"optional": true
|
|
49
40
|
},
|
|
50
41
|
"vue": {
|
|
51
42
|
"optional": true
|
|
52
|
-
},
|
|
53
|
-
"wagmi": {
|
|
54
|
-
"optional": true
|
|
55
43
|
}
|
|
56
44
|
},
|
|
57
45
|
"peerDependencies": {
|
|
58
46
|
"@babel/runtime": "^7.x",
|
|
59
47
|
"@coinbase/wallet-sdk": "^4.3.x",
|
|
60
48
|
"@solana/web3.js": ">=1.98",
|
|
61
|
-
"@wagmi/core": ">=2.16",
|
|
62
|
-
"@wagmi/vue": ">=0.1",
|
|
63
49
|
"react": ">=18",
|
|
64
50
|
"react-dom": ">=18",
|
|
65
51
|
"viem": ">=2.23",
|
|
66
|
-
"vue": "
|
|
67
|
-
"wagmi": ">=2.14"
|
|
52
|
+
"vue": ">=3.x"
|
|
68
53
|
},
|
|
69
54
|
"devDependencies": {
|
|
70
55
|
"@babel/preset-react": "^7.26.3",
|
|
@@ -76,7 +61,6 @@
|
|
|
76
61
|
"@solana/web3.js": "^1.98.2",
|
|
77
62
|
"@svgr/rollup": "^8.1.0",
|
|
78
63
|
"@svgr/webpack": "^8.1.0",
|
|
79
|
-
"@tanstack/react-query": "^5.74.4",
|
|
80
64
|
"@toruslabs/eslint-config-react": "^4.1.4",
|
|
81
65
|
"@toruslabs/eslint-config-vue": "^4.1.5",
|
|
82
66
|
"@toruslabs/isomorphic-style-loader": "^5.4.0",
|
|
@@ -106,7 +90,7 @@
|
|
|
106
90
|
"@toruslabs/base-controllers": "^8.4.3",
|
|
107
91
|
"@toruslabs/http-helpers": "^8.1.1",
|
|
108
92
|
"@web3auth/auth": "^10.4.0",
|
|
109
|
-
"@web3auth/no-modal": "^10.0.0-beta.
|
|
93
|
+
"@web3auth/no-modal": "^10.0.0-beta.9",
|
|
110
94
|
"bowser": "^2.11.0",
|
|
111
95
|
"classnames": "^2.5.1",
|
|
112
96
|
"clsx": "^2.1.1",
|
|
@@ -193,5 +177,5 @@
|
|
|
193
177
|
"type": "git",
|
|
194
178
|
"url": "git+https://github.com/Web3Auth/Web3Auth.git"
|
|
195
179
|
},
|
|
196
|
-
"gitHead": "
|
|
180
|
+
"gitHead": "4060191cbedbf9b235990c700781cdc8423e073b"
|
|
197
181
|
}
|