gamma-app-controller 1.2.5 → 1.2.7
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/application-controller/support-components/dash-chart/dash-chart.component.mjs +13 -10
- package/esm2020/lib/gamma-app-controller.service.mjs +22 -7
- package/esm2020/lib/shared/gamma-advance-filter/gamma-advance-filter.component.mjs +4 -4
- package/esm2020/lib/template-module/kpiWithSingleLayout/kpi-single-layout.service.mjs +9 -1
- package/esm2020/lib/template-module/kpiWithSingleLayout/single-layout-dataset-call.service.mjs +4 -4
- package/fesm2015/gamma-app-controller.mjs +162 -139
- package/fesm2015/gamma-app-controller.mjs.map +1 -1
- package/fesm2020/gamma-app-controller.mjs +160 -137
- package/fesm2020/gamma-app-controller.mjs.map +1 -1
- package/lib/application-controller/support-components/dash-chart/dash-chart.component.d.ts +4 -4
- package/lib/gamma-app-controller.service.d.ts +7 -2
- package/lib/shared/gamma-advance-filter/gamma-advance-filter.component.d.ts +3 -3
- package/lib/template-module/kpiWithSingleLayout/kpi-single-layout.service.d.ts +1 -0
- package/lib/template-module/kpiWithSingleLayout/single-layout-dataset-call.service.d.ts +2 -2
- package/package.json +1 -1
|
@@ -41,10 +41,10 @@ export declare class DashChartComponent implements OnInit {
|
|
|
41
41
|
legendDisplay: boolean;
|
|
42
42
|
caption: string;
|
|
43
43
|
chart_config: any[];
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
44
|
+
};
|
|
45
|
+
commonConfig: {
|
|
46
|
+
title: string;
|
|
47
|
+
dataField: string;
|
|
48
48
|
};
|
|
49
49
|
};
|
|
50
50
|
};
|
|
@@ -1,7 +1,12 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
1
3
|
import * as i0 from "@angular/core";
|
|
2
4
|
export declare class GammaAppControllerService {
|
|
3
|
-
private
|
|
4
|
-
|
|
5
|
+
private environment;
|
|
6
|
+
http: HttpClient;
|
|
7
|
+
constructor(environment: any, http: HttpClient);
|
|
8
|
+
getFilterDataByDrillDown(apiName: any): any;
|
|
9
|
+
handleError(error: any): Observable<Response>;
|
|
5
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<GammaAppControllerService, never>;
|
|
6
11
|
static ɵprov: i0.ɵɵInjectableDeclaration<GammaAppControllerService>;
|
|
7
12
|
}
|
|
@@ -2,10 +2,10 @@ import { OnInit, EventEmitter, ElementRef } from '@angular/core';
|
|
|
2
2
|
import { ToastrService } from 'ngx-toastr';
|
|
3
3
|
import { kpicommonService } from '../kpi-comon-service';
|
|
4
4
|
import { CommonService } from '../../application-controller/common';
|
|
5
|
-
import {
|
|
5
|
+
import { GammaAppControllerService } from '../../gamma-app-controller.service';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class GammaAdvanceFilterComponent implements OnInit {
|
|
8
|
-
|
|
8
|
+
service: GammaAppControllerService;
|
|
9
9
|
private kpiService;
|
|
10
10
|
private toastr;
|
|
11
11
|
commonService: CommonService;
|
|
@@ -27,7 +27,7 @@ export declare class GammaAdvanceFilterComponent implements OnInit {
|
|
|
27
27
|
value: import("moment").Moment[];
|
|
28
28
|
}[];
|
|
29
29
|
set filterOperatorData(value: any);
|
|
30
|
-
constructor(service:
|
|
30
|
+
constructor(service: GammaAppControllerService, kpiService: kpicommonService, toastr: ToastrService, commonService: CommonService);
|
|
31
31
|
ngOnInit(): void;
|
|
32
32
|
processFilterForData(): Promise<void>;
|
|
33
33
|
parseContentValue(contentvalue: any): any;
|
|
@@ -28,6 +28,7 @@ export declare class KpiWithSingleLayoutService {
|
|
|
28
28
|
getSimpleApiGetRequest(requestApi: any): any;
|
|
29
29
|
getJsonDatasetPayload(requestApi: any): any;
|
|
30
30
|
genericSqlQueryResponse(requestApi: any, body: any): any;
|
|
31
|
+
getFilterDataByDrillDown(apiName: any): any;
|
|
31
32
|
static ɵfac: i0.ɵɵFactoryDeclaration<KpiWithSingleLayoutService, never>;
|
|
32
33
|
static ɵprov: i0.ɵɵInjectableDeclaration<KpiWithSingleLayoutService>;
|
|
33
34
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ToastrService } from 'ngx-toastr';
|
|
2
2
|
import { kpicommonService } from '../../application-controller/kpi-service';
|
|
3
|
-
import { KpiWithMultiLayoutService } from '../kpiWithMultiLayout/kpi-multi-layout.service';
|
|
4
3
|
import { Router } from '@angular/router';
|
|
4
|
+
import { KpiWithSingleLayoutService } from './kpi-single-layout.service';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class SingleLayoutApplicationDatssetsCall {
|
|
7
7
|
private service;
|
|
@@ -10,7 +10,7 @@ export declare class SingleLayoutApplicationDatssetsCall {
|
|
|
10
10
|
private router;
|
|
11
11
|
private environment;
|
|
12
12
|
uniqueDataSetObject: {};
|
|
13
|
-
constructor(service:
|
|
13
|
+
constructor(service: KpiWithSingleLayoutService, kpiService: kpicommonService, toastr: ToastrService, router: Router, environment: any);
|
|
14
14
|
getDataFromDataSet(dataset: any, datasetId: any, filters: any): Promise<void>;
|
|
15
15
|
getDataSetForMongo(dataset: any, datasetId: any): Promise<void>;
|
|
16
16
|
getDatasetForImpala(dataset: any, datasetId: any, filters: any): Promise<void>;
|