@morozeckiy/dd-lib 0.9.9 → 0.9.10

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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@morozeckiy/dd-lib",
3
- "version": "0.9.9",
3
+ "version": "0.9.10",
4
4
  "types": "./src/typings.d.ts",
5
5
  "repository": "https://gitlab.com/Morozeckiy/dd-lib",
6
6
  "publishConfig": {
@@ -998,15 +998,23 @@ declare class TooltipDirective implements OnDestroy {
998
998
  set position(p: TToolTipPositions | undefined);
999
999
  private _position?;
1000
1000
  private overlayRef;
1001
+ private destroy$;
1002
+ private scrollContainer;
1003
+ private static activeTooltip;
1001
1004
  constructor(element: ElementRef, overlay: Overlay, viewContainer: ViewContainerRef);
1002
1005
  onClick(targetElement: Event): void;
1003
1006
  showTooltipOnClick(): void;
1004
1007
  showTooltip(): void;
1005
1008
  hideTooltip(): void;
1006
1009
  private detachOverlay;
1007
- ngOnDestroy(): void;
1008
1010
  private attachTooltip;
1011
+ private closeTooltip;
1009
1012
  private getPositionStrategy;
1013
+ private subscribeToScroll;
1014
+ private unsubscribeFromScroll;
1015
+ private findScrollableParent;
1016
+ private updateTooltipPosition;
1017
+ ngOnDestroy(): void;
1010
1018
  static ɵfac: i0.ɵɵFactoryDeclaration<TooltipDirective, never>;
1011
1019
  static ɵdir: i0.ɵɵDirectiveDeclaration<TooltipDirective, "[ddTooltip]", never, { "ddTooltip": { "alias": "ddTooltip"; "required": false; }; "withClick": { "alias": "withClick"; "required": false; }; "position": { "alias": "position"; "required": false; }; }, {}, never, never, true, never>;
1012
1020
  }
Binary file