@servicemind.tis/tis-smart-table-viewer 2.3.7 → 2.3.9
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';
|
|
@@ -12,6 +12,7 @@ import { MatCheckboxChange } from '@angular/material/checkbox';
|
|
|
12
12
|
import { MatDialog } from '@angular/material/dialog';
|
|
13
13
|
import { MatPaginator } from '@angular/material/paginator';
|
|
14
14
|
import { MatSort } from '@angular/material/sort';
|
|
15
|
+
import { MatTable } from '@angular/material/table';
|
|
15
16
|
import { BreakpointObserver } from '@angular/cdk/layout';
|
|
16
17
|
import { Location } from '@angular/common';
|
|
17
18
|
import type { DataNotFoundConfig } from '../../interfaces/data-not-found-config.type';
|
|
@@ -24,6 +25,7 @@ export declare class TisSmartTableViewerComponent implements OnDestroy {
|
|
|
24
25
|
private router;
|
|
25
26
|
private location;
|
|
26
27
|
private breakpointObserver;
|
|
28
|
+
private cdr;
|
|
27
29
|
homeUrl: string;
|
|
28
30
|
columnCustomizationUrlConfig: ColumnCustomizationUrlConfig;
|
|
29
31
|
t: any;
|
|
@@ -96,6 +98,8 @@ export declare class TisSmartTableViewerComponent implements OnDestroy {
|
|
|
96
98
|
private timeoutManager;
|
|
97
99
|
private computedRowBackgrounds;
|
|
98
100
|
dataSource: ApiDataSource;
|
|
101
|
+
private _table;
|
|
102
|
+
set table(value: MatTable<any>);
|
|
99
103
|
private _sort;
|
|
100
104
|
private _sortSubscription;
|
|
101
105
|
set sort(value: MatSort);
|
|
@@ -124,7 +128,7 @@ export declare class TisSmartTableViewerComponent implements OnDestroy {
|
|
|
124
128
|
private expandedRowIds;
|
|
125
129
|
isHandset$: Observable<boolean>;
|
|
126
130
|
isMobile: boolean;
|
|
127
|
-
constructor(dialog: MatDialog, apiService: ApiService, route: ActivatedRoute, router: Router, location: Location, breakpointObserver: BreakpointObserver);
|
|
131
|
+
constructor(dialog: MatDialog, apiService: ApiService, route: ActivatedRoute, router: Router, location: Location, breakpointObserver: BreakpointObserver, cdr: ChangeDetectorRef);
|
|
128
132
|
ngOnInit(): void;
|
|
129
133
|
ngOnChanges(changes: SimpleChanges): void;
|
|
130
134
|
ngOnDestroy(): void;
|