@morozeckiy/dd-lib 0.9.9 → 0.9.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/assets/images/svg/award.svg +5 -5
- package/assets/images/svg/bell-cog.svg +11 -11
- package/assets/images/svg/btn-ok.svg +3 -3
- package/assets/images/svg/btn-tg.svg +3 -3
- package/assets/images/svg/btn-vk.svg +3 -3
- package/assets/images/svg/home.svg +5 -5
- package/assets/images/svg/minus.svg +10 -10
- package/assets/images/svg/news.svg +6 -6
- package/assets/images/svg/plus.svg +4 -4
- package/assets/images/svg/star.svg +3 -3
- package/assets/images/svg/trophy.svg +8 -8
- package/assets/scss/common.scss +402 -402
- package/assets/scss/reset.scss +156 -156
- package/assets/scss/theme.scss +72 -72
- package/assets/scss/titles.scss +302 -301
- package/assets/scss/vars-dark.scss +140 -140
- package/fesm2022/morozeckiy-dd-lib.mjs +159 -60
- package/fesm2022/morozeckiy-dd-lib.mjs.map +1 -1
- package/morozeckiy-dd-lib-0.9.10.tgz +0 -0
- package/package.json +1 -1
- package/types/morozeckiy-dd-lib.d.ts +9 -1
- package/morozeckiy-dd-lib-0.9.9.tgz +0 -0
|
Binary file
|
package/package.json
CHANGED
|
@@ -998,15 +998,23 @@ declare class TooltipDirective implements OnDestroy {
|
|
|
998
998
|
set position(p: TToolTipPositions | undefined);
|
|
999
999
|
private _position?;
|
|
1000
1000
|
private overlayRef;
|
|
1001
|
+
private destroy$;
|
|
1002
|
+
private scrollContainer;
|
|
1003
|
+
private static activeTooltip;
|
|
1001
1004
|
constructor(element: ElementRef, overlay: Overlay, viewContainer: ViewContainerRef);
|
|
1002
1005
|
onClick(targetElement: Event): void;
|
|
1003
1006
|
showTooltipOnClick(): void;
|
|
1004
1007
|
showTooltip(): void;
|
|
1005
1008
|
hideTooltip(): void;
|
|
1006
1009
|
private detachOverlay;
|
|
1007
|
-
ngOnDestroy(): void;
|
|
1008
1010
|
private attachTooltip;
|
|
1011
|
+
private closeTooltip;
|
|
1009
1012
|
private getPositionStrategy;
|
|
1013
|
+
private subscribeToScroll;
|
|
1014
|
+
private unsubscribeFromScroll;
|
|
1015
|
+
private findScrollableParent;
|
|
1016
|
+
private updateTooltipPosition;
|
|
1017
|
+
ngOnDestroy(): void;
|
|
1010
1018
|
static ɵfac: i0.ɵɵFactoryDeclaration<TooltipDirective, never>;
|
|
1011
1019
|
static ɵdir: i0.ɵɵDirectiveDeclaration<TooltipDirective, "[ddTooltip]", never, { "ddTooltip": { "alias": "ddTooltip"; "required": false; }; "withClick": { "alias": "withClick"; "required": false; }; "position": { "alias": "position"; "required": false; }; }, {}, never, never, true, never>;
|
|
1012
1020
|
}
|
|
Binary file
|