Skip to content

Commit

Permalink
fix(runtime): add autocomplete to textarea (#4465)
Browse files Browse the repository at this point in the history
this commit adds 'autocomplete` and 'autoComplete' to the typings for a
`<textarea>`
  • Loading branch information
rwaskiewicz committed Jun 13, 2023
1 parent 8c77ebe commit 7f42430
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/declarations/stencil-public-runtime.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1257,6 +1257,8 @@ export namespace JSXBase {
}

export interface TextareaHTMLAttributes<T> extends HTMLAttributes<T> {
autoComplete?: string;
autocomplete?: string;
autoFocus?: boolean;
autofocus?: boolean | string;
cols?: number;
Expand Down

0 comments on commit 7f42430

Please sign in to comment.