import { storiesOf, html } from '@open-wc/demoing-storybook'; import { formatDate } from '@lion/localize'; import { MaxDate, MinDate, MinMaxDate } from '@lion/validate'; import '../lion-input-date.js'; storiesOf('Forms|Input Date', module) .add( 'Default', () => html` `, ) .add( 'Validation', () => html` Enter a date between ${formatDate(new Date('2018/05/24'))} and ${formatDate(new Date('2018/06/24'))}. `, ) .add( 'Faulty prefilled', () => html` `, );