ps-toolkit-ui 1.6.22 → 1.6.23

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.
@@ -4219,6 +4219,7 @@
4219
4219
  }
4220
4220
  if (next >= 0 && next < this.form.inputs.length) {
4221
4221
  setTimeout(function () {
4222
+ console.log(_this.form.inputs[next], next);
4222
4223
  _this.form.inputs[next].focus(true);
4223
4224
  }, 1);
4224
4225
  }
@@ -5046,6 +5047,7 @@
5046
5047
  var code = e.keyCode || e.which;
5047
5048
  if (code === 9 || code === 13) {
5048
5049
  e.preventDefault();
5050
+ console.log(e.shiftKey ? 'ShiftTab' : 'Tab');
5049
5051
  this.changeIndex.emit(e.shiftKey ? 'ShiftTab' : 'Tab');
5050
5052
  }
5051
5053
  var selected = this.inp.options.findIndex(function (x) { return x.value === _this.inp.value; });
@@ -5172,6 +5174,7 @@
5172
5174
  _this.inp.search = s;
5173
5175
  };
5174
5176
  this.inp.focus = function () {
5177
+ console.log('this.inp.focus');
5175
5178
  _this.openOptions();
5176
5179
  };
5177
5180
  this.inp.isValid = function () {