# storybook-addon-a11y This storybook addon can be helpful to make your UI components more accessible. [Framework Support](https://github.com/storybookjs/storybook/blob/master/ADDONS_SUPPORT.md) ![Screenshot](https://raw.githubusercontent.com/storybookjs/storybook/HEAD/addons/a11y/docs/screenshot.png) ## Getting started First, install the addon. ```sh $ yarn add @storybook/addon-a11y --dev ``` Add this line to your `addons.js` file (create this file inside your storybook config directory if needed). ```js import '@storybook/addon-a11y/register'; ``` import the `withA11y` decorator to check your stories for violations within your components. ```js import React from 'react'; import { storiesOf, addDecorator } from '@storybook/react'; import { withA11y } from '@storybook/addon-a11y'; // should only be added once // best place is in config.js addDecorator(withA11y) storiesOf('button', module) .add('Accessible', () => ( )) .add('Inaccessible', () => ( )); ``` For more customizability. Use the `addParameters` function to configure [aXe options](https://github.com/dequelabs/axe-core/blob/develop/doc/API.md#api-name-axeconfigure). You can override these options [at story level too](https://storybook.js.org/docs/configurations/options-parameter/#per-story-options). ```js import React from 'react'; import { storiesOf, addDecorator, addParameters } from '@storybook/react'; import { withA11y } from '@storybook/addon-a11y'; addDecorator(withA11y) addParameters({ a11y: { element: '#root', // optional selector which element to inspect config: {}, // axe-core configurationOptions (https://github.com/dequelabs/axe-core/blob/develop/doc/API.md#parameters-1) options: {} // axe-core optionsParameter (https://github.com/dequelabs/axe-core/blob/develop/doc/API.md#options-parameter) }, }); storiesOf('button', module) .add('Accessible', () => ( )) .add('Inaccessible', () => ( )); ``` ## Roadmap * Make UI accessible * Show in story where violations are. * Add more example tests * Add tests * Make CI integration possible