master-control 0.3.25 → 0.3.27
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/esm2022/lib/button/button.component.mjs +3 -3
- package/esm2022/lib/directives/customized.tooltip.directive.mjs +117 -0
- package/esm2022/lib/suffix-textbox/suffix-textbox.component.mjs +6 -4
- package/esm2022/lib/toggle-button/toggle-button.component.mjs +5 -4
- package/fesm2022/master-control.mjs +125 -9
- package/fesm2022/master-control.mjs.map +1 -1
- package/lib/directives/customized.tooltip.directive.d.ts +16 -0
- package/master-control-0.3.27.tgz +0 -0
- package/package.json +1 -1
- package/master-control-0.3.25.tgz +0 -0
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { ElementRef, TemplateRef, ViewContainerRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class CustomizedTooltipDirective {
|
|
4
|
+
private el;
|
|
5
|
+
private vcr;
|
|
6
|
+
template: TemplateRef<any>;
|
|
7
|
+
private tooltipElement;
|
|
8
|
+
private showTimeout;
|
|
9
|
+
private hideTimeout;
|
|
10
|
+
constructor(el: ElementRef, vcr: ViewContainerRef);
|
|
11
|
+
showTooltip(): void;
|
|
12
|
+
hideTooltip(): void;
|
|
13
|
+
ngOnDestroy(): void;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CustomizedTooltipDirective, never>;
|
|
15
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<CustomizedTooltipDirective, "[appTooltipTemplate]", never, { "template": { "alias": "appTooltipTemplate"; "required": false; }; }, {}, never, never, true, never>;
|
|
16
|
+
}
|
|
Binary file
|
package/package.json
CHANGED
|
Binary file
|