@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/agorapulse-ui-components-13.1.10.tgz +0 -0
- package/esm2020/src/lib/tooltip-neo/tooltip-neo.component.mjs +6 -6
- package/esm2020/src/lib/tooltip-neo/tooltip-neo.directive.mjs +44 -18
- package/esm2020/src/lib/tooltip-neo/tooltip-neo.model.mjs +1 -1
- package/esm2020/src/lib/tooltip-neo/tooltip-neo.service.mjs +2 -2
- package/fesm2015/agorapulse-ui-components.mjs +49 -23
- package/fesm2015/agorapulse-ui-components.mjs.map +1 -1
- package/fesm2020/agorapulse-ui-components.mjs +49 -23
- package/fesm2020/agorapulse-ui-components.mjs.map +1 -1
- package/package.json +1 -1
- package/src/lib/tooltip-neo/tooltip-neo.component.d.ts +4 -4
- package/src/lib/tooltip-neo/tooltip-neo.directive.d.ts +8 -3
- package/src/lib/tooltip-neo/tooltip-neo.model.d.ts +1 -1
- package/src/lib/tooltip-neo/tooltip-neo.service.d.ts +1 -1
- package/agorapulse-ui-components-13.1.9.tgz +0 -0
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { ElementRef, OnInit } from '@angular/core';
|
|
2
2
|
import { TooltipNeoParams } from './tooltip-neo.model';
|
|
3
|
-
import { TooltipNeoService } from
|
|
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
|
|
7
|
-
private
|
|
6
|
+
private elementRef;
|
|
7
|
+
private tooltipNeoService;
|
|
8
8
|
params: TooltipNeoParams;
|
|
9
9
|
border: string;
|
|
10
|
-
constructor(
|
|
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
|
|
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
|
|
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,7 +1,7 @@
|
|
|
1
1
|
import { Subject } from 'rxjs';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class TooltipNeoService {
|
|
4
|
-
|
|
4
|
+
dispose$: Subject<void>;
|
|
5
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<TooltipNeoService, never>;
|
|
6
6
|
static ɵprov: i0.ɵɵInjectableDeclaration<TooltipNeoService>;
|
|
7
7
|
}
|
|
Binary file
|