ng-tailwind 2.30.358 → 2.30.359

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.
@@ -7728,13 +7728,16 @@
7728
7728
  }
7729
7729
  NgtPopoverComponent.prototype.fireClickEvent = function () {
7730
7730
  var _this = this;
7731
- this.onClick.emit();
7732
- setTimeout(function () {
7731
+ if (this.clickTimeout) {
7732
+ clearTimeout(this.clickTimeout);
7733
+ }
7734
+ this.clickTimeout = setTimeout(function () {
7735
+ _this.onClick.emit();
7733
7736
  var event = new MouseEvent('click', { bubbles: true });
7734
7737
  event.preventDefault();
7735
7738
  event.stopPropagation();
7736
7739
  _this.hostDiv.nativeElement.dispatchEvent(event);
7737
- }, 50);
7740
+ }, 500);
7738
7741
  };
7739
7742
  return NgtPopoverComponent;
7740
7743
  }());