This repository was archived by the owner on Aug 23, 2022. It is now read-only.
React Redux Form v1.5.5
π 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. TheviewValue
, as always, updates immediately. #587
<Control.text model="user.name" debounce={300} />
- You can now use the
{ lazy: true }
option (and any futureformReducer
options) incombineForms
as the thirdoptions
argument. #422 - TypeScript definition updates: typedef for
<Fieldset>
(#642) and a small edit togetRef
(#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.