feature request or proposal:
mat-datepicker is really doing great job, but i would like to have a feature where we can listen to next and previous button clicks.
What is the expected behavior?
Emit those events from calendar header and from date picker so that we can listen from our component.
calendar-header > emit > date picker > emit > user component
What is the current behavior?
Need to override the calendar-header just for one functionality
What is the use-case or motivation for changing an existing behavior?
On date change, we need to do some validations and apply style to the dates.
Any updates for this feature?
Currently, we found two ways to handle in manually. @skota524 maybe it may help you
1 - Subscribe to the next/previous header buttons click

2 - Update needed styles using Subject +distinctUntilChanged()

Most helpful comment
Currently, we found two ways to handle in manually. @skota524 maybe it may help you


1 - Subscribe to the next/previous header buttons click
2 - Update needed styles using Subject +distinctUntilChanged()