client-core-services 1.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/README.md +24 -0
- package/esm2020/client-core-services.mjs +5 -0
- package/esm2020/lib/my-lib.module.mjs +98 -0
- package/esm2020/lib/services/api/api-call/api-call.service.mjs +766 -0
- package/esm2020/lib/services/api/api-call-responce/api-call-responce.service.mjs +191 -0
- package/esm2020/lib/services/api/api.service.mjs +611 -0
- package/esm2020/lib/services/api/auth/auth-guard.service.mjs +37 -0
- package/esm2020/lib/services/api/auth/auth.service.mjs +500 -0
- package/esm2020/lib/services/api/aws-secret-manager/aws-secret-manager.service.mjs +78 -0
- package/esm2020/lib/services/api/common-api/common-api.service.mjs +97 -0
- package/esm2020/lib/services/api/doc-api/doc-api.service.mjs +221 -0
- package/esm2020/lib/services/api/public-api/public-api.service.mjs +37 -0
- package/esm2020/lib/services/chart/chart.service.mjs +166 -0
- package/esm2020/lib/services/check-if/check-if.service.mjs +830 -0
- package/esm2020/lib/services/common-utils/common-function.service.mjs +1277 -0
- package/esm2020/lib/services/common-utils/core-function/core-function.service.mjs +283 -0
- package/esm2020/lib/services/customvalidation/customvalidation.service.mjs +202 -0
- package/esm2020/lib/services/data-share/auth-data-share/auth-data-share.service.mjs +70 -0
- package/esm2020/lib/services/data-share/common-app-data-share/common-app-data-share.service.mjs +82 -0
- package/esm2020/lib/services/data-share/data-share.service.mjs +370 -0
- package/esm2020/lib/services/data-share/doc-data-share/doc-data-share.service.mjs +81 -0
- package/esm2020/lib/services/data-share/public-data-share/public-data-share.service.mjs +25 -0
- package/esm2020/lib/services/download/download.service.mjs +151 -0
- package/esm2020/lib/services/encryption/encryption.service.mjs +20 -0
- package/esm2020/lib/services/env/env.service.mjs +232 -0
- package/esm2020/lib/services/env/serverHostList.mjs +56 -0
- package/esm2020/lib/services/fileHandler/file-handler.service.mjs +136 -0
- package/esm2020/lib/services/form/form-control/form-control.service.mjs +654 -0
- package/esm2020/lib/services/form/form-creation/form-creation.service.mjs +880 -0
- package/esm2020/lib/services/form/form-value/form-value.service.mjs +464 -0
- package/esm2020/lib/services/form/multiple-form/multiple-form.service.mjs +346 -0
- package/esm2020/lib/services/grid/grid-common-function/grid-common-function.service.mjs +875 -0
- package/esm2020/lib/services/grid/grid-selection/grid-selection.service.mjs +84 -0
- package/esm2020/lib/services/lims-calculations/lims-calculations.service.mjs +2304 -0
- package/esm2020/lib/services/loader/loader.service.mjs +17 -0
- package/esm2020/lib/services/menu-or-module-common/menu-or-module-common.service.mjs +558 -0
- package/esm2020/lib/services/model/model.service.mjs +30 -0
- package/esm2020/lib/services/notify/notification.service.mjs +84 -0
- package/esm2020/lib/services/operator/operator.service.mjs +58 -0
- package/esm2020/lib/services/permission/permission.service.mjs +88 -0
- package/esm2020/lib/services/router/router.service.mjs +78 -0
- package/esm2020/lib/services/storage/cookies.service.mjs +56 -0
- package/esm2020/lib/services/storage/storage.service.mjs +749 -0
- package/esm2020/lib/services/tree-component/interface.mjs +6 -0
- package/esm2020/lib/services/tree-component/tree-component.service.mjs +394 -0
- package/esm2020/lib/services/userPrefrence/user-prefrence.service.mjs +767 -0
- package/esm2020/lib/services/voice-recognition/voice-recognition.service.mjs +97 -0
- package/esm2020/lib/shared/configuration/config.mjs +76 -0
- package/esm2020/lib/shared/configuration/editor-config.mjs +121 -0
- package/esm2020/lib/shared/enums/common.enum.mjs +18 -0
- package/esm2020/lib/shared/enums/config.enum.mjs +56 -0
- package/esm2020/lib/shared/enums/end-point.enum.mjs +69 -0
- package/esm2020/lib/shared/enums/flags.enum.mjs +20 -0
- package/esm2020/lib/shared/enums/keycodes.enum.mjs +122 -0
- package/esm2020/lib/shared/enums/operator_type.enum.mjs +13 -0
- package/esm2020/lib/shared/enums/storage-token-status.enum.mjs +10 -0
- package/esm2020/lib/shared/platform.mjs +2 -0
- package/esm2020/public-api.mjs +53 -0
- package/fesm2015/client-core-services.mjs +15487 -0
- package/fesm2015/client-core-services.mjs.map +1 -0
- package/fesm2020/client-core-services.mjs +15482 -0
- package/fesm2020/client-core-services.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/my-lib.module.d.ts +18 -0
- package/lib/services/api/api-call/api-call.service.d.ts +60 -0
- package/lib/services/api/api-call-responce/api-call-responce.service.d.ts +43 -0
- package/lib/services/api/api.service.d.ts +88 -0
- package/lib/services/api/auth/auth-guard.service.d.ts +13 -0
- package/lib/services/api/auth/auth.service.d.ts +50 -0
- package/lib/services/api/aws-secret-manager/aws-secret-manager.service.d.ts +22 -0
- package/lib/services/api/common-api/common-api.service.d.ts +22 -0
- package/lib/services/api/doc-api/doc-api.service.d.ts +35 -0
- package/lib/services/api/public-api/public-api.service.d.ts +14 -0
- package/lib/services/chart/chart.service.d.ts +21 -0
- package/lib/services/check-if/check-if.service.d.ts +50 -0
- package/lib/services/common-utils/common-function.service.d.ts +84 -0
- package/lib/services/common-utils/core-function/core-function.service.d.ts +21 -0
- package/lib/services/customvalidation/customvalidation.service.d.ts +21 -0
- package/lib/services/data-share/auth-data-share/auth-data-share.service.d.ts +33 -0
- package/lib/services/data-share/common-app-data-share/common-app-data-share.service.d.ts +36 -0
- package/lib/services/data-share/data-share.service.d.ts +174 -0
- package/lib/services/data-share/doc-data-share/doc-data-share.service.d.ts +33 -0
- package/lib/services/data-share/public-data-share/public-data-share.service.d.ts +12 -0
- package/lib/services/download/download.service.d.ts +35 -0
- package/lib/services/encryption/encryption.service.d.ts +8 -0
- package/lib/services/env/env.service.d.ts +44 -0
- package/lib/services/env/serverHostList.d.ts +9 -0
- package/lib/services/fileHandler/file-handler.service.d.ts +17 -0
- package/lib/services/form/form-control/form-control.service.d.ts +44 -0
- package/lib/services/form/form-creation/form-creation.service.d.ts +41 -0
- package/lib/services/form/form-value/form-value.service.d.ts +32 -0
- package/lib/services/form/multiple-form/multiple-form.service.d.ts +54 -0
- package/lib/services/grid/grid-common-function/grid-common-function.service.d.ts +74 -0
- package/lib/services/grid/grid-selection/grid-selection.service.d.ts +16 -0
- package/lib/services/lims-calculations/lims-calculations.service.d.ts +87 -0
- package/lib/services/loader/loader.service.d.ts +8 -0
- package/lib/services/menu-or-module-common/menu-or-module-common.service.d.ts +59 -0
- package/lib/services/model/model.service.d.ts +11 -0
- package/lib/services/notify/notification.service.d.ts +22 -0
- package/lib/services/operator/operator.service.d.ts +27 -0
- package/lib/services/permission/permission.service.d.ts +18 -0
- package/lib/services/router/router.service.d.ts +14 -0
- package/lib/services/storage/cookies.service.d.ts +11 -0
- package/lib/services/storage/storage.service.d.ts +132 -0
- package/lib/services/tree-component/interface.d.ts +13 -0
- package/lib/services/tree-component/tree-component.service.d.ts +38 -0
- package/lib/services/userPrefrence/user-prefrence.service.d.ts +75 -0
- package/lib/services/voice-recognition/voice-recognition.service.d.ts +36 -0
- package/lib/shared/configuration/config.d.ts +144 -0
- package/lib/shared/configuration/editor-config.d.ts +72 -0
- package/lib/shared/enums/common.enum.d.ts +16 -0
- package/lib/shared/enums/config.enum.d.ts +54 -0
- package/lib/shared/enums/end-point.enum.d.ts +66 -0
- package/lib/shared/enums/flags.enum.d.ts +18 -0
- package/lib/shared/enums/keycodes.enum.d.ts +120 -0
- package/lib/shared/enums/operator_type.enum.d.ts +9 -0
- package/lib/shared/enums/storage-token-status.enum.d.ts +8 -0
- package/lib/shared/platform.d.ts +1 -0
- package/package.json +40 -0
- package/public-api.d.ts +49 -0
|
@@ -0,0 +1,174 @@
|
|
|
1
|
+
import { Subject } from 'rxjs';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class DataShareService {
|
|
4
|
+
sharedData: Subject<any>;
|
|
5
|
+
currentPage: Subject<any>;
|
|
6
|
+
currentpage: string;
|
|
7
|
+
serverHostname: Subject<any>;
|
|
8
|
+
serverEndPoint: Subject<any>;
|
|
9
|
+
staticData: Subject<any>;
|
|
10
|
+
setStaticData: {};
|
|
11
|
+
gridCountData: Subject<any>;
|
|
12
|
+
setGridCountData: {};
|
|
13
|
+
gridData: Subject<any>;
|
|
14
|
+
menu: Subject<any>;
|
|
15
|
+
tempData: Subject<any>;
|
|
16
|
+
tempStoreData: any;
|
|
17
|
+
saveFromDataRsponce: string;
|
|
18
|
+
deleteGridRowDataRsponce: string;
|
|
19
|
+
saveResponceData: Subject<any>;
|
|
20
|
+
deleteGridRowResponceData: Subject<any>;
|
|
21
|
+
gridFilterData: Subject<any>;
|
|
22
|
+
typeAheadData: Subject<any>;
|
|
23
|
+
form: Subject<any>;
|
|
24
|
+
dinamicForm: {};
|
|
25
|
+
docData: Subject<any>;
|
|
26
|
+
nestedForm: Subject<any>;
|
|
27
|
+
hostData: Subject<any>;
|
|
28
|
+
dashletData: Subject<any>;
|
|
29
|
+
DashLetData: any;
|
|
30
|
+
appName: Subject<any>;
|
|
31
|
+
navigationData: Subject<any>;
|
|
32
|
+
permissionData: Subject<any>;
|
|
33
|
+
quoteData: Subject<any>;
|
|
34
|
+
departmentData: Subject<any>;
|
|
35
|
+
categoryData: Subject<any>;
|
|
36
|
+
productData: Subject<any>;
|
|
37
|
+
testParameters: Subject<any>;
|
|
38
|
+
exportExcelLink: Subject<any>;
|
|
39
|
+
exportCVSLink: Subject<any>;
|
|
40
|
+
getProductList: Subject<any>;
|
|
41
|
+
previewHtml: Subject<any>;
|
|
42
|
+
updateProductBranch: Subject<any>;
|
|
43
|
+
getJobSchedulesData: Subject<any>;
|
|
44
|
+
downloadPdfData: Subject<any>;
|
|
45
|
+
getfileData: Subject<any>;
|
|
46
|
+
fileDownloadUrl: Subject<any>;
|
|
47
|
+
chartData: Subject<any>;
|
|
48
|
+
applicationSetting: Subject<any>;
|
|
49
|
+
themeSetting: Subject<any>;
|
|
50
|
+
fieldDinamicResponce: Subject<any>;
|
|
51
|
+
checkValidation: Subject<any>;
|
|
52
|
+
dashletMaster: Subject<any>;
|
|
53
|
+
DashletMaster: any;
|
|
54
|
+
gitVirsion: Subject<any>;
|
|
55
|
+
nextFormData: Subject<any>;
|
|
56
|
+
getReportLoadData: Subject<any>;
|
|
57
|
+
getIsGridSelectionOpen: Subject<any>;
|
|
58
|
+
chartModelShowHide: Subject<any>;
|
|
59
|
+
auditHistoryList: Subject<any>;
|
|
60
|
+
auditVersionList: Subject<any>;
|
|
61
|
+
applicationSettings: Subject<any>;
|
|
62
|
+
userNotification: Subject<any>;
|
|
63
|
+
userNotificationSetting: Subject<any>;
|
|
64
|
+
userPreference: Subject<any>;
|
|
65
|
+
moduleIndex: Subject<any>;
|
|
66
|
+
menuIndexs: Subject<any>;
|
|
67
|
+
pModuleIndex: any;
|
|
68
|
+
menuOrSubmenuIndex: any;
|
|
69
|
+
headerMenu: Subject<any>;
|
|
70
|
+
requestResponce: Subject<boolean>;
|
|
71
|
+
mongoDbChartList: Subject<any>;
|
|
72
|
+
MongoDbChartList: any;
|
|
73
|
+
mongoDashbordList: Subject<any>;
|
|
74
|
+
pdfFileName: Subject<string>;
|
|
75
|
+
S3Url: Subject<string>;
|
|
76
|
+
printData: Subject<any>;
|
|
77
|
+
setClientName: Subject<any>;
|
|
78
|
+
gridRunningData: Subject<any>;
|
|
79
|
+
collectiondata: Subject<any>;
|
|
80
|
+
childGrid: Subject<any>;
|
|
81
|
+
childgridfields: any;
|
|
82
|
+
roleChange: Subject<any>;
|
|
83
|
+
dashbordSerchKey: Subject<any>;
|
|
84
|
+
addAndUpdateResponce: Subject<any>;
|
|
85
|
+
private selectedRowIndexSource;
|
|
86
|
+
selectedRowIndex$: import("rxjs").Observable<number | null>;
|
|
87
|
+
constructor();
|
|
88
|
+
sendCurrentPage(responce: any): void;
|
|
89
|
+
getCurrentPage(): string;
|
|
90
|
+
shareData(responce: any): void;
|
|
91
|
+
shareStaticData(staticData: any, data: any): void;
|
|
92
|
+
getStatiData(): {};
|
|
93
|
+
shareGridCountData(responce: any): void;
|
|
94
|
+
getGridCountData(): {};
|
|
95
|
+
shareGridData(gridData: any): void;
|
|
96
|
+
shareDashletMaster(responce: any): void;
|
|
97
|
+
getDashletMaster(): any;
|
|
98
|
+
shareMongoChart(chartData: any): void;
|
|
99
|
+
getMongoChart(): any;
|
|
100
|
+
shareMongoDashbord(responce: any): void;
|
|
101
|
+
shareMenuData(menuData: any): void;
|
|
102
|
+
shareTempData(tempData: any): void;
|
|
103
|
+
getTempData(): any;
|
|
104
|
+
setSaveResponce(responce: any): void;
|
|
105
|
+
getSaveResponce(): string;
|
|
106
|
+
setDeleteGridRowResponce(responce: any): void;
|
|
107
|
+
getDeleteRowDataResponce(): string;
|
|
108
|
+
setGridFilterData(responce: any): void;
|
|
109
|
+
setTypeAheadData(responce: any): void;
|
|
110
|
+
setForm(form: any): void;
|
|
111
|
+
getDinamicForm(): {};
|
|
112
|
+
setNestedForm(form: any): void;
|
|
113
|
+
setHostData(data: any): void;
|
|
114
|
+
setDashletData(dashletData: any): void;
|
|
115
|
+
getDashletData(): any;
|
|
116
|
+
resetDashletData(): void;
|
|
117
|
+
resetDashletDataByKey(keyName: any): void;
|
|
118
|
+
setAppName(response: any): void;
|
|
119
|
+
setNavigationData(responce: any): void;
|
|
120
|
+
setPermissionData(responce: any): void;
|
|
121
|
+
setQuoteData(responce: any): void;
|
|
122
|
+
setDepartmentData(responce: any): void;
|
|
123
|
+
setCategoryData(responce: any): void;
|
|
124
|
+
setProductData(responce: any): void;
|
|
125
|
+
setTestParameter(responce: any): void;
|
|
126
|
+
setExportExcelLink(responce: any): void;
|
|
127
|
+
setExportCVSLink(responce: any): void;
|
|
128
|
+
setProductList(responce: any): void;
|
|
129
|
+
setPreviewHtml(responce: any): void;
|
|
130
|
+
setUpdateProductBranch(responce: any): void;
|
|
131
|
+
setJobScheduleData(responce: any): void;
|
|
132
|
+
setDownloadPdfData(responce: any): void;
|
|
133
|
+
setFileData(responce: any): void;
|
|
134
|
+
setPrintTemplate(responce: any): void;
|
|
135
|
+
setFileDownloadUrl(responce: any): void;
|
|
136
|
+
setChartData(responce: any): void;
|
|
137
|
+
setThemeSetting(responce: any): void;
|
|
138
|
+
setApplicationSetting(responce: any): void;
|
|
139
|
+
resetThemeSetting(responce: any): void;
|
|
140
|
+
resetApplicationSetting(responce: any): void;
|
|
141
|
+
setFieldDinamicApiResponce(responce: any): void;
|
|
142
|
+
setValidationCondition(responce: any): void;
|
|
143
|
+
setGitVersion(responce: any): void;
|
|
144
|
+
setNextFormData(responce: any): void;
|
|
145
|
+
setReportLoadGridData(responce: any): void;
|
|
146
|
+
setIsGridSelectionOpenOrNot(check: boolean): void;
|
|
147
|
+
setChartModelShowHide(value: any): void;
|
|
148
|
+
setAuditHistoryData(data: any): void;
|
|
149
|
+
setAuditVersionList(data: any): void;
|
|
150
|
+
shareUserNotification(responce: any): void;
|
|
151
|
+
shareUserNotificationSetting(responce: any): void;
|
|
152
|
+
setUserPreference(userPreference: any): void;
|
|
153
|
+
subscribeTemeSetting(responce: any): void;
|
|
154
|
+
setModuleIndex(index: any): void;
|
|
155
|
+
setMenuIndexs(indexs: any): void;
|
|
156
|
+
getProjectModuleIndex(): any;
|
|
157
|
+
getMenuOrSubmenuIndexs(): any;
|
|
158
|
+
setReqResponce(responce: boolean): void;
|
|
159
|
+
resetHeaderMenu(responce: any): void;
|
|
160
|
+
sharePdfFileName(fileName: any): void;
|
|
161
|
+
sharePublicUrlFromS3(url: any): void;
|
|
162
|
+
shareGridRunningData(responce: any): void;
|
|
163
|
+
shareServerHostName(serverHostname: any): void;
|
|
164
|
+
getServerEndPoint(req: boolean): void;
|
|
165
|
+
collectionData(responce: any): void;
|
|
166
|
+
setChildGrid(responce: any): void;
|
|
167
|
+
getChildGrid(): any;
|
|
168
|
+
shareRoleChange(role: any): void;
|
|
169
|
+
shareDashbordSerach(key: string): void;
|
|
170
|
+
shareAddAndUpdateResponce(responce: string): void;
|
|
171
|
+
updateSelectedRowIndex(index: number): void;
|
|
172
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DataShareService, never>;
|
|
173
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DataShareService>;
|
|
174
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { Subject } from 'rxjs';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class DocDataShareService {
|
|
4
|
+
docData: Subject<any>;
|
|
5
|
+
vdrData: Subject<any>;
|
|
6
|
+
moveFolderData: Subject<any>;
|
|
7
|
+
moveFolderChild: Subject<any>;
|
|
8
|
+
uploadResponce: Subject<any>;
|
|
9
|
+
createFolderData: Subject<any>;
|
|
10
|
+
docAudit: Subject<any>;
|
|
11
|
+
docFiledownloadLink: Subject<any>;
|
|
12
|
+
docFileViewLink: Subject<any>;
|
|
13
|
+
docDeleteResponce: Subject<any>;
|
|
14
|
+
docShareResponce: Subject<any>;
|
|
15
|
+
folder: Subject<any>;
|
|
16
|
+
vdrPermission: Subject<any>;
|
|
17
|
+
constructor();
|
|
18
|
+
setDocData(data: object): void;
|
|
19
|
+
setVdrData(vdrData: object): void;
|
|
20
|
+
setMoveFolderData(moveData: object): void;
|
|
21
|
+
setMoveFolderChildData(moveChildData: object): void;
|
|
22
|
+
setDocUploadResponce(responce: object): void;
|
|
23
|
+
setCreateFolder(createFolderData: object): void;
|
|
24
|
+
setDocAudit(data: object): void;
|
|
25
|
+
setDocFileDownloadLink(responce: string): void;
|
|
26
|
+
setDocFileViewLink(responce: object): void;
|
|
27
|
+
setDocDeleteResponce(responce: any): void;
|
|
28
|
+
setDocShareResponce(responce: object): void;
|
|
29
|
+
setFolderData(responce: object): void;
|
|
30
|
+
setVdrPermissionData(vdrData: object): void;
|
|
31
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DocDataShareService, never>;
|
|
32
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DocDataShareService>;
|
|
33
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Subject } from 'rxjs';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class PublicDataShareService {
|
|
4
|
+
saveContactUsData: Subject<any>;
|
|
5
|
+
saveCarrerWithUsData: Subject<any>;
|
|
6
|
+
staticData: Subject<any>;
|
|
7
|
+
constructor();
|
|
8
|
+
setContactUsData(responce: Object): void;
|
|
9
|
+
setCarrerwithUs(responce: Object): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PublicDataShareService, never>;
|
|
11
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PublicDataShareService>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { ApiCallService } from '../api/api-call/api-call.service';
|
|
2
|
+
import { CheckIfService } from '../check-if/check-if.service';
|
|
3
|
+
import { StorageService } from '../storage/storage.service';
|
|
4
|
+
import { PermissionService } from '../permission/permission.service';
|
|
5
|
+
import { ModelService } from '../model/model.service';
|
|
6
|
+
import { ApiService } from '../api/api.service';
|
|
7
|
+
import { NotificationService } from '../notify/notification.service';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export declare class DownloadService {
|
|
10
|
+
private checkIfService;
|
|
11
|
+
private apiCallService;
|
|
12
|
+
private storageService;
|
|
13
|
+
private permissionService;
|
|
14
|
+
private modalService;
|
|
15
|
+
private apiService;
|
|
16
|
+
private notificationService;
|
|
17
|
+
constructor(document: any, checkIfService: CheckIfService, apiCallService: ApiCallService, storageService: StorageService, permissionService: PermissionService, modalService: ModelService, apiService: ApiService, notificationService: NotificationService);
|
|
18
|
+
download(url: any, fileName: any, button?: any): void;
|
|
19
|
+
exportCsv(tempNme: any, headElements: any[], tab: any, currentMenu: any, userInfo: any, filterForm: any): {
|
|
20
|
+
data: {
|
|
21
|
+
refCode: any;
|
|
22
|
+
log: any;
|
|
23
|
+
kvp: any;
|
|
24
|
+
gridData: any[];
|
|
25
|
+
};
|
|
26
|
+
responce: {
|
|
27
|
+
responseType: string;
|
|
28
|
+
};
|
|
29
|
+
path: any;
|
|
30
|
+
};
|
|
31
|
+
exportExcel(total: any, gridColumns: any, gridFilterValue: any, tab: any, menuName: any): string;
|
|
32
|
+
downloadExcelFromLink(exportExcelLink: any, downloadClick: string): string;
|
|
33
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DownloadService, never>;
|
|
34
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DownloadService>;
|
|
35
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class EncryptionService {
|
|
3
|
+
constructor();
|
|
4
|
+
encryptRequest(obj: any): string;
|
|
5
|
+
decryptRequest(obj: any): string;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EncryptionService, never>;
|
|
7
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<EncryptionService>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { Subscription } from 'rxjs';
|
|
2
|
+
import { StorageService } from '../../services/storage/storage.service';
|
|
3
|
+
import { CoreFunctionService } from '../../services/common-utils/core-function/core-function.service';
|
|
4
|
+
import { DataShareService } from '../data-share/data-share.service';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class EnvService {
|
|
7
|
+
private document;
|
|
8
|
+
private storageService;
|
|
9
|
+
private coreFunctionService;
|
|
10
|
+
private dataShareService;
|
|
11
|
+
requestType: any;
|
|
12
|
+
serverHostname: string;
|
|
13
|
+
serverHostnameSubscription: Subscription;
|
|
14
|
+
constructor(document: Document, storageService: StorageService, coreFunctionService: CoreFunctionService, dataShareService: DataShareService);
|
|
15
|
+
getBaseUrl(): any;
|
|
16
|
+
getAppName(): any;
|
|
17
|
+
getAppId(): any;
|
|
18
|
+
baseUrl(applicationAction: string): any;
|
|
19
|
+
publicBaseUrl(applicationAction: string): string;
|
|
20
|
+
otpApi(): string;
|
|
21
|
+
verifyOtpApi(): string;
|
|
22
|
+
getApi(apiName: string): any;
|
|
23
|
+
getAuthApi(apiName: string): any;
|
|
24
|
+
setRequestType(type: any): void;
|
|
25
|
+
getRequestType(): any;
|
|
26
|
+
checkLogedIn(): boolean;
|
|
27
|
+
setDinamicallyHost(): void;
|
|
28
|
+
getHostKeyValue(keyName: string): any;
|
|
29
|
+
getHostName(key: string): any;
|
|
30
|
+
getServerHostname(): string;
|
|
31
|
+
setGoogleLocation(geolocation: any): void;
|
|
32
|
+
setApplicationSetting(): void;
|
|
33
|
+
themeSettingList: {
|
|
34
|
+
propertyName: string;
|
|
35
|
+
key: string;
|
|
36
|
+
default: string;
|
|
37
|
+
}[];
|
|
38
|
+
setThemeSetting(settingObj: any): void;
|
|
39
|
+
checkRedirectionUrl(): string;
|
|
40
|
+
checkClientExistOrNot(data: any): boolean;
|
|
41
|
+
getVerifyType(): any;
|
|
42
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EnvService, never>;
|
|
43
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<EnvService>;
|
|
44
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { CommonFunctionService } from '../common-utils/common-function.service';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class FileHandlerService {
|
|
4
|
+
private commonFunctionService;
|
|
5
|
+
constructor(commonFunctionService: CommonFunctionService);
|
|
6
|
+
modifyUploadFiles(files: any): any;
|
|
7
|
+
modifyFileSetValue(files: any): string;
|
|
8
|
+
getFileTooltipMsg(fileList: any): string;
|
|
9
|
+
updateFileUploadResponce(curFileUploadFieldparentfield: any, curFileUploadField: any, dataListForUpload: any, templateForm: any, tableFields: any, responceData: any): {
|
|
10
|
+
dataListForUpload: any;
|
|
11
|
+
templateForm: any;
|
|
12
|
+
tableFields: any;
|
|
13
|
+
};
|
|
14
|
+
removeAttachedDataFromList(parent: any, child: any, index: any, dataListForUpload: any): any;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FileHandlerService, never>;
|
|
16
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<FileHandlerService>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { UntypedFormGroup } from '@angular/forms';
|
|
2
|
+
import { CommonFunctionService } from '../../common-utils/common-function.service';
|
|
3
|
+
import { FileHandlerService } from '../../fileHandler/file-handler.service';
|
|
4
|
+
import { GridCommonFunctionService } from '../../grid/grid-common-function/grid-common-function.service';
|
|
5
|
+
import { TreeComponentService } from '../../tree-component/tree-component.service';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class FormControlService {
|
|
8
|
+
private commonFunctionService;
|
|
9
|
+
private fileHandlerService;
|
|
10
|
+
private gridCommonFunctionService;
|
|
11
|
+
private TreeComponentService;
|
|
12
|
+
constructor(commonFunctionService: CommonFunctionService, fileHandlerService: FileHandlerService, gridCommonFunctionService: GridCommonFunctionService, TreeComponentService: TreeComponentService);
|
|
13
|
+
editeListFieldData(templateForm: UntypedFormGroup, custmizedFormValue: any, tableFields: any, field: any, index: any, listOfFieldsUpdateIndex: any, staticData: any, dataListForUpload: any): {
|
|
14
|
+
listOfFieldUpdateMode: boolean;
|
|
15
|
+
listOfFieldsUpdateIndex: any;
|
|
16
|
+
custmizedFormValue: any;
|
|
17
|
+
dataListForUpload: any;
|
|
18
|
+
templateForm: UntypedFormGroup;
|
|
19
|
+
};
|
|
20
|
+
updateDataOnForm(templateForm: UntypedFormGroup, tableFields: any, formValue: any, formFieldButtons: any, custmizedFormValue: any, modifyCustmizedFormValue: any, selectedRow: any, dataListForUpload: any, treeViewData: any, staticData: any, longitude: any, latitude: any, zoom: any): {
|
|
21
|
+
templateForm: UntypedFormGroup;
|
|
22
|
+
custmizedFormValue: any;
|
|
23
|
+
modifyCustmizedFormValue: any;
|
|
24
|
+
tableFields: any;
|
|
25
|
+
dataListForUpload: any;
|
|
26
|
+
selectedRow: any;
|
|
27
|
+
treeViewData: any;
|
|
28
|
+
staticData: any;
|
|
29
|
+
longitude: any;
|
|
30
|
+
latitude: any;
|
|
31
|
+
zoom: any;
|
|
32
|
+
getAddress: boolean;
|
|
33
|
+
};
|
|
34
|
+
updateFormValue(element: any, formValue: any, responce: any): void;
|
|
35
|
+
setCheckboxFileListValue(checkBoxFieldListValue: any, templateForm: UntypedFormGroup, staticData: any, selectedRow: any, updateMode: boolean): UntypedFormGroup;
|
|
36
|
+
updateCustomizedValue(custmizedFormValue: any, index: number, value: any): {
|
|
37
|
+
custmizedFormValue: any;
|
|
38
|
+
};
|
|
39
|
+
editListOfString(parentfield: any, field: any, index: number, custmizedFormValue: any, templateForm: UntypedFormGroup): {
|
|
40
|
+
templateForm: UntypedFormGroup;
|
|
41
|
+
};
|
|
42
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FormControlService, never>;
|
|
43
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<FormControlService>;
|
|
44
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { ApiCallService } from './../../api/api-call/api-call.service';
|
|
2
|
+
import { CommonFunctionService } from '../../common-utils/common-function.service';
|
|
3
|
+
import { EnvService } from '../../env/env.service';
|
|
4
|
+
import { UntypedFormBuilder, UntypedFormGroup } from '@angular/forms';
|
|
5
|
+
import { StorageService } from '../../storage/storage.service';
|
|
6
|
+
import { CustomvalidationService } from '../../customvalidation/customvalidation.service';
|
|
7
|
+
import { CheckIfService } from '../../check-if/check-if.service';
|
|
8
|
+
import { ModelService } from '../../model/model.service';
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
10
|
+
export declare class FormCreationService {
|
|
11
|
+
private commonFunctionService;
|
|
12
|
+
private envService;
|
|
13
|
+
private storageService;
|
|
14
|
+
private formBuilder;
|
|
15
|
+
private customvalidationService;
|
|
16
|
+
private apiCallService;
|
|
17
|
+
private checkifService;
|
|
18
|
+
private modalService;
|
|
19
|
+
minDate: Date;
|
|
20
|
+
maxDate: Date;
|
|
21
|
+
constructor(commonFunctionService: CommonFunctionService, envService: EnvService, storageService: StorageService, formBuilder: UntypedFormBuilder, customvalidationService: CustomvalidationService, apiCallService: ApiCallService, checkifService: CheckIfService, modalService: ModelService);
|
|
22
|
+
getTempData(tempData: any, tabIndex: any, currentMenu: any, formName: any, dinamic_form: any): any;
|
|
23
|
+
checkFormDetails(form: any, tab: any, currentMenu: any): any;
|
|
24
|
+
createFormControl(forControl: any, field: any, object: any, type: string): void;
|
|
25
|
+
validator(field: any): import("@angular/forms").ValidatorFn[];
|
|
26
|
+
setNewForm(tableFields: any, formFieldButtons: any, form: any, elements: any, selectedRowIndex: number): any;
|
|
27
|
+
checkFieldButtonCondition(tableFields: any): any;
|
|
28
|
+
updateSelectContact(selectContact: any, tabFilterData: any, tableFields: any, templateForm: UntypedFormGroup, formValueWithCustomData: any, staticModal: any): any;
|
|
29
|
+
checkGridSelectionButtonCondition(field: any, button: any, selectedRow: any, formValue: any): any;
|
|
30
|
+
setDefaultDate(element: any): any;
|
|
31
|
+
getFocusField(previousFormFocusField: any, tableFields: any, templateForm: UntypedFormGroup, focusFieldParent: any, checkFormFieldAutfocus: any): any;
|
|
32
|
+
focusField(parent: any, key: any, templateForm: UntypedFormGroup, focusFieldParent: any, checkFormFieldAutfocus: any, previousFormFocusField: any, responce: any): any;
|
|
33
|
+
getDonotResetFields(tableFields: any, donotResetFieldLists: any, FormValue: any): any;
|
|
34
|
+
addNewForm(selectTabIndex: number, isBulkUpdate: boolean, bulkuploadList: any, selectedRowIndex: number, formName: string, selectContactAdd: any): void;
|
|
35
|
+
getFieldsFromForms(tab: any, formName: string, dinamic_form: any, gridButtons: any, tableFields: any, actionButtons: any): {
|
|
36
|
+
fields: any;
|
|
37
|
+
buttons: any;
|
|
38
|
+
};
|
|
39
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FormCreationService, never>;
|
|
40
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<FormCreationService>;
|
|
41
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { CheckIfService } from './../../check-if/check-if.service';
|
|
2
|
+
import { DatePipe } from '@angular/common';
|
|
3
|
+
import { FileHandlerService } from '../../fileHandler/file-handler.service';
|
|
4
|
+
import { PermissionService } from '../../permission/permission.service';
|
|
5
|
+
import { EnvService } from '../../env/env.service';
|
|
6
|
+
import { CommonFunctionService } from '../../common-utils/common-function.service';
|
|
7
|
+
import { StorageService } from '../../storage/storage.service';
|
|
8
|
+
import { GridCommonFunctionService } from '../../grid/grid-common-function/grid-common-function.service';
|
|
9
|
+
import { MenuOrModuleCommonService } from '../../menu-or-module-common/menu-or-module-common.service';
|
|
10
|
+
import * as i0 from "@angular/core";
|
|
11
|
+
export declare class FormValueService {
|
|
12
|
+
private datePipe;
|
|
13
|
+
private fileHandlerService;
|
|
14
|
+
private permissionService;
|
|
15
|
+
private envService;
|
|
16
|
+
private commonFunctionService;
|
|
17
|
+
private gridCommonFunctionService;
|
|
18
|
+
private menuOrModuleCommonService;
|
|
19
|
+
private storageService;
|
|
20
|
+
private checkIfService;
|
|
21
|
+
constructor(datePipe: DatePipe, fileHandlerService: FileHandlerService, permissionService: PermissionService, envService: EnvService, commonFunctionService: CommonFunctionService, gridCommonFunctionService: GridCommonFunctionService, menuOrModuleCommonService: MenuOrModuleCommonService, storageService: StorageService, checkIfService: CheckIfService);
|
|
22
|
+
getFormValue(check: boolean, formValue: any, selectedRowData: any, updateMode: boolean, complete_object_payload_mode: boolean, tableFields: any, latitude: any, longitude: any, address: any, custmizedFormValue: any, checkBoxFieldListValue: any, staticData: any, dataListForUpload: any, selectContact: any, tabFilterData: any, params: any, getLocation: any, center: any): any;
|
|
23
|
+
getSavePayloadData(currentMenu: any, updateMode: any, deleteGridRowData: any, tableFields: any, dataValue: any, formValueWithCustomData: any, gridSelectionMendetoryList: any, selectedRow: any, custmizedFormValue: any, dataSaveInProgress: any, showNotify: any, formName: any, formValid: boolean): any;
|
|
24
|
+
addDefaultFieldInData(data: any): void;
|
|
25
|
+
getSavePayload(name: string, data: any): {
|
|
26
|
+
curTemp: string;
|
|
27
|
+
data: any;
|
|
28
|
+
};
|
|
29
|
+
transformArrayToObject(allModuleList: any): any;
|
|
30
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FormValueService, never>;
|
|
31
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<FormValueService>;
|
|
32
|
+
}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import { ApiCallService } from './../../api/api-call/api-call.service';
|
|
2
|
+
import { GridCommonFunctionService } from './../../grid/grid-common-function/grid-common-function.service';
|
|
3
|
+
import { ApiService } from './../../api/api.service';
|
|
4
|
+
import { CommonFunctionService } from '../../common-utils/common-function.service';
|
|
5
|
+
import { CoreFunctionService } from '../../common-utils/core-function/core-function.service';
|
|
6
|
+
import { CheckIfService } from '../../check-if/check-if.service';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class MultipleFormService {
|
|
9
|
+
private commonFunctionService;
|
|
10
|
+
private coreFunctionService;
|
|
11
|
+
private apiService;
|
|
12
|
+
private checkIfService;
|
|
13
|
+
private gridCommonFunctionService;
|
|
14
|
+
private apiCallService;
|
|
15
|
+
constructor(commonFunctionService: CommonFunctionService, coreFunctionService: CoreFunctionService, apiService: ApiService, checkIfService: CheckIfService, gridCommonFunctionService: GridCommonFunctionService, apiCallService: ApiCallService);
|
|
16
|
+
setPreviousFormTargetFieldData(multipleFormCollection: any, formValueWithCust: any): any;
|
|
17
|
+
getNextFormObject(nextFormData: any, next: any): {
|
|
18
|
+
add_new_form: any;
|
|
19
|
+
add_next_form_button: any;
|
|
20
|
+
field_name: any;
|
|
21
|
+
type: string;
|
|
22
|
+
form_field_name: any;
|
|
23
|
+
form_value_index: number;
|
|
24
|
+
moveFieldsToNewForm: string[];
|
|
25
|
+
};
|
|
26
|
+
getNextFormData(formData: any, listOfFieldsUpdateIndex: any): {
|
|
27
|
+
updateAddNew: boolean;
|
|
28
|
+
payload: {};
|
|
29
|
+
};
|
|
30
|
+
storeFormDetails(parent_field: any, field: any, formValue: any, formValueWithCustomData: any, updateMode: boolean, nextFormData: any, lastTypeaheadTypeValue: any, multipleFormCollection: any, currentMenu: any, pForm: any, listOfFieldUpdateMode: any, listOfFieldsUpdateIndex: any, addNewRecord: any, enableNextButton: any, index?: number): {
|
|
31
|
+
multipleFormCollection: any;
|
|
32
|
+
form: {};
|
|
33
|
+
id: string;
|
|
34
|
+
addNewRecord: any;
|
|
35
|
+
criteria: string[];
|
|
36
|
+
params: string;
|
|
37
|
+
};
|
|
38
|
+
getDataForNextForm(reqParams: string, reqCriteria: any): void;
|
|
39
|
+
getNextFormById(id: string): void;
|
|
40
|
+
updateNextFormData(multipleFormCollection: any, nextFormUpdateMode: boolean, form: any, custmizedFormValue: any, editedRowIndex: any, previousFormFocusField: any, tableFields: any): {
|
|
41
|
+
nextFormData: {};
|
|
42
|
+
cdata: {};
|
|
43
|
+
fData: {};
|
|
44
|
+
nextFormUpdateMode: boolean;
|
|
45
|
+
custmizedFormValue: any;
|
|
46
|
+
fieldName: string;
|
|
47
|
+
previousFormFocusField: any;
|
|
48
|
+
editFunction: boolean;
|
|
49
|
+
updateFormFunction: boolean;
|
|
50
|
+
getStaticData: boolean;
|
|
51
|
+
};
|
|
52
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MultipleFormService, never>;
|
|
53
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<MultipleFormService>;
|
|
54
|
+
}
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
import { CoreFunctionService } from '../../common-utils/core-function/core-function.service';
|
|
2
|
+
import { CommonFunctionService } from '../../common-utils/common-function.service';
|
|
3
|
+
import { FileHandlerService } from '../../fileHandler/file-handler.service';
|
|
4
|
+
import { CheckIfService } from '../../check-if/check-if.service';
|
|
5
|
+
import { StorageService } from '../../storage/storage.service';
|
|
6
|
+
import { DatePipe, CurrencyPipe } from '@angular/common';
|
|
7
|
+
import { DataShareService } from '../../data-share/data-share.service';
|
|
8
|
+
import { ApiCallService } from '../../api/api-call/api-call.service';
|
|
9
|
+
import { ApiService } from '../../api/api.service';
|
|
10
|
+
import * as i0 from "@angular/core";
|
|
11
|
+
export declare class GridCommonFunctionService {
|
|
12
|
+
private CommonFunctionService;
|
|
13
|
+
private coreFunctionService;
|
|
14
|
+
private fileHandlerService;
|
|
15
|
+
private checkIfService;
|
|
16
|
+
private storageService;
|
|
17
|
+
private datePipe;
|
|
18
|
+
private CurrencyPipe;
|
|
19
|
+
private dataShareService;
|
|
20
|
+
private apiCallService;
|
|
21
|
+
private apiService;
|
|
22
|
+
constructor(CommonFunctionService: CommonFunctionService, coreFunctionService: CoreFunctionService, fileHandlerService: FileHandlerService, checkIfService: CheckIfService, storageService: StorageService, datePipe: DatePipe, CurrencyPipe: CurrencyPipe, dataShareService: DataShareService, apiCallService: ApiCallService, apiService: ApiService);
|
|
23
|
+
modifyGridData(gridData: any, gridColumns: any, field: any, editableGridColumns: any, typographyCrList: any): any[];
|
|
24
|
+
rowModify(row: any, field: any, gridColumns: any, editableGridColumns: any, typographyCrList: any): any;
|
|
25
|
+
getListByKeyValueToList(list: any, key: string, value: any): any[];
|
|
26
|
+
modifyGridColumns(gridColumns: any, parentObject: any): any;
|
|
27
|
+
getGridColumnWidth(column: any, listOfGridFieldName: any): any;
|
|
28
|
+
updateGridDataToModifiedData(grid_row_selection: any, gridData: any, modifiedGridData: any, listOfGridFieldName: any): any;
|
|
29
|
+
applyOnGridFilter(field: any): boolean;
|
|
30
|
+
applyOnGridFilterLabel(field: any): any;
|
|
31
|
+
modifyTableFields(tablefields: any): void;
|
|
32
|
+
gridDataModify(modifyData: any, data: any, fields: any, field_name: any, key: any, object: any): {
|
|
33
|
+
modifyData: any;
|
|
34
|
+
fields: any;
|
|
35
|
+
field_index: number;
|
|
36
|
+
};
|
|
37
|
+
modifyListofFieldsData(parentField: any, data: any, fields: any): any;
|
|
38
|
+
getModifyListOfFieldsObject(parentField: any, object: any, fields: any): any;
|
|
39
|
+
showListFieldValue(listOfField: any, item: any): any;
|
|
40
|
+
checkRowDisabledIf(field: any, data: any): boolean;
|
|
41
|
+
checkTypgraphCondition(typographyCrList: any, object: any, name: any): string;
|
|
42
|
+
modifiedGridColumns(gridColumns: any, selectedRow: any, formValue: any): any;
|
|
43
|
+
checkGridSelectionMendetory(gridSelectionMendetoryList: any, selectedRow: any, formValue: any, custmizedFormValue: any): {
|
|
44
|
+
status: boolean;
|
|
45
|
+
msg: string;
|
|
46
|
+
};
|
|
47
|
+
getGridSelectedData(data: any, field: any): any;
|
|
48
|
+
getModifiedGridColumns(gridColumns: any, object: any): any;
|
|
49
|
+
isDate(date: any): boolean;
|
|
50
|
+
getValueForGrid(field: any, object: any): any;
|
|
51
|
+
getValueForGridTooltip(field: any, object: any): string | null;
|
|
52
|
+
getNoOfItems(grid: any, defaultNoOfItem: any): any;
|
|
53
|
+
setOldTabCount(tab: any): void;
|
|
54
|
+
compareAuditHistoryData(formFieldsData: any, currentObjectData: any, previousObjectData: any): void;
|
|
55
|
+
copmareListOfFields(fields: any, currentObjectData: any, previousObjectData: any): void;
|
|
56
|
+
getPage(page: number, selectContact: any, tabFilterData: any, tab: any, currentMenu: any, headElements: any, filterFormValue: any, sortingColumnName: string, recordId: any, rowId: any, queryParams: any, itemNumOfGrid: any, gridDisable: any, modifyGridData: any, elements: any): {
|
|
57
|
+
pageNumber: number;
|
|
58
|
+
modifyGridData: any;
|
|
59
|
+
elements: any;
|
|
60
|
+
};
|
|
61
|
+
onSort(columnObject: any, filterFormValue: any, gridDisable: boolean, tab: any, sortingColumnName: any, sortIcon: any, orderBy: any, headElements: any, currentMenu: any, pageNumber: number): {
|
|
62
|
+
sortingColumnName: any;
|
|
63
|
+
sortIcon: any;
|
|
64
|
+
orderBy: any;
|
|
65
|
+
};
|
|
66
|
+
applyFilter(modifyGridData: any, elements: any, tab: any, currentMenu: any, headElements: any, filterValue: any, selectContact: any, itemNumOfGrid: any, gridDisable: boolean, sortingColumnName: any): {
|
|
67
|
+
modifyGridData: any;
|
|
68
|
+
elements: any;
|
|
69
|
+
pageNumber: number;
|
|
70
|
+
};
|
|
71
|
+
getGridPayloadData(pagePayload: any, value: any, gridDisable: boolean, tab: any, responce: any): void;
|
|
72
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GridCommonFunctionService, never>;
|
|
73
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<GridCommonFunctionService>;
|
|
74
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class GridSelectionService {
|
|
3
|
+
constructor();
|
|
4
|
+
toggle(index: any, checked: any, field: any, staticData: any, custmizedFormValue: any): {
|
|
5
|
+
staticData: any;
|
|
6
|
+
custmizedFormValue: any;
|
|
7
|
+
};
|
|
8
|
+
isIndeterminate(ddn_field: any, staticData: any): boolean;
|
|
9
|
+
isChecked(ddn_field: any, staticData: any): boolean;
|
|
10
|
+
toggleAll(checked: any, field: any, staticData: any, custmizedFormValue: any): {
|
|
11
|
+
staticData: any;
|
|
12
|
+
custmizedFormValue: any;
|
|
13
|
+
};
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GridSelectionService, never>;
|
|
15
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<GridSelectionService>;
|
|
16
|
+
}
|