gamma-app-controller 1.2.18 → 1.2.20
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/page-controller/page-controller/page-controller.component.mjs +2 -1
- package/esm2020/lib/shared/advanced-component/app-advance-header/app-header.component.mjs +21 -8
- package/esm2020/lib/shared/advanced-component/gamma-today-previous/gamma-today-previous.component.mjs +1 -2
- package/esm2020/lib/template-module/defaulLandingComponent/landing-component.component.mjs +2 -3
- package/esm2020/lib/template-module/defaulLandingMultiLayoutComponent/defaulLandingMultiLayout.component.mjs +1248 -0
- package/esm2020/lib/template-module/defaulLandingMultiLayoutComponent/defaulLandingMultiLayout.module.mjs +151 -0
- package/esm2020/lib/template-module/defaulLandingMultiLayoutComponent/defaulLandingMultiLayout.service.mjs +121 -0
- package/esm2020/lib/template-module/defaulLandingMultiLayoutComponent/multi-landing-dataset-call.service.mjs +364 -0
- package/esm2020/lib/template-module/defaulLandingMultiLayoutComponent/multi-landing.tokenStorage.servce.mjs +36 -0
- package/esm2020/public-api.mjs +6 -1
- package/fesm2015/gamma-app-controller.mjs +1923 -19
- package/fesm2015/gamma-app-controller.mjs.map +1 -1
- package/fesm2020/gamma-app-controller.mjs +1900 -19
- package/fesm2020/gamma-app-controller.mjs.map +1 -1
- package/lib/shared/advanced-component/app-advance-header/app-header.component.d.ts +8 -3
- package/lib/template-module/defaulLandingMultiLayoutComponent/defaulLandingMultiLayout.component.d.ts +141 -0
- package/lib/template-module/defaulLandingMultiLayoutComponent/defaulLandingMultiLayout.module.d.ts +16 -0
- package/lib/template-module/defaulLandingMultiLayoutComponent/defaulLandingMultiLayout.service.d.ts +33 -0
- package/lib/template-module/defaulLandingMultiLayoutComponent/multi-landing-dataset-call.service.d.ts +24 -0
- package/lib/template-module/defaulLandingMultiLayoutComponent/multi-landing.tokenStorage.servce.d.ts +12 -0
- package/package.json +1 -1
- package/public-api.d.ts +5 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { EventEmitter, OnInit } from '@angular/core';
|
|
1
|
+
import { EventEmitter, OnInit, SimpleChanges } from '@angular/core';
|
|
2
2
|
import { ActivatedRoute, Router } from '@angular/router';
|
|
3
3
|
import { CommonService } from '../../../application-controller/common';
|
|
4
4
|
import { AppLocalStorage } from '../../../application-controller/tokenStorage.servce';
|
|
@@ -34,17 +34,22 @@ export declare class AppAdvanceHeaderComponent implements OnInit {
|
|
|
34
34
|
daterange_options: any;
|
|
35
35
|
srvTypeDataSource: any;
|
|
36
36
|
srvTypeDisplayValue: any;
|
|
37
|
-
selectedDetesforView:
|
|
37
|
+
selectedDetesforView: string;
|
|
38
38
|
selectedDateRangeOrServtype: EventEmitter<any>;
|
|
39
39
|
getFilterPageConfig: EventEmitter<any>;
|
|
40
40
|
getOperatorName: EventEmitter<any>;
|
|
41
41
|
getContextFilterData: EventEmitter<any>;
|
|
42
42
|
constructor(activatedRoute: ActivatedRoute, route: Router, commonService: CommonService, storage: AppLocalStorage);
|
|
43
|
+
selectedDatesMap: {
|
|
44
|
+
[widgetId: string]: string;
|
|
45
|
+
};
|
|
46
|
+
filterObjects: any;
|
|
43
47
|
filterItemsForFilter: any;
|
|
44
48
|
operatorLogo: string;
|
|
45
49
|
set filterItems(value: any);
|
|
46
50
|
contextFilterItemsForFilter: any;
|
|
47
51
|
set contextFilterItems(value: any);
|
|
52
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
48
53
|
getContextMenuChange(event: any): void;
|
|
49
54
|
ngOnInit(): void;
|
|
50
55
|
pageAutoloadStopRun(): void;
|
|
@@ -58,5 +63,5 @@ export declare class AppAdvanceHeaderComponent implements OnInit {
|
|
|
58
63
|
getOperationFilter(params: any): any;
|
|
59
64
|
getPageTitle(pageTitle: string): string;
|
|
60
65
|
static ɵfac: i0.ɵɵFactoryDeclaration<AppAdvanceHeaderComponent, never>;
|
|
61
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AppAdvanceHeaderComponent, "app-advance-header", never, { "pageTitle": "pageTitle"; "bread_crumbs_container": "bread_crumbs_container"; "isEditButton": "isEditButton"; "isAdvanceButton": "isAdvanceButton"; "selectedDates": "selectedDates"; "filterItems": "filterItems"; "contextFilterItems": "contextFilterItems"; }, { "toggleEvent": "toggleEvent"; "selectedDateRangeOrServtype": "selectedDateRangeOrServtype"; "getFilterPageConfig": "getFilterPageConfig"; "getOperatorName": "getOperatorName"; "getContextFilterData": "getContextFilterData"; }, never, never, false>;
|
|
66
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AppAdvanceHeaderComponent, "app-advance-header", never, { "pageTitle": "pageTitle"; "bread_crumbs_container": "bread_crumbs_container"; "isEditButton": "isEditButton"; "isAdvanceButton": "isAdvanceButton"; "selectedDates": "selectedDates"; "filterObjects": "filterObjects"; "filterItems": "filterItems"; "contextFilterItems": "contextFilterItems"; }, { "toggleEvent": "toggleEvent"; "selectedDateRangeOrServtype": "selectedDateRangeOrServtype"; "getFilterPageConfig": "getFilterPageConfig"; "getOperatorName": "getOperatorName"; "getContextFilterData": "getContextFilterData"; }, never, never, false>;
|
|
62
67
|
}
|
|
@@ -0,0 +1,141 @@
|
|
|
1
|
+
import { ChangeDetectorRef, ComponentFactoryResolver, ComponentRef, ElementRef, OnInit, ViewContainerRef } from '@angular/core';
|
|
2
|
+
import { ActivatedRoute, Router } from '@angular/router';
|
|
3
|
+
import { CommonService } from '../../application-controller/common';
|
|
4
|
+
import { GammaAdvanceChartComponent } from '../../shared/advanced-component/gamma-advance-chart/gamma-advance-chart.component';
|
|
5
|
+
import { GammaTodayPreviousComponent } from '../../shared/advanced-component/gamma-today-previous/gamma-today-previous.component';
|
|
6
|
+
import { AppAdvanceHeaderComponent } from '../../shared/advanced-component/app-advance-header/app-header.component';
|
|
7
|
+
import { GammaTableWithPercentageComponent } from '../../shared/advanced-component/gamma-table-with-percentage/gamma-table-with-percentage.component';
|
|
8
|
+
import { GammSingleNumberCardComponent } from '../../shared/advanced-component/gamm-single-number-card/gamm-single-number-card.component';
|
|
9
|
+
import { GammaAdvanceOperatorTableComponent } from '../../shared/advanced-component/gamma-advance-operator-table/gamma-advance-operator-table.component';
|
|
10
|
+
import { AdvanceWidgetHeaderFilterComponent } from '../../shared/advanced-component/advance-widget-header-filter/advance-widget-header-filter.component';
|
|
11
|
+
import { GammaGeoChartComponent } from '../../shared/advanced-component/gamma-geo-chart/gamma-geo-chart.component';
|
|
12
|
+
import { GammaHeatChartComponent } from '../../shared/advanced-component/gamma-heatmap/gamma-heatmap.component';
|
|
13
|
+
import { ToastrService } from 'ngx-toastr';
|
|
14
|
+
import { LandingMultiLayoutComponentService } from './defaulLandingMultiLayout.service';
|
|
15
|
+
import { LandingMultiLayoutApplicationDatssetsCall } from './multi-landing-dataset-call.service';
|
|
16
|
+
import { AppLandingMultiLayoutLocalStorage } from './multi-landing.tokenStorage.servce';
|
|
17
|
+
import * as i0 from "@angular/core";
|
|
18
|
+
export declare class MultiLayoutLandingComponentComponent implements OnInit {
|
|
19
|
+
commonService: CommonService;
|
|
20
|
+
private activatedRoute;
|
|
21
|
+
private viewContainerRef;
|
|
22
|
+
private componentFactoryResolver;
|
|
23
|
+
private service;
|
|
24
|
+
private toastr;
|
|
25
|
+
private router;
|
|
26
|
+
private datasetService;
|
|
27
|
+
private storage;
|
|
28
|
+
private cdr;
|
|
29
|
+
dashbord_container: any;
|
|
30
|
+
selected_width: any;
|
|
31
|
+
widget_width: string[];
|
|
32
|
+
loadingModal: boolean;
|
|
33
|
+
page_title: string;
|
|
34
|
+
defaultStartDate: any;
|
|
35
|
+
defaultEndDate: any;
|
|
36
|
+
dynamicComponentContainer: ViewContainerRef;
|
|
37
|
+
containerRef: ViewContainerRef;
|
|
38
|
+
dynamicContainer: ElementRef;
|
|
39
|
+
dynamicContainerForPopup: ElementRef;
|
|
40
|
+
dynamicComponentRefs: ComponentRef<any>[];
|
|
41
|
+
CompRefs: ComponentRef<any>;
|
|
42
|
+
componentClassMap: {
|
|
43
|
+
GammaAdvanceChartComponent: typeof GammaAdvanceChartComponent;
|
|
44
|
+
GammaTodayPreviousComponent: typeof GammaTodayPreviousComponent;
|
|
45
|
+
AppAdvanceHeaderComponent: typeof AppAdvanceHeaderComponent;
|
|
46
|
+
GammaTableWithPercentageComponent: typeof GammaTableWithPercentageComponent;
|
|
47
|
+
GammSingleNumberCardComponent: typeof GammSingleNumberCardComponent;
|
|
48
|
+
GammaAdvanceOperatorTableComponent: typeof GammaAdvanceOperatorTableComponent;
|
|
49
|
+
AdvanceWidgetHeaderFilterComponent: typeof AdvanceWidgetHeaderFilterComponent;
|
|
50
|
+
GammaGeoChartComponent: typeof GammaGeoChartComponent;
|
|
51
|
+
GammaHeatChartComponent: typeof GammaHeatChartComponent;
|
|
52
|
+
};
|
|
53
|
+
dataSourceMataData: any;
|
|
54
|
+
queryType: string;
|
|
55
|
+
dataSetModal: any;
|
|
56
|
+
componentConfigDataSource: any;
|
|
57
|
+
selescedDataSource: any;
|
|
58
|
+
dataSourceModal: any;
|
|
59
|
+
isDashBoardContent: boolean;
|
|
60
|
+
selectedViewFormComponent: any;
|
|
61
|
+
addedwidGetConfig: {
|
|
62
|
+
display: boolean;
|
|
63
|
+
widgetTitle: string;
|
|
64
|
+
width: string;
|
|
65
|
+
height: string;
|
|
66
|
+
};
|
|
67
|
+
dashBoardWidgetConfig: any;
|
|
68
|
+
isWidgetCreationContent: boolean;
|
|
69
|
+
selectedWidth: any;
|
|
70
|
+
selectedHeight: any;
|
|
71
|
+
newWidgetIndex: any;
|
|
72
|
+
selectedIndexObjForChart: any;
|
|
73
|
+
selectedContainerObjectForChart: any;
|
|
74
|
+
dataSettableDataSource: any;
|
|
75
|
+
uniqueDataSetObject: {};
|
|
76
|
+
isDashBoardContentTypeView: boolean;
|
|
77
|
+
filters: any;
|
|
78
|
+
allWidgetByDataset: any[];
|
|
79
|
+
pageTitle: any;
|
|
80
|
+
stateDataSource: Map<any, any>;
|
|
81
|
+
mainPageDivElement: any;
|
|
82
|
+
contextMenuDataSource: any;
|
|
83
|
+
havingDataObject: any;
|
|
84
|
+
isWidgetFilters: boolean;
|
|
85
|
+
nodeproperticeFilterDataSource: any;
|
|
86
|
+
globalDefaultFilter: any;
|
|
87
|
+
pageId: any;
|
|
88
|
+
kpi_breadcrumbs_container: any;
|
|
89
|
+
operatorName: any;
|
|
90
|
+
defaultViewIds: any;
|
|
91
|
+
defaultViewIdsOnPageRefresh: any;
|
|
92
|
+
isPopupView: boolean;
|
|
93
|
+
modalConfigs: any;
|
|
94
|
+
defaultMatchedFilters: {
|
|
95
|
+
operationFilter: {
|
|
96
|
+
startDate: string;
|
|
97
|
+
endDate: string;
|
|
98
|
+
};
|
|
99
|
+
};
|
|
100
|
+
isDefaultFilterParams: boolean;
|
|
101
|
+
viewParams: any;
|
|
102
|
+
constructor(commonService: CommonService, activatedRoute: ActivatedRoute, viewContainerRef: ViewContainerRef, componentFactoryResolver: ComponentFactoryResolver, service: LandingMultiLayoutComponentService, toastr: ToastrService, router: Router, datasetService: LandingMultiLayoutApplicationDatssetsCall, storage: AppLandingMultiLayoutLocalStorage, cdr: ChangeDetectorRef);
|
|
103
|
+
ngOnInit(): void;
|
|
104
|
+
getFiltersForTemplate(filter: any): Promise<void>;
|
|
105
|
+
getWidgetFilterItems(widgetFilterData: any): any;
|
|
106
|
+
getPadeDataSource(context: any): Promise<void>;
|
|
107
|
+
getPadeDataSourceByfilet(context: any, widgetObject: any): Promise<void>;
|
|
108
|
+
getComponentConfigSet(): void;
|
|
109
|
+
getDataSet(): void;
|
|
110
|
+
createDivElements(datasetById: any, context: any): Promise<void>;
|
|
111
|
+
loadWidgetNodes(div: any, mainItemDiv: any, datasetById: any): void;
|
|
112
|
+
loadSingleWidgetNode(item: any, containerElement: HTMLElement, datasetById: any): void;
|
|
113
|
+
getWidgetTitleDiv(item: any): HTMLDivElement;
|
|
114
|
+
loadDynamicComponent(data: any, indexObj: any, containerElement: any): any;
|
|
115
|
+
loadFilterComponent(indexObj: any, containerElement: any, filterItems: any, context_filter: any): void;
|
|
116
|
+
loadWidgetFilterComponent(indexObj: any, containerElement: any, filterItems: any, viewIds: any): void;
|
|
117
|
+
getContextClick(event: any): void;
|
|
118
|
+
getRowClick(event: any): Promise<void>;
|
|
119
|
+
getViewByRowCLickForHourlyChart(event: any, node: any): void;
|
|
120
|
+
getModalViewByRowCLick(event: any, view: any): Promise<void>;
|
|
121
|
+
getViewByRowCLick(event: any, view: any): Promise<void>;
|
|
122
|
+
replaceAssociatedParams(template: string, params: any, appliedFilters: any): string;
|
|
123
|
+
scrollToBottom(container: HTMLElement): void;
|
|
124
|
+
findWidgetById(configs: any[], id: string): any | undefined;
|
|
125
|
+
updateOperatorData(key_name: string[], value_data: any): any;
|
|
126
|
+
getElementOfCurrentView(node: any, viewId: any): any;
|
|
127
|
+
getHourlyData(node: any): any;
|
|
128
|
+
getSetOperatorFilter(objectData: any, previousViewStates: any): {};
|
|
129
|
+
getRearchResultFromInputBox(inputValue: any, viewConfig: any, filterObject: any): void;
|
|
130
|
+
submitFilter(): void;
|
|
131
|
+
getWidgetFilterForTemplate(value: any): void;
|
|
132
|
+
loadDataByOperator(opName: any): Promise<void>;
|
|
133
|
+
getContextFilterData(value: any): Promise<void>;
|
|
134
|
+
parseInput(input: any): any;
|
|
135
|
+
getDrilldownDisplayByUrlParams(all_views: any): void;
|
|
136
|
+
getFiltersForQueryParams(operators: any, filters: any, viewParams: any): void;
|
|
137
|
+
getDrildownFilter(drildownFilter: any, defaultFilter: any): any;
|
|
138
|
+
getTitleParams(items: any): string;
|
|
139
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MultiLayoutLandingComponentComponent, never>;
|
|
140
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MultiLayoutLandingComponentComponent, "app-multi-layout-landing-component", never, {}, {}, never, never, false>;
|
|
141
|
+
}
|
package/lib/template-module/defaulLandingMultiLayoutComponent/defaulLandingMultiLayout.module.d.ts
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./defaulLandingMultiLayout.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "../../shared/loading/loadingModule";
|
|
5
|
+
import * as i4 from "devextreme-angular";
|
|
6
|
+
import * as i5 from "@angular/forms";
|
|
7
|
+
import * as i6 from "@angular/material/icon";
|
|
8
|
+
import * as i7 from "@angular/material/tooltip";
|
|
9
|
+
import * as i8 from "@angular/material/button";
|
|
10
|
+
import * as i9 from "@angular/material/divider";
|
|
11
|
+
import * as i10 from "@angular/material/menu";
|
|
12
|
+
export declare class DefaultLandingMultiLayoutComponenttModule {
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DefaultLandingMultiLayoutComponenttModule, never>;
|
|
14
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DefaultLandingMultiLayoutComponenttModule, [typeof i1.MultiLayoutLandingComponentComponent], [typeof i2.CommonModule, typeof i3.LoadingModule, typeof i2.CommonModule, typeof i4.DevExtremeModule, typeof i4.DxButtonModule, typeof i4.DxCheckBoxModule, typeof i4.DxNumberBoxModule, typeof i4.DxDataGridModule, typeof i4.DxDropDownBoxModule, typeof i4.DxTreeViewModule, typeof i4.DxScrollViewModule, typeof i4.DxFormModule, typeof i4.DxAccordionModule, typeof i5.FormsModule, typeof i4.DxTagBoxModule, typeof i5.ReactiveFormsModule, typeof i6.MatIconModule, typeof i4.DxHtmlEditorModule, typeof i4.DxBulletModule, typeof i4.DxChartModule, typeof i4.DxDateBoxModule, typeof i4.DxLoadPanelModule, typeof i4.DxLookupModule, typeof i4.DxPivotGridModule, typeof i4.DxTemplateModule, typeof i4.DxTextAreaModule, typeof i4.DxValidationSummaryModule, typeof i4.DxValidatorModule, typeof i4.DxCalendarModule, typeof i4.DxTooltipModule, typeof i4.DxContextMenuModule, typeof i4.DxLoadIndicatorModule, typeof i4.DxPieChartModule, typeof i7.MatTooltipModule, typeof i4.DxPopupModule, typeof i4.DxSelectBoxModule, typeof i4.DxTextBoxModule, typeof i4.DxTreeViewModule, typeof i8.MatButtonModule, typeof i9.MatDividerModule, typeof i10.MatMenuModule, typeof i6.MatIconModule, typeof i3.LoadingModule], [typeof i1.MultiLayoutLandingComponentComponent]>;
|
|
15
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<DefaultLandingMultiLayoutComponenttModule>;
|
|
16
|
+
}
|
package/lib/template-module/defaulLandingMultiLayoutComponent/defaulLandingMultiLayout.service.d.ts
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { HttpClient, HttpHeaders } from '@angular/common/http';
|
|
2
|
+
import { Subject, Observable } from 'rxjs';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class LandingMultiLayoutComponentService {
|
|
5
|
+
http: HttpClient;
|
|
6
|
+
private environment;
|
|
7
|
+
headers: HttpHeaders;
|
|
8
|
+
options: {
|
|
9
|
+
headers: HttpHeaders;
|
|
10
|
+
withCredentials: boolean;
|
|
11
|
+
};
|
|
12
|
+
_selectedKpiOnClick: Subject<any>;
|
|
13
|
+
_kpilist: Subject<any>;
|
|
14
|
+
_selectKpiFromDropDown: Subject<any>;
|
|
15
|
+
private _componentRegistry;
|
|
16
|
+
private kpiFilter;
|
|
17
|
+
constructor(http: HttpClient, environment: any);
|
|
18
|
+
handleError(error: any): Observable<Response>;
|
|
19
|
+
getlistKpiBrowser(): any;
|
|
20
|
+
getAppPageDetailConfig(pageId: any): any;
|
|
21
|
+
getAppPageConfigs(): any;
|
|
22
|
+
getAppDatasetConfigs(): any;
|
|
23
|
+
getAppDatasetConfig(datasetId: any): any;
|
|
24
|
+
getAppFilterConfig(filterId: any): any;
|
|
25
|
+
getAppViewConfigs(): any;
|
|
26
|
+
getData(body: any, requestID: any): any;
|
|
27
|
+
getSimpleApiPostRequest(requestApi: any, body: any): any;
|
|
28
|
+
getSimpleApiGetRequest(requestApi: any): any;
|
|
29
|
+
getJsonDatasetPayload(requestApi: any): any;
|
|
30
|
+
genericSqlQueryResponse(requestApi: any, body: any): any;
|
|
31
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LandingMultiLayoutComponentService, never>;
|
|
32
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<LandingMultiLayoutComponentService>;
|
|
33
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { ToastrService } from 'ngx-toastr';
|
|
2
|
+
import { kpicommonService } from '../../application-controller/kpi-service';
|
|
3
|
+
import { LandingMultiLayoutComponentService } from './defaulLandingMultiLayout.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class LandingMultiLayoutApplicationDatssetsCall {
|
|
6
|
+
private service;
|
|
7
|
+
private kpiService;
|
|
8
|
+
private toastr;
|
|
9
|
+
private environment;
|
|
10
|
+
uniqueDataSetObject: {};
|
|
11
|
+
constructor(service: LandingMultiLayoutComponentService, kpiService: kpicommonService, toastr: ToastrService, environment: any);
|
|
12
|
+
getDataFromDataSet(dataset: any, datasetId: any, filters: any): Promise<void>;
|
|
13
|
+
getDataSetForMongo(dataset: any, datasetId: any): Promise<void>;
|
|
14
|
+
getDatasetForImpala(dataset: any, datasetId: any, filters: any): Promise<void>;
|
|
15
|
+
getFormatObjectForColumn(columns: any): any[];
|
|
16
|
+
transformDataForMFilter(filterdata: any, mapData: any): any[];
|
|
17
|
+
getDatasetForSimpleApiImpala(dataset: any, datasetId: string, filters: any): Promise<void>;
|
|
18
|
+
getDatasetForPlainJson(dataset: any, datasetId: any, filter: any): Promise<void>;
|
|
19
|
+
getDatasetForSqlTemplate(dataset: any, datasetId: any, filters: any): Promise<void>;
|
|
20
|
+
transformDataForMFilterForSQl(filterdata: any, mapData: any): any[];
|
|
21
|
+
getUniqueDataSetObject(): {};
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LandingMultiLayoutApplicationDatssetsCall, never>;
|
|
23
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<LandingMultiLayoutApplicationDatssetsCall>;
|
|
24
|
+
}
|
package/lib/template-module/defaulLandingMultiLayoutComponent/multi-landing.tokenStorage.servce.d.ts
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class AppLandingMultiLayoutLocalStorage {
|
|
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<AppLandingMultiLayoutLocalStorage, never>;
|
|
11
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AppLandingMultiLayoutLocalStorage>;
|
|
12
|
+
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -89,6 +89,11 @@ export * from './lib/template-module/defaulLandingComponent/defaultLandingCompon
|
|
|
89
89
|
export * from './lib/template-module/defaulLandingComponent/landing-component.service';
|
|
90
90
|
export * from './lib/template-module/defaulLandingComponent/landing-dataset-call.service';
|
|
91
91
|
export * from './lib/template-module/defaulLandingComponent/landing.tokenStorage.servce';
|
|
92
|
+
export * from './lib/template-module/defaulLandingMultiLayoutComponent/defaulLandingMultiLayout.component';
|
|
93
|
+
export * from './lib/template-module/defaulLandingMultiLayoutComponent/defaulLandingMultiLayout.module';
|
|
94
|
+
export * from './lib/template-module/defaulLandingMultiLayoutComponent/defaulLandingMultiLayout.service';
|
|
95
|
+
export * from './lib/template-module/defaulLandingMultiLayoutComponent/multi-landing-dataset-call.service';
|
|
96
|
+
export * from './lib/template-module/defaulLandingMultiLayoutComponent/multi-landing.tokenStorage.servce';
|
|
92
97
|
export * from './lib/template-module/bookmarked-template/bookmarked-template.component';
|
|
93
98
|
export * from './lib/template-module/bookmarked-template/bookmarkedTemplate.module';
|
|
94
99
|
export * from './lib/template-module/bookmarked-template/bookmarked-layout.service';
|