@blocklet/ui-react 2.11.1 → 2.11.3

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.
@@ -310,8 +310,8 @@ export default function UserCenter({
310
310
  Box,
311
311
  {
312
312
  display: isMobile ? "block" : "flex",
313
- gap: 2,
314
313
  sx: {
314
+ height: "100%",
315
315
  overflow: "auto",
316
316
  padding: "1px"
317
317
  },
@@ -339,6 +339,7 @@ export default function UserCenter({
339
339
  }
340
340
  }
341
341
  ),
342
+ /* @__PURE__ */ jsx(Divider, { orientation: "vertical", sx: { height: "100%", mr: 2 } }),
342
343
  !privacyState.data || privacyState.loading ? /* @__PURE__ */ jsx(
343
344
  Box,
344
345
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blocklet/ui-react",
3
- "version": "2.11.1",
3
+ "version": "2.11.3",
4
4
  "description": "Some useful front-end web components that can be used in Blocklets.",
5
5
  "keywords": [
6
6
  "react",
@@ -32,9 +32,9 @@
32
32
  "url": "https://github.com/ArcBlock/ux/issues"
33
33
  },
34
34
  "dependencies": {
35
- "@arcblock/bridge": "^2.11.1",
36
- "@arcblock/react-hooks": "^2.11.1",
37
- "@blocklet/did-space-react": "^0.5.82",
35
+ "@arcblock/bridge": "^2.11.3",
36
+ "@arcblock/react-hooks": "^2.11.3",
37
+ "@blocklet/did-space-react": "^0.5.83",
38
38
  "@iconify-icons/logos": "^1.2.36",
39
39
  "@iconify-icons/material-symbols": "^1.2.58",
40
40
  "@iconify/react": "^4.1.1",
@@ -80,5 +80,5 @@
80
80
  "jest": "^29.7.0",
81
81
  "unbuild": "^2.0.0"
82
82
  },
83
- "gitHead": "8fbb145c7c60b0d905e6cf9a0e3a99c2471c8775"
83
+ "gitHead": "f17cdd23c703c834a348dffca7786dbd0b0b40c3"
84
84
  }
@@ -355,8 +355,8 @@ export default function UserCenter({
355
355
  {userCenterTabs.length > 0 && currentTab ? (
356
356
  <Box
357
357
  display={isMobile ? 'block' : 'flex'}
358
- gap={2}
359
358
  sx={{
359
+ height: '100%',
360
360
  overflow: 'auto',
361
361
  padding: '1px',
362
362
  }}>
@@ -380,6 +380,7 @@ export default function UserCenter({
380
380
  },
381
381
  }}
382
382
  />
383
+ <Divider orientation="vertical" sx={{ height: '100%', mr: 2 }} />
383
384
  {!privacyState.data || privacyState.loading ? (
384
385
  <Box
385
386
  sx={{