import { document, setTimeout } from 'global';
import { html } from 'lit-html';
const text = 'Testing the a11y addon';
export default {
title: 'Addons/a11y',
parameters: {
options: { selectedPanel: 'storybook/a11y/panel' },
},
};
export const Default = () => html` `;
export const Label = () => html` `;
export const Disabled = () => html` `;
export const Story4 = () => html`
`;
Story4.storyName = 'Invalid contrast';
export const Story5 = () => {
const div = document.createElement('div');
setTimeout(() => {
div.innerHTML = ``;
}, 1000);
return div;
};
Story5.storyName = 'Delayed render';