braid-design-system@32.4.0
Minor Changes
-
Text, Heading: Add
maxLinessupport (#1286)Provide support for limiting the number of lines shown by a
TextorHeadingcomponent.EXAMPLE USAGE:
<Text maxLines={3}>...</Text>
MIGRATION:
With the addition of this feature, the
truncateprop is now deprecated and will be removed in a future release.
Existing consumers should start migrating as below:<Text - truncate + maxLines={1} />
-
Card: Add full height support (#1285)
Provide support for making a
Carduse all available vertical space.
This is useful when laying out rows ofCardelements and having them all be equal height.EXAMPLE USAGE:
<Card height="full">...</Card>
Patch Changes
-
TextLink, TextLinkButton: Update underline design (#1288)
Uplift the design of the the text underline used on
TextLinkandTextLinkButtoncomponents. -
Column: Support full height content (#1285)
Provide support for full height content by growing all
Columnelements to be uniform in height.This will have no effect on the content itself, but enables consumers to create designs of uniform content, such as rows of
Cardelements.