ngx-vector-components 6.2.0 → 6.2.1
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,10 +1,12 @@
|
|
|
1
1
|
import { ChangeDetectorRef, EventEmitter, OnDestroy, OnInit, TemplateRef } from '@angular/core';
|
|
2
|
+
import { Menu } from 'primeng/menu';
|
|
2
3
|
import { FilterChangedEvent, ListItem } from '../../../models';
|
|
3
4
|
import { DataTableLazyLoadEvent, TableColumn } from '../../../models/data-table.model';
|
|
4
5
|
import { FilterField, FiltersComponent } from '../filters/filters.component';
|
|
5
6
|
import * as i0 from "@angular/core";
|
|
6
7
|
export declare class DataTableComponent implements OnInit, OnDestroy {
|
|
7
8
|
cd: ChangeDetectorRef;
|
|
9
|
+
private static readonly MENU_SCROLL_GRACE_MS;
|
|
8
10
|
columns: TableColumn[];
|
|
9
11
|
set data(_data: any[]);
|
|
10
12
|
get data(): any[];
|
|
@@ -101,6 +103,7 @@ export declare class DataTableComponent implements OnInit, OnDestroy {
|
|
|
101
103
|
isBadgeCell(col: TableColumn): boolean | undefined;
|
|
102
104
|
isScoreCell(col: TableColumn): boolean;
|
|
103
105
|
onSelectionChange(selection: any): void;
|
|
106
|
+
onActionsMenuShow(menu: Menu): void;
|
|
104
107
|
changeShowBalance(itemAccount?: any): void;
|
|
105
108
|
private getStatusColor;
|
|
106
109
|
private getActiveStatusColor;
|