@ship-ui/core 0.17.17 → 0.17.19

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.
@@ -1,5 +1,5 @@
1
1
  import * as _angular_core from '@angular/core';
2
- import { ElementRef, QueryList, InputSignal, OutputEmitterRef, ComponentRef, OutputRefSubscription, Type, AfterViewInit, OnDestroy, AfterContentInit, TemplateRef, WritableSignal, InjectionToken } from '@angular/core';
2
+ import { ElementRef, QueryList, OutputEmitterRef, InputSignal, ComponentRef, OutputRefSubscription, Type, AfterViewInit, OnDestroy, AfterContentInit, TemplateRef, WritableSignal, InjectionToken } from '@angular/core';
3
3
  import { NgModel } from '@angular/forms';
4
4
 
5
5
  type ShipColor = 'primary' | 'accent' | 'warn' | 'error' | 'success' | (string & {});
@@ -911,6 +911,7 @@ declare class ShipPreventWheel {
911
911
  static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ShipPreventWheel, "[shPreventWheel]", never, {}, {}, never, never, true, never>;
912
912
  }
913
913
 
914
+ type Timeout = ReturnType<typeof setTimeout>;
914
915
  declare class ShipTooltipWrapper {
915
916
  #private;
916
917
  positionAnchorName: _angular_core.InputSignal<string>;
@@ -937,12 +938,13 @@ declare class ShipTooltip implements OnDestroy {
937
938
  private readonly DEBOUNCE_DELAY;
938
939
  readonly anchorName: string;
939
940
  isOpen: _angular_core.WritableSignal<boolean>;
940
- onMouseEnter(): void;
941
- onMouseLeave(): void;
941
+ onMouseEnter(event: MouseEvent): void;
942
+ onMouseLeave(event: MouseEvent): void;
942
943
  ngOnDestroy(): void;
943
944
  private startCleanupTimer;
944
945
  private cancelCleanupTimer;
945
946
  private showTooltip;
947
+ destroyTimeout: Timeout | null;
946
948
  private cleanupTooltip;
947
949
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ShipTooltip, never>;
948
950
  static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ShipTooltip, "[shTooltip]", never, { "shTooltip": { "alias": "shTooltip"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;