qms-angular 1.1.28 → 1.1.29
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/bundles/qms-angular.umd.js +35 -37
- package/bundles/qms-angular.umd.js.map +1 -1
- package/esm2015/lib/directives/tooltip/tooltip-renderer.directive.js +35 -31
- package/esm2015/lib/qms-ckeditor-components/common/classes/qmsUploadAdapter.js +1 -2
- package/esm2015/lib/qms-ckeditor-components/components/qms-ckeditor-imagemap/qms-ckeditor-imagemap.component.js +1 -1
- package/esm2015/lib/qms-ckeditor-components/qms-ckeditor.component.js +1 -5
- package/fesm2015/qms-angular.js +35 -36
- package/fesm2015/qms-angular.js.map +1 -1
- package/lib/directives/tooltip/tooltip-renderer.directive.d.ts +4 -5
- package/package.json +1 -1
- package/qms-angular.metadata.json +1 -1
@@ -1,5 +1,6 @@
|
|
1
1
|
import { Overlay, OverlayPositionBuilder, OverlayRef } from "@angular/cdk/overlay";
|
2
|
-
import { ElementRef, TemplateRef } from "@angular/core";
|
2
|
+
import { ComponentRef, ElementRef, TemplateRef } from "@angular/core";
|
3
|
+
import { QMSToolTipComponent } from "../../components/tooltip/tooltip";
|
3
4
|
export declare class QMSToolTipRendererDirective {
|
4
5
|
private _overlay;
|
5
6
|
private _overlayPositionBuilder;
|
@@ -14,11 +15,8 @@ export declare class QMSToolTipRendererDirective {
|
|
14
15
|
contentTemplate: TemplateRef<any>;
|
15
16
|
position: string;
|
16
17
|
_overlayRef: OverlayRef;
|
18
|
+
_tooltipInstance: ComponentRef<QMSToolTipComponent>;
|
17
19
|
constructor(_overlay: Overlay, _overlayPositionBuilder: OverlayPositionBuilder, _elementRef: ElementRef);
|
18
|
-
/**
|
19
|
-
* Init life cycle event handler
|
20
|
-
*/
|
21
|
-
ngOnInit(): void;
|
22
20
|
/**
|
23
21
|
* This method will be called whenever mouse enters in the Host element
|
24
22
|
* i.e. where this directive is applied
|
@@ -31,6 +29,7 @@ export declare class QMSToolTipRendererDirective {
|
|
31
29
|
* This method will close the tooltip by detaching the overlay from the view
|
32
30
|
*/
|
33
31
|
hide(): void;
|
32
|
+
initTooltipProperties(): void;
|
34
33
|
/**
|
35
34
|
* Destroy lifecycle event handler
|
36
35
|
* This method will make sure to close the tooltip
|