ps-toolkit-ui 1.7.14 → 1.7.17

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.
@@ -4392,8 +4392,13 @@
4392
4392
  };
4393
4393
  this.inp.setSearch = function (s) {
4394
4394
  var p = s ? s.split('_') : null;
4395
+ console.log(p);
4395
4396
  if (p && p.length === 4) {
4396
4397
  setTimeout(function () {
4398
+ console.log(p[0]);
4399
+ console.log(p[1]);
4400
+ console.log(p[2]);
4401
+ console.log(p[3]);
4397
4402
  _this.part1.setValue(p[0], false);
4398
4403
  _this.part2.setValue(p[1], false);
4399
4404
  _this.part3.setValue(p[2], false);
@@ -5862,6 +5867,9 @@
5862
5867
  this.inp.setValue = function (v) {
5863
5868
  _this.inp.value = v != null ? v.toString() : '';
5864
5869
  _this.cValue = _this.inp.value;
5870
+ console.log(_this.inp.name);
5871
+ console.log(_this.cValue);
5872
+ console.log(_this.inp.value);
5865
5873
  };
5866
5874
  this.inp.focus = function (changeIndex) {
5867
5875
  if (changeIndex === void 0) { changeIndex = false; }
@@ -5992,6 +6000,9 @@
5992
6000
  this.inp.onKeyUp(this.inp);
5993
6001
  }
5994
6002
  if (this.inp.onChange) {
6003
+ console.log(this.cValue);
6004
+ console.log(e.target.value);
6005
+ console.log(this.cValue !== e.target.value);
5995
6006
  if (this.cValue !== e.target.value) {
5996
6007
  this.inp.onChange(e.target.value);
5997
6008
  this.cValue = e.target.value;