Skip to content

braid-design-system@27.1.0

Choose a tag to compare

@seek-oss-ci seek-oss-ci released this 14 May 00:26
· 1307 commits to master since this release
26ea250

Minor Changes

  • Stack: Add support for Hidden stack items (#632)

    You can now responsively hide stack items using the Hidden component while maintaining the correct spacing between all visible elements.

    For example, if you wanted to hide a stack item on mobile:

    <Stack space="small">
      <Text>...</Text>
      <Hidden below="tablet">
        <Text>...</Text>
      </Hidden>
      <Text>...</Text>
    </Stack>