Skip to content

braid-design-system@33.13.0

Choose a tag to compare

@seek-oss-ci seek-oss-ci released this 09 Dec 04:06
· 137 commits to master since this release
9082d57

Minor Changes

  • Autosuggest: Add support for data attributes on individual suggestions (#1938)

    The data attributes are applied to each rendered list item.

    EXAMPLE USAGE:

    <Autosuggest
      suggestions={[
        {
          text: 'Apples',
          data: { testid: 'suggestion-apples' },
        },
      ]}
    />

Patch Changes

  • ButtonIcon, TooltipRenderer: Close tooltips after clicking the trigger on desktop devices (#1932)