This repository was archived by the owner on Sep 14, 2021. It is now read-only.
v30.0.0
<a name"30.0.0">
30.0.0 (2017-08-03)
Features
Breaking Changes
-
<Autosuggest>no longer acceptslabelPropsvia theinputProps.labelPropsprop.REASON FOR CHANGE:
The current behaviour is incorrect since
labelPropsisn't a prop passed to the input element.MIGRATION GUIDE:
Before:
<Autosuggest {...} inputProps={{ labelProps, ... }} />
After:
<Autosuggest {...} inputProps={...} labelProps={...} />
(05ba33c4)