Skip to content

v29.18.0

Choose a tag to compare

@seek-oss-ci seek-oss-ci released this 08 Dec 23:04
· 1111 commits to master since this release
dab8782

Minor Changes

  • Autosuggest: Add support for custom messages when no suggestions are present (#847)

    If no suggestions are available and you'd like to provide an explanation to the user, you can now pass an object with a messages property to the suggestions prop.

    EXAMPLE USAGE

    <Autosuggest
      suggestions={{ message: 'No suggestions available.' }}
      {...restProps}
    />