@agorapulse/ui-components 13.1.9 → 13.1.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.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@agorapulse/ui-components",
3
3
  "description": "Agorapulse UI Components Library",
4
- "version": "13.1.9",
4
+ "version": "13.1.10",
5
5
  "author": "Benoit Hediard",
6
6
  "repository": {
7
7
  "type": "git",
@@ -1,13 +1,13 @@
1
1
  import { ElementRef, OnInit } from '@angular/core';
2
2
  import { TooltipNeoParams } from './tooltip-neo.model';
3
- import { TooltipNeoService } from "./tooltip-neo.service";
3
+ import { TooltipNeoService } from './tooltip-neo.service';
4
4
  import * as i0 from "@angular/core";
5
5
  export declare class TooltipNeoComponent implements OnInit {
6
- private _elementRef;
7
- private _tooltipNeoService;
6
+ private elementRef;
7
+ private tooltipNeoService;
8
8
  params: TooltipNeoParams;
9
9
  border: string;
10
- constructor(_elementRef: ElementRef, _tooltipNeoService: TooltipNeoService);
10
+ constructor(elementRef: ElementRef, tooltipNeoService: TooltipNeoService);
11
11
  ngOnInit(): void;
12
12
  onClickOutside(event: any): void;
13
13
  static ɵfac: i0.ɵɵFactoryDeclaration<TooltipNeoComponent, never>;
@@ -11,22 +11,27 @@ export declare class TooltipNeoDirective implements OnInit, OnDestroy, OnChanges
11
11
  apTooltipNeo: string | TooltipNeoParams;
12
12
  private allowDisplay;
13
13
  private destroy$;
14
- private hide$;
14
+ private display$;
15
15
  private mouseEntered;
16
16
  private overlayRef;
17
17
  private params;
18
- private show$;
19
18
  private elementRefMouseLeave$;
20
19
  static enableTooltip(content: string | TemplateRef<any>, contentType: string, display: boolean): boolean;
20
+ /**
21
+ * To fix issue on inbox virtual scroller, it's a manual cleaner at DOM level
22
+ * @private
23
+ */
24
+ private static cleanUpPersistentTooltip;
21
25
  constructor(elementRef: ElementRef, overlay: Overlay, overlayPositionBuilder: OverlayPositionBuilder, tooltipNeoService: TooltipNeoService);
22
26
  ngOnChanges(changes: SimpleChanges): void;
23
27
  ngOnInit(): void;
24
28
  ngOnDestroy(): void;
25
29
  private setSettings;
26
30
  private initiateTooltip;
27
- private detach;
31
+ private dispose;
28
32
  onMouseEnter(): void;
29
33
  onMouseLeave(): void;
34
+ onClick(): void;
30
35
  static ɵfac: i0.ɵɵFactoryDeclaration<TooltipNeoDirective, never>;
31
36
  static ɵdir: i0.ɵɵDirectiveDeclaration<TooltipNeoDirective, "[apTooltipNeo]", never, { "apTooltipNeo": "apTooltipNeo"; }, {}, never>;
32
37
  }
@@ -1,4 +1,4 @@
1
- import { TemplateRef } from "@angular/core";
1
+ import { TemplateRef } from '@angular/core';
2
2
  export interface TooltipNeoParams {
3
3
  content: string | TemplateRef<any>;
4
4
  backgroundColor?: string;
@@ -1,7 +1,7 @@
1
1
  import { Subject } from 'rxjs';
2
2
  import * as i0 from "@angular/core";
3
3
  export declare class TooltipNeoService {
4
- clickOutside$: Subject<void>;
4
+ dispose$: Subject<void>;
5
5
  static ɵfac: i0.ɵɵFactoryDeclaration<TooltipNeoService, never>;
6
6
  static ɵprov: i0.ɵɵInjectableDeclaration<TooltipNeoService>;
7
7
  }
Binary file