From: Mehmet Date: Mon, 11 Dec 2023 14:05:48 +0000 (+0300) Subject: feat(types): export AriaAttributes type (#8909) X-Git-Tag: v3.4.0-beta.1~21 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fd0b6ba01660499fa07b0cf360eefaac8cca8287;p=thirdparty%2Fvuejs%2Fcore.git feat(types): export AriaAttributes type (#8909) --- diff --git a/packages/runtime-dom/src/jsx.ts b/packages/runtime-dom/src/jsx.ts index b83f13e709..7ff4160f95 100644 --- a/packages/runtime-dom/src/jsx.ts +++ b/packages/runtime-dom/src/jsx.ts @@ -46,7 +46,7 @@ type Booleanish = boolean | 'true' | 'false' type Numberish = number | string // All the WAI-ARIA 1.1 attributes from https://www.w3.org/TR/wai-aria-1.1/ -interface AriaAttributes { +export interface AriaAttributes { /** Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application. */ 'aria-activedescendant'?: string /** 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. */