gamma-app-controller 1.2.24 → 1.2.25
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/esm2020/lib/shared/advanced-component/app-advance-header/app-header.component.mjs +4 -2
- package/esm2020/lib/template-module/defaulLandingComponent/landing-component.component.mjs +63 -17
- package/esm2020/lib/template-module/defaulLandingMultiLayoutComponent/defaulLandingMultiLayout.component.mjs +1 -1
- package/esm2020/lib/template-module/kpiWithMultiLayout/kpi-with-multilayout.component.mjs +35 -4
- package/esm2020/lib/template-module/kpiWithSingleLayout/kpi-with-dataset.component.mjs +50 -15
- package/fesm2015/gamma-app-controller.mjs +149 -34
- package/fesm2015/gamma-app-controller.mjs.map +1 -1
- package/fesm2020/gamma-app-controller.mjs +148 -34
- package/fesm2020/gamma-app-controller.mjs.map +1 -1
- package/lib/template-module/defaulLandingComponent/landing-component.component.d.ts +4 -2
- package/lib/template-module/kpiWithMultiLayout/kpi-with-multilayout.component.d.ts +4 -2
- package/lib/template-module/kpiWithSingleLayout/kpi-with-dataset.component.d.ts +4 -2
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ComponentFactoryResolver, ComponentRef, ElementRef, OnInit, ViewContainerRef } from '@angular/core';
|
|
1
|
+
import { ChangeDetectorRef, ComponentFactoryResolver, ComponentRef, ElementRef, OnInit, ViewContainerRef } from '@angular/core';
|
|
2
2
|
import { ActivatedRoute, Router } from '@angular/router';
|
|
3
3
|
import { CommonService } from '../../application-controller/common';
|
|
4
4
|
import { GammaAdvanceChartComponent } from '../../shared/advanced-component/gamma-advance-chart/gamma-advance-chart.component';
|
|
@@ -25,6 +25,7 @@ export declare class LandingComponentComponent implements OnInit {
|
|
|
25
25
|
private router;
|
|
26
26
|
private datasetService;
|
|
27
27
|
private storage;
|
|
28
|
+
private cdr;
|
|
28
29
|
dashbord_container: any;
|
|
29
30
|
selected_width: any;
|
|
30
31
|
widget_width: string[];
|
|
@@ -98,9 +99,10 @@ export declare class LandingComponentComponent implements OnInit {
|
|
|
98
99
|
};
|
|
99
100
|
isDefaultFilterParams: boolean;
|
|
100
101
|
viewParams: any;
|
|
101
|
-
constructor(commonService: CommonService, activatedRoute: ActivatedRoute, viewContainerRef: ViewContainerRef, componentFactoryResolver: ComponentFactoryResolver, service: LandingComponentService, toastr: ToastrService, router: Router, datasetService: LandingApplicationDatssetsCall, storage: AppLandingLayoutLocalStorage);
|
|
102
|
+
constructor(commonService: CommonService, activatedRoute: ActivatedRoute, viewContainerRef: ViewContainerRef, componentFactoryResolver: ComponentFactoryResolver, service: LandingComponentService, toastr: ToastrService, router: Router, datasetService: LandingApplicationDatssetsCall, storage: AppLandingLayoutLocalStorage, cdr: ChangeDetectorRef);
|
|
102
103
|
ngOnInit(): void;
|
|
103
104
|
getFiltersForTemplate(filter: any): Promise<void>;
|
|
105
|
+
getWidgetFilterItems(widgetFilterData: any): any;
|
|
104
106
|
getPadeDataSource(context: any): Promise<void>;
|
|
105
107
|
getComponentConfigSet(): void;
|
|
106
108
|
getDataSet(): void;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ComponentFactoryResolver, ComponentRef, ElementRef, OnInit, ViewContainerRef } from '@angular/core';
|
|
1
|
+
import { ChangeDetectorRef, ComponentFactoryResolver, ComponentRef, ElementRef, OnInit, ViewContainerRef } from '@angular/core';
|
|
2
2
|
import { ActivatedRoute, Router } from '@angular/router';
|
|
3
3
|
import { ToastrService } from 'ngx-toastr';
|
|
4
4
|
import { CommonService } from '../../application-controller/common';
|
|
@@ -25,6 +25,7 @@ export declare class KpiWithMultilayoutSetTestComponent implements OnInit {
|
|
|
25
25
|
private router;
|
|
26
26
|
private datasetService;
|
|
27
27
|
private storage;
|
|
28
|
+
private cdr;
|
|
28
29
|
dashbord_container: any;
|
|
29
30
|
selected_width: any;
|
|
30
31
|
widget_width: string[];
|
|
@@ -85,9 +86,10 @@ export declare class KpiWithMultilayoutSetTestComponent implements OnInit {
|
|
|
85
86
|
pageId: any;
|
|
86
87
|
kpi_breadcrumbs_container: any;
|
|
87
88
|
operatorName: any;
|
|
88
|
-
constructor(commonService: CommonService, activatedRoute: ActivatedRoute, viewContainerRef: ViewContainerRef, componentFactoryResolver: ComponentFactoryResolver, service: KpiWithMultiLayoutService, toastr: ToastrService, router: Router, datasetService: MultilayoutApplicationDatssetsCall, storage: AppMultiLayoutLocalStorage);
|
|
89
|
+
constructor(commonService: CommonService, activatedRoute: ActivatedRoute, viewContainerRef: ViewContainerRef, componentFactoryResolver: ComponentFactoryResolver, service: KpiWithMultiLayoutService, toastr: ToastrService, router: Router, datasetService: MultilayoutApplicationDatssetsCall, storage: AppMultiLayoutLocalStorage, cdr: ChangeDetectorRef);
|
|
89
90
|
ngOnInit(): void;
|
|
90
91
|
getFiltersForTemplate(filter: any): Promise<void>;
|
|
92
|
+
getWidgetFilterItems(widgetFilterData: any): any;
|
|
91
93
|
getPadeDataSource(context: any): Promise<void>;
|
|
92
94
|
getComponentConfigSet(): void;
|
|
93
95
|
getDataSet(): void;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ComponentFactoryResolver, ComponentRef, ElementRef, OnInit, ViewContainerRef } from '@angular/core';
|
|
1
|
+
import { ChangeDetectorRef, ComponentFactoryResolver, ComponentRef, ElementRef, OnInit, ViewContainerRef } from '@angular/core';
|
|
2
2
|
import { ActivatedRoute, Router } from '@angular/router';
|
|
3
3
|
import { ToastrService } from 'ngx-toastr';
|
|
4
4
|
import { CommonService } from '../../application-controller/common';
|
|
@@ -27,6 +27,7 @@ export declare class KpiWithDataSetTestComponent implements OnInit {
|
|
|
27
27
|
private datasetService;
|
|
28
28
|
private chatApiService;
|
|
29
29
|
private storage;
|
|
30
|
+
private cdr;
|
|
30
31
|
dashbord_container: any;
|
|
31
32
|
selected_width: any;
|
|
32
33
|
widget_width: string[];
|
|
@@ -100,9 +101,10 @@ export declare class KpiWithDataSetTestComponent implements OnInit {
|
|
|
100
101
|
};
|
|
101
102
|
isDefaultFilterParams: boolean;
|
|
102
103
|
viewParams: any;
|
|
103
|
-
constructor(commonService: CommonService, activatedRoute: ActivatedRoute, viewContainerRef: ViewContainerRef, componentFactoryResolver: ComponentFactoryResolver, service: KpiWithSingleLayoutService, toastr: ToastrService, router: Router, datasetService: SingleLayoutApplicationDatssetsCall, chatApiService: ApplicationChatApiCallService, storage: AppSingleLayoutLocalStorage);
|
|
104
|
+
constructor(commonService: CommonService, activatedRoute: ActivatedRoute, viewContainerRef: ViewContainerRef, componentFactoryResolver: ComponentFactoryResolver, service: KpiWithSingleLayoutService, toastr: ToastrService, router: Router, datasetService: SingleLayoutApplicationDatssetsCall, chatApiService: ApplicationChatApiCallService, storage: AppSingleLayoutLocalStorage, cdr: ChangeDetectorRef);
|
|
104
105
|
ngOnInit(): void;
|
|
105
106
|
getFiltersForTemplate(filter: any): Promise<void>;
|
|
107
|
+
getWidgetFilterItems(widgetFilterData: any): any;
|
|
106
108
|
getPadeDataSource(context: any): Promise<void>;
|
|
107
109
|
getComponentConfigSet(): void;
|
|
108
110
|
getDataSet(): void;
|