MatDatepickerInput имеет @Input
для этого
@Input()
max: D | null
См. Этот короткий пример:
<mat-form-field>
<input matInput [matDatepicker]="picker" [max]="tomorrow" placeholder="Choose a date">
<mat-datepicker-toggle matSuffix [for]="picker"></mat-datepicker-toggle>
<mat-datepicker #picker></mat-datepicker>
</mat-form-field>
Файл TS:
tomorrow = new Date();
constructor() {
this.tomorrow.setDate(this.tomorrow.getDate() + 1);
}