import { storiesOf, html } from '@open-wc/demoing-storybook';
import { Required } from '@lion/validate';
import '../lion-select.js';
storiesOf('Forms|Select', module)
.add(
'Default',
() => html`
Favorite color
`,
)
.add(
'Disabled',
() => html`
Favorite color
`,
)
.add(
'Pre selected',
() => html`
Favorite color
`,
)
.add('Validation', () => {
const validate = () => {
const select = document.querySelector('#color');
select.submitted = !select.submitted;
};
return html`
`;
});