ps-toolkit-ui 1.16.82 → 1.16.84

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.
@@ -4612,19 +4612,15 @@
4612
4612
  };
4613
4613
  FormDateComponent.prototype.onKeyUp = function (e) {
4614
4614
  if (this.cSearch !== e.target.value) {
4615
+ console.log(1111111);
4615
4616
  this.inp.error = null;
4616
4617
  this.inp.value = null;
4617
4618
  this.cSearch = e.target.value;
4618
- if (this.inp.type === exports.InputType.Month) {
4619
- this.setDate();
4620
- if (this.inp.onChange) {
4621
- this.inp.onChange(this.inp);
4622
- }
4623
- return;
4624
- }
4625
4619
  if (this.inp.search !== '' && this.inp.search !== null) {
4620
+ console.log(2222222);
4626
4621
  var v = moment__namespace(this.inp.search, 'jYYYY/jMM/jDD');
4627
4622
  if (v.isValid() && this.inp.search.length <= 10) {
4623
+ console.log(33333333);
4628
4624
  this.active = v;
4629
4625
  this.inp.value = this.active.format('jYYYY/jMM/jDD');
4630
4626
  this.setDate();
@@ -4633,10 +4629,12 @@
4633
4629
  }
4634
4630
  }
4635
4631
  else {
4632
+ console.log(444444);
4636
4633
  this.setDate();
4637
4634
  }
4638
4635
  }
4639
4636
  else {
4637
+ console.log(5555555);
4640
4638
  this.setDate();
4641
4639
  if (this.inp.onChange) {
4642
4640
  this.inp.onChange(this.inp);