Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Addon A11y: Change default element selector #30253

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion MIGRATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
- [Introducing features.developmentModeForBuild](#introducing-featuresdevelopmentmodeforbuild)
- [Added source code panel to docs](#added-source-code-panel-to-docs)
- [Addon-a11y: Component test integration](#addon-a11y-component-test-integration)
- [Addon-a11y: Changing the default element selector](#addon-a11y-changing-the-default-element-selector)
- [Addon-a11y: Deprecated `parameters.a11y.manual`](#addon-a11y-deprecated-parametersa11ymanual)
- [Addon-test: You should no longer copy the content of `viteFinal` to your configuration](#addon-test-you-should-no-longer-copy-the-content-of-vitefinal-to-your-configuration)
- [Addon-test: Indexing behavior of @storybook/experimental-addon-test is changed](#addon-test-indexing-behavior-of-storybookexperimental-addon-test-is-changed)
Expand Down Expand Up @@ -482,11 +483,24 @@ const annotations = setProjectAnnotations([
beforeAll(annotations.beforeAll);
```

### Addon-a11y: Changing the default element selector

In Storybook 8.5, we changed the default element selector used by the Accessibility addon from `#storybook-root` to `body`. This change was made to align with the default element selector used by the Test addon when running accessibility tests via Vitest. Additionally, Tooltips or Popovers that are rendered outside the `#storybook-root` element will now be included in the accessibility tests per default allowing for a more comprehensive test coverage. If you want to fall back to the previous behavior, you can set the `a11y.element` parameter in your `.storybook/preview.<ts|js>` configuration:

```diff
// .storybook/preview.js
export const parameters = {
a11y: {
+ element: '#storybook-root',
},
};
```

### Addon-a11y: Deprecated `parameters.a11y.manual`

We have deprecated `parameters.a11y.manual` in 8.5. Please use `globals.a11y.manual` instead.

### Addon-test: You should no longer copy the content of `viteFinal` to your configuration
### Addon-test: You should no longer copy the content of `viteFinal` to your configuration

In version 8.4 of `@storybook/experimental-addon-test`, it was required to copy any custom configuration you had in `viteFinal` in `main.ts`, to the Vitest Storybook project. This is no longer necessary, as the Storybook Test plugin will automatically include your `viteFinal` configuration. You should remove any configurations you might already have in `viteFinal` to remove duplicates.

Expand Down
2 changes: 1 addition & 1 deletion code/addons/a11y/src/a11yRunner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const runNext = async () => {
export const run = async (input: A11yParameters = defaultParameters) => {
const { default: axe } = await import('axe-core');

const { element = '#storybook-root', config = {}, options = {} } = input;
const { element = 'body', config = {}, options = {} } = input;
const htmlElement = document.querySelector(element as string) ?? document.body;
valentinpalkovic marked this conversation as resolved.
Show resolved Hide resolved

if (!htmlElement) {
Expand Down
24 changes: 12 additions & 12 deletions docs/_snippets/storybook-addon-a11y-component-config.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const meta: Meta<MyComponent> = {
parameters: {
a11y: {
// Optional selector to inspect
element: '#storybook-root',
element: 'body',
config: {
rules: [
{
Expand Down Expand Up @@ -52,7 +52,7 @@ export default meta;
parameters: {
a11y: {
// Optional selector to inspect
element: '#storybook-root',
element: 'body',
config: {
rules: [
{
Expand Down Expand Up @@ -92,7 +92,7 @@ export default {
parameters: {
a11y: {
// Optional selector to inspect
element: '#storybook-root',
element: 'body',
config: {
rules: [
{
Expand Down Expand Up @@ -131,7 +131,7 @@ export default {
parameters: {
a11y: {
// Optional selector to inspect
element: '#storybook-root',
element: 'body',
config: {
rules: [
{
Expand Down Expand Up @@ -173,7 +173,7 @@ export default {
parameters: {
a11y: {
// Optional selector to inspect
element: '#storybook-root',
element: 'body',
config: {
rules: [
{
Expand Down Expand Up @@ -215,7 +215,7 @@ const meta = {
parameters: {
a11y: {
// Optional selector to inspect
element: '#storybook-root',
element: 'body',
config: {
rules: [
{
Expand Down Expand Up @@ -259,7 +259,7 @@ const meta = {
parameters: {
a11y: {
// Optional selector to inspect
element: '#storybook-root',
element: 'body',
config: {
rules: [
{
Expand Down Expand Up @@ -303,7 +303,7 @@ export default meta;
parameters: {
a11y: {
// Optional selector to inspect
element: '#storybook-root',
element: 'body',
config: {
rules: [
{
Expand Down Expand Up @@ -345,7 +345,7 @@ const meta: Meta<typeof MyComponent> = {
parameters: {
a11y: {
// Optional selector to inspect
element: '#storybook-root',
element: 'body',
config: {
rules: [
{
Expand Down Expand Up @@ -389,7 +389,7 @@ const meta: Meta<typeof MyComponent> = {
parameters: {
a11y: {
// Optional selector to inspect
element: '#storybook-root',
element: 'body',
config: {
rules: [
{
Expand Down Expand Up @@ -428,7 +428,7 @@ export default {
parameters: {
a11y: {
// Optional selector to inspect
element: '#storybook-root',
element: 'body',
config: {
rules: [
{
Expand Down Expand Up @@ -467,7 +467,7 @@ const meta: Meta = {
parameters: {
a11y: {
// Optional selector to inspect
element: '#storybook-root',
element: 'body',
config: {
rules: [
{
Expand Down
4 changes: 2 additions & 2 deletions docs/_snippets/storybook-addon-a11y-global-config.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ export default {
parameters: {
a11y: {
// Optional selector to inspect
element: '#storybook-root',
element: 'body',
config: {
rules: [
{
Expand Down Expand Up @@ -43,7 +43,7 @@ const preview: Preview = {
parameters: {
a11y: {
// Optional selector to inspect
element: '#storybook-root',
element: 'body',
config: {
rules: [
{
Expand Down
30 changes: 15 additions & 15 deletions docs/_snippets/storybook-addon-a11y-story-config.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ type Story = StoryObj<MyComponent>;
export const ExampleStory: Story = {
parameters: {
a11y: {
element: '#storybook-root',
element: 'body',
config: {
rules: [
{
Expand Down Expand Up @@ -55,7 +55,7 @@ export default {
export const ExampleStory = {
parameters: {
a11y: {
element: '#storybook-root',
element: 'body',
config: {
rules: [
{
Expand Down Expand Up @@ -102,7 +102,7 @@ type Story = StoryObj<typeof meta>;
export const ExampleStory: Story = {
parameters: {
a11y: {
element: '#storybook-root',
element: 'body',
config: {
rules: [
{
Expand Down Expand Up @@ -149,7 +149,7 @@ type Story = StoryObj<typeof MyComponent>;
export const ExampleStory: Story = {
parameters: {
a11y: {
element: '#storybook-root',
element: 'body',
config: {
rules: [
{
Expand Down Expand Up @@ -196,7 +196,7 @@ export const ExampleStory: Story = {
name="ExampleStory"
parameters={{
a11y: {
element: '#storybook-root',
element: 'body',
config: {
rules: [
{
Expand Down Expand Up @@ -238,7 +238,7 @@ export default {
export const ExampleStory = {
parameters: {
a11y: {
element: '#storybook-root',
element: 'body',
config: {
rules: [
{
Expand Down Expand Up @@ -285,7 +285,7 @@ export const ExampleStory = {
name="ExampleStory"
parameters={{
a11y: {
element: '#storybook-root',
element: 'body',
config: {
rules: [
{
Expand Down Expand Up @@ -332,7 +332,7 @@ type Story = StoryObj<typeof meta>;
export const ExampleStory: Story = {
parameters: {
a11y: {
element: '#storybook-root',
element: 'body',
config: {
rules: [
{
Expand Down Expand Up @@ -379,7 +379,7 @@ export const ExampleStory: Story = {
name="ExampleStory"
parameters={{
a11y: {
element: '#storybook-root',
element: 'body',
config: {
rules: [
{
Expand Down Expand Up @@ -426,7 +426,7 @@ type Story = StoryObj<typeof meta>;
export const ExampleStory: Story = {
parameters: {
a11y: {
element: '#storybook-root',
element: 'body',
config: {
rules: [
{
Expand Down Expand Up @@ -468,7 +468,7 @@ export default {
export const ExampleStory = {
parameters: {
a11y: {
element: '#storybook-root',
element: 'body',
config: {
rules: [
{
Expand Down Expand Up @@ -515,7 +515,7 @@ type Story = StoryObj<typeof meta>;
export const ExampleStory = {
parameters: {
a11y: {
element: '#storybook-root',
element: 'body',
config: {
rules: [
{
Expand Down Expand Up @@ -562,7 +562,7 @@ type Story = StoryObj<typeof MyComponent>;
export const ExampleStory = {
parameters: {
a11y: {
element: '#storybook-root',
element: 'body',
config: {
rules: [
{
Expand Down Expand Up @@ -602,7 +602,7 @@ export default {
export const ExampleStory = {
parameters: {
a11y: {
element: '#storybook-root',
element: 'body',
config: {
rules: [
{
Expand Down Expand Up @@ -647,7 +647,7 @@ type Story = StoryObj;
export const ExampleStory: Story = {
parameters: {
a11y: {
element: '#storybook-root',
element: 'body',
config: {
rules: [
{
Expand Down
4 changes: 2 additions & 2 deletions docs/_snippets/test-runner-a11y-config.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ module.exports = {
await injectAxe(page);
},
async postVisit(page) {
await checkA11y(page, '#storybook-root', {
await checkA11y(page, 'body', {
detailedReport: true,
detailedReportOptions: {
html: true,
Expand All @@ -33,7 +33,7 @@ const config: TestRunnerConfig = {
await injectAxe(page);
},
async postVisit(page) {
await checkA11y(page, '#storybook-root', {
await checkA11y(page, 'body', {
detailedReport: true,
detailedReportOptions: {
html: true,
Expand Down
4 changes: 2 additions & 2 deletions docs/_snippets/test-runner-a11y-configure.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ module.exports = {
rules: storyContext.parameters?.a11y?.config?.rules,
});

const element = storyContext.parameters?.a11y?.element ?? '#storybook-root';
const element = storyContext.parameters?.a11y?.element ?? 'body';
await checkA11y(page, element, {
detailedReport: true,
detailedReportOptions: {
Expand Down Expand Up @@ -54,7 +54,7 @@ const config: TestRunnerConfig = {
rules: storyContext.parameters?.a11y?.config?.rules,
});

const element = storyContext.parameters?.a11y?.element ?? '#storybook-root';
const element = storyContext.parameters?.a11y?.element ?? 'body';
await checkA11y(page, element, {
detailedReport: true,
detailedReportOptions: {
Expand Down
4 changes: 2 additions & 2 deletions docs/_snippets/test-runner-a11y-disable.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ module.exports = {
if (storyContext.parameters?.a11y?.disable) {
return;
}
await checkA11y(page, '#storybook-root', {
await checkA11y(page, 'body', {
detailedReport: true,
detailedReportOptions: {
html: true,
Expand Down Expand Up @@ -50,7 +50,7 @@ const config: TestRunnerConfig = {
if (storyContext.parameters?.a11y?.disable) {
return;
}
await checkA11y(page, '#storybook-root', {
await checkA11y(page, 'body', {
detailedReport: true,
detailedReportOptions: {
html: true,
Expand Down
Loading