cat-qw-lib 2.1.43 → 2.1.46
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,6 +107,9 @@ 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
|
+
static BROKERCOMPANY_NAME: string;
|
|
110
113
|
static WIDGET_NAME: string;
|
|
111
114
|
static IS_MENU: string;
|
|
112
115
|
static ON_WIDGET_UPDATE: string;
|
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { 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';
|
|
6
5
|
import * as i0 from "@angular/core";
|
|
7
6
|
/**
|
|
8
7
|
* WidgetRowTileComponent is a component that displays a row of widgets in a tile format.
|
|
@@ -11,20 +10,17 @@ import * as i0 from "@angular/core";
|
|
|
11
10
|
export declare class WidgetRowTileComponent implements OnInit, OnChanges, OnDestroy {
|
|
12
11
|
private widgetService;
|
|
13
12
|
private widgetStore;
|
|
14
|
-
private widgetQuery;
|
|
15
13
|
private destroy$;
|
|
16
14
|
widgets: WidgetModel[];
|
|
17
15
|
isLoading: boolean;
|
|
18
16
|
recordId: string;
|
|
19
17
|
widgetName: string;
|
|
20
18
|
onWidgetUpdate: any;
|
|
21
|
-
|
|
22
|
-
constructor(widgetService: WidgetService, widgetStore: WidgetStore, widgetQuery: WidgetQuery);
|
|
19
|
+
constructor(widgetService: WidgetService, widgetStore: WidgetStore);
|
|
23
20
|
ngOnInit(): void;
|
|
24
21
|
ngOnChanges(changes: SimpleChanges): void;
|
|
25
22
|
getWidgetItemList(): void;
|
|
26
|
-
handleWidgetItemClick(): void;
|
|
27
23
|
ngOnDestroy(): void;
|
|
28
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<WidgetRowTileComponent, 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; }; }, {
|
|
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>;
|
|
30
26
|
}
|