cat-qw-lib 2.1.50 → 2.1.52
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.
|
@@ -2,6 +2,7 @@ import { EventEmitter, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angu
|
|
|
2
2
|
import { WidgetStore } from '../../state/widget.store';
|
|
3
3
|
import { CustomWidgetModel } from '../../../shared/models/custom-widget.model';
|
|
4
4
|
import { WidgetQuery } from '../../state/widget.query';
|
|
5
|
+
import { StyleBuilderService } from '../../../shared/services/style-builder.service';
|
|
5
6
|
import * as i0 from "@angular/core";
|
|
6
7
|
/**
|
|
7
8
|
* Widget Container Component
|
|
@@ -9,13 +10,23 @@ import * as i0 from "@angular/core";
|
|
|
9
10
|
export declare class WidgetContainerComponent implements OnInit, OnChanges, OnDestroy {
|
|
10
11
|
private widgetStore;
|
|
11
12
|
private widgetQuery;
|
|
12
|
-
|
|
13
|
+
private styleBulderService;
|
|
14
|
+
constructor(widgetStore: WidgetStore, widgetQuery: WidgetQuery, styleBulderService: StyleBuilderService);
|
|
13
15
|
isMenu: boolean;
|
|
14
16
|
offerWidgetData: CustomWidgetModel;
|
|
15
17
|
valuationWidgetData: CustomWidgetModel;
|
|
16
18
|
widgetName: string;
|
|
17
19
|
recordId: string;
|
|
18
20
|
onWidgetUpdate: any;
|
|
21
|
+
widgetCardStyle: {
|
|
22
|
+
[key: string]: any;
|
|
23
|
+
};
|
|
24
|
+
widgetCardStyleExpression: {
|
|
25
|
+
[key: string]: any;
|
|
26
|
+
};
|
|
27
|
+
widgetCombinedStyle: {
|
|
28
|
+
[key: string]: any;
|
|
29
|
+
};
|
|
19
30
|
onViewAllDetails: EventEmitter<any>;
|
|
20
31
|
onWidgetEventClick: EventEmitter<any>;
|
|
21
32
|
onWidgetItemClick: EventEmitter<any>;
|