29 lines
825 B
JavaScript
Raw Normal View History

2019-10-12 18:15:39 +02:00
import { document, setTimeout } from 'global';
import { html } from 'lit-html';
const text = 'Testing the a11y addon';
export default {
title: 'Addons/a11y',
2019-10-12 18:15:39 +02:00
parameters: {
options: { selectedPanel: 'storybook/a11y/panel' },
},
};
2020-03-27 20:04:50 +01:00
export const Default = () => html` <button></button> `;
export const Label = () => html` <button>${text}</button> `;
export const Disabled = () => html` <button disabled>${text}</button> `;
export const Story4 = () => html`
2019-10-12 18:15:39 +02:00
<button style="color: black; background-color: brown;">${text}</button>
`;
Story4.storyName = 'Invalid contrast';
2019-10-12 18:15:39 +02:00
export const Story5 = () => {
2019-10-12 18:15:39 +02:00
const div = document.createElement('div');
setTimeout(() => {
div.innerHTML = `<button>This button has a delayed render of 1s</button>`;
}, 1000);
return div;
};
Story5.storyName = 'Delayed render';