mirror of https://github.com/vuejs/core.git
fix(types/jsx): add `inert` attribute and missing `hidden` values (#8090)
This commit is contained in:
parent
776ebf25b2
commit
ceb0732e0b
|
@ -248,8 +248,9 @@ export interface HTMLAttributes extends AriaAttributes, EventHandlers<Events> {
|
||||||
contextmenu?: string
|
contextmenu?: string
|
||||||
dir?: string
|
dir?: string
|
||||||
draggable?: Booleanish
|
draggable?: Booleanish
|
||||||
hidden?: Booleanish
|
hidden?: Booleanish | '' | 'hidden' | 'until-found'
|
||||||
id?: string
|
id?: string
|
||||||
|
inert?: Booleanish
|
||||||
lang?: string
|
lang?: string
|
||||||
placeholder?: string
|
placeholder?: string
|
||||||
spellcheck?: Booleanish
|
spellcheck?: Booleanish
|
||||||
|
|
Loading…
Reference in New Issue