@ng-matero/extensions 18.5.0 → 18.5.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.
@@ -1306,6 +1306,10 @@ class MtxTime {
1306
1306
  this._activeDate = this.selected = date;
1307
1307
  }
1308
1308
  _onActiveDateChange(date) {
1309
+ // On mobile devices, inputs fail to blur properly when trigger touchstart event.
1310
+ // https://github.com/ng-matero/extensions/issues/425
1311
+ this.hourInputElement?.nativeElement.blur();
1312
+ this.minuteInputElement?.nativeElement.blur();
1309
1313
  this._activeDate = date;
1310
1314
  this.activeDateChange.emit(date);
1311
1315
  }