@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.
@@ -535,12 +535,6 @@ var TooltipDirective = /** @class */ (function () {
535
535
  this.destroy();
536
536
  }
537
537
  };
538
- // whenever you touch outside the component with the tooltip I destroy the tooltip.
539
- TooltipDirective.prototype.onDocumentTouchStart = function () {
540
- if (this.tooltipEvent === TooltipEvent.Hover) {
541
- this.destroy();
542
- }
543
- };
544
538
  TooltipDirective.prototype.onFocus = function () {
545
539
  if (this.tooltipEvent === TooltipEvent.Focus) {
546
540
  this.createTootip();
@@ -740,9 +734,6 @@ var TooltipDirective = /** @class */ (function () {
740
734
  HostListener("click"),
741
735
  HostListener("keydown")
742
736
  ], TooltipDirective.prototype, "onClick", null);
743
- __decorate([
744
- HostListener("document:touchstart")
745
- ], TooltipDirective.prototype, "onDocumentTouchStart", null);
746
737
  __decorate([
747
738
  HostListener("focus")
748
739
  ], TooltipDirective.prototype, "onFocus", null);