fix(types/jsx): add `inert` attribute and missing `hidden` values (#8090)

This commit is contained in:
Kid 2023-07-11 17:30:01 +08:00 committed by GitHub
parent 776ebf25b2
commit ceb0732e0b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -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