From 06a49e301dfee6c0527104e1f966c12b80e45c34 Mon Sep 17 00:00:00 2001 From: Eduardo Messuti Date: Thu, 2 Nov 2017 18:10:16 +0100 Subject: [PATCH] redux-form: added missing label?: string field This field seems to be missing, according to https://redux-form.com/7.1.2/examples/syncvalidation/ it should be available --- types/redux-form/lib/Field.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/redux-form/lib/Field.d.ts b/types/redux-form/lib/Field.d.ts index 9acba639c6..e964299ad3 100644 --- a/types/redux-form/lib/Field.d.ts +++ b/types/redux-form/lib/Field.d.ts @@ -35,6 +35,7 @@ export interface CommonFieldProps { export interface BaseFieldProps

extends Partial { name: string; + label?: string; component?: ComponentType

| "input" | "select" | "textarea", format?: Formatter | null; normalize?: Normalizer;