@aptos-labs/wallet-adapter-ant-design 2.0.0 → 2.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/CHANGELOG.md +21 -0
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +3 -3
- package/src/WalletSelector.tsx +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# @aptos-labs/wallet-adapter-ant-design
|
|
2
2
|
|
|
3
|
+
## 2.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 41f9485: Implement GA4
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- @aptos-labs/wallet-adapter-react@2.3.1
|
|
12
|
+
|
|
13
|
+
## 2.1.0
|
|
14
|
+
|
|
15
|
+
### Minor Changes
|
|
16
|
+
|
|
17
|
+
- 4d6e2f6: Add AIP-62 wallet standard support
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Updated dependencies [4d6e2f6]
|
|
22
|
+
- @aptos-labs/wallet-adapter-react@2.2.0
|
|
23
|
+
|
|
3
24
|
## 2.0.0
|
|
4
25
|
|
|
5
26
|
### Major Changes
|
package/dist/index.js
CHANGED
|
@@ -90,7 +90,7 @@ function WalletSelector({
|
|
|
90
90
|
closable: false,
|
|
91
91
|
zIndex: 9999,
|
|
92
92
|
children: !connected && /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_antd.Menu, {
|
|
93
|
-
children: wallets.map((wallet) => {
|
|
93
|
+
children: wallets == null ? void 0 : wallets.map((wallet) => {
|
|
94
94
|
return walletView(wallet, onWalletSelected);
|
|
95
95
|
})
|
|
96
96
|
})
|
package/dist/index.mjs
CHANGED
|
@@ -68,7 +68,7 @@ function WalletSelector({
|
|
|
68
68
|
closable: false,
|
|
69
69
|
zIndex: 9999,
|
|
70
70
|
children: !connected && /* @__PURE__ */ jsx(Menu, {
|
|
71
|
-
children: wallets.map((wallet) => {
|
|
71
|
+
children: wallets == null ? void 0 : wallets.map((wallet) => {
|
|
72
72
|
return walletView(wallet, onWalletSelected);
|
|
73
73
|
})
|
|
74
74
|
})
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aptos-labs/wallet-adapter-ant-design",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.2.0",
|
|
4
4
|
"description": "Aptos Wallet Adapter ant-design",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -43,8 +43,8 @@
|
|
|
43
43
|
"@aptos-labs/wallet-adapter-tsconfig": "0.0.0"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"
|
|
47
|
-
"
|
|
46
|
+
"antd": "^5.1.2",
|
|
47
|
+
"@aptos-labs/wallet-adapter-react": "2.3.1"
|
|
48
48
|
},
|
|
49
49
|
"peerDependencies": {
|
|
50
50
|
"react": "^18",
|