@arcblock/ux 2.13.9 → 2.13.10

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.
@@ -20,10 +20,8 @@ function BasicCard(props) {
20
20
  display: "flex",
21
21
  flexDirection: "column",
22
22
  width: "100%",
23
- sx: {
24
- flex: 1,
25
- minWidth: 0
26
- },
23
+ flex: 1,
24
+ height: "100%",
27
25
  children: [/*#__PURE__*/_jsx(MinimalContent, {
28
26
  user: user,
29
27
  avatarSize: avatarSize,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arcblock/ux",
3
- "version": "2.13.9",
3
+ "version": "2.13.10",
4
4
  "description": "Common used react components for arcblock products",
5
5
  "keywords": [
6
6
  "react",
@@ -70,14 +70,14 @@
70
70
  "react": ">=18.2.0",
71
71
  "react-router-dom": ">=6.22.3"
72
72
  },
73
- "gitHead": "a5aa684d78543947c92666fd6d461fade2a46097",
73
+ "gitHead": "164845889eb29a84f9da191b79f66c43554f9fa1",
74
74
  "dependencies": {
75
75
  "@arcblock/did-motif": "^1.1.13",
76
- "@arcblock/icons": "^2.13.9",
77
- "@arcblock/nft-display": "^2.13.9",
78
- "@arcblock/react-hooks": "^2.13.9",
76
+ "@arcblock/icons": "^2.13.10",
77
+ "@arcblock/nft-display": "^2.13.10",
78
+ "@arcblock/react-hooks": "^2.13.10",
79
79
  "@babel/plugin-syntax-dynamic-import": "^7.8.3",
80
- "@blocklet/theme": "^2.13.9",
80
+ "@blocklet/theme": "^2.13.10",
81
81
  "@fontsource/roboto": "~5.1.1",
82
82
  "@fontsource/ubuntu-mono": "^5.0.18",
83
83
  "@iconify-icons/logos": "^1.2.36",
@@ -25,7 +25,7 @@ function BasicCard(props: BasicCardProps) {
25
25
  } = props;
26
26
 
27
27
  return (
28
- <Box display="flex" flexDirection="column" width="100%" sx={{ flex: 1, minWidth: 0 }}>
28
+ <Box display="flex" flexDirection="column" width="100%" flex={1} height="100%">
29
29
  <MinimalContent user={user} avatarSize={avatarSize} {...rest} />
30
30
 
31
31
  {infoType === InfoType.Basic && <BasicContent user={user} isFull={isFull} renderFields={renderFields} />}