@arcblock/ux 2.13.50 → 2.13.51
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.
@@ -153,7 +153,10 @@ export default function LoggedIn({
|
|
153
153
|
transition: true,
|
154
154
|
placement: "bottom-end",
|
155
155
|
sx: {
|
156
|
-
zIndex: 1600
|
156
|
+
zIndex: 1600,
|
157
|
+
'> div': {
|
158
|
+
boxShadow: theme => theme.palette.mode === 'dark' ? `${theme.shadows[2]}, inset 0 0 0 1px rgba(255, 255, 255, 0.05)` : theme.shadows[2]
|
159
|
+
}
|
157
160
|
},
|
158
161
|
children: ({
|
159
162
|
TransitionProps
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@arcblock/ux",
|
3
|
-
"version": "2.13.
|
3
|
+
"version": "2.13.51",
|
4
4
|
"description": "Common used react components for arcblock products",
|
5
5
|
"keywords": [
|
6
6
|
"react",
|
@@ -71,14 +71,14 @@
|
|
71
71
|
"react": ">=18.2.0",
|
72
72
|
"react-router-dom": ">=6.22.3"
|
73
73
|
},
|
74
|
-
"gitHead": "
|
74
|
+
"gitHead": "181e48532edade29469cf19b45752fdbda04a939",
|
75
75
|
"dependencies": {
|
76
76
|
"@arcblock/did-motif": "^1.1.13",
|
77
|
-
"@arcblock/icons": "^2.13.
|
78
|
-
"@arcblock/nft-display": "^2.13.
|
79
|
-
"@arcblock/react-hooks": "^2.13.
|
77
|
+
"@arcblock/icons": "^2.13.51",
|
78
|
+
"@arcblock/nft-display": "^2.13.51",
|
79
|
+
"@arcblock/react-hooks": "^2.13.51",
|
80
80
|
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
|
81
|
-
"@blocklet/theme": "^2.13.
|
81
|
+
"@blocklet/theme": "^2.13.51",
|
82
82
|
"@fontsource/roboto": "~5.1.1",
|
83
83
|
"@fontsource/ubuntu-mono": "^5.0.18",
|
84
84
|
"@iconify-icons/logos": "^1.2.36",
|
@@ -181,7 +181,15 @@ export default function LoggedIn({
|
|
181
181
|
anchorEl={popperAnchorRef.current}
|
182
182
|
transition
|
183
183
|
placement="bottom-end"
|
184
|
-
sx={{
|
184
|
+
sx={{
|
185
|
+
zIndex: 1600,
|
186
|
+
'> div': {
|
187
|
+
boxShadow: (theme) =>
|
188
|
+
theme.palette.mode === 'dark'
|
189
|
+
? `${theme.shadows[2]}, inset 0 0 0 1px rgba(255, 255, 255, 0.05)`
|
190
|
+
: theme.shadows[2],
|
191
|
+
},
|
192
|
+
}}>
|
185
193
|
{({ TransitionProps }) => (
|
186
194
|
<ClickAwayListener
|
187
195
|
onClickAway={(e) => {
|