Skip to content

Commit fd0b6ba

Browse files
authoredDec 11, 2023
feat(types): export AriaAttributes type (#8909)
1 parent fa4969e commit fd0b6ba

File tree

1 file changed

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

1 file changed

+1
-1
lines changed
 

‎packages/runtime-dom/src/jsx.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ type Booleanish = boolean | 'true' | 'false'
4646
type Numberish = number | string
4747

4848
// All the WAI-ARIA 1.1 attributes from https://www.w3.org/TR/wai-aria-1.1/
49-
interface AriaAttributes {
49+
export interface AriaAttributes {
5050
/** Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application. */
5151
'aria-activedescendant'?: string
5252
/** Indicates whether assistive technologies will present all, or only parts of, the changed region based on the change notifications defined by the aria-relevant attribute. */

0 commit comments

Comments
 (0)
Please sign in to comment.