ps-toolkit-ui 1.3.64 → 1.3.65

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.
@@ -4818,6 +4818,7 @@
4818
4818
  if (e === void 0) { e = null; }
4819
4819
  if (e == null || !(e.screenX && e.screenX !== 0 && e.screenY && e.screenY !== 0)) {
4820
4820
  setTimeout(function () {
4821
+ console.log($('#Part1Input .control'));
4821
4822
  $('#Part1Input .control').focus();
4822
4823
  }, 100);
4823
4824
  }
@@ -6669,18 +6670,14 @@
6669
6670
  this.onFocusIn();
6670
6671
  };
6671
6672
  FormCarComponent.prototype.onFocusIn = function () {
6672
- console.log('onFocusIn');
6673
6673
  if (this.type === exports.VehicleType.Car) {
6674
6674
  this.car.focus();
6675
- console.log('Car');
6676
6675
  }
6677
6676
  else if (this.type === exports.VehicleType.CarF) {
6678
6677
  this.carF.focus();
6679
- console.log('CarF');
6680
6678
  }
6681
6679
  else if (this.type === exports.VehicleType.Motorcycle) {
6682
6680
  this.motor.focus();
6683
- console.log('Motorcycle');
6684
6681
  }
6685
6682
  };
6686
6683
  return FormCarComponent;