]> git.ipfire.org Git - thirdparty/vuejs/core.git/commitdiff
fix(types/jsx): add `inert` attribute and missing `hidden` values (#8090)
authorKid <44045911+kidonng@users.noreply.github.com>
Tue, 11 Jul 2023 09:30:01 +0000 (17:30 +0800)
committerGitHub <noreply@github.com>
Tue, 11 Jul 2023 09:30:01 +0000 (17:30 +0800)
packages/runtime-dom/src/jsx.ts

index f76c8d7fb17c178e5f1afdcad76ab0716345c2bb..d3c0332c7c3e9dab4e6f5c61d431221527868c52 100644 (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