ps-toolkit-ui 1.3.59 → 1.3.62

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.
@@ -4817,12 +4817,10 @@
4817
4817
  FormPlaqueComponent.prototype.onFocusIn = function (e) {
4818
4818
  var _this = this;
4819
4819
  if (e === void 0) { e = null; }
4820
- console.log(111, 'onFocusIn');
4821
4820
  if (e == null || !(e.screenX && e.screenX !== 0 && e.screenY && e.screenY !== 0)) {
4822
- console.log(2222);
4823
4821
  setTimeout(function () {
4824
4822
  _this.part1.focus();
4825
- }, 10);
4823
+ }, 1000);
4826
4824
  }
4827
4825
  };
4828
4826
  FormPlaqueComponent.prototype.onKeyDown = function (e) {
@@ -5630,6 +5628,7 @@
5630
5628
  };
5631
5629
  this.inp.focus = function (changeIndex) {
5632
5630
  if (changeIndex === void 0) { changeIndex = false; }
5631
+ console.log('this.inp.focus');
5633
5632
  _this.onFocusIn(changeIndex);
5634
5633
  };
5635
5634
  this.inp.isValid = function () {
@@ -5729,11 +5728,14 @@
5729
5728
  };
5730
5729
  FormTextboxComponent.prototype.onFocusIn = function (changeIndex) {
5731
5730
  if (changeIndex === void 0) { changeIndex = false; }
5731
+ console.log('11111onFocusIn');
5732
5732
  if (changeIndex) {
5733
5733
  this.inputBase.nativeElement.select();
5734
+ console.log('this.inputBase.nativeElement.select');
5734
5735
  }
5735
5736
  else {
5736
5737
  this.inputBase.nativeElement.focus();
5738
+ console.log('this.inputBase.nativeElement.focus');
5737
5739
  }
5738
5740
  };
5739
5741
  FormTextboxComponent.prototype.onChange = function (e) {