@txnlab/use-wallet-vue 3.2.0 → 3.2.1
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/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +11 -11
package/dist/index.d.cts
CHANGED
|
@@ -24,7 +24,7 @@ type SetAlgodClient = (client: algosdk.Algodv2) => void;
|
|
|
24
24
|
declare function useWallet(): {
|
|
25
25
|
wallets: vue.ComputedRef<Wallet[]>;
|
|
26
26
|
algodClient: vue.ComputedRef<algosdk.Algodv2>;
|
|
27
|
-
activeNetwork: Readonly<vue.Ref<NetworkId>>;
|
|
27
|
+
activeNetwork: Readonly<vue.Ref<NetworkId, NetworkId>>;
|
|
28
28
|
activeWallet: vue.ComputedRef<_txnlab_use_wallet.BaseWallet | null>;
|
|
29
29
|
activeWalletAccounts: vue.ComputedRef<WalletAccount[] | null>;
|
|
30
30
|
activeWalletAddresses: vue.ComputedRef<string[] | null>;
|
package/dist/index.d.ts
CHANGED
|
@@ -24,7 +24,7 @@ type SetAlgodClient = (client: algosdk.Algodv2) => void;
|
|
|
24
24
|
declare function useWallet(): {
|
|
25
25
|
wallets: vue.ComputedRef<Wallet[]>;
|
|
26
26
|
algodClient: vue.ComputedRef<algosdk.Algodv2>;
|
|
27
|
-
activeNetwork: Readonly<vue.Ref<NetworkId>>;
|
|
27
|
+
activeNetwork: Readonly<vue.Ref<NetworkId, NetworkId>>;
|
|
28
28
|
activeWallet: vue.ComputedRef<_txnlab_use_wallet.BaseWallet | null>;
|
|
29
29
|
activeWalletAccounts: vue.ComputedRef<WalletAccount[] | null>;
|
|
30
30
|
activeWalletAddresses: vue.ComputedRef<string[] | null>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@txnlab/use-wallet-vue",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.1",
|
|
4
4
|
"description": "Vue library for integrating Algorand wallets into decentralized applications",
|
|
5
5
|
"author": "Doug Richar <drichar@gmail.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -30,25 +30,25 @@
|
|
|
30
30
|
"dist"
|
|
31
31
|
],
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@tanstack/vue-store": "0.
|
|
34
|
-
"@txnlab/use-wallet": "3.2.
|
|
33
|
+
"@tanstack/vue-store": "0.5.5",
|
|
34
|
+
"@txnlab/use-wallet": "3.2.1"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"algosdk": "2.
|
|
38
|
-
"tsup": "8.
|
|
39
|
-
"typescript": "5.4
|
|
40
|
-
"vue": "3.
|
|
37
|
+
"algosdk": "2.9.0",
|
|
38
|
+
"tsup": "8.2.4",
|
|
39
|
+
"typescript": "5.5.4",
|
|
40
|
+
"vue": "3.5.1"
|
|
41
41
|
},
|
|
42
42
|
"peerDependencies": {
|
|
43
43
|
"@blockshake/defly-connect": "^1.1.6",
|
|
44
|
-
"@magic-ext/algorand": "^23.0
|
|
44
|
+
"@magic-ext/algorand": "^23.5.0",
|
|
45
45
|
"@perawallet/connect": "^1.3.4",
|
|
46
|
-
"@perawallet/connect-beta": "^2.0.
|
|
46
|
+
"@perawallet/connect-beta": "^2.0.14",
|
|
47
47
|
"@walletconnect/modal": "^2.6.2",
|
|
48
|
-
"@walletconnect/sign-client": "^2.
|
|
48
|
+
"@walletconnect/sign-client": "^2.15.2",
|
|
49
49
|
"algosdk": "^2.7.0",
|
|
50
50
|
"lute-connect": "^1.3.0",
|
|
51
|
-
"magic-sdk": "^28.0
|
|
51
|
+
"magic-sdk": "^28.5.0",
|
|
52
52
|
"vue": "^3.0.0"
|
|
53
53
|
},
|
|
54
54
|
"peerDependenciesMeta": {
|