ps-toolkit-ui 1.7.0 → 1.7.1

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.
@@ -3873,8 +3873,6 @@
3873
3873
  FormDateComponent.prototype.onKeyUp = function (e) {
3874
3874
  this.inp.error = null;
3875
3875
  this.inp.value = null;
3876
- console.log('onKeyUp this.cSearch => ', this.cSearch);
3877
- console.log('onKeyUp e.target.value => ', e.target.value);
3878
3876
  if (this.cSearch !== e.target.value) {
3879
3877
  this.cSearch = e.target.value;
3880
3878
  if (this.inp.search !== '' && this.inp.search !== null) {
@@ -3882,7 +3880,6 @@
3882
3880
  if (v.isValid() && this.inp.search.length <= 10) {
3883
3881
  this.active = v;
3884
3882
  this.inp.value = this.active.format('jYYYY/jMM/jDD');
3885
- console.log('onKeyUp this.inp.value => ', this.inp.value);
3886
3883
  this.setDate();
3887
3884
  if (this.inp.onChange) {
3888
3885
  this.inp.onChange(this.inp);
@@ -3902,8 +3899,6 @@
3902
3899
  };
3903
3900
  FormDateComponent.prototype.onFocusOut = function () {
3904
3901
  $__namespace(this.inputDiv.nativeElement).removeClass('top');
3905
- console.log('onFocusOut this.inp.value => ', this.inp.value);
3906
- console.log('onFocusOut this.inp.search => ', this.inp.search);
3907
3902
  this.inp.search = this.inp.value;
3908
3903
  this.state = 'day';
3909
3904
  };