@eric-emg/symphiq-components 1.2.68 → 1.2.70
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.
|
@@ -1526,9 +1526,10 @@ class TooltipDirective {
|
|
|
1526
1526
|
this.mouseY = event.clientY;
|
|
1527
1527
|
}
|
|
1528
1528
|
onMouseLeave() {
|
|
1529
|
-
|
|
1530
|
-
this.
|
|
1531
|
-
this.
|
|
1529
|
+
// DEBUGGING: Keep tooltip visible
|
|
1530
|
+
// this.clearShowTimeout();
|
|
1531
|
+
// this.isHovered.set(false);
|
|
1532
|
+
// this.scheduleHide();
|
|
1532
1533
|
}
|
|
1533
1534
|
onMouseEnterAgain() {
|
|
1534
1535
|
// If user returns to element while tooltip is still visible, cancel hide
|
|
@@ -11225,12 +11226,13 @@ class TooltipContainerComponent {
|
|
|
11225
11226
|
});
|
|
11226
11227
|
}
|
|
11227
11228
|
onTooltipMouseEnter() {
|
|
11228
|
-
|
|
11229
|
+
// DEBUGGING: Keep tooltip visible
|
|
11230
|
+
// this.tooltipService.setTooltipHovered(true);
|
|
11229
11231
|
}
|
|
11230
11232
|
onTooltipMouseLeave() {
|
|
11231
|
-
|
|
11232
|
-
//
|
|
11233
|
-
this.tooltipService.triggerHideCheck();
|
|
11233
|
+
// DEBUGGING: Keep tooltip visible
|
|
11234
|
+
// this.tooltipService.setTooltipHovered(false);
|
|
11235
|
+
// this.tooltipService.triggerHideCheck();
|
|
11234
11236
|
}
|
|
11235
11237
|
calculateLeft() {
|
|
11236
11238
|
const rect = this.targetRect();
|