@arcblock/did-playground 2.11.7 → 2.11.9
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 +1 -1
- package/package.json +4 -4
- package/src/Action/index.js +1 -1
package/lib/Action/index.js
CHANGED
|
@@ -193,7 +193,7 @@ function PlaygroundAction(props) {
|
|
|
193
193
|
})), open && !showDidConnect && /*#__PURE__*/(0, _jsxRuntime.jsx)(_Dialog.default, {
|
|
194
194
|
open: true,
|
|
195
195
|
disableEscapeKeyDown: true,
|
|
196
|
-
fullScreen: width < theme.breakpoints.values.sm && !browser.wallet,
|
|
196
|
+
fullScreen: width < theme.breakpoints.values.sm && !(browser.wallet || browser.arcSphere),
|
|
197
197
|
fullWidth: showFrame,
|
|
198
198
|
maxWidth: showFrame ? 'lg' : '',
|
|
199
199
|
children: /*#__PURE__*/(0, _jsxRuntime.jsxs)(_DialogContent.default, {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arcblock/did-playground",
|
|
3
|
-
"version": "2.11.
|
|
3
|
+
"version": "2.11.9",
|
|
4
4
|
"description": "React components that works with wallet-playground",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -30,8 +30,8 @@
|
|
|
30
30
|
"url": "https://github.com/ArcBlock/wallet-playground/issues"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@arcblock/did-connect": "^2.11.
|
|
34
|
-
"@arcblock/react-hooks": "^2.11.
|
|
33
|
+
"@arcblock/did-connect": "^2.11.9",
|
|
34
|
+
"@arcblock/react-hooks": "^2.11.9",
|
|
35
35
|
"ahooks": "^3.7.10",
|
|
36
36
|
"axios": "^1.7.5",
|
|
37
37
|
"core-js": "^3.25.5",
|
|
@@ -53,5 +53,5 @@
|
|
|
53
53
|
"publishConfig": {
|
|
54
54
|
"access": "public"
|
|
55
55
|
},
|
|
56
|
-
"gitHead": "
|
|
56
|
+
"gitHead": "cc71a9dd666287cb70d1a7bd487d1930294b9765"
|
|
57
57
|
}
|
package/src/Action/index.js
CHANGED
|
@@ -195,7 +195,7 @@ function PlaygroundAction(props) {
|
|
|
195
195
|
<Dialog
|
|
196
196
|
open
|
|
197
197
|
disableEscapeKeyDown
|
|
198
|
-
fullScreen={width < theme.breakpoints.values.sm && !browser.wallet}
|
|
198
|
+
fullScreen={width < theme.breakpoints.values.sm && !(browser.wallet || browser.arcSphere)}
|
|
199
199
|
fullWidth={showFrame}
|
|
200
200
|
maxWidth={showFrame ? 'lg' : ''}>
|
|
201
201
|
<DialogContent
|