@blocklet/ui-react 2.9.33 → 2.9.35

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.
@@ -178,7 +178,7 @@ export default function UserCenter({
178
178
  return /* @__PURE__ */ jsx(Box, { sx: { width: "100%" }, children: /* @__PURE__ */ jsx(ErrorFallback, { error: formatError }) });
179
179
  }
180
180
  return /* @__PURE__ */ jsxs(Fragment, { children: [
181
- /* @__PURE__ */ jsxs(Box, { sx: { flex: 1 }, children: [
181
+ /* @__PURE__ */ jsxs(Box, { sx: { flex: 1, overflow: "hidden" }, children: [
182
182
  userState?.data?.fullName ? /* @__PURE__ */ jsx(
183
183
  Typography,
184
184
  {
@@ -194,7 +194,8 @@ function UserCenter({
194
194
  return /* @__PURE__ */(0, _jsxRuntime.jsxs)(_jsxRuntime.Fragment, {
195
195
  children: [/* @__PURE__ */(0, _jsxRuntime.jsxs)(_material.Box, {
196
196
  sx: {
197
- flex: 1
197
+ flex: 1,
198
+ overflow: "hidden"
198
199
  },
199
200
  children: [userState?.data?.fullName ? /* @__PURE__ */(0, _jsxRuntime.jsx)(_material.Typography, {
200
201
  variant: "h4",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blocklet/ui-react",
3
- "version": "2.9.33",
3
+ "version": "2.9.35",
4
4
  "description": "Some useful front-end web components that can be used in Blocklets.",
5
5
  "keywords": [
6
6
  "react",
@@ -36,9 +36,9 @@
36
36
  "import": "./es/index.js",
37
37
  "require": "./lib/index.js"
38
38
  },
39
- "./lib/": {
40
- "import": "./es/",
41
- "require": "./lib/"
39
+ "./lib/*": {
40
+ "import": "./es/*.js",
41
+ "require": "./lib/*.js"
42
42
  },
43
43
  "./lib/ComponentInstaller": {
44
44
  "import": "./es/ComponentInstaller/index.js",
@@ -63,8 +63,8 @@
63
63
  },
64
64
  "dependencies": {
65
65
  "@abtnode/constant": "1.16.23",
66
- "@arcblock/did-connect": "^2.9.33",
67
- "@arcblock/ux": "^2.9.33",
66
+ "@arcblock/did-connect": "^2.9.35",
67
+ "@arcblock/ux": "^2.9.35",
68
68
  "@blocklet/js-sdk": "1.16.23",
69
69
  "@emotion/react": "^11.10.4",
70
70
  "@emotion/styled": "^11.10.4",
@@ -100,5 +100,5 @@
100
100
  "jest": "^28.1.3",
101
101
  "unbuild": "^2.0.0"
102
102
  },
103
- "gitHead": "168b2bb058ab4487f2653c602431dbe6af5f9f97"
103
+ "gitHead": "a57ad56484ed0f59f2877f9519a9ab7861b65d9d"
104
104
  }
@@ -219,7 +219,7 @@ export default function UserCenter({
219
219
 
220
220
  return (
221
221
  <>
222
- <Box sx={{ flex: 1 }}>
222
+ <Box sx={{ flex: 1, overflow: 'hidden' }}>
223
223
  {userState?.data?.fullName ? (
224
224
  <Typography
225
225
  variant="h4"