What is Toolbelt?
Toolbelt is a headless and unstyled component library for common accessibility patterns, built on top of Alpine.js. The library is tech-agnostic. As long as you’re producing HTML, Toolbelt is compatible.
Upstatement builds websites for various brands and with various technologies but accessibility conformance is a constant across our work. Toolbelt is meant to bridge the knowledge gap in our web accessibility practice by providing components that adhere to WCAG and WAI-ARIA patterns out of the box, regardless of the technology stack we use.
How It Works
Toolbelt is a client-side library that uses Alpine “directives” (more details in the Alpine Directives). These directives will inject the appropriate HTML and ARIA attributes when the page loads and Toolbelt initializes. For components with interactivity, the expected behavior will be automatically handled as well.
Consider the following markup for a <section>
element, which uses Toolbelt’s x-section
directive:
On the client-side, Toolbelt will automatically add attributes to each element. Wherever you are generating the markup above, you no longer need to worry about creating unique IDs.
Alpine Directives
Toolbelt is based on Alpine’s “directives”, which are the x-...
attributes embedded into HTML elements. The structure for a directive is as such:
Not all Toolbelt components require each part of the directive. It entirely depends on the complexity and configurability of each component. Documentation for each component will outline every option available.
Here’s an example of an accordion that only allows one item to be open at any time, loops keyboard navigation, and opens the first item by default: