bulma-calendar
Version:
Display a calendar for date/time selection, in different colors and sizes
23 lines (21 loc) • 509 B
JavaScript
const defaultOptions = {
color: 'primary',
isRange: false,
allowSameDayRange: true,
lang: 'en-US', // internationalization
startDate: undefined,
endDate: undefined,
minDate: null,
maxDate: null,
disabledDates: [],
disabledWeekDays: undefined,
highlightedDates: [],
weekStart: 0,
dateFormat: 'MM/dd/yyyy',
navigationMonthFormat: 'MMMM',
navigationYearFormat: 'yyyy',
enableMonthSwitch: true,
enableYearSwitch: true,
displayYearsCount: 50,
};
export default defaultOptions;