@seniorsistemas/angular-components 17.15.0 → 17.15.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.
@@ -680,12 +680,6 @@
680
680
  this.destroy();
681
681
  }
682
682
  };
683
- // whenever you touch outside the component with the tooltip I destroy the tooltip.
684
- TooltipDirective.prototype.onDocumentTouchStart = function () {
685
- if (this.tooltipEvent === TooltipEvent.Hover) {
686
- this.destroy();
687
- }
688
- };
689
683
  TooltipDirective.prototype.onFocus = function () {
690
684
  if (this.tooltipEvent === TooltipEvent.Focus) {
691
685
  this.createTootip();
@@ -885,9 +879,6 @@
885
879
  core.HostListener("click"),
886
880
  core.HostListener("keydown")
887
881
  ], TooltipDirective.prototype, "onClick", null);
888
- __decorate([
889
- core.HostListener("document:touchstart")
890
- ], TooltipDirective.prototype, "onDocumentTouchStart", null);
891
882
  __decorate([
892
883
  core.HostListener("focus")
893
884
  ], TooltipDirective.prototype, "onFocus", null);