diff --git a/types/react/index.d.ts b/types/react/index.d.ts index 3849e98d7f..b74fe7a1a0 100644 --- a/types/react/index.d.ts +++ b/types/react/index.d.ts @@ -12,6 +12,7 @@ // Tanguy Krotoff // Dovydas Navickas // Stéphane Goetz +// Mike Deverell // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped // TypeScript Version: 2.3 @@ -2391,7 +2392,7 @@ declare namespace React { allowTransparency?: boolean; alt?: string; async?: boolean; - autoComplete?: string; + autocomplete?: string; autoFocus?: boolean; autoPlay?: boolean; capture?: boolean; @@ -2576,7 +2577,7 @@ declare namespace React { interface FormHTMLAttributes extends HTMLAttributes { acceptCharset?: string; action?: string; - autoComplete?: string; + autocomplete?: string; encType?: string; method?: string; name?: string; @@ -2622,7 +2623,7 @@ declare namespace React { interface InputHTMLAttributes extends HTMLAttributes { accept?: string; alt?: string; - autoComplete?: string; + autocomplete?: string; autoFocus?: boolean; capture?: boolean; // https://www.w3.org/TR/html-media-capture/#the-capture-attribute checked?: boolean; @@ -2815,8 +2816,10 @@ declare namespace React { } interface TextareaHTMLAttributes extends HTMLAttributes { + autocomplete?: string; autoFocus?: boolean; cols?: number; + dirName?: string; disabled?: boolean; form?: string; maxLength?: number;