Skip to content
This repository was archived by the owner on Sep 14, 2021. It is now read-only.

v30.0.0

Choose a tag to compare

@markdalgleish markdalgleish released this 03 Aug 06:45

<a name"30.0.0">

30.0.0 (2017-08-03)

Features

  • Autosuggest: move label prop to the root level of component (#281) (05ba33c4)

Breaking Changes

  • <Autosuggest> no longer accepts labelProps via the inputProps.labelProps prop.

    REASON FOR CHANGE:

    The current behaviour is incorrect since labelProps isn't a prop passed to the input element.

    MIGRATION GUIDE:

    Before:

    <Autosuggest {...} inputProps={{ labelProps, ... }} />

    After:

    <Autosuggest {...} inputProps={...} labelProps={...} />

    (05ba33c4)