ps-toolkit-ui 1.3.63 → 1.3.64
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/bundles/ps-toolkit-ui.umd.js +5 -1
- package/bundles/ps-toolkit-ui.umd.js.map +1 -1
- package/bundles/ps-toolkit-ui.umd.min.js +1 -1
- package/bundles/ps-toolkit-ui.umd.min.js.map +1 -1
- package/esm2015/lib/components/form/car/form.car.component.js +5 -1
- package/esm2015/lib/components/form/plaque/form.plaque.component.js +2 -2
- package/fesm2015/ps-toolkit-ui.js +5 -1
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/package.json +1 -1
|
@@ -4819,7 +4819,7 @@
|
|
|
4819
4819
|
if (e == null || !(e.screenX && e.screenX !== 0 && e.screenY && e.screenY !== 0)) {
|
|
4820
4820
|
setTimeout(function () {
|
|
4821
4821
|
$('#Part1Input .control').focus();
|
|
4822
|
-
},
|
|
4822
|
+
}, 100);
|
|
4823
4823
|
}
|
|
4824
4824
|
};
|
|
4825
4825
|
FormPlaqueComponent.prototype.onKeyDown = function (e) {
|
|
@@ -6669,14 +6669,18 @@
|
|
|
6669
6669
|
this.onFocusIn();
|
|
6670
6670
|
};
|
|
6671
6671
|
FormCarComponent.prototype.onFocusIn = function () {
|
|
6672
|
+
console.log('onFocusIn');
|
|
6672
6673
|
if (this.type === exports.VehicleType.Car) {
|
|
6673
6674
|
this.car.focus();
|
|
6675
|
+
console.log('Car');
|
|
6674
6676
|
}
|
|
6675
6677
|
else if (this.type === exports.VehicleType.CarF) {
|
|
6676
6678
|
this.carF.focus();
|
|
6679
|
+
console.log('CarF');
|
|
6677
6680
|
}
|
|
6678
6681
|
else if (this.type === exports.VehicleType.Motorcycle) {
|
|
6679
6682
|
this.motor.focus();
|
|
6683
|
+
console.log('Motorcycle');
|
|
6680
6684
|
}
|
|
6681
6685
|
};
|
|
6682
6686
|
return FormCarComponent;
|