ps-toolkit-ui 1.20.38 → 1.20.40

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.
@@ -2637,11 +2637,11 @@
2637
2637
  }
2638
2638
  };
2639
2639
  InputClass.prototype.setOptions = function (r) {
2640
- var _this = this;
2641
2640
  this.options = r;
2642
2641
  if (this.value != null) {
2643
2642
  setTimeout(function () {
2644
- _this.setValue(_this.value, true);
2643
+ console.log('this.setValue(this.value, true)');
2644
+ // this.setValue(this.value, true);
2645
2645
  }, 500);
2646
2646
  }
2647
2647
  };
@@ -3961,13 +3961,14 @@
3961
3961
  window.open(_this.table.environment.url + '/report' + url + '?reportId=' + result, '_blank');
3962
3962
  }, function () { });
3963
3963
  };
3964
- $__namespace(document).mouseup(function (e) {
3965
- var container = $__namespace(_this.exportDropDown.nativeElement);
3966
- // @ts-ignore
3967
- if (!container.is(e.target) && container.has(e.target).length === 0) {
3968
- container.slideUp(100);
3969
- }
3970
- });
3964
+ // $(document).mouseup((e) => {
3965
+ // const container = $(this.exportDropDown.nativeElement);
3966
+ // // @ts-ignore
3967
+ // if (!container.is(e.target) && container.has(e.target).length === 0)
3968
+ // {
3969
+ // container.slideUp(100);
3970
+ // }
3971
+ // });
3971
3972
  this.maximum.onClick = function () {
3972
3973
  $__namespace(_this.tableDiv.nativeElement).toggleClass('maximum');
3973
3974
  _this.maximum.icon = _this.maximum.name === 'Minimum' ? 'fad fa-arrows-maximize' : 'fad fa-arrows-minimize';