@ant-design/web3-assets 1.7.2 → 1.8.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/CHANGELOG.md CHANGED
@@ -1,5 +1,27 @@
1
1
  # @ant-design/web3-assets
2
2
 
3
+ ## 1.8.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 0d33add: fix: ConnectModal height style when has footer
8
+ - Updated dependencies [4abe7c0]
9
+ - @ant-design/web3-common@1.11.0
10
+
11
+ ## 1.8.0
12
+
13
+ ### Minor Changes
14
+
15
+ - 8a6d1c7: feat: add mobile wallet
16
+
17
+ ### Patch Changes
18
+
19
+ - 6511134: refactor: remove useless proxyConnectorName
20
+ - Updated dependencies [6511134]
21
+ - Updated dependencies [8a6d1c7]
22
+ - @ant-design/web3-common@1.10.1
23
+ - @ant-design/web3-icons@1.7.0
24
+
3
25
  ## 1.7.2
4
26
 
5
27
  ### Patch Changes
@@ -10,3 +10,4 @@ export * from './xverse';
10
10
  export * from './unisat-wallet';
11
11
  export * from './backpack';
12
12
  export * from './trust';
13
+ export * from './mobile-wallet';
@@ -9,4 +9,5 @@ export * from "./im-token";
9
9
  export * from "./xverse";
10
10
  export * from "./unisat-wallet";
11
11
  export * from "./backpack";
12
- export * from "./trust";
12
+ export * from "./trust";
13
+ export * from "./mobile-wallet";
@@ -0,0 +1,2 @@
1
+ import type { WalletMetadata } from '@ant-design/web3-common';
2
+ export declare const metadata_MobileConnect: WalletMetadata;
@@ -0,0 +1,11 @@
1
+ import { ScanColorful } from '@ant-design/web3-icons';
2
+ import { jsx as _jsx } from "react/jsx-runtime";
3
+ export var metadata_MobileConnect = {
4
+ icon: /*#__PURE__*/_jsx(ScanColorful, {}),
5
+ name: 'Scan QR Code',
6
+ remark: 'Connect with mobile APP',
7
+ group: 'Popular',
8
+ universalProtocol: {
9
+ link: 'https://walletconnect.com/'
10
+ }
11
+ };
@@ -10,3 +10,4 @@ export * from './xverse';
10
10
  export * from './unisat-wallet';
11
11
  export * from './backpack';
12
12
  export * from './trust';
13
+ export * from './mobile-wallet';
@@ -134,4 +134,15 @@ Object.keys(_trust).forEach(function (key) {
134
134
  return _trust[key];
135
135
  }
136
136
  });
137
+ });
138
+ var _mobileWallet = require("./mobile-wallet");
139
+ Object.keys(_mobileWallet).forEach(function (key) {
140
+ if (key === "default" || key === "__esModule") return;
141
+ if (key in exports && exports[key] === _mobileWallet[key]) return;
142
+ Object.defineProperty(exports, key, {
143
+ enumerable: true,
144
+ get: function () {
145
+ return _mobileWallet[key];
146
+ }
147
+ });
137
148
  });
@@ -0,0 +1,2 @@
1
+ import type { WalletMetadata } from '@ant-design/web3-common';
2
+ export declare const metadata_MobileConnect: WalletMetadata;
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.metadata_MobileConnect = void 0;
7
+ var _web3Icons = require("@ant-design/web3-icons");
8
+ var _jsxRuntime = require("react/jsx-runtime");
9
+ const metadata_MobileConnect = exports.metadata_MobileConnect = {
10
+ icon: /*#__PURE__*/(0, _jsxRuntime.jsx)(_web3Icons.ScanColorful, {}),
11
+ name: 'Scan QR Code',
12
+ remark: 'Connect with mobile APP',
13
+ group: 'Popular',
14
+ universalProtocol: {
15
+ link: 'https://walletconnect.com/'
16
+ }
17
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ant-design/web3-assets",
3
- "version": "1.7.2",
3
+ "version": "1.8.1",
4
4
  "type": "module",
5
5
  "main": "dist/esm/index.js",
6
6
  "module": "dist/esm/index.js",
@@ -59,16 +59,16 @@
59
59
  "url": "https://github.com/ant-design/ant-design-web3"
60
60
  },
61
61
  "dependencies": {
62
- "@ant-design/web3-icons": "1.6.0",
63
- "@ant-design/web3-common": "1.10.0"
62
+ "@ant-design/web3-common": "1.11.0",
63
+ "@ant-design/web3-icons": "1.7.0"
64
64
  },
65
65
  "devDependencies": {
66
66
  "@types/react": "^18.2.78",
67
67
  "@types/react-dom": "^18.2.25",
68
- "father": "^4.4.0",
68
+ "father": "^4.4.4",
69
69
  "react": "^18.2.0",
70
70
  "react-dom": "^18.2.0",
71
- "typescript": "^5.4.4"
71
+ "typescript": "^5.4.5"
72
72
  },
73
73
  "peerDependencies": {
74
74
  "react": ">=17.0.0",