ps-toolkit-ui 1.3.49 → 1.3.50
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 +12 -9
- 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 +12 -10
- package/fesm2015/ps-toolkit-ui.js +11 -9
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/package.json +1 -1
|
@@ -6667,15 +6667,18 @@
|
|
|
6667
6667
|
this.onFocusIn();
|
|
6668
6668
|
};
|
|
6669
6669
|
FormCarComponent.prototype.onFocusIn = function () {
|
|
6670
|
-
|
|
6671
|
-
|
|
6672
|
-
|
|
6673
|
-
|
|
6674
|
-
|
|
6675
|
-
|
|
6676
|
-
|
|
6677
|
-
|
|
6678
|
-
|
|
6670
|
+
var _this = this;
|
|
6671
|
+
setTimeout(function () {
|
|
6672
|
+
if (_this.type === exports.VehicleType.Car) {
|
|
6673
|
+
_this.car.focus();
|
|
6674
|
+
}
|
|
6675
|
+
else if (_this.type === exports.VehicleType.CarF) {
|
|
6676
|
+
_this.carF.focus();
|
|
6677
|
+
}
|
|
6678
|
+
else if (_this.type === exports.VehicleType.Motorcycle) {
|
|
6679
|
+
_this.motor.focus();
|
|
6680
|
+
}
|
|
6681
|
+
}, 10);
|
|
6679
6682
|
};
|
|
6680
6683
|
return FormCarComponent;
|
|
6681
6684
|
}());
|