@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.
- package/bundles/seniorsistemas-angular-components.umd.js +0 -9
- package/bundles/seniorsistemas-angular-components.umd.js.map +1 -1
- package/bundles/seniorsistemas-angular-components.umd.min.js +1 -1
- package/bundles/seniorsistemas-angular-components.umd.min.js.map +1 -1
- package/components/tooltip/tooltip.directive.d.ts +0 -1
- package/esm2015/components/tooltip/tooltip.directive.js +1 -10
- package/esm5/components/tooltip/tooltip.directive.js +1 -10
- package/fesm2015/seniorsistemas-angular-components.js +0 -9
- package/fesm2015/seniorsistemas-angular-components.js.map +1 -1
- package/fesm5/seniorsistemas-angular-components.js +0 -9
- package/fesm5/seniorsistemas-angular-components.js.map +1 -1
- package/package.json +1 -1
- package/seniorsistemas-angular-components.metadata.json +1 -1
|
@@ -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);
|