HelpBot Assistant

How can I help you?

Accessibility in React Speed dial component

2 Mar 20265 minutes to read

The Speed Dial component adheres to accessibility standards, including ADA, Section 508, WCAG 2.2, and WCAG roles. These standards ensure the component is usable by all users, including those using assistive technologies.

The following table outlines the accessibility compliance for the Speed Dial component.

Accessibility Criteria Compatibility
WCAG 2.2 Support Yes
Section 508 Support Yes
Screen Reader Support Yes
Right-To-Left Support Yes
Color Contrast Yes
Mobile Device Support Yes
Keyboard Navigation Support Yes
Accessibility Checker Validation Yes
Axe-core Accessibility Validation Yes
Yes - All features of the component meet the requirement.
Intermediate - Some features of the component do not meet the requirement.
No - The component does not meet the requirement.

WAI-ARIA attributes

Legend:
Yes - Fully supported

The Speed Dial component follows WAI-ARIA patterns to ensure accessibility. The following ARIA attributes are implemented in the Speed Dial component:

Attributes Purpose Support
role="menu" Defines the menu semantic role for the SpeedDial popup container. Yes
role="menuitem" Defines the menu item semantic role for individual SpeedDial action items. Yes
aria-label Provides an accessible name for the SpeedDial button or action items. Yes
aria-expanded Indicates whether the SpeedDial popup is currently open (true) or closed (false). Yes
aria-haspopup Indicates that the SpeedDial button has an associated popup menu. Yes
aria-controls References the popup element controlled by the SpeedDial button for screen readers. Yes
aria-disabled Indicates whether a SpeedDial action item is disabled and cannot be activated. Yes

Keyboard interaction

The Speed Dial component implements keyboard interaction guidelines to support users relying on keyboard navigation or assistive technologies. The following keyboard shortcuts are supported:

Press To do this
Enter Opens or closes the SpeedDial popup menu.
Space Opens or closes the SpeedDial popup menu.
Up Arrow Moves focus to the previous action item in the menu.
Down Arrow Moves focus to the next action item in the menu.
Left Arrow Moves focus to the previous action item in the menu.
Right Arrow Moves focus to the next action item in the menu.
Home Moves focus to the first action item in the menu.
End Moves focus to the last action item in the menu.
Escape Closes the SpeedDial popup menu.

Ensuring accessibility

The Speed Dial component’s accessibility levels are ensured through an accessibility-checker and axe-core software tools during automated testing.

The accessibility compliance of the Speed Dial component is shown in the following sample. Open the sample in a new window to evaluate the accessibility of the Speed Dial component with accessibility tools.

See also