import { formatDate } from '@lion/localize'; import { MaxDate, MinDate, MinMaxDate } from '@lion/validate'; import { html, storiesOf } from '@open-wc/demoing-storybook'; import '../lion-input-date.js'; storiesOf('Forms|Input Date') .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` `, );