aefis-core-ui 2.3.0-rc23 → 2.3.0-rc25
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/dist/index.modern.js +6 -9
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.modern.js
CHANGED
|
@@ -1304,13 +1304,6 @@ AvatarBox.propTypes = {
|
|
|
1304
1304
|
};
|
|
1305
1305
|
|
|
1306
1306
|
const useStyles$G = makeStyles$1(theme => ({
|
|
1307
|
-
formattedContainer: {
|
|
1308
|
-
display: "flex"
|
|
1309
|
-
},
|
|
1310
|
-
container: {
|
|
1311
|
-
display: "flex",
|
|
1312
|
-
boxSizing: "border-box"
|
|
1313
|
-
},
|
|
1314
1307
|
avatar: {
|
|
1315
1308
|
flex: "0 0 auto",
|
|
1316
1309
|
marginRight: theme.spacing(1)
|
|
@@ -1462,7 +1455,9 @@ const AvatarTitle = /*#__PURE__*/React.memo(function AvatarTitle({
|
|
|
1462
1455
|
};
|
|
1463
1456
|
const avatarIcon = type === "custom" ? avatar : icon[type];
|
|
1464
1457
|
return /*#__PURE__*/jsxs(Box$1, {
|
|
1465
|
-
|
|
1458
|
+
sx: {
|
|
1459
|
+
display: "flex"
|
|
1460
|
+
},
|
|
1466
1461
|
children: [/*#__PURE__*/jsxs(Box$1, {
|
|
1467
1462
|
sx: avatarContainerStyle,
|
|
1468
1463
|
children: [size === "xsmall" && /*#__PURE__*/jsx(XSmallAvatar, {
|
|
@@ -1489,7 +1484,8 @@ const AvatarTitle = /*#__PURE__*/React.memo(function AvatarTitle({
|
|
|
1489
1484
|
}), /*#__PURE__*/jsxs(Box$1, {
|
|
1490
1485
|
sx: {
|
|
1491
1486
|
display: "flex",
|
|
1492
|
-
flexDirection: "column"
|
|
1487
|
+
flexDirection: "column",
|
|
1488
|
+
justifyContent: "center"
|
|
1493
1489
|
},
|
|
1494
1490
|
children: [typeof title === "string" ? /*#__PURE__*/jsx(Typography, {
|
|
1495
1491
|
variant: "h6",
|
|
@@ -4802,6 +4798,7 @@ const List = ({
|
|
|
4802
4798
|
listStyle["flexDirection"] = "row";
|
|
4803
4799
|
listProps["dense"] = true;
|
|
4804
4800
|
listProps["disablePadding"] = true;
|
|
4801
|
+
listStyle["flexWrap"] = "unset";
|
|
4805
4802
|
}
|
|
4806
4803
|
return /*#__PURE__*/jsx(Box$1, {
|
|
4807
4804
|
sx: rootStyle,
|