@@ -33,7 +33,7 @@ export class DatepickerDirectivePage implements OnInit {
3333 // inputDate: new Date('12'), // If you want to set month in date-picker
3434 // inputDate: new Date('2018'), // If you want to set year in date-picker
3535 // inputDate: new Date('2018-12'), // If you want to set year & month in date-picker
36- // inputDate: new Date('2018-12-01'), // If you want to set date in date-picker
36+ inputDate : new Date ( '2018-12-01' ) , // If you want to set date in date-picker
3737
3838 // fromDate: new Date('2015-12-20'), // need this in order to have toDate
3939 // toDate: new Date('2019-12-25'),
@@ -69,12 +69,24 @@ export class DatepickerDirectivePage implements OnInit {
6969 } , // This object supports only SVG files.
7070
7171 highlightedDates : [
72- { date : new Date ( '2019-08-10' ) , color : '#ee88bf' } ,
73- { date : new Date ( '2019-08-12' ) , color : '#50f2b1' } ,
74- { date : new Date ( '2019-08-14' ) , color : '#f2ef50' } ,
75- { date : new Date ( '2019-08-16' ) , color : '#ee99bf' } ,
76- { date : new Date ( '2019-08-18' ) , color : '#5000b1' } ,
77- { date : new Date ( '2019-08-20' ) , color : '#f21250' } ,
72+ // { date: new Date('2019-09-10'), color: '#ee88bf', fontColor: '#fff' },
73+ // { date: new Date('2019-09-12'), color: '#50f2b1', fontColor: '#fff' },
74+ // { date: new Date('2019-09-14'), color: '#f2ef50', fontColor: '#fff' },
75+ // { date: new Date('2019-09-16'), color: '#ee99bf', fontColor: '#fff' },
76+ // { date: new Date('2019-09-18'), color: '#5000b1', fontColor: '#fff' },
77+ // { date: new Date('2019-09-20'), color: '#f21250', fontColor: '#fff' },
78+ // { date: new Date('2019-08-10'), color: '#ee88bf', fontColor: '#fff' },
79+ // { date: new Date('2019-08-12'), color: '#50f2b1', fontColor: '#fff' },
80+ // { date: new Date('2019-08-14'), color: '#f2ef50', fontColor: '#fff' },
81+ // { date: new Date('2019-08-16'), color: '#ee99bf', fontColor: '#fff' },
82+ // { date: new Date('2019-08-18'), color: '#5000b1', fontColor: '#fff' },
83+ // { date: new Date('2019-08-20'), color: '#f21250', fontColor: '#fff' },
84+ // { date: new Date('2019-07-10'), color: '#ee88bf', fontColor: '#fff' },
85+ // { date: new Date('2019-07-12'), color: '#50f2b1', fontColor: '#fff' },
86+ // { date: new Date('2019-07-14'), color: '#f2ef50', fontColor: '#fff' },
87+ // { date: new Date('2019-07-16'), color: '#ee99bf', fontColor: '#fff' },
88+ // { date: new Date('2019-07-18'), color: '#5000b1', fontColor: '#fff' },
89+ // { date: new Date('2019-07-20'), color: '#f21250', fontColor: '#fff' },
7890 ]
7991 } ;
8092 }
0 commit comments