@dsivd/prestations-ng 16.0.0-beta1 → 16.0.0-beta3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/ESLINT_MIGRATION_GUIDE.md +39 -13
- package/UPGRADING_V16.md +153 -9
- package/dsivd-prestations-ng-v16.0.0-beta3.tgz +0 -0
- package/esm2020/foehn-date-picker/foehn-date-picker.component.mjs +6 -4
- package/fesm2015/dsivd-prestations-ng.mjs +5 -3
- package/fesm2015/dsivd-prestations-ng.mjs.map +1 -1
- package/fesm2020/dsivd-prestations-ng.mjs +5 -3
- package/fesm2020/dsivd-prestations-ng.mjs.map +1 -1
- package/package.json +9 -8
- package/dsivd-prestations-ng-v16.0.0-beta1.tgz +0 -0
|
@@ -7471,9 +7471,11 @@ class FoehnDatePickerComponent {
|
|
|
7471
7471
|
return date.isSame(this.selectedDate);
|
|
7472
7472
|
}
|
|
7473
7473
|
handleUserInput(date) {
|
|
7474
|
-
|
|
7475
|
-
|
|
7476
|
-
|
|
7474
|
+
if (this.isDateInRange(date)) {
|
|
7475
|
+
const dateAsArray = this.getDateAsArray(date);
|
|
7476
|
+
this.userInput.next(dateAsArray);
|
|
7477
|
+
this.updateNgModel(dateAsArray);
|
|
7478
|
+
}
|
|
7477
7479
|
}
|
|
7478
7480
|
previousMonth() {
|
|
7479
7481
|
this.weeks = this.datePickerHelper.getPreviousWeeksOfMonth();
|