chrv-components 1.12.136 → 1.12.137

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.
Binary file
@@ -4079,8 +4079,8 @@ class ChrPopoverDirective {
4079
4079
  combineLatest([this.isHostHovered$, this.isTargetHovered$])
4080
4080
  .pipe(map(([hostHovered, targetHovered]) => hostHovered.hover ||
4081
4081
  targetHovered.hover ||
4082
- this.isInsideHost(hostHovered.position?.x, hostHovered.position.y) ||
4083
- this.isInsideTarget(targetHovered.position?.x, targetHovered.position.y)), switchMap((isInside) => timer(100).pipe(map(() => isInside))), takeUntilDestroyed(this.destroyRef))
4082
+ this.isInsideHost(targetHovered.position.x, targetHovered.position.y) ||
4083
+ this.isInsideTarget(hostHovered.position.x, hostHovered.position.y)), switchMap((isInside) => timer(100).pipe(map(() => isInside))), takeUntilDestroyed(this.destroyRef))
4084
4084
  .subscribe((isInside) => {
4085
4085
  if (isInside && !this.isOpen()) {
4086
4086
  this.showPopover();