Angular team released Angular version 10 and also updated the Angular material with a new feature for the date picker, a feature many of us waited for so long, a date range !
Today I use saturn-datepicker, an npm package which also has a LINEAR option like in the following example.
<sat-calendar
[rangeMode]="true"
(dateRangesChange)="inlineRangeChange($event)"
#inlineRangePicker
>
</sat-calendar>
this puts the calendar on the page and removes the need to click in order to open the calendar in a pop up window;
In Angular material it's possible to do the same using mat-calendar
like so.
<mat-calendar>
</mat-calendar>
my question is how to apply [rangeMode]="true"
like in saturn-datepicker ??