@ng-matero/extensions 20.0.1 → 20.0.3
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/fesm2022/mtxDatetimepicker.mjs +4 -0
- package/fesm2022/mtxDatetimepicker.mjs.map +1 -1
- package/fesm2022/mtxGrid.mjs +2 -2
- package/fesm2022/mtxGrid.mjs.map +1 -1
- package/grid/_grid-theme.scss +0 -2
- package/grid/grid.scss +1 -0
- package/package.json +23 -23
- package/prebuilt-themes/deeppurple-amber.css +1 -1
- package/prebuilt-themes/indigo-pink.css +1 -1
- package/prebuilt-themes/pink-bluegrey.css +1 -1
- package/prebuilt-themes/purple-green.css +1 -1
|
@@ -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
|
}
|