@aptos-labs/wallet-adapter-mui-design 4.0.15 → 4.0.16

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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @aptos-labs/wallet-adapter-mui-design
2
2
 
3
+ ## 4.0.16
4
+
5
+ ### Patch Changes
6
+
7
+ - @aptos-labs/wallet-adapter-react@6.0.1
8
+
3
9
  ## 4.0.15
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aptos-labs/wallet-adapter-mui-design",
3
- "version": "4.0.15",
3
+ "version": "4.0.16",
4
4
  "description": "Aptos Wallet Adapter mui design",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -41,12 +41,12 @@
41
41
  "@emotion/styled": "^11.10.5",
42
42
  "@mui/icons-material": "^5.11.0",
43
43
  "@mui/material": "^5.11.6",
44
- "@aptos-labs/wallet-adapter-react": "6.0.0"
44
+ "@aptos-labs/wallet-adapter-react": "6.0.1"
45
45
  },
46
46
  "peerDependencies": {
47
47
  "react": "^18",
48
48
  "react-dom": "^18",
49
- "react-router-dom": "^6.8.0"
49
+ "react-router-dom": "^7.5.2"
50
50
  },
51
51
  "scripts": {
52
52
  "build": "tsup src/index.tsx --format esm,cjs --dts --external react",
@@ -16,7 +16,7 @@ export default function WalletButton({
16
16
  const { connected, account, wallet } = useWallet();
17
17
 
18
18
  const [popoverAnchor, setPopoverAnchor] = useState<HTMLButtonElement | null>(
19
- null
19
+ null,
20
20
  );
21
21
  const handleClick = (event: React.MouseEvent<HTMLButtonElement>) => {
22
22
  setPopoverAnchor(event.currentTarget);
@@ -57,7 +57,7 @@ export default function WalletsModal({
57
57
  const { aptosConnectWallets, availableWallets, installableWallets } =
58
58
  groupAndSortWallets(
59
59
  [...wallets, ...notDetectedWallets],
60
- walletSortingOptions
60
+ walletSortingOptions,
61
61
  );
62
62
 
63
63
  const hasAptosConnectWallets = !!aptosConnectWallets.length;