@servicemind.tis/tis-smart-table-viewer 2.3.8 → 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.
|
@@ -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';
|
|
@@ -97,6 +98,8 @@ export declare class TisSmartTableViewerComponent implements OnDestroy {
|
|
|
97
98
|
private timeoutManager;
|
|
98
99
|
private computedRowBackgrounds;
|
|
99
100
|
dataSource: ApiDataSource;
|
|
101
|
+
private _table;
|
|
102
|
+
set table(value: MatTable<any>);
|
|
100
103
|
private _sort;
|
|
101
104
|
private _sortSubscription;
|
|
102
105
|
set sort(value: MatSort);
|