This repository was archived by the owner on Aug 23, 2022. It is now read-only.
React Redux Form v1.5.4
Enhancements
- If you're using
redux-thunk
(optional), you can now pass a function intoactions.change
:
dispatch(actions.change('user.name', (name) => name.toUpperCase()));
- π the
<Control>
component now takes awithField={true}
prop that will pass the field value to the event handlers as the second prop. Default:true
. - Various TypeScript defs updated
- Preact compatibility improvements thanks to @marsch: #633
- Docs: clarification that you can use any standard props, as they will be passed right to the vanilla control. #628
- Docs: added info on how to (easily!) submit a form programmatically in React-Native. #625
Fixes