aefis-core-ui 2.3.0-rc22 → 2.3.0-rc23
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 +7 -2
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.modern.js
CHANGED
|
@@ -4365,6 +4365,7 @@ const RenderCard = props => {
|
|
|
4365
4365
|
imageContent: props.headerContent,
|
|
4366
4366
|
imageHeight: props.headerImage || props.gradientColorHeaderImageId ? props.size === "small" ? 100 : 125 : undefined,
|
|
4367
4367
|
hasGutter: false,
|
|
4368
|
+
dense: props.dense,
|
|
4368
4369
|
gradientColorHeaderImageId: props.gradientColorHeaderImageId,
|
|
4369
4370
|
avatar: props.avatarIcon ? /*#__PURE__*/jsx(Avatar$1, {
|
|
4370
4371
|
sx: {
|
|
@@ -4417,6 +4418,7 @@ RenderCard.propTypes = {
|
|
|
4417
4418
|
avatar: PropTypes.any,
|
|
4418
4419
|
cardStyle: PropTypes.any,
|
|
4419
4420
|
containerStyle: PropTypes.any,
|
|
4421
|
+
dense: PropTypes.bool,
|
|
4420
4422
|
sx: PropTypes.object
|
|
4421
4423
|
};
|
|
4422
4424
|
const BusinessObjectCard = props => {
|
|
@@ -4428,7 +4430,8 @@ BusinessObjectCard.defaultProps = {
|
|
|
4428
4430
|
displayType: "default",
|
|
4429
4431
|
size: "medium",
|
|
4430
4432
|
titleComponent: "div",
|
|
4431
|
-
autoTruncateDescription: true
|
|
4433
|
+
autoTruncateDescription: true,
|
|
4434
|
+
dense: false
|
|
4432
4435
|
};
|
|
4433
4436
|
BusinessObjectCard.propTypes = {
|
|
4434
4437
|
/** Title of the card */
|
|
@@ -4468,7 +4471,9 @@ BusinessObjectCard.propTypes = {
|
|
|
4468
4471
|
/** Additional styles for the content box container */
|
|
4469
4472
|
containerStyle: PropTypes.any,
|
|
4470
4473
|
/** Additional styles to apply */
|
|
4471
|
-
sx: PropTypes.object
|
|
4474
|
+
sx: PropTypes.object,
|
|
4475
|
+
/** Compact display? */
|
|
4476
|
+
dense: PropTypes.bool
|
|
4472
4477
|
};
|
|
4473
4478
|
|
|
4474
4479
|
const _excluded$h = ["enableScrollTop", "containerProps"];
|