@chayns-components/date
Version:
A set of beautiful React components for developing your own applications with chayns.
28 lines (27 loc) • 1 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.EMonth = exports.CalendarType = void 0;
let EMonth = exports.EMonth = /*#__PURE__*/function (EMonth) {
EMonth[EMonth["January"] = 1] = "January";
EMonth[EMonth["February"] = 2] = "February";
EMonth[EMonth["March"] = 3] = "March";
EMonth[EMonth["April"] = 4] = "April";
EMonth[EMonth["May"] = 5] = "May";
EMonth[EMonth["June"] = 6] = "June";
EMonth[EMonth["July"] = 7] = "July";
EMonth[EMonth["August"] = 8] = "August";
EMonth[EMonth["September"] = 9] = "September";
EMonth[EMonth["October"] = 10] = "October";
EMonth[EMonth["November"] = 11] = "November";
EMonth[EMonth["December"] = 12] = "December";
return EMonth;
}({});
let CalendarType = exports.CalendarType = /*#__PURE__*/function (CalendarType) {
CalendarType["Single"] = "single";
CalendarType["Multiple"] = "multiple";
CalendarType["Interval"] = "interval";
return CalendarType;
}({});
//# sourceMappingURL=calendar.js.map