This repository was archived by the owner on Aug 23, 2022. It is now read-only.
React Redux Form v0.13.8
Handling (Un)Controlled Components
- The
<input>
value now defaults to the empty string''
if themodelValue
is falsey for text inputs. - If
defaultChecked
is specified on radio or checkbox components, then RRF won't attempt to control the component. #265
Enhancements and Bug Fixes
- Validity will now be reset when a
<Field>
or<Control>
(internal) is destroyed. - Async actions in
asyncSetValidity
are now batched, which means less rerendering, less reducer calls, less dispatches, better performance. #277 - Async validators in
<Field>
now merge the validity with the existing (sync) validity instead of overwriting it. #277