@aurora-ds/components 0.22.2 → 0.22.4
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/cjs/components/layout/card/Card.props.d.ts +3 -0
- package/dist/cjs/index.js +7 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/components/layout/card/Card.props.d.ts +3 -0
- package/dist/esm/index.js +7 -3
- package/dist/esm/index.js.map +1 -1
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -901,6 +901,8 @@ type CardProps = {
|
|
|
901
901
|
width?: CSSProperties['width'];
|
|
902
902
|
/** Height of the card */
|
|
903
903
|
height?: CSSProperties['height'];
|
|
904
|
+
/** Maximum height of the card */
|
|
905
|
+
maxHeight?: CSSProperties['maxHeight'];
|
|
904
906
|
/** Gap between children (theme spacing key) */
|
|
905
907
|
gap?: keyof ThemeContract['spacing'];
|
|
906
908
|
/** Border radius of the card */
|