This repository contains a collection of useful accessible components such as tabs, accordion, modal dialog...
Start by installing the package.
pnpm add @beapi/be-a11y # or npm install @beapi/be-a11y --save or yarn add @beapi/be-a11yThen, import in your JavaScript file the component you need.
import { Accordion } from '@beapi/be-a11y';
Accordion.init('#my-accordion', {
allowMultiple: true,
});For more details about components, check the documentations:
Project works with Vite ⚡ and Playwright 🎭.
pnpm # Install dependencies
pnpm dev # Start development serverIn examples directory you can find sample of components. First of all you have to build the JS with the following command.
pnpm buildThen, you can launch a local server.
pnpm previewYou can run UI tests with the following command.
pnpm test