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
|
||||
dir?: string
|
||||
draggable?: Booleanish
|
||||
hidden?: Booleanish
|
||||
hidden?: Booleanish | '' | 'hidden' | 'until-found'
|
||||
id?: string
|
||||
inert?: Booleanish
|
||||
lang?: string
|
||||
placeholder?: string
|
||||
spellcheck?: Booleanish
|
||||
|
|
Loading…
Reference in New Issue