mis-crystal-design-system 2.4.5 → 2.4.6
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/mis-crystal-design-system-datepicker_v2.umd.js +24 -10
- package/bundles/mis-crystal-design-system-datepicker_v2.umd.js.map +1 -1
- package/bundles/mis-crystal-design-system-datepicker_v2.umd.min.js +2 -2
- package/bundles/mis-crystal-design-system-datepicker_v2.umd.min.js.map +1 -1
- package/bundles/mis-crystal-design-system-daterangepicker_v2.umd.js +17 -26
- package/bundles/mis-crystal-design-system-daterangepicker_v2.umd.js.map +1 -1
- package/bundles/mis-crystal-design-system-daterangepicker_v2.umd.min.js +2 -2
- package/bundles/mis-crystal-design-system-daterangepicker_v2.umd.min.js.map +1 -1
- package/bundles/mis-crystal-design-system-tooltip.umd.js +86 -120
- package/bundles/mis-crystal-design-system-tooltip.umd.js.map +1 -1
- package/bundles/mis-crystal-design-system-tooltip.umd.min.js +1 -1
- package/bundles/mis-crystal-design-system-tooltip.umd.min.js.map +1 -1
- package/bundles/mis-crystal-design-system-utils.umd.js +33 -0
- package/bundles/mis-crystal-design-system-utils.umd.js.map +1 -0
- package/bundles/mis-crystal-design-system-utils.umd.min.js +2 -0
- package/bundles/mis-crystal-design-system-utils.umd.min.js.map +1 -0
- package/datepicker_v2/mis-crystal-design-system-datepicker_v2.metadata.json +1 -1
- package/daterangepicker_v2/mis-crystal-design-system-daterangepicker_v2.metadata.json +1 -1
- package/daterangepicker_v2/tz-daterangepicker.directive.d.ts +0 -1
- package/esm2015/datepicker_v2/tz-datepicker.directive.js +23 -8
- package/esm2015/daterangepicker_v2/tz-daterangepicker.directive.js +17 -25
- package/esm2015/tooltip/index.js +2 -2
- package/esm2015/tooltip/models/tooltip.model.js +2 -0
- package/esm2015/tooltip/public_api.js +4 -4
- package/esm2015/tooltip/tooltip-container/tooltip.component.js +34 -0
- package/esm2015/tooltip/tooltip.directive.js +68 -57
- package/esm2015/tooltip/tooltip.module.js +5 -5
- package/esm2015/utils/index.js +17 -0
- package/esm2015/utils/mis-crystal-design-system-utils.js +5 -0
- package/fesm2015/mis-crystal-design-system-datepicker_v2.js +21 -6
- package/fesm2015/mis-crystal-design-system-datepicker_v2.js.map +1 -1
- package/fesm2015/mis-crystal-design-system-daterangepicker_v2.js +15 -23
- package/fesm2015/mis-crystal-design-system-daterangepicker_v2.js.map +1 -1
- package/fesm2015/mis-crystal-design-system-tooltip.js +86 -101
- package/fesm2015/mis-crystal-design-system-tooltip.js.map +1 -1
- package/fesm2015/mis-crystal-design-system-utils.js +24 -0
- package/fesm2015/mis-crystal-design-system-utils.js.map +1 -0
- package/package.json +1 -1
- package/tooltip/index.d.ts +1 -1
- package/tooltip/mis-crystal-design-system-tooltip.metadata.json +1 -1
- package/tooltip/models/tooltip.model.d.ts +1 -0
- package/tooltip/public_api.d.ts +4 -3
- package/tooltip/tooltip-container/tooltip.component.d.ts +10 -0
- package/tooltip/tooltip.directive.d.ts +10 -13
- package/tooltip/tooltip.module.d.ts +1 -1
- package/utils/index.d.ts +7 -0
- package/utils/mis-crystal-design-system-utils.d.ts +4 -0
- package/utils/mis-crystal-design-system-utils.metadata.json +1 -0
- package/utils/package.json +11 -0
- package/esm2015/tooltip/tooltip.component.js +0 -60
- package/tooltip/tooltip.component.d.ts +0 -15
|
@@ -1,27 +1,24 @@
|
|
|
1
|
-
import { AfterViewInit,
|
|
1
|
+
import { AfterViewInit, ElementRef, OnInit, ViewContainerRef } from "@angular/core";
|
|
2
|
+
import { Overlay } from "@angular/cdk/overlay";
|
|
3
|
+
import { ITooltipPositions } from "./models/tooltip.model";
|
|
2
4
|
export declare class ToolTipDirective implements OnInit, AfterViewInit {
|
|
3
|
-
private
|
|
4
|
-
private
|
|
5
|
+
private element;
|
|
6
|
+
private overlay;
|
|
5
7
|
private viewContainerRef;
|
|
6
|
-
private componentFactoryResolver;
|
|
7
8
|
isToolTipDisplayed: boolean;
|
|
8
|
-
toolTipWidth: string;
|
|
9
9
|
toolTipText: string;
|
|
10
|
-
toolTipPosition:
|
|
11
|
-
|
|
10
|
+
toolTipPosition: ITooltipPositions;
|
|
11
|
+
private overlayRef;
|
|
12
12
|
showOnHover: boolean;
|
|
13
13
|
set showToolTip(value: boolean);
|
|
14
|
-
set width(value: string);
|
|
15
14
|
set text(value: string);
|
|
16
|
-
set position(value:
|
|
15
|
+
set position(value: ITooltipPositions);
|
|
17
16
|
onMouseEnter(): void;
|
|
18
17
|
onMouseLeave(): void;
|
|
19
|
-
|
|
20
|
-
constructor(elementRef: ElementRef, renderer: Renderer2, viewContainerRef: ViewContainerRef, componentFactoryResolver: ComponentFactoryResolver);
|
|
18
|
+
constructor(element: ElementRef, overlay: Overlay, viewContainerRef: ViewContainerRef);
|
|
21
19
|
ngOnInit(): void;
|
|
22
20
|
ngAfterViewInit(): void;
|
|
23
|
-
createToolTip(): void;
|
|
24
21
|
displayToolTip(): void;
|
|
22
|
+
positionTooltip(type: "OFFSET_X" | "OFFSET_Y"): number;
|
|
25
23
|
hideToolTip(): void;
|
|
26
|
-
updatePosition(): void;
|
|
27
24
|
}
|
package/utils/index.d.ts
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { ConnectionPositionPair } from "@angular/cdk/overlay";
|
|
2
|
+
export declare const genPositionPairs: ({ positionX, positionY, offsetX, offsetY }: {
|
|
3
|
+
positionX: any;
|
|
4
|
+
positionY: any;
|
|
5
|
+
offsetX?: number;
|
|
6
|
+
offsetY?: number;
|
|
7
|
+
}, isResponsive: boolean) => ConnectionPositionPair[];
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"__symbolic":"module","version":4,"metadata":{"genPositionPairs":{"__symbolic":"error","message":"Lambda not supported","line":2,"character":32,"module":"./index"}},"origins":{"genPositionPairs":"./index"},"importAs":"mis-crystal-design-system/utils"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"main": "../bundles/mis-crystal-design-system-utils.umd.js",
|
|
3
|
+
"module": "../fesm2015/mis-crystal-design-system-utils.js",
|
|
4
|
+
"es2015": "../fesm2015/mis-crystal-design-system-utils.js",
|
|
5
|
+
"esm2015": "../esm2015/utils/mis-crystal-design-system-utils.js",
|
|
6
|
+
"fesm2015": "../fesm2015/mis-crystal-design-system-utils.js",
|
|
7
|
+
"typings": "mis-crystal-design-system-utils.d.ts",
|
|
8
|
+
"metadata": "mis-crystal-design-system-utils.metadata.json",
|
|
9
|
+
"sideEffects": false,
|
|
10
|
+
"name": "mis-crystal-design-system/utils"
|
|
11
|
+
}
|
|
@@ -1,60 +0,0 @@
|
|
|
1
|
-
import { Component, Input, Renderer2, ViewChild } from '@angular/core';
|
|
2
|
-
export class ToolTipComponent {
|
|
3
|
-
constructor(renderer) {
|
|
4
|
-
this.renderer = renderer;
|
|
5
|
-
this.toolTipText = '';
|
|
6
|
-
this.toolTipWidth = '';
|
|
7
|
-
this.toolTipPosition = 'Bottom';
|
|
8
|
-
}
|
|
9
|
-
set text(value) {
|
|
10
|
-
this.toolTipText = value;
|
|
11
|
-
this.updateToolTipPosition();
|
|
12
|
-
}
|
|
13
|
-
set width(value) {
|
|
14
|
-
this.toolTipWidth = value;
|
|
15
|
-
this.updateToolTipPosition();
|
|
16
|
-
}
|
|
17
|
-
set position(value) {
|
|
18
|
-
this.toolTipPosition = value;
|
|
19
|
-
this.updateToolTipPosition();
|
|
20
|
-
}
|
|
21
|
-
ngOnInit() {
|
|
22
|
-
}
|
|
23
|
-
ngAfterViewInit() {
|
|
24
|
-
this.updateToolTipPosition();
|
|
25
|
-
}
|
|
26
|
-
updateToolTipPosition() {
|
|
27
|
-
if (this.container) {
|
|
28
|
-
let width = this.container.nativeElement.offsetWidth;
|
|
29
|
-
if (this.toolTipPosition === 'Left') {
|
|
30
|
-
this.renderer.setStyle(this.container.nativeElement, 'left', `-${width + 12}px`);
|
|
31
|
-
this.renderer.setStyle(this.container.nativeElement, 'right', '');
|
|
32
|
-
}
|
|
33
|
-
else if (this.toolTipPosition === 'Right') {
|
|
34
|
-
this.renderer.setStyle(this.container.nativeElement, 'left', '');
|
|
35
|
-
this.renderer.setStyle(this.container.nativeElement, 'right', `-${width + 12}px`);
|
|
36
|
-
}
|
|
37
|
-
else {
|
|
38
|
-
this.renderer.setStyle(this.container.nativeElement, 'left', '50%');
|
|
39
|
-
this.renderer.setStyle(this.container.nativeElement, 'right', '');
|
|
40
|
-
}
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
|
-
}
|
|
44
|
-
ToolTipComponent.decorators = [
|
|
45
|
-
{ type: Component, args: [{
|
|
46
|
-
selector: 'mis-tooltip',
|
|
47
|
-
template: "<div id=\"tooltip-container\" [hidden]=\"toolTipText.length < 1\"\n #container\n [ngStyle]=\"{'width': toolTipWidth.length > 0? toolTipWidth : ''}\"\n [ngClass]=\"{\n 'left': toolTipPosition === 'Left',\n 'right': toolTipPosition === 'Right',\n 'top': toolTipPosition === 'Top',\n 'bottom': toolTipPosition === 'Bottom'\n }\"\n>\n <div id=\"tooltip\">\n <div id=\"tooltip-text\">{{toolTipText}}</div>\n <span\n id=\"arrow\"\n [ngClass]=\"{\n 'arrow-left': toolTipPosition === 'Left',\n 'arrow-right': toolTipPosition === 'Right',\n 'arrow-top': toolTipPosition === 'Top',\n 'arrow-bottom': toolTipPosition === 'Bottom'\n }\"\n ></span>\n </div>\n</div>\n",
|
|
48
|
-
styles: ["#tooltip-container{position:absolute;z-index:1}#tooltip-container.top{left:50%;transform:translateX(-50%);top:-48px}#tooltip-container.bottom{left:50%;transform:translateX(-50%);bottom:-48px}#tooltip-container.left,#tooltip-container.right{top:50%;transform:translateY(-50%)}#tooltip{position:relative;display:block;padding:8px 12px;border-radius:8px;color:#fff;background:#181f33;font-family:Lato,sans-serif;font-style:normal;font-weight:400;font-size:14px;line-height:20px;text-align:center;letter-spacing:.2px}#tooltip-text{width:100%;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}#arrow{position:absolute;height:12px;width:12px;background:#181f33;z-index:1}.arrow-top{bottom:-6px}.arrow-bottom,.arrow-top{left:50%;transform:translateX(-50%) rotate(-45deg);-webkit-transform:translateX(-50%) rotate(-45deg)}.arrow-bottom{top:-6px}.arrow-left{right:-6px}.arrow-left,.arrow-right{top:50%;transform:translateY(-50%) rotate(-45deg);-webkit-transform:translateY(-50%) rotate(-45deg)}.arrow-right{left:-6px}"]
|
|
49
|
-
},] }
|
|
50
|
-
];
|
|
51
|
-
ToolTipComponent.ctorParameters = () => [
|
|
52
|
-
{ type: Renderer2 }
|
|
53
|
-
];
|
|
54
|
-
ToolTipComponent.propDecorators = {
|
|
55
|
-
text: [{ type: Input }],
|
|
56
|
-
width: [{ type: Input }],
|
|
57
|
-
position: [{ type: Input }],
|
|
58
|
-
container: [{ type: ViewChild, args: ['container',] }]
|
|
59
|
-
};
|
|
60
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidG9vbHRpcC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9wcm9qZWN0cy9taXMtY29tcG9uZW50cy90b29sdGlwL3Rvb2x0aXAuY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBZ0IsU0FBUyxFQUFjLEtBQUssRUFBVSxTQUFTLEVBQUUsU0FBUyxFQUFDLE1BQU0sZUFBZSxDQUFDO0FBT3hHLE1BQU0sT0FBTyxnQkFBZ0I7SUFxQjNCLFlBQW9CLFFBQW1CO1FBQW5CLGFBQVEsR0FBUixRQUFRLENBQVc7UUFuQmhDLGdCQUFXLEdBQVcsRUFBRSxDQUFBO1FBQ3hCLGlCQUFZLEdBQVcsRUFBRSxDQUFBO1FBQ3pCLG9CQUFlLEdBQXdDLFFBQVEsQ0FBQTtJQWtCdEUsQ0FBQztJQWhCRCxJQUFhLElBQUksQ0FBQyxLQUFhO1FBQzdCLElBQUksQ0FBQyxXQUFXLEdBQUcsS0FBSyxDQUFBO1FBQ3hCLElBQUksQ0FBQyxxQkFBcUIsRUFBRSxDQUFBO0lBQzlCLENBQUM7SUFDRCxJQUFhLEtBQUssQ0FBQyxLQUFhO1FBQzlCLElBQUksQ0FBQyxZQUFZLEdBQUcsS0FBSyxDQUFDO1FBQzFCLElBQUksQ0FBQyxxQkFBcUIsRUFBRSxDQUFBO0lBQzlCLENBQUM7SUFDRCxJQUFhLFFBQVEsQ0FBQyxLQUEwQztRQUM5RCxJQUFJLENBQUMsZUFBZSxHQUFHLEtBQUssQ0FBQTtRQUM1QixJQUFJLENBQUMscUJBQXFCLEVBQUUsQ0FBQTtJQUM5QixDQUFDO0lBTUQsUUFBUTtJQUNSLENBQUM7SUFDRCxlQUFlO1FBQ2IsSUFBSSxDQUFDLHFCQUFxQixFQUFFLENBQUE7SUFDOUIsQ0FBQztJQUNELHFCQUFxQjtRQUNuQixJQUFHLElBQUksQ0FBQyxTQUFTLEVBQUM7WUFDaEIsSUFBSSxLQUFLLEdBQUcsSUFBSSxDQUFDLFNBQVMsQ0FBQyxhQUFhLENBQUMsV0FBVyxDQUFBO1lBQ3BELElBQUcsSUFBSSxDQUFDLGVBQWUsS0FBSyxNQUFNLEVBQUM7Z0JBQ2pDLElBQUksQ0FBQyxRQUFRLENBQUMsUUFBUSxDQUFDLElBQUksQ0FBQyxTQUFTLENBQUMsYUFBYSxFQUFFLE1BQU0sRUFBRSxJQUFJLEtBQUssR0FBRyxFQUFFLElBQUksQ0FBQyxDQUFBO2dCQUNoRixJQUFJLENBQUMsUUFBUSxDQUFDLFFBQVEsQ0FBQyxJQUFJLENBQUMsU0FBUyxDQUFDLGFBQWEsRUFBRSxPQUFPLEVBQUUsRUFBRSxDQUFDLENBQUE7YUFDbEU7aUJBQ0ksSUFBRyxJQUFJLENBQUMsZUFBZSxLQUFLLE9BQU8sRUFBQztnQkFDdkMsSUFBSSxDQUFDLFFBQVEsQ0FBQyxRQUFRLENBQUMsSUFBSSxDQUFDLFNBQVMsQ0FBQyxhQUFhLEVBQUUsTUFBTSxFQUFFLEVBQUUsQ0FBQyxDQUFBO2dCQUNoRSxJQUFJLENBQUMsUUFBUSxDQUFDLFFBQVEsQ0FBQyxJQUFJLENBQUMsU0FBUyxDQUFDLGFBQWEsRUFBRSxPQUFPLEVBQUUsSUFBSSxLQUFLLEdBQUcsRUFBRSxJQUFJLENBQUMsQ0FBQTthQUNsRjtpQkFDRztnQkFDRixJQUFJLENBQUMsUUFBUSxDQUFDLFFBQVEsQ0FBQyxJQUFJLENBQUMsU0FBUyxDQUFDLGFBQWEsRUFBRSxNQUFNLEVBQUUsS0FBSyxDQUFDLENBQUE7Z0JBQ25FLElBQUksQ0FBQyxRQUFRLENBQUMsUUFBUSxDQUFDLElBQUksQ0FBQyxTQUFTLENBQUMsYUFBYSxFQUFFLE9BQU8sRUFBRSxFQUFFLENBQUMsQ0FBQTthQUNsRTtTQUNGO0lBQ0gsQ0FBQzs7O1lBakRGLFNBQVMsU0FBQztnQkFDVCxRQUFRLEVBQUUsYUFBYTtnQkFDdkIsNHZCQUF1Qzs7YUFFeEM7OztZQU40RCxTQUFTOzs7bUJBYW5FLEtBQUs7b0JBSUwsS0FBSzt1QkFJTCxLQUFLO3dCQUtMLFNBQVMsU0FBQyxXQUFXIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtBZnRlclZpZXdJbml0LCBDb21wb25lbnQsIEVsZW1lbnRSZWYsIElucHV0LCBPbkluaXQsIFJlbmRlcmVyMiwgVmlld0NoaWxkfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnbWlzLXRvb2x0aXAnLFxuICB0ZW1wbGF0ZVVybDogJy4vdG9vbHRpcC5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL3Rvb2x0aXAuY29tcG9uZW50LnNjc3MnXVxufSlcbmV4cG9ydCBjbGFzcyBUb29sVGlwQ29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0LCBBZnRlclZpZXdJbml0e1xuXG4gIHB1YmxpYyB0b29sVGlwVGV4dDogc3RyaW5nID0gJydcbiAgcHVibGljIHRvb2xUaXBXaWR0aDogc3RyaW5nID0gJydcbiAgcHVibGljIHRvb2xUaXBQb3NpdGlvbjogJ0xlZnQnIHwgJ1JpZ2h0JyB8ICdUb3AnIHwgJ0JvdHRvbScgPSAnQm90dG9tJ1xuXG4gIEBJbnB1dCgpIHNldCB0ZXh0KHZhbHVlOiBzdHJpbmcpe1xuICAgIHRoaXMudG9vbFRpcFRleHQgPSB2YWx1ZVxuICAgIHRoaXMudXBkYXRlVG9vbFRpcFBvc2l0aW9uKClcbiAgfVxuICBASW5wdXQoKSBzZXQgd2lkdGgodmFsdWU6IHN0cmluZyl7XG4gICAgdGhpcy50b29sVGlwV2lkdGggPSB2YWx1ZTtcbiAgICB0aGlzLnVwZGF0ZVRvb2xUaXBQb3NpdGlvbigpXG4gIH1cbiAgQElucHV0KCkgc2V0IHBvc2l0aW9uKHZhbHVlOiAnTGVmdCcgfCAnUmlnaHQnIHwgJ1RvcCcgfCAnQm90dG9tJyl7XG4gICAgdGhpcy50b29sVGlwUG9zaXRpb24gPSB2YWx1ZVxuICAgIHRoaXMudXBkYXRlVG9vbFRpcFBvc2l0aW9uKClcbiAgfVxuXG4gIEBWaWV3Q2hpbGQoJ2NvbnRhaW5lcicpIGNvbnRhaW5lcjogRWxlbWVudFJlZlxuXG4gIGNvbnN0cnVjdG9yKHByaXZhdGUgcmVuZGVyZXI6IFJlbmRlcmVyMikge1xuICB9XG4gIG5nT25Jbml0KCkge1xuICB9XG4gIG5nQWZ0ZXJWaWV3SW5pdCgpe1xuICAgIHRoaXMudXBkYXRlVG9vbFRpcFBvc2l0aW9uKClcbiAgfVxuICB1cGRhdGVUb29sVGlwUG9zaXRpb24oKXtcbiAgICBpZih0aGlzLmNvbnRhaW5lcil7XG4gICAgICBsZXQgd2lkdGggPSB0aGlzLmNvbnRhaW5lci5uYXRpdmVFbGVtZW50Lm9mZnNldFdpZHRoXG4gICAgICBpZih0aGlzLnRvb2xUaXBQb3NpdGlvbiA9PT0gJ0xlZnQnKXtcbiAgICAgICAgdGhpcy5yZW5kZXJlci5zZXRTdHlsZSh0aGlzLmNvbnRhaW5lci5uYXRpdmVFbGVtZW50LCAnbGVmdCcsIGAtJHt3aWR0aCArIDEyfXB4YClcbiAgICAgICAgdGhpcy5yZW5kZXJlci5zZXRTdHlsZSh0aGlzLmNvbnRhaW5lci5uYXRpdmVFbGVtZW50LCAncmlnaHQnLCAnJylcbiAgICAgIH1cbiAgICAgIGVsc2UgaWYodGhpcy50b29sVGlwUG9zaXRpb24gPT09ICdSaWdodCcpe1xuICAgICAgICB0aGlzLnJlbmRlcmVyLnNldFN0eWxlKHRoaXMuY29udGFpbmVyLm5hdGl2ZUVsZW1lbnQsICdsZWZ0JywgJycpXG4gICAgICAgIHRoaXMucmVuZGVyZXIuc2V0U3R5bGUodGhpcy5jb250YWluZXIubmF0aXZlRWxlbWVudCwgJ3JpZ2h0JywgYC0ke3dpZHRoICsgMTJ9cHhgKVxuICAgICAgfVxuICAgICAgZWxzZXtcbiAgICAgICAgdGhpcy5yZW5kZXJlci5zZXRTdHlsZSh0aGlzLmNvbnRhaW5lci5uYXRpdmVFbGVtZW50LCAnbGVmdCcsICc1MCUnKVxuICAgICAgICB0aGlzLnJlbmRlcmVyLnNldFN0eWxlKHRoaXMuY29udGFpbmVyLm5hdGl2ZUVsZW1lbnQsICdyaWdodCcsICcnKVxuICAgICAgfVxuICAgIH1cbiAgfVxufVxuIl19
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { AfterViewInit, ElementRef, OnInit, Renderer2 } from '@angular/core';
|
|
2
|
-
export declare class ToolTipComponent implements OnInit, AfterViewInit {
|
|
3
|
-
private renderer;
|
|
4
|
-
toolTipText: string;
|
|
5
|
-
toolTipWidth: string;
|
|
6
|
-
toolTipPosition: 'Left' | 'Right' | 'Top' | 'Bottom';
|
|
7
|
-
set text(value: string);
|
|
8
|
-
set width(value: string);
|
|
9
|
-
set position(value: 'Left' | 'Right' | 'Top' | 'Bottom');
|
|
10
|
-
container: ElementRef;
|
|
11
|
-
constructor(renderer: Renderer2);
|
|
12
|
-
ngOnInit(): void;
|
|
13
|
-
ngAfterViewInit(): void;
|
|
14
|
-
updateToolTipPosition(): void;
|
|
15
|
-
}
|