import { storiesOf, html } from '@open-wc/demoing-storybook'; import '../lion-option.js'; const a11yNote = html`

Note: This demo is not accessible, because lion-option just by itself is not accessible. This component should always be wrapped by something like a listbox, lion-options or similar.

`; storiesOf('Forms|Option', module) .add( 'States', () => html` ${a11yNote} Default
Disabled

With html

and multi Line

`, ) .add( 'Values', () => html` ${a11yNote} setting modelValue setting modelValue active setting modelValue checked setting modelValue disabled setting choiceValue setting choiceValue active setting choiceValue checked setting choiceValue disabled `, );