v1.0.0-alpha.5
Pre-release
Pre-release
- Fix: we have restored the ability to add custom
classname
s to the form component (#111). - Breaking change:
updateOn
prop 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