mirror of https://github.com/vuejs/core.git
types(jsx): correct the naming of the enterKeyHint property (#14090)
This commit is contained in:
parent
e9c676ff2b
commit
f40baa2d50
|
|
@ -547,7 +547,7 @@ export interface InputHTMLAttributes extends HTMLAttributes {
|
||||||
checked?: Booleanish | any[] | Set<any> | undefined // for IDE v-model multi-checkbox support
|
checked?: Booleanish | any[] | Set<any> | undefined // for IDE v-model multi-checkbox support
|
||||||
crossorigin?: string | undefined
|
crossorigin?: string | undefined
|
||||||
disabled?: Booleanish | undefined
|
disabled?: Booleanish | undefined
|
||||||
enterKeyHint?:
|
enterkeyhint?:
|
||||||
| 'enter'
|
| 'enter'
|
||||||
| 'done'
|
| 'done'
|
||||||
| 'go'
|
| 'go'
|
||||||
|
|
@ -556,6 +556,10 @@ export interface InputHTMLAttributes extends HTMLAttributes {
|
||||||
| 'search'
|
| 'search'
|
||||||
| 'send'
|
| 'send'
|
||||||
| undefined
|
| undefined
|
||||||
|
/**
|
||||||
|
* @deprecated Use `enterkeyhint` instead.
|
||||||
|
*/
|
||||||
|
enterKeyHint?: InputHTMLAttributes['enterkeyhint']
|
||||||
form?: string | undefined
|
form?: string | undefined
|
||||||
formaction?: string | undefined
|
formaction?: string | undefined
|
||||||
formenctype?: string | undefined
|
formenctype?: string | undefined
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue