@softheon/armature 21.2.0 → 21.2.1
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/package.json
CHANGED
|
@@ -6879,6 +6879,10 @@ declare class TextOverflowEllipsisTooltipDirective implements AfterViewInit, OnD
|
|
|
6879
6879
|
* @note If no tooltip text provided, will use the elements 'textContent'
|
|
6880
6880
|
*/
|
|
6881
6881
|
tooltipText: string;
|
|
6882
|
+
/** Custom classes for the tooltip */
|
|
6883
|
+
tooltipClass: string | Array<string>;
|
|
6884
|
+
/** Possible positions for a tooltip : "left" | "right" | "above" | "below" | "before" | "after" */
|
|
6885
|
+
tooltipPosition: TooltipPosition;
|
|
6882
6886
|
/** Is the element overflowing */
|
|
6883
6887
|
private isOverflowing;
|
|
6884
6888
|
/** The resize observer */
|
|
@@ -6905,7 +6909,7 @@ declare class TextOverflowEllipsisTooltipDirective implements AfterViewInit, OnD
|
|
|
6905
6909
|
/** Hide the tooltip on mouseleave */
|
|
6906
6910
|
onMouseLeave(): void;
|
|
6907
6911
|
static ɵfac: i0.ɵɵFactoryDeclaration<TextOverflowEllipsisTooltipDirective, never>;
|
|
6908
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<TextOverflowEllipsisTooltipDirective, "[textOverflowEllipsisTooltip]", never, { "tooltipText": { "alias": "textOverflowEllipsisTooltip"; "required": false; }; }, {}, never, never, true, never>;
|
|
6912
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TextOverflowEllipsisTooltipDirective, "[textOverflowEllipsisTooltip]", never, { "tooltipText": { "alias": "textOverflowEllipsisTooltip"; "required": false; }; "tooltipClass": { "alias": "ellipsisTooltipClass"; "required": false; }; "tooltipPosition": { "alias": "ellipsisTooltipPosition"; "required": false; }; }, {}, never, never, true, never>;
|
|
6909
6913
|
}
|
|
6910
6914
|
|
|
6911
6915
|
declare class MfeModule {
|