import { storiesOf, html } from '@open-wc/demoing-storybook';
import { isDateDisabledValidator, minMaxDateValidator } from '@lion/validate';
import '../lion-input-datepicker.js';
storiesOf('Forms|Input Datepicker', module)
.add(
'Default',
() => html`
`,
)
.add(
'minMaxDateValidator',
() => html`
`,
)
.add(
'isDateDisabledValidator',
() => html`
d.getDate() === 15)]}
>
`,
)
.add(
'With calendar-heading',
() => html`
`,
)
.add(
'Disabled',
() => html`
`,
);