@open-rlb/ng-bootstrap 2.3.3 → 2.3.4

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.
@@ -96,6 +96,16 @@
96
96
  padding: 0.25rem 0.5rem;
97
97
  }
98
98
 
99
+ @media (hover: none) {
100
+ .tooltip {
101
+ display: none !important;
102
+ }
103
+ }
104
+
105
+ .sidebar-toggler-tooltip {
106
+ pointer-events: none;
107
+ }
108
+
99
109
  /* ===== Mobile ===== */
100
110
  @media (max-width: 992px) {
101
111
  .navbar-collapse {
@@ -108,4 +118,4 @@
108
118
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .15);
109
119
  z-index: 1100;
110
120
  }
111
- }
121
+ }
@@ -5335,6 +5335,11 @@ class TooltipDirective {
5335
5335
  this.elementRef = elementRef;
5336
5336
  this.renderer = renderer;
5337
5337
  }
5338
+ ngOnDestroy() {
5339
+ if (this._tooltip) {
5340
+ this._tooltip.dispose();
5341
+ }
5342
+ }
5338
5343
  ngOnChanges(changes) {
5339
5344
  if (changes['tooltip']) {
5340
5345
  if (this.tooltip) {