gamma-app-controller 1.2.2 → 1.2.4
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-controller.module.mjs +6 -3
- package/esm2020/lib/shared/advanced-component/gamma-advance-operator-table/gamma-advance-operator-table.component.mjs +4 -4
- package/esm2020/lib/template-module/bookmarked-template/bookmarked-template.component.mjs +7 -11
- package/esm2020/lib/template-module/defaulLandingComponent/landing-component.component.mjs +7 -11
- package/esm2020/lib/template-module/kpiWithMultiLayout/kpi-with-multilayout.component.mjs +4 -4
- package/esm2020/lib/template-module/kpiWithMultiLayout/kpiWithMultiayout.module.mjs +4 -3
- package/esm2020/lib/template-module/kpiWithMultiLayout/muili.tokenStorage.servce.mjs +36 -0
- package/esm2020/lib/template-module/kpiWithSingleLayout/kpi-with-dataset.component.mjs +4 -4
- package/esm2020/lib/template-module/kpiWithSingleLayout/kpiWithSingleLayout.module.mjs +4 -3
- package/esm2020/lib/template-module/kpiWithSingleLayout/single.tokenStorage.servce.mjs +36 -0
- package/esm2020/public-api.mjs +3 -1
- package/fesm2015/gamma-app-controller.mjs +94 -28
- package/fesm2015/gamma-app-controller.mjs.map +1 -1
- package/fesm2020/gamma-app-controller.mjs +90 -28
- package/fesm2020/gamma-app-controller.mjs.map +1 -1
- package/lib/shared/advanced-component/gamma-advance-operator-table/gamma-advance-operator-table.component.d.ts +1 -1
- package/lib/template-module/bookmarked-template/bookmarked-template.component.d.ts +1 -3
- package/lib/template-module/defaulLandingComponent/landing-component.component.d.ts +1 -3
- package/lib/template-module/kpiWithMultiLayout/kpi-with-multilayout.component.d.ts +2 -2
- package/lib/template-module/kpiWithMultiLayout/muili.tokenStorage.servce.d.ts +12 -0
- package/lib/template-module/kpiWithSingleLayout/kpi-with-dataset.component.d.ts +2 -2
- package/lib/template-module/kpiWithSingleLayout/single.tokenStorage.servce.d.ts +12 -0
- package/package.json +1 -1
- package/public-api.d.ts +2 -0
|
@@ -32,5 +32,5 @@ export declare class GammaAdvanceOperatorTableComponent implements OnInit {
|
|
|
32
32
|
callServiceFunction(functionName: string, value: any): any;
|
|
33
33
|
shouldShowColumn(field: string): boolean;
|
|
34
34
|
static ɵfac: i0.ɵɵFactoryDeclaration<GammaAdvanceOperatorTableComponent, never>;
|
|
35
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GammaAdvanceOperatorTableComponent, "app-gamma-advance-operator-table", never, { "
|
|
35
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GammaAdvanceOperatorTableComponent, "app-gamma-advance-operator-table", never, { "chartDataSource": "chartDataSource"; }, { "getTableConfigOutPut": "getTableConfigOutPut"; "oRowClick": "oRowClick"; "onrightClickContextSelection": "onrightClickContextSelection"; }, never, never, false>;
|
|
36
36
|
}
|
|
@@ -11,7 +11,6 @@ import { AdvanceWidgetHeaderFilterComponent } from '../../shared/advanced-compon
|
|
|
11
11
|
import { BookmarkedApplicationDatssetsCall } from './bookmarked-dataset-call.service';
|
|
12
12
|
import { ToastrService } from 'ngx-toastr';
|
|
13
13
|
import { BookmarkedService } from './bookmarked-layout.service';
|
|
14
|
-
import { AppLocalStorage } from '../../application-controller/tokenStorage.servce';
|
|
15
14
|
import * as i0 from "@angular/core";
|
|
16
15
|
export declare class BookmarkedTemplateComponent implements OnInit {
|
|
17
16
|
commonService: CommonService;
|
|
@@ -22,7 +21,6 @@ export declare class BookmarkedTemplateComponent implements OnInit {
|
|
|
22
21
|
private toastr;
|
|
23
22
|
private router;
|
|
24
23
|
private datasetService;
|
|
25
|
-
private storage;
|
|
26
24
|
dashbord_container: any;
|
|
27
25
|
selected_width: any;
|
|
28
26
|
widget_width: string[];
|
|
@@ -80,7 +78,7 @@ export declare class BookmarkedTemplateComponent implements OnInit {
|
|
|
80
78
|
globalDefaultFilter: any;
|
|
81
79
|
pageId: any;
|
|
82
80
|
kpi_breadcrumbs_container: any;
|
|
83
|
-
constructor(commonService: CommonService, activatedRoute: ActivatedRoute, viewContainerRef: ViewContainerRef, componentFactoryResolver: ComponentFactoryResolver, service: BookmarkedService, toastr: ToastrService, router: Router, datasetService: BookmarkedApplicationDatssetsCall
|
|
81
|
+
constructor(commonService: CommonService, activatedRoute: ActivatedRoute, viewContainerRef: ViewContainerRef, componentFactoryResolver: ComponentFactoryResolver, service: BookmarkedService, toastr: ToastrService, router: Router, datasetService: BookmarkedApplicationDatssetsCall);
|
|
84
82
|
ngOnInit(): void;
|
|
85
83
|
getFiltersForTemplate(filter: any): Promise<void>;
|
|
86
84
|
getPadeDataSource(context: any): Promise<void>;
|
|
@@ -11,7 +11,6 @@ import { AdvanceWidgetHeaderFilterComponent } from '../../shared/advanced-compon
|
|
|
11
11
|
import { ToastrService } from 'ngx-toastr';
|
|
12
12
|
import { LandingComponentService } from './landing-component.service';
|
|
13
13
|
import { LandingApplicationDatssetsCall } from './landing-dataset-call.service';
|
|
14
|
-
import { AppLocalStorage } from '../../application-controller/tokenStorage.servce';
|
|
15
14
|
import * as i0 from "@angular/core";
|
|
16
15
|
export declare class LandingComponentComponent implements OnInit {
|
|
17
16
|
commonService: CommonService;
|
|
@@ -22,7 +21,6 @@ export declare class LandingComponentComponent implements OnInit {
|
|
|
22
21
|
private toastr;
|
|
23
22
|
private router;
|
|
24
23
|
private datasetService;
|
|
25
|
-
private storage;
|
|
26
24
|
dashbord_container: any;
|
|
27
25
|
selected_width: any;
|
|
28
26
|
widget_width: string[];
|
|
@@ -80,7 +78,7 @@ export declare class LandingComponentComponent implements OnInit {
|
|
|
80
78
|
globalDefaultFilter: any;
|
|
81
79
|
pageId: any;
|
|
82
80
|
kpi_breadcrumbs_container: any;
|
|
83
|
-
constructor(commonService: CommonService, activatedRoute: ActivatedRoute, viewContainerRef: ViewContainerRef, componentFactoryResolver: ComponentFactoryResolver, service: LandingComponentService, toastr: ToastrService, router: Router, datasetService: LandingApplicationDatssetsCall
|
|
81
|
+
constructor(commonService: CommonService, activatedRoute: ActivatedRoute, viewContainerRef: ViewContainerRef, componentFactoryResolver: ComponentFactoryResolver, service: LandingComponentService, toastr: ToastrService, router: Router, datasetService: LandingApplicationDatssetsCall);
|
|
84
82
|
ngOnInit(): void;
|
|
85
83
|
getFiltersForTemplate(filter: any): Promise<void>;
|
|
86
84
|
getPadeDataSource(context: any): Promise<void>;
|
|
@@ -13,7 +13,7 @@ import { GammaGeoChartComponent } from '../../shared/advanced-component/gamma-ge
|
|
|
13
13
|
import { GammaHeatChartComponent } from '../../shared/advanced-component/gamma-heatmap/gamma-heatmap.component';
|
|
14
14
|
import { KpiWithMultiLayoutService } from './kpi-multi-layout.service';
|
|
15
15
|
import { MultilayoutApplicationDatssetsCall } from './multi-layout-dataset-call.service';
|
|
16
|
-
import {
|
|
16
|
+
import { AppMultiLayoutLocalStorage } from './muili.tokenStorage.servce';
|
|
17
17
|
import * as i0 from "@angular/core";
|
|
18
18
|
export declare class KpiWithMultilayoutSetTestComponent implements OnInit {
|
|
19
19
|
commonService: CommonService;
|
|
@@ -85,7 +85,7 @@ export declare class KpiWithMultilayoutSetTestComponent implements OnInit {
|
|
|
85
85
|
pageId: any;
|
|
86
86
|
kpi_breadcrumbs_container: any;
|
|
87
87
|
operatorName: any;
|
|
88
|
-
constructor(commonService: CommonService, activatedRoute: ActivatedRoute, viewContainerRef: ViewContainerRef, componentFactoryResolver: ComponentFactoryResolver, service: KpiWithMultiLayoutService, toastr: ToastrService, router: Router, datasetService: MultilayoutApplicationDatssetsCall, storage:
|
|
88
|
+
constructor(commonService: CommonService, activatedRoute: ActivatedRoute, viewContainerRef: ViewContainerRef, componentFactoryResolver: ComponentFactoryResolver, service: KpiWithMultiLayoutService, toastr: ToastrService, router: Router, datasetService: MultilayoutApplicationDatssetsCall, storage: AppMultiLayoutLocalStorage);
|
|
89
89
|
ngOnInit(): void;
|
|
90
90
|
getFiltersForTemplate(filter: any): Promise<void>;
|
|
91
91
|
getPadeDataSource(context: any): Promise<void>;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class AppMultiLayoutLocalStorage {
|
|
3
|
+
private environment;
|
|
4
|
+
constructor(environment: any);
|
|
5
|
+
save(type: any, token: any): void;
|
|
6
|
+
get(type: any): string;
|
|
7
|
+
delete(type: any): string;
|
|
8
|
+
destroy(): void;
|
|
9
|
+
getAppVariableName(attributeName: string): string;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AppMultiLayoutLocalStorage, never>;
|
|
11
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AppMultiLayoutLocalStorage>;
|
|
12
|
+
}
|
|
@@ -14,7 +14,7 @@ import { GammaHeatChartComponent } from '../../shared/advanced-component/gamma-h
|
|
|
14
14
|
import { KpiWithSingleLayoutService } from './kpi-single-layout.service';
|
|
15
15
|
import { SingleLayoutApplicationDatssetsCall } from './single-layout-dataset-call.service';
|
|
16
16
|
import { ApplicationChatApiCallService } from './application-chat-api-call.service';
|
|
17
|
-
import {
|
|
17
|
+
import { AppSingleLayoutLocalStorage } from './single.tokenStorage.servce';
|
|
18
18
|
import * as i0 from "@angular/core";
|
|
19
19
|
export declare class KpiWithDataSetTestComponent implements OnInit {
|
|
20
20
|
commonService: CommonService;
|
|
@@ -99,7 +99,7 @@ export declare class KpiWithDataSetTestComponent implements OnInit {
|
|
|
99
99
|
};
|
|
100
100
|
};
|
|
101
101
|
isDefaultFilterParams: boolean;
|
|
102
|
-
constructor(commonService: CommonService, activatedRoute: ActivatedRoute, viewContainerRef: ViewContainerRef, componentFactoryResolver: ComponentFactoryResolver, service: KpiWithSingleLayoutService, toastr: ToastrService, router: Router, datasetService: SingleLayoutApplicationDatssetsCall, chatApiService: ApplicationChatApiCallService, storage:
|
|
102
|
+
constructor(commonService: CommonService, activatedRoute: ActivatedRoute, viewContainerRef: ViewContainerRef, componentFactoryResolver: ComponentFactoryResolver, service: KpiWithSingleLayoutService, toastr: ToastrService, router: Router, datasetService: SingleLayoutApplicationDatssetsCall, chatApiService: ApplicationChatApiCallService, storage: AppSingleLayoutLocalStorage);
|
|
103
103
|
ngOnInit(): void;
|
|
104
104
|
getFiltersForTemplate(filter: any): Promise<void>;
|
|
105
105
|
getPadeDataSource(context: any): Promise<void>;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class AppSingleLayoutLocalStorage {
|
|
3
|
+
private environment;
|
|
4
|
+
constructor(environment: any);
|
|
5
|
+
save(type: any, token: any): void;
|
|
6
|
+
get(type: any): string;
|
|
7
|
+
delete(type: any): string;
|
|
8
|
+
destroy(): void;
|
|
9
|
+
getAppVariableName(attributeName: string): string;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AppSingleLayoutLocalStorage, never>;
|
|
11
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AppSingleLayoutLocalStorage>;
|
|
12
|
+
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -77,11 +77,13 @@ export * from './lib/template-module/kpiWithSingleLayout/dynamin-modal.component
|
|
|
77
77
|
export * from './lib/template-module/kpiWithSingleLayout/kpi-single-layout.service';
|
|
78
78
|
export * from './lib/template-module/kpiWithSingleLayout/application-chat-api-call.service';
|
|
79
79
|
export * from './lib/template-module/kpiWithSingleLayout/single-layout-dataset-call.service';
|
|
80
|
+
export * from './lib/template-module/kpiWithSingleLayout/single.tokenStorage.servce';
|
|
80
81
|
export * from './lib/template-module/kpiWithMultiLayout/dynamin-modal-multi.component';
|
|
81
82
|
export * from './lib/template-module/kpiWithMultiLayout/kpi-with-multilayout.component';
|
|
82
83
|
export * from './lib/template-module/kpiWithMultiLayout/kpiWithMultiayout.module';
|
|
83
84
|
export * from './lib/template-module/kpiWithMultiLayout/kpi-multi-layout.service';
|
|
84
85
|
export * from './lib/template-module/kpiWithMultiLayout/multi-layout-dataset-call.service';
|
|
86
|
+
export * from './lib/template-module/kpiWithMultiLayout/muili.tokenStorage.servce';
|
|
85
87
|
export * from './lib/template-module/defaulLandingComponent/landing-component.component';
|
|
86
88
|
export * from './lib/template-module/defaulLandingComponent/defaultLandingComponent.module';
|
|
87
89
|
export * from './lib/template-module/defaulLandingComponent/landing-component.service';
|