import { storiesOf, html } from '@open-wc/demoing-storybook'; import '../lion-input.js'; storiesOf('Forms|Input', module) .add( 'Default', () => html` `, ) .add( 'Help Text', () => html` `, ) .add( 'Help text using html', () => html`
Help text using html
`, ) .add( 'Prefilled', () => html` `, ) .add( 'Read Only', () => html` `, ) .add( 'Disabled', () => html` `, ) .add( 'Prefix', () => html`
[prefix]

The prefix does not have an active use case yet.

`, ) .add( 'Suffix', () => html`
[suffix]

The suffix can be used for addons to the input like a calculator, datepicker or addressbook. In these cases a button with an icon is used.

`, ) .add( 'Before', () => html`
[before]

Before does not have an active use case yet.

`, ) .add( 'After', () => html`
EUR
%
`, );