@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
|
@@ -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);
|