@leanix/components 0.4.508 → 0.4.509
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/core-ui/components/ellipsis/ellipsis.component.mjs +2 -4
- package/esm2022/lib/core-ui/components/icon-scale/icon-scale.component.mjs +3 -1
- package/fesm2022/leanix-components.mjs +3 -3
- package/fesm2022/leanix-components.mjs.map +1 -1
- package/lib/core-ui/components/ellipsis/ellipsis.component.d.ts +1 -3
- package/lib/core-ui/components/icon-scale/icon-scale.component.d.ts +2 -0
- package/package.json +1 -1
@@ -5,9 +5,7 @@ import { ResizeObserverService } from '../../services/resize-observer.service';
|
|
5
5
|
import * as i0 from "@angular/core";
|
6
6
|
export declare const LX_ELLIPSIS_DEBOUNCE_ON_RESIZE: InjectionToken<number>;
|
7
7
|
/**
|
8
|
-
* You can set
|
9
|
-
* if you want its content to never exceed a specific width,
|
10
|
-
* e.g. <lx-ellipsis style="max-width: 300px" content="Hello World[..]"></lx-ellipsis>.
|
8
|
+
* You can set `max-width` CSS property on your `lx-ellipsis` host element or the parent element if you want its content to never exceed a specific width.
|
11
9
|
*/
|
12
10
|
export declare class EllipsisComponent implements OnInit, OnDestroy, AfterViewChecked {
|
13
11
|
private debounceMsAfterResize;
|
@@ -12,7 +12,9 @@ export declare class IconScaleComponent implements OnChanges {
|
|
12
12
|
icon: Icon;
|
13
13
|
numberOfColoredItems: number;
|
14
14
|
numberOfItems: number;
|
15
|
+
/** @internal */
|
15
16
|
readonly NAME = "IconScaleComponent";
|
17
|
+
/** @internal */
|
16
18
|
iconArray: boolean[];
|
17
19
|
ngOnChanges(_changes: SimpleChanges): void;
|
18
20
|
private createIconArray;
|