Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion packages/runtime-dom/src/jsx.ts
Original file line number Diff line number Diff line change
Expand Up @@ -547,7 +547,7 @@ export interface InputHTMLAttributes extends HTMLAttributes {
checked?: Booleanish | any[] | Set<any> | undefined // for IDE v-model multi-checkbox support
crossorigin?: string | undefined
disabled?: Booleanish | undefined
enterKeyHint?:
enterkeyhint?:
| 'enter'
| 'done'
| 'go'
Expand All @@ -556,6 +556,10 @@ export interface InputHTMLAttributes extends HTMLAttributes {
| 'search'
| 'send'
| undefined
/**
* @deprecated Use `enterkeyhint` instead.
*/
enterKeyHint?: InputHTMLAttributes['enterkeyhint']
form?: string | undefined
formaction?: string | undefined
formenctype?: string | undefined
Expand Down
Loading