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.
@@ -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
- }, 1000);
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;