Skip to content

Commit 7f42430

Browse files
authored
fix(runtime): add autocomplete to textarea (#4465)
this commit adds 'autocomplete` and 'autoComplete' to the typings for a `<textarea>`
1 parent 8c77ebe commit 7f42430

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/declarations/stencil-public-runtime.ts

+2
Original file line numberDiff line numberDiff line change
@@ -1257,6 +1257,8 @@ export namespace JSXBase {
12571257
}
12581258

12591259
export interface TextareaHTMLAttributes<T> extends HTMLAttributes<T> {
1260+
autoComplete?: string;
1261+
autocomplete?: string;
12601262
autoFocus?: boolean;
12611263
autofocus?: boolean | string;
12621264
cols?: number;

0 commit comments

Comments
 (0)