@fuentis/phoenix-ui 0.0.9-alpha.122 → 0.0.9-alpha.124
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.
package/lib/components/data-table/phoenix-data-table-tabs/phoenix-data-table-tabs.component.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { EventEmitter, OnInit } from '@angular/core';
|
|
1
|
+
import { EventEmitter, OnChanges, OnInit } from '@angular/core';
|
|
2
2
|
import { TableAction } from '../utils/dataTable.interface';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class PhoenixDataTableTabsComponent implements OnInit {
|
|
4
|
+
export declare class PhoenixDataTableTabsComponent implements OnInit, OnChanges {
|
|
5
5
|
actions: TableAction[];
|
|
6
6
|
actionClick: EventEmitter<any>;
|
|
7
7
|
private router;
|
|
@@ -9,6 +9,7 @@ export declare class PhoenixDataTableTabsComponent implements OnInit {
|
|
|
9
9
|
value: string | undefined;
|
|
10
10
|
private resolveTabFromRoute;
|
|
11
11
|
ngOnInit(): void;
|
|
12
|
+
ngOnChanges(): void;
|
|
12
13
|
onActionClick(event: any): void;
|
|
13
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<PhoenixDataTableTabsComponent, never>;
|
|
14
15
|
static ɵcmp: i0.ɵɵComponentDeclaration<PhoenixDataTableTabsComponent, "phoenix-data-table-tabs", never, { "actions": { "alias": "actions"; "required": true; }; }, { "actionClick": "actionClick"; }, never, never, true, never>;
|