Skip to content
This repository was archived by the owner on Aug 23, 2022. It is now read-only.

React Redux Form v0.13.10

Compare
Choose a tag to compare
@davidkpiano davidkpiano released this 02 Jul 19:11
· 1092 commits to master since this release

Enhancements and Fixes

  • Controls (from <Field>) will now have their validity reset if they are unmounted. The resetValidity action is dispatched on unmount if and only if the validity has changed.
  • There is now full support for <input type="file" />! 🎉
  • Also, <input type="reset" /> inside a <Field model="..."> will dispatch a reset action to that model when clicked.

Programmatically Submitting Forms

  • If you absolutely need to, you can call the .submit() method of the DOM node of a <Form> in order to programmatically submit it outside of the form: #296 #285