Hey there,
It would be good if you could set an option to keep the calendar open even after selection.
For example in options
options: DatepickerOptions ={
keepCalendarOpen: true
}
then in your setDate() function you could do
setDate(i: number): void {
this.date = this.days[i].date;
this.value = this.date;
this.init();
if (!this.keepCalendarOpen) { this.close(); }
}