cat-qw-lib 2.1.42 → 2.1.43
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.
|
@@ -107,8 +107,6 @@ export declare class SHARED {
|
|
|
107
107
|
static PRODUCT_ID: string;
|
|
108
108
|
static EXPENDITURE: string;
|
|
109
109
|
static INCOME: string;
|
|
110
|
-
static VALUATION: string;
|
|
111
|
-
static VALUATIONID: string;
|
|
112
110
|
static WIDGET_NAME: string;
|
|
113
111
|
static IS_MENU: string;
|
|
114
112
|
static ON_WIDGET_UPDATE: string;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import { OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
|
|
1
|
+
import { EventEmitter, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
|
|
2
2
|
import { WidgetModel } from '../../models/widget.model';
|
|
3
3
|
import { WidgetService } from '../../state/widget.service';
|
|
4
4
|
import { WidgetStore } from '../../state/widget.store';
|
|
5
|
+
import { WidgetQuery } from '../../state/widget.query';
|
|
5
6
|
import * as i0 from "@angular/core";
|
|
6
7
|
/**
|
|
7
8
|
* WidgetRowTileComponent is a component that displays a row of widgets in a tile format.
|
|
@@ -10,17 +11,20 @@ import * as i0 from "@angular/core";
|
|
|
10
11
|
export declare class WidgetRowTileComponent implements OnInit, OnChanges, OnDestroy {
|
|
11
12
|
private widgetService;
|
|
12
13
|
private widgetStore;
|
|
14
|
+
private widgetQuery;
|
|
13
15
|
private destroy$;
|
|
14
16
|
widgets: WidgetModel[];
|
|
15
17
|
isLoading: boolean;
|
|
16
18
|
recordId: string;
|
|
17
19
|
widgetName: string;
|
|
18
20
|
onWidgetUpdate: any;
|
|
19
|
-
|
|
21
|
+
onWidgetItemClick: EventEmitter<any>;
|
|
22
|
+
constructor(widgetService: WidgetService, widgetStore: WidgetStore, widgetQuery: WidgetQuery);
|
|
20
23
|
ngOnInit(): void;
|
|
21
24
|
ngOnChanges(changes: SimpleChanges): void;
|
|
22
25
|
getWidgetItemList(): void;
|
|
26
|
+
handleWidgetItemClick(): void;
|
|
23
27
|
ngOnDestroy(): void;
|
|
24
28
|
static ɵfac: i0.ɵɵFactoryDeclaration<WidgetRowTileComponent, never>;
|
|
25
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<WidgetRowTileComponent, "lib-widget-row-tile", never, { "recordId": { "alias": "recordId"; "required": false; }; "widgetName": { "alias": "widgetName"; "required": false; }; "onWidgetUpdate": { "alias": "onWidgetUpdate"; "required": false; }; }, {}, never, never, false, never>;
|
|
29
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<WidgetRowTileComponent, "lib-widget-row-tile", never, { "recordId": { "alias": "recordId"; "required": false; }; "widgetName": { "alias": "widgetName"; "required": false; }; "onWidgetUpdate": { "alias": "onWidgetUpdate"; "required": false; }; }, { "onWidgetItemClick": "onWidgetItemClick"; }, never, never, false, never>;
|
|
26
30
|
}
|