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.
- package/bundles/ng-tailwind.umd.js +6 -3
- package/bundles/ng-tailwind.umd.js.map +1 -1
- package/components/ngt-popover/ngt-popover.component.d.ts +1 -0
- package/esm2015/components/ngt-popover/ngt-popover.component.js +7 -4
- package/fesm2015/ng-tailwind.js +6 -3
- package/fesm2015/ng-tailwind.js.map +1 -1
- package/ng-tailwind.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -7728,13 +7728,16 @@
|
|
|
7728
7728
|
}
|
|
7729
7729
|
NgtPopoverComponent.prototype.fireClickEvent = function () {
|
|
7730
7730
|
var _this = this;
|
|
7731
|
-
this.
|
|
7732
|
-
|
|
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
|
-
},
|
|
7740
|
+
}, 500);
|
|
7738
7741
|
};
|
|
7739
7742
|
return NgtPopoverComponent;
|
|
7740
7743
|
}());
|