chrv-components 1.12.135 → 1.12.136

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
@@ -4020,8 +4020,14 @@ class ChrPopoverDirective {
4020
4020
  this.viewContainerRef = inject(ViewContainerRef);
4021
4021
  this.hostElement = computed(() => this.hostElementRef.nativeElement, /* @ts-ignore */
4022
4022
  ...(ngDevMode ? [{ debugName: "hostElement" }] : /* istanbul ignore next */ []));
4023
- this.isHostHovered$ = new Subject();
4024
- this.isTargetHovered$ = new Subject();
4023
+ this.isHostHovered$ = new BehaviorSubject({
4024
+ hover: false,
4025
+ position: { x: 0, y: 0 },
4026
+ });
4027
+ this.isTargetHovered$ = new BehaviorSubject({
4028
+ hover: false,
4029
+ position: { x: 0, y: 0 },
4030
+ });
4025
4031
  // private readonly isInsidePopover$ = new BehaviorSubject<boolean>(false);
4026
4032
  this.destroyRef = inject(DestroyRef);
4027
4033
  // private readonly isInsideHost = signal(false);