Skip to content

braid-design-system@25.6.0

Choose a tag to compare

@seek-oss-ci seek-oss-ci released this 01 May 02:37
· 1330 commits to master since this release
77438b2

Minor Changes

  • Autosuggest: Support suggestion descriptions (#613)

    You can now provide a description as part of each suggestion item, e.g.:

    <Autosuggest
      suggestions={[
        {
          text: 'Apples',
          value: 123,
          description: 'Juicy and delicious',
        },
      ]}
      {...rest}
    />