]> git.ipfire.org Git - thirdparty/vuejs/core.git/commitdiff
types(runtime-dom): update aria-relevant type (#9043)
authorKaine <121680374+kaine0923@users.noreply.github.com>
Mon, 30 Oct 2023 07:15:17 +0000 (15:15 +0800)
committerGitHub <noreply@github.com>
Mon, 30 Oct 2023 07:15:17 +0000 (15:15 +0800)
packages/runtime-dom/src/jsx.ts

index 03b84f9e020784af0676a77053465e5577cab9c6..7769418653edd731ded61d972495abfba6892250 100644 (file)
@@ -188,7 +188,17 @@ interface AriaAttributes {
    * Indicates what notifications the user agent will trigger when the accessibility tree within a live region is modified.
    * @see aria-atomic.
    */
-  'aria-relevant'?: 'additions' | 'additions text' | 'all' | 'removals' | 'text'
+  'aria-relevant'?:
+    | 'additions'
+    | 'additions removals'
+    | 'additions text'
+    | 'all'
+    | 'removals'
+    | 'removals additions'
+    | 'removals text'
+    | 'text'
+    | 'text additions'
+    | 'text removals'
   /** Indicates that user input is required on the element before a form may be submitted. */
   'aria-required'?: Booleanish
   /** Defines a human-readable, author-localized description for the role of an element. */