cat-qw-lib 0.46.6 → 0.46.8
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/fesm2022/cat-qw-lib.mjs
CHANGED
|
@@ -4061,11 +4061,8 @@ let WidgetStore = class WidgetStore extends BaseStore {
|
|
|
4061
4061
|
setOnWidgetItemClick(value) {
|
|
4062
4062
|
this.onItemClick$.next(value);
|
|
4063
4063
|
}
|
|
4064
|
-
setWidgetItem(
|
|
4065
|
-
this.update({
|
|
4066
|
-
}
|
|
4067
|
-
setSolicitorId(solicitorId) {
|
|
4068
|
-
this.update({ solicitorId: solicitorId });
|
|
4064
|
+
setWidgetItem(widgetItem) {
|
|
4065
|
+
this.update({ widgetItem: widgetItem });
|
|
4069
4066
|
}
|
|
4070
4067
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.4", ngImport: i0, type: WidgetStore, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4071
4068
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.4", ngImport: i0, type: WidgetStore, providedIn: 'root' });
|
|
@@ -4127,10 +4124,7 @@ class WidgetQuery extends BaseQuery {
|
|
|
4127
4124
|
return this.widgetStore.onItemClick$.asObservable();
|
|
4128
4125
|
}
|
|
4129
4126
|
getWidgetItem() {
|
|
4130
|
-
return this.select(state => state['
|
|
4131
|
-
}
|
|
4132
|
-
getSolicitorId() {
|
|
4133
|
-
return this.select(state => state['solicitorId']);
|
|
4127
|
+
return this.select(state => state['widgetItem']);
|
|
4134
4128
|
}
|
|
4135
4129
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.4", ngImport: i0, type: WidgetQuery, deps: [{ token: WidgetStore }, { token: WidgetStore }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4136
4130
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.4", ngImport: i0, type: WidgetQuery, providedIn: 'root' });
|