braid-design-system@24.2.0
·
1377 commits
to master
since this release
Minor Changes
-
Inline: Support vertical alignment (#562)
InlineVertical alignment is now supported via the
alignYprop, e.g.<Inline space="small" alignY="center">.This also supports responsive values, e.g.
<Inline space="small" alignY={['center', 'top']}> -
Box: Add
userSelect="none". (#556)BoxYou can now set
userSelectto"none"directly onBox.Since the default value of
user-selectin CSS is"auto", you can make this value dynamic by conditionally setting it toundefined, e.g.<Box userSelect={selectable ? undefined : 'none'}.