We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0bbd6db commit f2c9320Copy full SHA for f2c9320
src/compounds/Item/CardBody.jsx
@@ -78,6 +78,14 @@ CardBody.propTypes = {
78
name: PropTypes.string.isRequired,
79
slug: PropTypes.string,
80
}),
81
+ markdownDescriptionTruncated: PropTypes.oneOfType([
82
+ PropTypes.string,
83
+ PropTypes.elementType,
84
+ ]),
85
+ markdownDescriptionExtended: PropTypes.oneOfType([
86
87
88
89
orientation: PropTypes.oneOf(['horizontal', 'vertical']),
90
titleLink: PropTypes.string,
91
withButtonLink: PropTypes.bool,
@@ -90,6 +98,8 @@ CardBody.defaultProps = {
98
item: {
99
description: '',
92
100
},
101
+ markdownDescriptionTruncated: '',
102
+ markdownDescriptionExtended: '',
93
103
orientation: 'vertical',
94
104
titleLink: '',
95
105
withButtonLink: false,
0 commit comments