gamma-app-controller 1.3.5 → 2.0.0
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/application-content.service.mjs +36 -36
- package/esm2020/lib/application-controller/application-menu-controller/application-create-menu/application-create-menu.component.mjs +2 -2
- package/esm2020/lib/application-controller/application-view-components/create-comp-view/create-comp-view.component.mjs +1 -2
- package/esm2020/lib/application-controller/page-controller/page-config/page-config.component.mjs +3 -3
- package/esm2020/lib/application-controller/support-components/dash-chart/dash-chart.component.mjs +5 -3
- package/esm2020/lib/application-controller/support-components/dash-table/dash-table.component.mjs +1 -2
- package/esm2020/lib/shared/advanced-component/gamma-advance-chart/gamma-advance-chart.component.mjs +21 -1
- package/esm2020/lib/shared/advanced-component/gamma-advance-operator-table/gamma-advance-operator-table.component.mjs +6 -2
- package/esm2020/lib/shared/permission-helper.mjs +4 -4
- package/esm2020/lib/shared/user-access/user-access.component.mjs +3 -3
- package/esm2020/lib/template-module/KpiCreationModule/create-kpi-tree.component.mjs +137 -277
- package/esm2020/lib/template-module/KpiCreationModule/createKpi.service.mjs +37 -6
- package/esm2020/lib/template-module/KpiCreationModule/treeview/components/basic/basic.component.mjs +3 -3
- package/esm2020/lib/template-module/KpiCreationModule/treeview/components/collapsable/collapsable.component.mjs +4 -15
- package/esm2020/lib/template-module/KpiCreationModule/treeview/treeview.component.mjs +4 -6
- package/esm2020/lib/template-module/bookmarked-template/bookmarked-layout.service.mjs +8 -8
- package/esm2020/lib/template-module/cdrConfigModule/cdr-browser.service.mjs +2 -2
- package/esm2020/lib/template-module/defaulLandingComponent/landing-component.component.mjs +1 -2
- package/esm2020/lib/template-module/defaulLandingComponent/landing-component.service.mjs +8 -8
- package/esm2020/lib/template-module/defaulLandingMultiLayoutComponent/defaulLandingMultiLayout.service.mjs +8 -8
- package/esm2020/lib/template-module/kpiWithMultiLayout/kpi-multi-layout.service.mjs +8 -8
- package/esm2020/lib/template-module/kpiWithSingleLayout/kpi-single-layout.service.mjs +8 -8
- package/fesm2015/gamma-app-controller.mjs +298 -405
- package/fesm2015/gamma-app-controller.mjs.map +1 -1
- package/fesm2020/gamma-app-controller.mjs +307 -405
- package/fesm2020/gamma-app-controller.mjs.map +1 -1
- package/lib/application-controller/application-content.service.d.ts +1 -1
- package/lib/application-controller/support-components/dash-chart/dash-chart.component.d.ts +1 -0
- package/lib/template-module/KpiCreationModule/create-kpi-tree.component.d.ts +10 -15
- package/lib/template-module/KpiCreationModule/createKpi.service.d.ts +4 -0
- package/package.json +1 -1
|
@@ -87,7 +87,7 @@ export declare class ApplicationContentService {
|
|
|
87
87
|
getApiData(): any;
|
|
88
88
|
configureAppMenuConfig(manueConfig: any): Observable<any>;
|
|
89
89
|
listAppMenuConfigs(): Observable<any>;
|
|
90
|
-
|
|
90
|
+
getAppMenuConfigById(manuid: any): Observable<any>;
|
|
91
91
|
updateAppMenuConfig(manueConfig: any): Observable<any>;
|
|
92
92
|
deleteAppMenuConfig(menuId: any): any;
|
|
93
93
|
listMetricConfigs(): any;
|
|
@@ -38,40 +38,35 @@ export declare class CreateKpiTreeComponent implements OnInit {
|
|
|
38
38
|
editable_tag_type: any;
|
|
39
39
|
editable_kpi_name: any;
|
|
40
40
|
editable_kpi_tid: any;
|
|
41
|
+
selected_kpi_child_tid: any;
|
|
41
42
|
kpi_visibility: boolean;
|
|
42
43
|
kpi_external: boolean;
|
|
43
44
|
parante_kpi_name: any;
|
|
44
45
|
isComponentUpdata: boolean;
|
|
45
46
|
templateDataSource: any;
|
|
46
47
|
userOptionContainer: any;
|
|
48
|
+
selected_aliases: any;
|
|
49
|
+
isKpiTreePrepared: boolean;
|
|
50
|
+
kpiConfigDataSource: any;
|
|
47
51
|
constructor(commonService: CommonService, formBuilder: FormBuilder, service: CreateKpIService, toastr: ToastrService, router: Router);
|
|
48
52
|
ngOnInit(): void;
|
|
49
53
|
getAppPageConfigs(): void;
|
|
50
54
|
getAllKpiData(): void;
|
|
51
55
|
prepareParentDataSource(data: any): void;
|
|
52
|
-
|
|
53
|
-
|
|
56
|
+
makeNewKpiWithUserEntity(): void;
|
|
57
|
+
getEditableKpi(kpi: any): void;
|
|
58
|
+
getUpdateKpi(): void;
|
|
59
|
+
onCustomDimentionCreating(args: any): void;
|
|
54
60
|
getReseteKpi(): void;
|
|
55
|
-
getDeletKpi(tid: any): void;
|
|
56
61
|
addTagtypeValue(e: any): void;
|
|
57
62
|
getKpiItemValue(e: any): void;
|
|
58
|
-
autoIncrement(string1: string, string2: string | null): string;
|
|
59
|
-
setKpibyTid(data: any, tid: any, newKpiObj: any): void;
|
|
60
|
-
getHeistId(data: any, tid: string): any;
|
|
61
|
-
getHighestTid(data: any): any;
|
|
62
63
|
addNewKpi(): void;
|
|
63
64
|
cancelUpdate(): void;
|
|
64
|
-
getEditableKpi(data: any): void;
|
|
65
65
|
getKpiParrentName(input: any): any;
|
|
66
|
-
|
|
67
|
-
getDeleteKpi(): void;
|
|
68
|
-
getUpdateKpiName(data: any, tid: string): any;
|
|
69
|
-
getDeleteKpiName(data: any, tid: string): any;
|
|
66
|
+
getDeletKpi(): void;
|
|
70
67
|
reseteUpdateKpiForm(): void;
|
|
71
68
|
submitNewKpi(): void;
|
|
72
|
-
|
|
73
|
-
makeNewKpiWithUserEntity(): void;
|
|
74
|
-
routeToKpiConfig(): void;
|
|
69
|
+
buildMenuTree(userName: string, kpiData: any[]): any[];
|
|
75
70
|
static ɵfac: i0.ɵɵFactoryDeclaration<CreateKpiTreeComponent, never>;
|
|
76
71
|
static ɵcmp: i0.ɵɵComponentDeclaration<CreateKpiTreeComponent, "app-create-kpi", never, {}, {}, never, never, false>;
|
|
77
72
|
}
|
|
@@ -27,6 +27,10 @@ export declare class CreateKpIService {
|
|
|
27
27
|
getlistKpiBrowser(): any;
|
|
28
28
|
configureKpiBrowserConfig(body: any): any;
|
|
29
29
|
getCreateKpi(body: any): any;
|
|
30
|
+
listKpiEntryConfigs(): any;
|
|
31
|
+
createKpiEntryConfig(kpiObj: any): any;
|
|
32
|
+
updateKpiEntryConfig(kpiObj: any): any;
|
|
33
|
+
deleteKpiEntryConfig(kpiId: any): any;
|
|
30
34
|
static ɵfac: i0.ɵɵFactoryDeclaration<CreateKpIService, never>;
|
|
31
35
|
static ɵprov: i0.ɵɵInjectableDeclaration<CreateKpIService>;
|
|
32
36
|
}
|