I want only the first day of each upcoming month to be selectable. All other days should be disabled.
Input Field in HTML:
<input class="form-control" bsDatepicker placement="top" [bsConfig]="bsDatepickerConfig" [minDate]="minDate">
bsConfig:
export const bsConfig = {
dateInputFormat: 'DD.MM'YYYY',
containerClass: 'theme-blue',
showClearButton: true
}
minDate:
minDate = new Date();
What do I have to add to the bsConfig?