adam-ui-beta
Version:
adam ui(beta release)
69 lines (68 loc) • 1.06 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.weekList = exports.monthList = exports.dayList = void 0;
var monthList = [{
month: 'Jan',
value: 1
}, {
month: 'Feb',
value: 2
}, {
month: 'Mar',
value: 3
}, {
month: 'Apr',
value: 4
}, {
month: 'May',
value: 5
}, {
month: 'Jun',
value: 6
}, {
month: 'Jul',
value: 7
}, {
month: 'Aug',
value: 8
}, {
month: 'Sep',
value: 9
}, {
month: 'Oct',
value: 10
}, {
month: 'Nov',
value: 11
}, {
month: 'Dec',
value: 12
}];
exports.monthList = monthList;
var weekList = [{
day: 'Sun',
value: 0
}, {
day: 'Mon',
value: 1
}, {
day: 'Tue',
value: 2
}, {
day: 'Wed',
value: 3
}, {
day: 'Thu',
value: 4
}, {
day: 'Fri',
value: 5
}, {
day: 'Sat',
value: 6
}];
exports.weekList = weekList;
var dayList = ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', '23', '24', '25', '26', '27', '28', '29', '30', '31'];
exports.dayList = dayList;