Skip to content

Commit

Permalink
Merge branch 'master' into fix/ts-forward-ref-exotic
Browse files Browse the repository at this point in the history
  • Loading branch information
rschristian committed May 25, 2023
2 parents 0e9b319 + bd593c4 commit 88c03e5
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/jsx.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1359,6 +1359,16 @@ export namespace JSXInternal {
'aria-autocomplete'?: Signalish<
'none' | 'inline' | 'list' | 'both' | undefined
>;
/**
* Defines a string value that labels the current element, which is intended to be converted into Braille.
* @see aria-label.
*/
'aria-braillelabel'?: Signalish<string | undefined>;
/**
* Defines a human-readable, author-localized abbreviated description for the role of an element, which is intended to be converted into Braille.
* @see aria-roledescription.
*/
'aria-brailleroledescription'?: Signalish<string | undefined>;
/** Indicates an element is being modified and that assistive technologies MAY want to wait until the modifications are complete before exposing them to the user. */
'aria-busy'?: Signalish<Booleanish | undefined>;
/**
Expand Down

0 comments on commit 88c03e5

Please sign in to comment.