We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a75d1c5 commit 72fdafaCopy full SHA for 72fdafa
packages/runtime-dom/src/jsx.ts
@@ -188,7 +188,17 @@ interface AriaAttributes {
188
* Indicates what notifications the user agent will trigger when the accessibility tree within a live region is modified.
189
* @see aria-atomic.
190
*/
191
- 'aria-relevant'?: 'additions' | 'additions text' | 'all' | 'removals' | 'text'
+ 'aria-relevant'?:
192
+ | 'additions'
193
+ | 'additions removals'
194
+ | 'additions text'
195
+ | 'all'
196
+ | 'removals'
197
+ | 'removals additions'
198
+ | 'removals text'
199
+ | 'text'
200
+ | 'text additions'
201
+ | 'text removals'
202
/** Indicates that user input is required on the element before a form may be submitted. */
203
'aria-required'?: Booleanish
204
/** Defines a human-readable, author-localized description for the role of an element. */
0 commit comments