I am trying to set maxDate value based on minDate value selected. The idea is that you can select any day in the past as minDate, but the maxDate must be equal to minDate plus 15 days.
I have this in my html
```<input type="text" ngxDaterangepickerMd formControlName="pick_dates"
class="form-control" placeholder="{{'list.select' | translate}}"
[minDate]='minDate'
[maxDate]='maxDate' [timePicker]="true" [locale] = "locale"/>```
Is there any way to get the minDate value selected before sending the pick_dates form?
What I wish would be something like: have this in my html
```<input type="text" ngxDaterangepickerMd formControlName="pick_dates"
class="form-control" placeholder="{{'list.select' | translate}}"
[minDate]='minDate'
[maxDate]='minDate'+15 days
[timePicker]="true" [locale] = "locale"/>```
component.ts: