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

React Redux Form v1.5.5

Compare
Choose a tag to compare
@davidkpiano davidkpiano released this 10 Feb 04:07
· 427 commits to master since this release

πŸ€ Debouncing! 🎾

  • The debounce={...} prop is now available on <Control> components, which allow you to change models only after a certain amount of time (in milliseconds) has elapsed since the last change. The viewValue, as always, updates immediately. #587
<Control.text model="user.name" debounce={300} />
  • You can now use the { lazy: true } option (and any future formReducer options) in combineForms as the third options argument. #422
  • TypeScript definition updates: typedef for <Fieldset> (#642) and a small edit to getRef (#638)
  • track() now works as expected in Immutable.JS contexts. #644
  • A large amount of refactoring and clean-up was done for validation logic in <Form>. No external APIs were changed.