@c8y/ngx-components 1018.503.90 → 1018.503.93

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 { EventEmitter, OnDestroy, ViewContainerRef } from '@angular/core';
1
+ import { AfterViewInit, EventEmitter, OnChanges, OnDestroy, SimpleChanges, ViewContainerRef } from '@angular/core';
2
2
  import { Router } from '@angular/router';
3
3
  import { Subject } from 'rxjs';
4
4
  import { PopoverConfirmComponent } from '../modal/popover-confirm.component';
@@ -12,7 +12,7 @@ export declare const enum ClickEventSource {
12
12
  /**
13
13
  * Navigator node renderer.
14
14
  */
15
- export declare class NavigatorNodeComponent implements OnDestroy {
15
+ export declare class NavigatorNodeComponent implements AfterViewInit, OnChanges, OnDestroy {
16
16
  private router;
17
17
  /**
18
18
  * @ignore
@@ -49,6 +49,7 @@ export declare class NavigatorNodeComponent implements OnDestroy {
49
49
  */
50
50
  isActive$: import("rxjs").Observable<boolean>;
51
51
  constructor(router: Router);
52
+ ngOnChanges(changes: SimpleChanges): void;
52
53
  /**
53
54
  * @ignore
54
55
  */