@arcblock/did-connect-react 3.1.0 → 3.1.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/README.md +4 -4
- package/lib/package.json.js +1 -1
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -18,7 +18,7 @@ import DidAddress from '@arcblock/did-connect-react/lib/Address';
|
|
|
18
18
|
import DidConnect from '@arcblock/did-connect-react/lib/Connect';
|
|
19
19
|
import DidAvatar from '@arcblock/did-connect-react/lib/Avatar';
|
|
20
20
|
import DidButton from '@arcblock/did-connect-react/lib/Button';
|
|
21
|
-
import
|
|
21
|
+
import DIDLogo from '@arcblock/did-connect-react/lib/Logo';
|
|
22
22
|
import { SessionProvider, SessionConsumer } from '@arcblock/did-connect-react/lib/Session';
|
|
23
23
|
import SessionManager from '@arcblock/did-connect-react/lib/SessionManager';
|
|
24
24
|
|
|
@@ -28,7 +28,7 @@ import {
|
|
|
28
28
|
Connect as DidConnect,
|
|
29
29
|
Avatar as DidAvatar,
|
|
30
30
|
Button as DidButton,
|
|
31
|
-
Logo as
|
|
31
|
+
Logo as DIDLogo,
|
|
32
32
|
Session,
|
|
33
33
|
SessionManager,
|
|
34
34
|
} from '@arcblock/did-connect-react/lib';
|
|
@@ -112,10 +112,10 @@ const handleOnClose = () => {
|
|
|
112
112
|
<ConnectButton>Custom Text</ConnectButton>
|
|
113
113
|
```
|
|
114
114
|
|
|
115
|
-
###
|
|
115
|
+
### DIDLogo
|
|
116
116
|
|
|
117
117
|
```jsx
|
|
118
|
-
<
|
|
118
|
+
<DIDLogo size={32} />
|
|
119
119
|
```
|
|
120
120
|
|
|
121
121
|
### DidAddress
|
package/lib/package.json.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arcblock/did-connect-react",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.1",
|
|
4
4
|
"description": "Client side library to work with DID Connect by ArcBlock.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -32,10 +32,10 @@
|
|
|
32
32
|
"url": "https://github.com/ArcBlock/ux/issues"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@arcblock/bridge": "3.1.
|
|
35
|
+
"@arcblock/bridge": "3.1.1",
|
|
36
36
|
"@arcblock/did": "^1.21.2",
|
|
37
|
-
"@arcblock/icons": "3.1.
|
|
38
|
-
"@arcblock/react-hooks": "3.1.
|
|
37
|
+
"@arcblock/icons": "3.1.1",
|
|
38
|
+
"@arcblock/react-hooks": "3.1.1",
|
|
39
39
|
"@arcblock/ws": "^1.21.2",
|
|
40
40
|
"@fontsource/lexend": "^5.2.9",
|
|
41
41
|
"@iconify-icons/logos": "^1.2.36",
|
|
@@ -64,9 +64,9 @@
|
|
|
64
64
|
"ufo": "^1.6.1"
|
|
65
65
|
},
|
|
66
66
|
"peerDependencies": {
|
|
67
|
-
"@arcblock/ux": "^3.0
|
|
67
|
+
"@arcblock/ux": "^3.1.0",
|
|
68
68
|
"@blocklet/js-sdk": "^1.16.46",
|
|
69
|
-
"@blocklet/theme": "^3.0
|
|
69
|
+
"@blocklet/theme": "^3.1.0",
|
|
70
70
|
"@emotion/react": "^11.14.0",
|
|
71
71
|
"@emotion/styled": "^11.14.0",
|
|
72
72
|
"@mui/material": "^7.2.0",
|
|
@@ -80,5 +80,5 @@
|
|
|
80
80
|
"eslint-plugin-react-hooks": "^4.6.2",
|
|
81
81
|
"jest": "^29.7.0"
|
|
82
82
|
},
|
|
83
|
-
"gitHead": "
|
|
83
|
+
"gitHead": "858111bd8bce6a904a1ec70982896d815672f2f1"
|
|
84
84
|
}
|