Skip to content

v1.0.0-alpha.5

Pre-release
Pre-release
Compare
Choose a tag to compare
@twisty twisty released this 19 Sep 21:47
· 237 commits to master since this release
  • Fix: we have restored the ability to add custom classnames 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