@aptos-labs/wallet-adapter-mui-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 +2 -3
- package/src/WalletModel.tsx +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# @aptos-labs/wallet-adapter-mui-design
|
|
2
2
|
|
|
3
|
+
## 2.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 4d6e2f6: Add AIP-62 wallet standard support
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [4d6e2f6]
|
|
12
|
+
- @aptos-labs/wallet-adapter-react@2.2.0
|
|
13
|
+
|
|
14
|
+
## 2.1.0
|
|
15
|
+
|
|
16
|
+
### Minor Changes
|
|
17
|
+
|
|
18
|
+
- 12163ca: Updated SDK dependencies
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- @aptos-labs/wallet-adapter-react@2.1.3
|
|
23
|
+
|
|
3
24
|
## 2.0.0
|
|
4
25
|
|
|
5
26
|
### Major Changes
|
package/dist/index.js
CHANGED
|
@@ -327,7 +327,7 @@ function WalletsModal({
|
|
|
327
327
|
handleClose();
|
|
328
328
|
};
|
|
329
329
|
const renderWalletsList = () => {
|
|
330
|
-
return wallets.map((wallet) => {
|
|
330
|
+
return wallets == null ? void 0 : wallets.map((wallet) => {
|
|
331
331
|
const hasMobileSupport = Boolean(wallet.deeplinkProvider);
|
|
332
332
|
const isWalletReady = wallet.readyState === import_wallet_adapter_react3.WalletReadyState.Installed || wallet.readyState === import_wallet_adapter_react3.WalletReadyState.Loadable;
|
|
333
333
|
const Container = ({ children }) => {
|
package/dist/index.mjs
CHANGED
|
@@ -325,7 +325,7 @@ function WalletsModal({
|
|
|
325
325
|
handleClose();
|
|
326
326
|
};
|
|
327
327
|
const renderWalletsList = () => {
|
|
328
|
-
return wallets.map((wallet) => {
|
|
328
|
+
return wallets == null ? void 0 : wallets.map((wallet) => {
|
|
329
329
|
const hasMobileSupport = Boolean(wallet.deeplinkProvider);
|
|
330
330
|
const isWalletReady = wallet.readyState === WalletReadyState.Installed || wallet.readyState === WalletReadyState.Loadable;
|
|
331
331
|
const Container = ({ children }) => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aptos-labs/wallet-adapter-mui-design",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.2.0",
|
|
4
4
|
"description": "Aptos Wallet Adapter mui design",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -37,8 +37,7 @@
|
|
|
37
37
|
"@aptos-labs/wallet-adapter-tsconfig": "0.0.0"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@aptos-labs/wallet-adapter-react": "^2.
|
|
41
|
-
"@babel/core": "^7.0.0",
|
|
40
|
+
"@aptos-labs/wallet-adapter-react": "^2.2.0",
|
|
42
41
|
"@emotion/react": "^11.10.5",
|
|
43
42
|
"@emotion/styled": "^11.10.5",
|
|
44
43
|
"@mui/icons-material": "^5.11.0",
|
package/src/WalletModel.tsx
CHANGED
|
@@ -150,7 +150,7 @@ export default function WalletsModal({
|
|
|
150
150
|
};
|
|
151
151
|
|
|
152
152
|
const renderWalletsList = () => {
|
|
153
|
-
return wallets
|
|
153
|
+
return wallets?.map((wallet) => {
|
|
154
154
|
const hasMobileSupport = Boolean(wallet.deeplinkProvider);
|
|
155
155
|
const isWalletReady =
|
|
156
156
|
wallet.readyState === WalletReadyState.Installed ||
|