Skip to content

Commit

Permalink
fix(types/jsx): add inert attribute and missing hidden values (#8090
Browse files Browse the repository at this point in the history
)
  • Loading branch information
kidonng authored Jul 11, 2023
1 parent 776ebf2 commit ceb0732
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/runtime-dom/src/jsx.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ceb0732

Please sign in to comment.