This repository was archived by the owner on Aug 23, 2022. It is now read-only.
React Redux Form v0.9.14
Dependencies
- Bumped lodash to
4.10.0
Planned Simplification
- Started deprecation of
actions.setErrors()
. Instead, this will be merged withactions.setValidity(model, validators, { errors: true })
, where the third argument is foroptions
. - The
<Field updateOn="...">
prop will no longer accept functions in v1.0. It will expect strings such as"change", "blur", "focus"
, etc.- To get similar behavior of customizing change behavior with a function, use the
changeAction={...}
prop.
- To get similar behavior of customizing change behavior with a function, use the
Planned Enhancements
- The upcoming
<Control>
component (which is just a lower-level abstraction for controls inside<Field>
) will soon supportonLoad
andonSubmit
event handlers.