@eric-emg/symphiq-components 1.2.69 → 1.2.71

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
- this.clearShowTimeout();
1530
- this.isHovered.set(false);
1531
- this.scheduleHide();
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
- this.tooltipService.setTooltipHovered(true);
11229
+ // DEBUGGING: Keep tooltip visible
11230
+ // this.tooltipService.setTooltipHovered(true);
11229
11231
  }
11230
11232
  onTooltipMouseLeave() {
11231
- this.tooltipService.setTooltipHovered(false);
11232
- // Trigger the hide check callback from the directive
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();
@@ -11413,11 +11415,11 @@ class TooltipContainerComponent {
11413
11415
  NarrativeTooltipComponent], encapsulation: 2, data: { animation: [
11414
11416
  trigger('fadeInScale', [
11415
11417
  transition(':enter', [
11416
- style({ opacity: 0, transform: 'scale(0.95)' }),
11417
- animate('150ms ease-out', style({ opacity: 1, transform: 'scale(1)' }))
11418
+ style({ opacity: 0 }),
11419
+ animate('150ms ease-out', style({ opacity: 1 }))
11418
11420
  ]),
11419
11421
  transition(':leave', [
11420
- animate('100ms ease-in', style({ opacity: 0, transform: 'scale(0.95)' }))
11422
+ animate('100ms ease-in', style({ opacity: 0 }))
11421
11423
  ])
11422
11424
  ])
11423
11425
  ] }, changeDetection: 0 }); }
@@ -11443,11 +11445,11 @@ class TooltipContainerComponent {
11443
11445
  animations: [
11444
11446
  trigger('fadeInScale', [
11445
11447
  transition(':enter', [
11446
- style({ opacity: 0, transform: 'scale(0.95)' }),
11447
- animate('150ms ease-out', style({ opacity: 1, transform: 'scale(1)' }))
11448
+ style({ opacity: 0 }),
11449
+ animate('150ms ease-out', style({ opacity: 1 }))
11448
11450
  ]),
11449
11451
  transition(':leave', [
11450
- animate('100ms ease-in', style({ opacity: 0, transform: 'scale(0.95)' }))
11452
+ animate('100ms ease-in', style({ opacity: 0 }))
11451
11453
  ])
11452
11454
  ])
11453
11455
  ],