Socket
Socket
Sign inDemoInstall

aria-live-capture

Package Overview
Dependencies
0
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    aria-live-capture

Capture announcements of ARIA-live regions


Version published
Weekly downloads
486
increased by112.23%
Maintainers
1
Created
Weekly downloads
 

Changelog

Source

1.0.2 (2024-03-18)

Bug Fixes

  • role="timer" with aria-live should announce (#179) (e8961ee)

Readme

Source

aria-live-capture

version

Installation | Usage | Announcement detection examples | Support

Capture announcements of ARIA live regions.

aria-live-capture is an utility tool for inspecting announcements of ARIA live regions. When developing an application which utilizes ARIA live announcements it is often frustrating to toggle screen readers and other assistive technologies constantly on/off during development. This tool aims to help developers easily see announcements without having to use actual screen readers. However final assertion should always be made with the actual target assistive technology.

For online demo see Storybook playground.

For validating ARIA live regions in tests see extend-to-be-announced.

For Storybook integration see storybook-addon-aria-live.

Read more about inspiration from Building testing tools for ARIA live regions.

Installation

aria-live-capture should be included in development dependencies.

npm install --save-dev aria-live-capture

Usage

Import CaptureAnnouncements from entrypoint.

import CaptureAnnouncements from 'aria-live-capture';

onCapture

Pass onCapture callback to handle announcements.

Callback argumenttypevalue
announcementstringText content of the announcement
politenessSettingstringpolite|assertive
CaptureAnnouncements({
    onCapture: (announcement, politenessSetting) => {
        console.log(`"${announcement}" was announced with politeness setting "${politenessSetting}"`);
    },
});
"Loading" was announced with politeness setting "polite"
"Failed to load user details" was announced with politeness setting "assertive"

includeShadowDom

Pass an optional boolean includeShadowDom option to include tracking of live regions in Shadow DOM. Default value is false.

CaptureAnnouncements({
    includeShadowDom: true,
});

cleanup

The CaptureAnnouncements method returns cleanup function for clearing DOM interceptors.

const cleanup = CaptureAnnouncements(options);

cleanup();

Announcement detection examples

Test online  

Render#1 | <div role="status"></div>
Render#2 | <div role="status">Loading</div>
PASS ✅  | "Loading" is announced
Render#1 | <div aria-live="polite"></div>
Render#2 | <div aria-live="polite">Loading</div>
PASS ✅  | "Loading" is announced
Render#1 | <div role="log"></div>
Render#2 | <div role="log">Loading</div>
PASS ✅  | "Loading" is announced
Render#1 | <output></output>
Render#2 | <output>Loading</output>
PASS ✅  | "Loading" is announced
Render#1 | <div role="status">Loading</div>
FAIL ❌  | "Loading" is not announced
Render#1 | <div></div>
Render#2 | <div role="status">Loading</div>
FAIL ❌  | "Loading" is not announced
Render#1 | <div></div>
Render#2 | <div aria-live="polite">Loading</div>
FAIL ❌  | "Loading" is not announced
Render#1 | <div role="alert">Error</div>
PASS ✅  | "Error" is announced
Render#1 | <div aria-live="assertive">Error</div>
FAIL ❌  | "Error" is not announced
Render#1 | <div></div>
Render#2 | <div role="alert">Error</div>
PASS ✅  | "Error" is announced
Render#1 | <div role="status">
         |     <div aria-hidden="true">Loading</div>
         | </div>
         |
Render#2 | <div role="status">
         |     <div aria-hidden="false">Loading</div>
         | </div>
         |
PASS ✅  | "Loading" is announced
Render#1 | <div role="status" aria-hidden="true">Loading</div>
Render#2 | <div role="status" aria-hidden="false">Loading</div>
FAIL ❌  | "Loading" is not announced

With option { includeShadowDom: true }:

Render#1 | <div role="status">
         |     #shadow-root
         |     <div></div>
         | </div>
         |
Render#2 | <div role="status">
         |     #shadow-root
         |     <div>Loading</div>
         | </div>
         |
PASS ✅  | "Loading" is announced

Support

FeatureStatus
role
aria-live
aria-atomic❌ 👷
aria-busy
aria-relevant

Keywords

FAQs

Last updated on 18 Mar 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc