gamma-app-controller 1.2.4 → 1.2.6
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 -9
- package/esm2020/lib/template-module/kpiWithSingleLayout/kpi-with-dataset.component.mjs +139 -41
- package/esm2020/lib/template-module/kpiWithSingleLayout/single-layout-dataset-call.service.mjs +3 -2
- package/fesm2015/gamma-app-controller.mjs +153 -49
- package/fesm2015/gamma-app-controller.mjs.map +1 -1
- package/fesm2020/gamma-app-controller.mjs +152 -49
- 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/template-module/kpiWithSingleLayout/kpi-with-dataset.component.d.ts +5 -1
- 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
|
};
|
|
@@ -99,6 +99,7 @@ export declare class KpiWithDataSetTestComponent implements OnInit {
|
|
|
99
99
|
};
|
|
100
100
|
};
|
|
101
101
|
isDefaultFilterParams: boolean;
|
|
102
|
+
viewParams: any;
|
|
102
103
|
constructor(commonService: CommonService, activatedRoute: ActivatedRoute, viewContainerRef: ViewContainerRef, componentFactoryResolver: ComponentFactoryResolver, service: KpiWithSingleLayoutService, toastr: ToastrService, router: Router, datasetService: SingleLayoutApplicationDatssetsCall, chatApiService: ApplicationChatApiCallService, storage: AppSingleLayoutLocalStorage);
|
|
103
104
|
ngOnInit(): void;
|
|
104
105
|
getFiltersForTemplate(filter: any): Promise<void>;
|
|
@@ -117,7 +118,6 @@ export declare class KpiWithDataSetTestComponent implements OnInit {
|
|
|
117
118
|
getViewByRowCLickForHourlyChart(event: any, node: any): void;
|
|
118
119
|
getModalViewByRowCLick(event: any, view: any): Promise<void>;
|
|
119
120
|
getViewByRowCLick(event: any, view: any): Promise<void>;
|
|
120
|
-
getFiltersForQueryParams(operators: any, filters: any): void;
|
|
121
121
|
scrollToBottom(container: HTMLElement): void;
|
|
122
122
|
findWidgetById(configs: any[], id: string): any | undefined;
|
|
123
123
|
updateOperatorData(key_name: string[], value_data: any): any;
|
|
@@ -130,6 +130,10 @@ export declare class KpiWithDataSetTestComponent implements OnInit {
|
|
|
130
130
|
loadDataByOperator(opName: any): Promise<void>;
|
|
131
131
|
getContextFilterData(value: any): Promise<void>;
|
|
132
132
|
parseInput(input: any): any;
|
|
133
|
+
getDrilldownDisplayByUrlParams(all_views: any): void;
|
|
134
|
+
getFiltersForQueryParams(operators: any, filters: any, viewParams: any): void;
|
|
135
|
+
getDrildownFilter(drildownFilter: any, defaultFilter: any): any;
|
|
136
|
+
getTitleParams(items: any): string;
|
|
133
137
|
static ɵfac: i0.ɵɵFactoryDeclaration<KpiWithDataSetTestComponent, never>;
|
|
134
138
|
static ɵcmp: i0.ɵɵComponentDeclaration<KpiWithDataSetTestComponent, "app-kpi-with-dataset", never, {}, {}, never, never, false>;
|
|
135
139
|
}
|