v1.0.0-alpha.5
Pre-release
Pre-release
- Fix: we have restored the ability to add custom
classnames to the form component (#111). - Breaking change:
updateOnprop in<Input />and<Textarea />components.
The updateOn prop has gone.
For the <Input /> and <Textarea /> components, the props that tweak the events that trigger a setValue call have been changed.
Previously, we used a space-separated string:
updateOn="blur change"
Now we use booleans:
updateOnBlur // default: true
updateOnChange // default: true