1.1.2 • Published 1 year ago

@durkdotdev/aria-types v1.1.2

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

@durkdotdev/aria-types

Type definitions for WAI-ARIA Accessibility.

Installation

npm install @durkdotdev/aria-types -D
# or
yarn add @durkdotdev/aria-types -D
# or
pnpm add @durkdotdev/aria-types -D

Usage

import { AriaTypes } from "@durkdotdev/aria-types";

const aria: AriaTypes = {
  "aria-atomic": "true",
  role: "alert"
};

Requiring Aria Attributes

@durkdotdev/aria-types exports a generic type to enforce required aria attributes:

import { PartiallyRequiredAriaTypes } from "@durkdotdev/aria-types";

const aria: PartiallyRequiredAriaTypes<"aria-atomic" | "role"> = {
  "aria-atomic": "true",
  role: "alert"
};

Types

@durkdotdev/aria-types exports the following types:

NameDescription
AriaAttributestyped aria attributes
AriaAttributesDragAndDroptyped drag-and-drop aria attributes
AriaAttributesGlobaltyped global aria attributes
AriaAttributesLiveRegiontyped live region aria attributes
AriaAttributesRelationshiptyped relationship aria attributes
AriaAttributesWidgettyped widget aria attributes
AriaRoletyped aria role
AriaRoleCompositetyped composite aria role
AriaRoleDocumentStructuretyped document structure aria role
AriaRoleLandmarktyped landmark aria role
AriaRoleLiveRegiontyped live region aria role
AriaRoleWidgettyped widget aria role
AriaRoleWindowtyped window aria role

\ \ In addition, the following arrays are exported:

NameDescription
ariaAttributesarray of aria attributes
ariaAttributesDragAndDroparray of drag-and-drop aria attributes
ariaAttributesGlobalarray of global aria attributes
ariaAttributesLiveRegionarray of live region attributes
ariaAttributesRelationshiparray of relationship aria attributes
ariaAttributesWidgetarray of widget aria attributes
ariaRolesarray of aria roles
ariaRolesCompositearray of composite aria roles
ariaRolesDocumentStructurearray of document structure aria roles
ariaRolesLandmarkarray of landmark aria roles
ariaRolesLiveRegionarray of live region aria roles
ariaRolesWidgetarray of widget aria roles
ariaRolesWindowarray of window aria roles

Resources

For more resources on WAI-ARIA:

1.1.1

1 year ago

1.1.2

1 year ago

1.1.0

1 year ago

1.0.0

1 year ago