@leanix/components 0.4.356 → 0.4.358

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.
@@ -1,4 +1,4 @@
1
- import { ChangeDetectorRef, ElementRef, InjectionToken, OnDestroy, OnInit } from '@angular/core';
1
+ import { AfterViewChecked, ChangeDetectorRef, ElementRef, InjectionToken, OnDestroy, OnInit } from '@angular/core';
2
2
  import { TranslateService } from '@ngx-translate/core';
3
3
  import { BehaviorSubject, Observable } from 'rxjs';
4
4
  import { ResizeObserverService } from '../../services/resize-observer.service';
@@ -9,7 +9,7 @@ export declare const LX_ELLIPSIS_DEBOUNCE_ON_RESIZE: InjectionToken<number>;
9
9
  * if you want its content to never exceed a specific width,
10
10
  * e.g. <lx-ellipsis style="max-width: 300px" content="Hello World[..]"></lx-ellipsis>.
11
11
  */
12
- export declare class EllipsisComponent implements OnInit, OnDestroy {
12
+ export declare class EllipsisComponent implements OnInit, OnDestroy, AfterViewChecked {
13
13
  private debounceMsAfterResize;
14
14
  private cdRef;
15
15
  private hostEl;
@@ -32,8 +32,10 @@ export declare class EllipsisComponent implements OnInit, OnDestroy {
32
32
  sanitizedContent$: Observable<string>;
33
33
  private content$;
34
34
  private destroyed$;
35
+ private viewChecked$;
35
36
  constructor(debounceMsAfterResize: number, cdRef: ChangeDetectorRef, hostEl: ElementRef, resizeObserverService: ResizeObserverService, translateService: TranslateService);
36
37
  ngOnInit(): void;
38
+ ngAfterViewChecked(): void;
37
39
  onShowMoreToggle(): void;
38
40
  ngOnDestroy(): void;
39
41
  private detectChangesWhenObservableEmits;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leanix/components",
3
- "version": "0.4.356",
3
+ "version": "0.4.358",
4
4
  "license": "Apache-2.0",
5
5
  "author": "LeanIX GmbH",
6
6
  "repository": {