@vsn-ux/ngx-gaia 0.9.14 → 0.9.15
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.
|
@@ -1734,8 +1734,9 @@ class GaDatepickerInputDirective {
|
|
|
1734
1734
|
this.formatValue();
|
|
1735
1735
|
}
|
|
1736
1736
|
if (emitToNgModel) {
|
|
1737
|
-
this.onNgTouchedFn?.();
|
|
1738
1737
|
this.onNgChangeFn?.(value);
|
|
1738
|
+
// NOTE: ngTouched must be called after ngChange to work with `updateOn: 'blur'` strategy
|
|
1739
|
+
this.onNgTouchedFn?.();
|
|
1739
1740
|
this.dateInput.emit(value);
|
|
1740
1741
|
this.dateChange.emit(value);
|
|
1741
1742
|
}
|