There is any way to configure the md-datepicker to start week on monday? By default it start on Sunday and there isn\'t any specification who to change this.
In case if anyone using and wanted to achieve start a week from Monday instead of Sunday.
providers:[{ provide: NgxMatDateAdapter, useClass: CustomDateAdapter}]
import { NgxMatNativeDateAdapter } from '@angular-material-components/datetime-picker';
export class CustomDateAdapter extends NgxMatNativeDateAdapter {
getFirstDayOfWeek(): number {
return 1;
}
}