import { ITemplates } from './interfaces';
export const templates: ITemplates = {
default: (theme: string | boolean = false) =>
`
<#CustomArrowPrev />
<#CustomMonth />
/
<#CustomYear />
<#CustomArrowNext />
`,
multiple: (theme: string | boolean = false) =>
`
<#CustomArrowPrev />
<#CustomArrowNext />
<#Multiple>
<#CustomMonth />
/
<#CustomYear />
<#/Multiple>
`,
year: (theme: string | boolean = false) =>
`
<#CustomArrowPrev />
<#Month />
/
<#Year />
<#CustomArrowNext />
`,
month: (theme: string | boolean = false) =>
`
`,
// Custom
years: (options: string, theme: string | boolean = false) => {
return `"
}' class="hidden --year --prevent-on-load-init">
${options}
`;
},
months: (theme: string | boolean = false) =>
`"
}' class="hidden --month --prevent-on-load-init">
`,
hours: (theme: string | boolean = false) =>
`
"
}'>
`,
minutes: (theme: string | boolean = false) =>
`
"
}'>
`,
meridiem: (theme: string | boolean = false) =>
`
"
}'>
`,
};