From 96f036fdbc6cfd4708dfce8852f90ef9381b8ebb Mon Sep 17 00:00:00 2001 From: Nico Chaves Date: Thu, 3 May 2018 09:56:24 -0700 Subject: [PATCH] [redux-form] add missing updateUnregisteredFields prop (#25309) * add missing updateUnregisteredFields prop * fix lint issue (no-trailing-whitespace) --- types/redux-form/lib/reduxForm.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/redux-form/lib/reduxForm.d.ts b/types/redux-form/lib/reduxForm.d.ts index 5cfcdb842c..29b6ca24ae 100644 --- a/types/redux-form/lib/reduxForm.d.ts +++ b/types/redux-form/lib/reduxForm.d.ts @@ -109,6 +109,7 @@ export interface ConfigProps { immutableProps?: string[]; initialValues?: Partial; keepDirtyOnReinitialize?: boolean; + updateUnregisteredFields?: boolean; onChange?(values: Partial, dispatch: Dispatch, props: P & InjectedFormProps): void; onSubmit?: FormSubmitHandler> | SubmitHandler>; onSubmitFail?(errors: FormErrors, dispatch: Dispatch, submitError: any, props: P & InjectedFormProps): void;