@servicemind.tis/tis-smart-table-viewer 2.3.7 → 2.3.8
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, SimpleChanges, OnDestroy } from '@angular/core';
|
|
1
|
+
import { EventEmitter, SimpleChanges, OnDestroy, ChangeDetectorRef } from '@angular/core';
|
|
2
2
|
import { FormGroup, FormControl } from '@angular/forms';
|
|
3
3
|
import { ActivatedRoute, Router } from '@angular/router';
|
|
4
4
|
import { Subscription, Observable } from 'rxjs';
|
|
@@ -24,6 +24,7 @@ export declare class TisSmartTableViewerComponent implements OnDestroy {
|
|
|
24
24
|
private router;
|
|
25
25
|
private location;
|
|
26
26
|
private breakpointObserver;
|
|
27
|
+
private cdr;
|
|
27
28
|
homeUrl: string;
|
|
28
29
|
columnCustomizationUrlConfig: ColumnCustomizationUrlConfig;
|
|
29
30
|
t: any;
|
|
@@ -124,7 +125,7 @@ export declare class TisSmartTableViewerComponent implements OnDestroy {
|
|
|
124
125
|
private expandedRowIds;
|
|
125
126
|
isHandset$: Observable<boolean>;
|
|
126
127
|
isMobile: boolean;
|
|
127
|
-
constructor(dialog: MatDialog, apiService: ApiService, route: ActivatedRoute, router: Router, location: Location, breakpointObserver: BreakpointObserver);
|
|
128
|
+
constructor(dialog: MatDialog, apiService: ApiService, route: ActivatedRoute, router: Router, location: Location, breakpointObserver: BreakpointObserver, cdr: ChangeDetectorRef);
|
|
128
129
|
ngOnInit(): void;
|
|
129
130
|
ngOnChanges(changes: SimpleChanges): void;
|
|
130
131
|
ngOnDestroy(): void;
|