@ng-matero/extensions 19.4.0 → 19.4.1

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.
@@ -1471,6 +1471,10 @@ class MtxTimeView {
1471
1471
  this.clockViewChange.emit(this.clockView);
1472
1472
  }
1473
1473
  _onActiveDateChange(date) {
1474
+ // On mobile devices, inputs fail to blur properly when trigger touchstart event.
1475
+ // https://github.com/ng-matero/extensions/issues/425
1476
+ this.hourInputElement?.nativeElement.blur();
1477
+ this.minuteInputElement?.nativeElement.blur();
1474
1478
  this._activeDate = date;
1475
1479
  this.activeDateChange.emit(date);
1476
1480
  }