@arcblock/did-playground 2.1.13 → 2.1.14
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/lib/Action/index.js +3 -1
- package/package.json +5 -5
- package/src/Action/index.js +1 -1
package/lib/Action/index.js
CHANGED
|
@@ -208,7 +208,9 @@ function PlaygroundAction(props) {
|
|
|
208
208
|
onClick: onStart
|
|
209
209
|
}), (0, _actions.getMessage)(buttonText || title, session), ' ', loading && /*#__PURE__*/_react.default.createElement(_CircularProgress.default, {
|
|
210
210
|
size: 12,
|
|
211
|
-
|
|
211
|
+
sx: {
|
|
212
|
+
color: '#fff'
|
|
213
|
+
}
|
|
212
214
|
})), open && !showDidConnect && /*#__PURE__*/_react.default.createElement(_Dialog.default, {
|
|
213
215
|
open: true,
|
|
214
216
|
disableEscapeKeyDown: true,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arcblock/did-playground",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.14",
|
|
4
4
|
"description": "React components that works with wallet-playground",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -34,9 +34,9 @@
|
|
|
34
34
|
"url": "https://github.com/ArcBlock/wallet-playground/issues"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@arcblock/did-connect": "^2.1.
|
|
38
|
-
"@arcblock/react-hooks": "^2.1.
|
|
39
|
-
"@arcblock/ux": "^2.1.
|
|
37
|
+
"@arcblock/did-connect": "^2.1.14",
|
|
38
|
+
"@arcblock/react-hooks": "^2.1.14",
|
|
39
|
+
"@arcblock/ux": "^2.1.14",
|
|
40
40
|
"@mui/material": "^5.6.4",
|
|
41
41
|
"axios": "^0.21.2",
|
|
42
42
|
"core-js": "^3.6.4",
|
|
@@ -57,5 +57,5 @@
|
|
|
57
57
|
"publishConfig": {
|
|
58
58
|
"access": "public"
|
|
59
59
|
},
|
|
60
|
-
"gitHead": "
|
|
60
|
+
"gitHead": "f99cb6ddd9da25be9e56aca6fd6a0c8e5321acaf"
|
|
61
61
|
}
|
package/src/Action/index.js
CHANGED
|
@@ -194,7 +194,7 @@ function PlaygroundAction(props) {
|
|
|
194
194
|
size={buttonSize}
|
|
195
195
|
onClick={onStart}>
|
|
196
196
|
{getMessage(buttonText || title, session)}{' '}
|
|
197
|
-
{loading && <CircularProgress size={12} color
|
|
197
|
+
{loading && <CircularProgress size={12} sx={{ color: '#fff' }} />}
|
|
198
198
|
</Button>
|
|
199
199
|
{open && !showDidConnect && (
|
|
200
200
|
<Dialog
|