@aptos-labs/wallet-adapter-mui-design 1.0.5 → 1.0.7
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 +9 -0
- package/dist/index.d.ts +4 -2
- package/package.json +5 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @aptos-labs/wallet-adapter-mui-design
|
|
2
2
|
|
|
3
|
+
## 1.0.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- dd6e1ed: Moves dependencies to peer dependencies as needed
|
|
8
|
+
- Updated dependencies [7acfa69]
|
|
9
|
+
- Updated dependencies [dd6e1ed]
|
|
10
|
+
- @aptos-labs/wallet-adapter-react@1.4.0
|
|
11
|
+
|
|
3
12
|
## 1.0.5
|
|
4
13
|
|
|
5
14
|
### Patch Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
|
-
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
|
|
3
|
+
type WalletConnectorProps = {
|
|
2
4
|
networkSupport?: string;
|
|
3
5
|
handleNavigate?: () => void;
|
|
4
6
|
};
|
|
5
|
-
declare function WalletConnector({ networkSupport, handleNavigate, }: WalletConnectorProps): JSX.Element;
|
|
7
|
+
declare function WalletConnector({ networkSupport, handleNavigate, }: WalletConnectorProps): react_jsx_runtime.JSX.Element;
|
|
6
8
|
|
|
7
9
|
export { WalletConnector };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aptos-labs/wallet-adapter-mui-design",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.7",
|
|
4
4
|
"description": "Aptos Wallet Adapter mui design",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -37,12 +37,14 @@
|
|
|
37
37
|
"@aptos-labs/wallet-adapter-tsconfig": "0.0.0"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@aptos-labs/wallet-adapter-react": "1.
|
|
40
|
+
"@aptos-labs/wallet-adapter-react": "^1.4.0",
|
|
41
41
|
"@babel/core": "^7.0.0",
|
|
42
42
|
"@emotion/react": "^11.10.5",
|
|
43
43
|
"@emotion/styled": "^11.10.5",
|
|
44
44
|
"@mui/icons-material": "^5.11.0",
|
|
45
|
-
"@mui/material": "^5.11.6"
|
|
45
|
+
"@mui/material": "^5.11.6"
|
|
46
|
+
},
|
|
47
|
+
"peerDependencies": {
|
|
46
48
|
"react": "^18",
|
|
47
49
|
"react-dom": "^18.2.0",
|
|
48
50
|
"react-router-dom": "^6.8.0"
|