Skip to content

Commit ceb0732

Browse files
authored
fix(types/jsx): add inert attribute and missing hidden values (#8090)
1 parent 776ebf2 commit ceb0732

File tree

1 file changed

+2
-1
lines changed
  • packages/runtime-dom/src

1 file changed

+2
-1
lines changed

packages/runtime-dom/src/jsx.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -248,8 +248,9 @@ export interface HTMLAttributes extends AriaAttributes, EventHandlers<Events> {
248248
contextmenu?: string
249249
dir?: string
250250
draggable?: Booleanish
251-
hidden?: Booleanish
251+
hidden?: Booleanish | '' | 'hidden' | 'until-found'
252252
id?: string
253+
inert?: Booleanish
253254
lang?: string
254255
placeholder?: string
255256
spellcheck?: Booleanish

0 commit comments

Comments
 (0)