common-header-lib 0.0.1
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/assets/.gitkeep +0 -0
- package/assets/i18n/ar.json +83 -0
- package/assets/i18n/de.json +83 -0
- package/assets/i18n/en.json +83 -0
- package/assets/i18n/es.json +83 -0
- package/assets/i18n/fr.json +83 -0
- package/assets/i18n/hi.json +83 -0
- package/assets/i18n/ja.json +83 -0
- package/assets/i18n/ko.json +83 -0
- package/assets/images/APP019.svg +6 -0
- package/assets/images/APP020.svg +4 -0
- package/assets/images/APP021.svg +6 -0
- package/assets/images/APP022.svg +6 -0
- package/assets/images/APP023.svg +11 -0
- package/assets/images/APP024.svg +9 -0
- package/assets/images/APP025.svg +8 -0
- package/assets/images/APP026.svg +4 -0
- package/assets/images/APP027.svg +5 -0
- package/assets/images/APP028.svg +6 -0
- package/assets/images/APP029.svg +12 -0
- package/assets/images/APP030.svg +20 -0
- package/assets/images/APP031.svg +14 -0
- package/assets/images/APP032.svg +17 -0
- package/assets/images/Frame.svg +104 -0
- package/assets/images/apps-1.svg +22 -0
- package/assets/images/bell-icon.svg +3 -0
- package/assets/images/check_circle.svg +3 -0
- package/assets/images/close copy.svg +5 -0
- package/assets/images/close.svg +5 -0
- package/assets/images/copy-img.svg +3 -0
- package/assets/images/cross-search.svg +4 -0
- package/assets/images/domain_img.svg +3 -0
- package/assets/images/east.svg +3 -0
- package/assets/images/error.svg +3 -0
- package/assets/images/filepath.svg +8 -0
- package/assets/images/flag1.svg +3 -0
- package/assets/images/gc-mail.svg +3 -0
- package/assets/images/grey-arrow.svg +3 -0
- package/assets/images/info.svg +3 -0
- package/assets/images/local.svg +3 -0
- package/assets/images/lock-pass.svg +3 -0
- package/assets/images/lock1.svg +3 -0
- package/assets/images/login-bg/default_bg.svg +448 -0
- package/assets/images/login-bg/visibility.svg +3 -0
- package/assets/images/login-bg/visibility_off.svg +3 -0
- package/assets/images/logo.png +0 -0
- package/assets/images/logout.svg +3 -0
- package/assets/images/mail-icon.svg +3 -0
- package/assets/images/marker-pin.svg +4 -0
- package/assets/images/noti_ticket.svg +3 -0
- package/assets/images/pass-img.svg +3 -0
- package/assets/images/refresh-1.svg +3 -0
- package/assets/images/schedule.svg +1 -0
- package/assets/images/search-filter.svg +3 -0
- package/assets/images/search-icon.svg +3 -0
- package/assets/images/settings.svg +3 -0
- package/assets/images/successful.svg +10 -0
- package/assets/images/user-name.svg +3 -0
- package/assets/scss/_sidebar.scss +267 -0
- package/assets/scss/styles.scss +577 -0
- package/esm2020/common-header-lib.mjs +5 -0
- package/esm2020/lib/Validators/noSpaceAllowed.mjs +16 -0
- package/esm2020/lib/common-header-lib.component.mjs +612 -0
- package/esm2020/lib/common-header-lib.module.mjs +208 -0
- package/esm2020/lib/common-header-lib.service.mjs +200 -0
- package/esm2020/lib/components/confirm-dialog/confirm-dialog.component.mjs +49 -0
- package/esm2020/lib/components/general-configuration/general-configuration.component.mjs +402 -0
- package/esm2020/lib/components/general-configuration/landingpg-config/landingpg-config.component.mjs +124 -0
- package/esm2020/lib/components/general-configuration/timezone-configuration/timezone-configuration.component.mjs +138 -0
- package/esm2020/lib/components/grid-pagination/grid-pagination.component.mjs +39 -0
- package/esm2020/lib/components/ng-translation/ng-translation.component.mjs +65 -0
- package/esm2020/lib/components/no-service-my-access-pg/no-service-my-access-pg.component.mjs +19 -0
- package/esm2020/lib/components/notification-sidebar/notification-sidebar.component.mjs +40 -0
- package/esm2020/lib/components/side-popup/side-popup.component.mjs +34 -0
- package/esm2020/lib/components/user-mailbox/user-mailbox.component.mjs +173 -0
- package/esm2020/lib/components/user-sidebar/user-sidebar.component.mjs +279 -0
- package/esm2020/lib/components/viewpassword-popup/viewpassword-popup.component.mjs +196 -0
- package/esm2020/lib/model/data_model.mjs +217 -0
- package/esm2020/lib/pipes/custome-dateformat.pipe.mjs +27 -0
- package/esm2020/lib/pipes/date-diff.pipe.mjs +56 -0
- package/esm2020/lib/pipes/slice-to-two.pipe.mjs +34 -0
- package/esm2020/lib/services/EncrypDecryp_RSA.service.mjs +100 -0
- package/esm2020/lib/services/async-passwordcheck.service.mjs +72 -0
- package/esm2020/lib/services/cookie-storage-manager.service.mjs +78 -0
- package/esm2020/lib/services/encrpdata.service.mjs +55 -0
- package/esm2020/lib/services/encrydecrydata.service.mjs +207 -0
- package/esm2020/lib/services/event.service.mjs +133 -0
- package/esm2020/lib/services/http/http-common.service.mjs +216 -0
- package/esm2020/lib/services/http/http-general-config.service.mjs +84 -0
- package/esm2020/lib/services/rest-login-form.service.mjs +296 -0
- package/esm2020/lib/services/rest-signalr.service.mjs +100 -0
- package/esm2020/lib/services/storage.service.mjs +33 -0
- package/esm2020/lib/services/toast-msg.service.mjs +95 -0
- package/esm2020/lib/services/vapt-validation.service.mjs +31 -0
- package/esm2020/public-api.mjs +13 -0
- package/fesm2015/common-header-lib.mjs +4165 -0
- package/fesm2015/common-header-lib.mjs.map +1 -0
- package/fesm2020/common-header-lib.mjs +4146 -0
- package/fesm2020/common-header-lib.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/Validators/noSpaceAllowed.d.ts +2 -0
- package/lib/common-header-lib.component.d.ts +148 -0
- package/lib/common-header-lib.module.d.ts +43 -0
- package/lib/common-header-lib.service.d.ts +25 -0
- package/lib/components/confirm-dialog/confirm-dialog.component.d.ts +13 -0
- package/lib/components/general-configuration/general-configuration.component.d.ts +86 -0
- package/lib/components/general-configuration/landingpg-config/landingpg-config.component.d.ts +37 -0
- package/lib/components/general-configuration/timezone-configuration/timezone-configuration.component.d.ts +38 -0
- package/lib/components/grid-pagination/grid-pagination.component.d.ts +20 -0
- package/lib/components/ng-translation/ng-translation.component.d.ts +22 -0
- package/lib/components/no-service-my-access-pg/no-service-my-access-pg.component.d.ts +8 -0
- package/lib/components/notification-sidebar/notification-sidebar.component.d.ts +16 -0
- package/lib/components/side-popup/side-popup.component.d.ts +14 -0
- package/lib/components/user-mailbox/user-mailbox.component.d.ts +40 -0
- package/lib/components/user-sidebar/user-sidebar.component.d.ts +61 -0
- package/lib/components/viewpassword-popup/viewpassword-popup.component.d.ts +47 -0
- package/lib/model/data_model.d.ts +184 -0
- package/lib/pipes/custome-dateformat.pipe.d.ts +8 -0
- package/lib/pipes/date-diff.pipe.d.ts +9 -0
- package/lib/pipes/slice-to-two.pipe.d.ts +7 -0
- package/lib/services/EncrypDecryp_RSA.service.d.ts +15 -0
- package/lib/services/async-passwordcheck.service.d.ts +18 -0
- package/lib/services/cookie-storage-manager.service.d.ts +16 -0
- package/lib/services/encrpdata.service.d.ts +12 -0
- package/lib/services/encrydecrydata.service.d.ts +33 -0
- package/lib/services/event.service.d.ts +30 -0
- package/lib/services/http/http-common.service.d.ts +30 -0
- package/lib/services/http/http-general-config.service.d.ts +15 -0
- package/lib/services/rest-login-form.service.d.ts +39 -0
- package/lib/services/rest-signalr.service.d.ts +23 -0
- package/lib/services/storage.service.d.ts +11 -0
- package/lib/services/toast-msg.service.d.ts +21 -0
- package/lib/services/vapt-validation.service.d.ts +7 -0
- package/package.json +49 -0
- package/public-api.d.ts +8 -0
- package/src/assets/i18n/ar.json +83 -0
- package/src/assets/i18n/de.json +83 -0
- package/src/assets/i18n/en.json +83 -0
- package/src/assets/i18n/es.json +83 -0
- package/src/assets/i18n/fr.json +83 -0
- package/src/assets/i18n/hi.json +83 -0
- package/src/assets/i18n/ja.json +83 -0
- package/src/assets/i18n/ko.json +83 -0
- package/src/assets/images/APP019.svg +6 -0
- package/src/assets/images/APP020.svg +4 -0
- package/src/assets/images/APP021.svg +6 -0
- package/src/assets/images/APP022.svg +6 -0
- package/src/assets/images/APP023.svg +11 -0
- package/src/assets/images/APP024.svg +9 -0
- package/src/assets/images/APP025.svg +8 -0
- package/src/assets/images/APP026.svg +4 -0
- package/src/assets/images/APP027.svg +5 -0
- package/src/assets/images/APP028.svg +6 -0
- package/src/assets/images/APP029.svg +12 -0
- package/src/assets/images/APP030.svg +20 -0
- package/src/assets/images/APP031.svg +14 -0
- package/src/assets/images/APP032.svg +17 -0
- package/src/assets/images/Frame.svg +104 -0
- package/src/assets/images/apps-1.svg +22 -0
- package/src/assets/images/bell-icon.svg +3 -0
- package/src/assets/images/check_circle.svg +3 -0
- package/src/assets/images/close copy.svg +5 -0
- package/src/assets/images/close.svg +5 -0
- package/src/assets/images/copy-img.svg +3 -0
- package/src/assets/images/cross-search.svg +4 -0
- package/src/assets/images/domain_img.svg +3 -0
- package/src/assets/images/east.svg +3 -0
- package/src/assets/images/error.svg +3 -0
- package/src/assets/images/filepath.svg +8 -0
- package/src/assets/images/flag1.svg +3 -0
- package/src/assets/images/gc-mail.svg +3 -0
- package/src/assets/images/grey-arrow.svg +3 -0
- package/src/assets/images/info.svg +3 -0
- package/src/assets/images/local.svg +3 -0
- package/src/assets/images/lock-pass.svg +3 -0
- package/src/assets/images/lock1.svg +3 -0
- package/src/assets/images/login-bg/default_bg.svg +448 -0
- package/src/assets/images/login-bg/visibility.svg +3 -0
- package/src/assets/images/login-bg/visibility_off.svg +3 -0
- package/src/assets/images/logo.png +0 -0
- package/src/assets/images/logout.svg +3 -0
- package/src/assets/images/mail-icon.svg +3 -0
- package/src/assets/images/marker-pin.svg +4 -0
- package/src/assets/images/noti_ticket.svg +3 -0
- package/src/assets/images/pass-img.svg +3 -0
- package/src/assets/images/refresh-1.svg +3 -0
- package/src/assets/images/schedule.svg +1 -0
- package/src/assets/images/search-filter.svg +3 -0
- package/src/assets/images/search-icon.svg +3 -0
- package/src/assets/images/settings.svg +3 -0
- package/src/assets/images/successful.svg +10 -0
- package/src/assets/images/user-name.svg +3 -0
- package/src/assets/scss/_sidebar.scss +267 -0
- package/src/assets/scss/styles.scss +577 -0
|
@@ -0,0 +1,184 @@
|
|
|
1
|
+
export declare class GlobalConstants {
|
|
2
|
+
static readonly loggedInUserName: string;
|
|
3
|
+
static readonly COOKIEDELETEVENT: string;
|
|
4
|
+
static readonly ALLCOOKIEDELET: string;
|
|
5
|
+
static token: string;
|
|
6
|
+
static TimeForEncToken: number;
|
|
7
|
+
static ErrorCode: string;
|
|
8
|
+
static AgGridPaginationSize: number;
|
|
9
|
+
static Version: string;
|
|
10
|
+
static reconcileServiceLimit: number;
|
|
11
|
+
static baseURL: string;
|
|
12
|
+
static ssoURL: string;
|
|
13
|
+
static workflowURL: string;
|
|
14
|
+
static signalRURL: string;
|
|
15
|
+
static accessToken: string;
|
|
16
|
+
static authToken: string;
|
|
17
|
+
static refreshToken: string;
|
|
18
|
+
static ERRCODE: string;
|
|
19
|
+
static loggedInUserId: number;
|
|
20
|
+
static applicationName: string;
|
|
21
|
+
static publicKey: string;
|
|
22
|
+
static TokenURL: string;
|
|
23
|
+
static tokenExpired: number;
|
|
24
|
+
static validUntil: string;
|
|
25
|
+
static PAMPluginURL: string;
|
|
26
|
+
static APPName: string;
|
|
27
|
+
static MFAURL: string;
|
|
28
|
+
static MFA_ACCESSTOKEN: string;
|
|
29
|
+
static isPAMPluginInstalled: string;
|
|
30
|
+
static PlugInDownloadURL: string;
|
|
31
|
+
static cipluginversion: string;
|
|
32
|
+
static localInstalledCIPluginVersion: string;
|
|
33
|
+
static isPAMPluginRequired: boolean;
|
|
34
|
+
static PCI_DSS_Standard: boolean;
|
|
35
|
+
static MFAEnable: boolean;
|
|
36
|
+
static setCookies: boolean;
|
|
37
|
+
static TOKENTIME: number;
|
|
38
|
+
static LOGOUTIMER: number;
|
|
39
|
+
static PAGEROW: number;
|
|
40
|
+
static CONFIGCONNECTORS: boolean;
|
|
41
|
+
static USERLANGUAGES: {
|
|
42
|
+
langKey: string;
|
|
43
|
+
langName: string;
|
|
44
|
+
}[];
|
|
45
|
+
static DEFAULTLANG: {
|
|
46
|
+
langKey: string;
|
|
47
|
+
langName: string;
|
|
48
|
+
};
|
|
49
|
+
static DEFAULTLANGKEY: string;
|
|
50
|
+
static DEFAULT_IMGPATH: string;
|
|
51
|
+
static DEFAULT_BGIMG: string;
|
|
52
|
+
static DEFAULT_LOGO: string;
|
|
53
|
+
static IMG_CODE: string;
|
|
54
|
+
static DYNAMIC_LOGO: string;
|
|
55
|
+
static DYNAMIC_BGIMG: string;
|
|
56
|
+
static APP_VERSION: string;
|
|
57
|
+
}
|
|
58
|
+
export declare class LoggedInUserInfo {
|
|
59
|
+
static userId: number;
|
|
60
|
+
static userName: string;
|
|
61
|
+
static userDisplayName: string;
|
|
62
|
+
static domainName: string | null;
|
|
63
|
+
static userSessionId: string;
|
|
64
|
+
static domainId: number;
|
|
65
|
+
static MachineDetails: string;
|
|
66
|
+
static userPwd: string;
|
|
67
|
+
static privateKey: string;
|
|
68
|
+
static SessionToken: string;
|
|
69
|
+
static setPrivateKeyFromBigInts(arr: bigint[]): void;
|
|
70
|
+
}
|
|
71
|
+
export declare class RoutePaths {
|
|
72
|
+
static LOGINPG_PATH: string;
|
|
73
|
+
static WINDOW_AUTH: string;
|
|
74
|
+
static OTHER_METHODS_PATH: string;
|
|
75
|
+
static MY_ACCESS_PATH: string;
|
|
76
|
+
static FORGOT_PASSWORD_PATH: string;
|
|
77
|
+
static AUTH_STATUS_PATH: string;
|
|
78
|
+
static LOGOUT_PATH: string;
|
|
79
|
+
static PAGE_NOT_FOUND_PATH: string;
|
|
80
|
+
static INTERNAL_SERVER_ERROR_PATH: string;
|
|
81
|
+
static ERROR_PATH: string;
|
|
82
|
+
static AUTH_LOADING: string;
|
|
83
|
+
}
|
|
84
|
+
export declare class errorMsg {
|
|
85
|
+
static NOASSET: string;
|
|
86
|
+
static NORECENTASSET: string;
|
|
87
|
+
static NOSEARCHRESULT: string;
|
|
88
|
+
static NOMAILFOUND: string;
|
|
89
|
+
static SERVERDOWN: string;
|
|
90
|
+
static NOCIPLUGIN: string;
|
|
91
|
+
static CIPLUGINVERSIONISSUE: string;
|
|
92
|
+
static ADMINMSG: string;
|
|
93
|
+
static PLUGINMSG: string;
|
|
94
|
+
static PAMPLUGINBTN: string;
|
|
95
|
+
static USERNOTFOUND: string;
|
|
96
|
+
static TIMEZONESUCCESS: string;
|
|
97
|
+
static TIMEZONERROR: string;
|
|
98
|
+
static LOGOUTERROR: string;
|
|
99
|
+
static ASSETSTATUS: string;
|
|
100
|
+
static REFERENCEPOPUPTITLE: string;
|
|
101
|
+
static DICREDENTIALINFO: string;
|
|
102
|
+
static DICREDENTIALERROR: string;
|
|
103
|
+
static PATHSUCCESS: string;
|
|
104
|
+
static PATHERROR: string;
|
|
105
|
+
static USERCREDENIALERROR: string;
|
|
106
|
+
static CREDENIALERROR: string;
|
|
107
|
+
static ADMINCREDENIALERROR: string;
|
|
108
|
+
static COMMONError: string;
|
|
109
|
+
static NODIGITALIDENTITES: string;
|
|
110
|
+
static SEARCHTEXT: string;
|
|
111
|
+
static MFACONFIGUREERROR: string;
|
|
112
|
+
static SESSIONIDERROR: string;
|
|
113
|
+
static CHROMEEXTENSIONERROR: string;
|
|
114
|
+
static WINDOW_DOMAIN_LOGINERR: string;
|
|
115
|
+
static LANDINGPGSUCCESS: string;
|
|
116
|
+
static LANDINGPGERROR: string;
|
|
117
|
+
static SCRIPTERROR: string;
|
|
118
|
+
}
|
|
119
|
+
export declare class COOKIECONSTANT {
|
|
120
|
+
static LOBNAME: string;
|
|
121
|
+
static DOMAINAME: string;
|
|
122
|
+
static DOMAINID: string;
|
|
123
|
+
static USERDETAILS: string;
|
|
124
|
+
static SESSIONID: string;
|
|
125
|
+
static USERNAME: string;
|
|
126
|
+
static USERID: string;
|
|
127
|
+
static _AT: string;
|
|
128
|
+
static _RT: string;
|
|
129
|
+
static USERDISPLAYNAME: string;
|
|
130
|
+
static ENCRYPTEDKEY: string;
|
|
131
|
+
static MFASTATUS: string;
|
|
132
|
+
static EVENTNAME: string;
|
|
133
|
+
static MACHINEDETAILS: string;
|
|
134
|
+
static COOKIEDELETEVENT: string;
|
|
135
|
+
static COOKIECREATEEVENT: string;
|
|
136
|
+
static COOKIEUPDATEEVENT: string;
|
|
137
|
+
static ALLCOOKIEDELET: string;
|
|
138
|
+
static NEWUSER: string;
|
|
139
|
+
static UNLOCKACC: string;
|
|
140
|
+
static ERRORCODE: string;
|
|
141
|
+
static PUBLICCODE: string;
|
|
142
|
+
static USERLANG: string;
|
|
143
|
+
static MFATIMEOUT: number;
|
|
144
|
+
static MFASTATUSCHECK: string;
|
|
145
|
+
static MFASTATUSCHECKFAIL: string;
|
|
146
|
+
static MFACLI: string;
|
|
147
|
+
static WINDOWAUTH_HEADER: string;
|
|
148
|
+
static SIGNALR_INDEX: string;
|
|
149
|
+
static ONETIME_TOKEN: string;
|
|
150
|
+
static THICKCLIENT_KEY: string;
|
|
151
|
+
}
|
|
152
|
+
export declare const EXCLUDED_URLS: string[];
|
|
153
|
+
export declare class MFAEvent {
|
|
154
|
+
static ForgotPwd: number;
|
|
155
|
+
static unlockAcc: number;
|
|
156
|
+
static Login: number;
|
|
157
|
+
}
|
|
158
|
+
export declare class BrowserName {
|
|
159
|
+
static Chrome: string;
|
|
160
|
+
static Firefox: string;
|
|
161
|
+
static Edge: string;
|
|
162
|
+
static Safari: string;
|
|
163
|
+
static Opera: string;
|
|
164
|
+
static InterNetExp: string;
|
|
165
|
+
}
|
|
166
|
+
export declare class PAMParameter {
|
|
167
|
+
ipAddress: string;
|
|
168
|
+
macAddress: string;
|
|
169
|
+
processorID: string;
|
|
170
|
+
bIOSSerialID: string;
|
|
171
|
+
domainName: string;
|
|
172
|
+
hostname: string;
|
|
173
|
+
pAMPluginInstalledVersion: string;
|
|
174
|
+
}
|
|
175
|
+
export interface connectorParams {
|
|
176
|
+
exeParams1: string | null;
|
|
177
|
+
exeParams2: string | null;
|
|
178
|
+
exeParams3: string | null;
|
|
179
|
+
exeParams4: string | null;
|
|
180
|
+
exeVersion: string | null;
|
|
181
|
+
agwUrl: string | null;
|
|
182
|
+
electronparameter: string | null;
|
|
183
|
+
referenceEnable: boolean;
|
|
184
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class customDateFormatPipe implements PipeTransform {
|
|
4
|
+
private datePipe;
|
|
5
|
+
transform(value: any): string;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<customDateFormatPipe, never>;
|
|
7
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<customDateFormatPipe, "customDateFormat", false>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class DateDiffPipe implements PipeTransform {
|
|
4
|
+
constructor();
|
|
5
|
+
transform(date: string): string;
|
|
6
|
+
private convertUTCToLocal;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DateDiffPipe, never>;
|
|
8
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<DateDiffPipe, "dateDiff", false>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class SliceToTwoPipe implements PipeTransform {
|
|
4
|
+
transform(textName: string): any;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SliceToTwoPipe, never>;
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<SliceToTwoPipe, "sliceToTwo", false>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class EncrydecryRSAdataService {
|
|
3
|
+
generateAESKey(): string;
|
|
4
|
+
encryptViaRSA(simpleText: any): string;
|
|
5
|
+
decryptViaRSA(encrpyText: string): string;
|
|
6
|
+
private generateKeyAndIV;
|
|
7
|
+
private encryptText;
|
|
8
|
+
private encryptSymmetricKey;
|
|
9
|
+
private decryptText;
|
|
10
|
+
private getPublicKey;
|
|
11
|
+
private getRSAsymmetricKeyIV;
|
|
12
|
+
base64ToPem(base64Key: string): string;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EncrydecryRSAdataService, never>;
|
|
14
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<EncrydecryRSAdataService>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { AsyncValidatorFn, FormGroup } from '@angular/forms';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { EncrydecryRSAdataService } from './EncrypDecryp_RSA.service';
|
|
4
|
+
import { HttpCommonService } from './http/http-common.service';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class ASYNCPasswordcheckService {
|
|
7
|
+
private readonly httpCommonService;
|
|
8
|
+
private readonly encryptService;
|
|
9
|
+
pwdErrorMsg: string;
|
|
10
|
+
private pwdValidation;
|
|
11
|
+
constructor(httpCommonService: HttpCommonService, encryptService: EncrydecryRSAdataService);
|
|
12
|
+
createValidator(): AsyncValidatorFn;
|
|
13
|
+
emitValidationMsg(msg: string): void;
|
|
14
|
+
listValidationMsg(): Observable<string>;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ASYNCPasswordcheckService, never>;
|
|
16
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ASYNCPasswordcheckService>;
|
|
17
|
+
}
|
|
18
|
+
export declare function ConfirmedValidator(controlName: string, matchingControlName: string): (formGroup: FormGroup) => void;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { CookieService } from 'ngx-cookie-service';
|
|
2
|
+
import { HttpClient } from '@angular/common/http';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class CookieStorageManagerService {
|
|
5
|
+
private cookie;
|
|
6
|
+
private _http;
|
|
7
|
+
constructor(cookie: CookieService, _http: HttpClient);
|
|
8
|
+
checksetCookies(cookiesParam1: any): boolean;
|
|
9
|
+
getCookieValue(cookiesParam: any): string;
|
|
10
|
+
setCookiesValue(key: any, value: any): void;
|
|
11
|
+
deleteCookie(cookieKey: string): void;
|
|
12
|
+
clearAllCookies(): void;
|
|
13
|
+
setLongCookie(name: string, value: string, maxChunkSize: number): void;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CookieStorageManagerService, never>;
|
|
15
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CookieStorageManagerService>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class EncrpdataService {
|
|
3
|
+
private privateKey;
|
|
4
|
+
constructor();
|
|
5
|
+
getASCIIValue(text: string): bigint[];
|
|
6
|
+
getModuleValue(arr: any, num1: bigint, num2: bigint): bigint[];
|
|
7
|
+
getEncrpytedData(text: string): string;
|
|
8
|
+
encodeToBase64(text: any): string;
|
|
9
|
+
decodeToBase64(text: any): string;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EncrpdataService, never>;
|
|
11
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<EncrpdataService>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { StorageService } from './storage.service';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class EncrydecrydataService {
|
|
4
|
+
private _storageService;
|
|
5
|
+
phiN: bigint;
|
|
6
|
+
m: bigint;
|
|
7
|
+
Genrator: number;
|
|
8
|
+
min: number;
|
|
9
|
+
max: number;
|
|
10
|
+
randomPrime: any;
|
|
11
|
+
constructor(_storageService: StorageService);
|
|
12
|
+
generate(): bigint;
|
|
13
|
+
process(key: string): void;
|
|
14
|
+
encryptViaCrypto(normalText: string): string;
|
|
15
|
+
decryptViaCrypto(cipherText: string): string;
|
|
16
|
+
decryptResponseViaCrypto(cipherText: string): string;
|
|
17
|
+
private decrypt123;
|
|
18
|
+
private encryptMessage;
|
|
19
|
+
private base64ToUint8Array;
|
|
20
|
+
private bytesToString;
|
|
21
|
+
private encryptMessageToBase64;
|
|
22
|
+
private bigintToBytes;
|
|
23
|
+
private encrypt;
|
|
24
|
+
private decrypt;
|
|
25
|
+
private generateRandomPrime;
|
|
26
|
+
private getSecretCode;
|
|
27
|
+
private convertToBigInt;
|
|
28
|
+
private getPublicKey;
|
|
29
|
+
private getSlicePublicKey;
|
|
30
|
+
private getUniqueLetter;
|
|
31
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EncrydecrydataService, never>;
|
|
32
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<EncrydecrydataService>;
|
|
33
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { CookieService } from 'ngx-cookie-service';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class EventService {
|
|
4
|
+
private _cookie;
|
|
5
|
+
private getUserLOB;
|
|
6
|
+
private getAssetType;
|
|
7
|
+
private refreshSidebar;
|
|
8
|
+
private filterRecords;
|
|
9
|
+
private AuthMethods;
|
|
10
|
+
private refreshEmails;
|
|
11
|
+
private timeZone;
|
|
12
|
+
constructor(_cookie: CookieService);
|
|
13
|
+
emitLOBEvent(data: any): void;
|
|
14
|
+
listenerLOBEvent(): import("rxjs").Observable<any>;
|
|
15
|
+
emitAssetTypeEvent(data: any): void;
|
|
16
|
+
listenerAssetTypeEvent(): import("rxjs").Observable<any>;
|
|
17
|
+
emitrefreshSidebar(data: any): void;
|
|
18
|
+
listenerrefreshSidebar(): import("rxjs").Observable<any>;
|
|
19
|
+
emitFilterRecords(data: any): void;
|
|
20
|
+
listenerFilterEvent(): import("rxjs").Observable<any>;
|
|
21
|
+
emitAuthMethod(data: any): void;
|
|
22
|
+
listenerAuthMethod(): import("rxjs").Observable<any>;
|
|
23
|
+
emitUserEmail(data: any): void;
|
|
24
|
+
listenerUserEmail(): import("rxjs").Observable<any>;
|
|
25
|
+
emitTimezone(data: any): void;
|
|
26
|
+
listenerTimezone(): import("rxjs").Observable<any>;
|
|
27
|
+
checkMFA(mfaUrl: string): Promise<boolean>;
|
|
28
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EventService, never>;
|
|
29
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<EventService>;
|
|
30
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class HttpCommonService {
|
|
4
|
+
private http;
|
|
5
|
+
private xAccessAPIUrl;
|
|
6
|
+
private metaAPIUrl;
|
|
7
|
+
private metaAPIUrl1;
|
|
8
|
+
private xServiceAPIUrl;
|
|
9
|
+
private workflowAPIUrl;
|
|
10
|
+
constructor(http: HttpClient);
|
|
11
|
+
getLogo(): import("rxjs").Observable<any>;
|
|
12
|
+
getGlobalTimeZone(): import("rxjs").Observable<any>;
|
|
13
|
+
updateUserTimeZone(tz: string): import("rxjs").Observable<any>;
|
|
14
|
+
getLOBList(): import("rxjs").Observable<any>;
|
|
15
|
+
getUnreadUserEmailsCount(): import("rxjs").Observable<any>;
|
|
16
|
+
getUserAssignedMails(userDetails: any): import("rxjs").Observable<any>;
|
|
17
|
+
getAccessToViewServicePassword(mailDetails: any): import("rxjs").Observable<any>;
|
|
18
|
+
getUserAssignedApps(): import("rxjs").Observable<any>;
|
|
19
|
+
getLoggedInUserDetails(): import("rxjs").Observable<any>;
|
|
20
|
+
getWorkFlowTicketCount(userDetails: any): import("rxjs").Observable<any>;
|
|
21
|
+
getWorkFlowTicketEventwiseCount(userDetails: any): import("rxjs").Observable<never[]>;
|
|
22
|
+
setLandingPgPreference(moduleId: string): import("rxjs").Observable<any>;
|
|
23
|
+
validatePassword(userDetails: any): import("rxjs").Observable<Object>;
|
|
24
|
+
setNewpassword(loggedInUserDetails: any): import("rxjs").Observable<Object>;
|
|
25
|
+
errorHandler(e: any): any;
|
|
26
|
+
getProtectedServiceCredentials(mailDetails: any): import("rxjs").Observable<any>;
|
|
27
|
+
getglobalConfigDetails(subid: string, id: number[]): import("rxjs").Observable<any>;
|
|
28
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HttpCommonService, never>;
|
|
29
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<HttpCommonService>;
|
|
30
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class HttpGeneralConfigurationService {
|
|
4
|
+
private http;
|
|
5
|
+
private xPageRefAPIUrl;
|
|
6
|
+
constructor(http: HttpClient);
|
|
7
|
+
getUserPreferredAssetTypeDetails(): import("rxjs").Observable<any>;
|
|
8
|
+
getUserPreferredAssetName(payload: any): import("rxjs").Observable<any>;
|
|
9
|
+
getServiceNameByAssetTypeEvent(payload: any): import("rxjs").Observable<any>;
|
|
10
|
+
getPreferencePathDetails(payload: any): import("rxjs").Observable<any>;
|
|
11
|
+
updatePreferencePath(payload: any): import("rxjs").Observable<boolean>;
|
|
12
|
+
errorHandler(e: any): any;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HttpGeneralConfigurationService, never>;
|
|
14
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<HttpGeneralConfigurationService>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { CookieStorageManagerService } from './cookie-storage-manager.service';
|
|
3
|
+
import { EncrydecrydataService } from './encrydecrydata.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class RESTLoginFormService {
|
|
6
|
+
private readonly _http;
|
|
7
|
+
private readonly cookieService;
|
|
8
|
+
private readonly _encryptDec;
|
|
9
|
+
constructor(_http: HttpClient, cookieService: CookieStorageManagerService, _encryptDec: EncrydecrydataService);
|
|
10
|
+
fetchDomainList(): import("rxjs").Observable<any>;
|
|
11
|
+
errorHandler(e: any): any;
|
|
12
|
+
getglobalConfigDetails(subid: string, id: number[]): import("rxjs").Observable<any>;
|
|
13
|
+
setNewpassword(loggedInUserDetails: any): import("rxjs").Observable<Object>;
|
|
14
|
+
validatePassword(userDetails: any): import("rxjs").Observable<Object>;
|
|
15
|
+
getPrivateKey(params: any): import("rxjs").Observable<Object>;
|
|
16
|
+
sendMFAOTPRequest(mfaDetails: any): import("rxjs").Observable<any>;
|
|
17
|
+
submitOtpForMfaVerification(mfaDetails: any): import("rxjs").Observable<any>;
|
|
18
|
+
getAuthToken(userDetails: {}): import("rxjs").Observable<"" | Object>;
|
|
19
|
+
unlockUserAccount(userDetails: any): import("rxjs").Observable<Object>;
|
|
20
|
+
/**
|
|
21
|
+
* Verifies user authentication using Windows credentials.
|
|
22
|
+
*/
|
|
23
|
+
getUserBackgroundImageAndLogo(): import("rxjs").Observable<any>;
|
|
24
|
+
deleteCookieData(payload: any): import("rxjs").Observable<Object>;
|
|
25
|
+
/**
|
|
26
|
+
* Decrypts a base64-encoded, MessagePack-encoded ciphertext into its original tuple form.
|
|
27
|
+
*
|
|
28
|
+
* @param cipherText - The encrypted string received from the API.
|
|
29
|
+
* @returns The decoded tuple [key, value] if decryption is successful; otherwise, an empty object.
|
|
30
|
+
*
|
|
31
|
+
* Steps:
|
|
32
|
+
* 1. Decrypts the cipherText using custom crypto method.
|
|
33
|
+
* 2. Decodes the base64 response into a binary Uint8Array.
|
|
34
|
+
* 3. Deserializes the binary using MessagePack's decode to get the original data.
|
|
35
|
+
*/
|
|
36
|
+
private getDecryptAPIResponse;
|
|
37
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RESTLoginFormService, never>;
|
|
38
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<RESTLoginFormService>;
|
|
39
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { BehaviorSubject } from 'rxjs';
|
|
2
|
+
import { StorageService } from './storage.service';
|
|
3
|
+
import { EncrpdataService } from './encrpdata.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class RestSignalRService {
|
|
6
|
+
private readonly _localStorage;
|
|
7
|
+
private readonly _encrpdataService;
|
|
8
|
+
private hubConnection;
|
|
9
|
+
protected eventMsg: BehaviorSubject<any>;
|
|
10
|
+
protected AuthToken: string;
|
|
11
|
+
private hubURLS;
|
|
12
|
+
constructor(_localStorage: StorageService, _encrpdataService: EncrpdataService);
|
|
13
|
+
establishedConnection: () => Promise<void>;
|
|
14
|
+
initializeSignalRConnection(): Promise<void>;
|
|
15
|
+
addMessageListener(): void;
|
|
16
|
+
emitEventMsg(data: any): void;
|
|
17
|
+
listenerEventMsg(): import("rxjs").Observable<any>;
|
|
18
|
+
private getLastUsedIndexv1;
|
|
19
|
+
private getLastUsedIndex;
|
|
20
|
+
private setLastUsedIndex;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RestSignalRService, never>;
|
|
22
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<RestSignalRService>;
|
|
23
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class StorageService {
|
|
3
|
+
constructor();
|
|
4
|
+
saveData(key: string, value: string): void;
|
|
5
|
+
getData(key: string): string | null;
|
|
6
|
+
removeData(key: string): void;
|
|
7
|
+
clearData(): void;
|
|
8
|
+
checkData(key: string): boolean;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StorageService, never>;
|
|
10
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<StorageService>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { ToastrService } from 'ngx-toastr';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ToastMsgService {
|
|
4
|
+
private toastr;
|
|
5
|
+
private toastType_sucess;
|
|
6
|
+
private toastType_info;
|
|
7
|
+
private toastType_error;
|
|
8
|
+
private toastType_warning;
|
|
9
|
+
constructor(toastr: ToastrService);
|
|
10
|
+
success(textMessage: string): void;
|
|
11
|
+
error(textMessage: string): void;
|
|
12
|
+
info(textMessage: string): void;
|
|
13
|
+
warning(textMessage: string): void;
|
|
14
|
+
private updateActiveToastMessage;
|
|
15
|
+
private isToastMsgActive;
|
|
16
|
+
private getActiveToastMessagesByType;
|
|
17
|
+
private checkActiveToastMessagesByType;
|
|
18
|
+
clear(): void;
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ToastMsgService, never>;
|
|
20
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ToastMsgService>;
|
|
21
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class VaptValidationService {
|
|
3
|
+
constructor();
|
|
4
|
+
hasUnsafeInput(formData: any): boolean;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<VaptValidationService, never>;
|
|
6
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<VaptValidationService>;
|
|
7
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "common-header-lib",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"peerDependencies": {
|
|
5
|
+
"@angular/common": "^14.2.0",
|
|
6
|
+
"@angular/core": "^14.2.0",
|
|
7
|
+
"@angular/forms": "^14.2.0",
|
|
8
|
+
"@ngx-translate/core": "^13.0.0",
|
|
9
|
+
"@angular/router": "^14.3.0",
|
|
10
|
+
"@microsoft/signalr": "^7.0.12",
|
|
11
|
+
"ngx-cookie-service": "^15.0.0",
|
|
12
|
+
"ngx-toastr": "^15.2.2",
|
|
13
|
+
"@msgpack/msgpack": "^2.8.0",
|
|
14
|
+
"jsencrypt": "^3.3.2",
|
|
15
|
+
"crypto-js": "^4.1.1",
|
|
16
|
+
"bigint-crypto-utils": "^2.2.1",
|
|
17
|
+
"@ngx-translate/http-loader": "^6.0.0",
|
|
18
|
+
"@ng-bootstrap/ng-bootstrap": "^13.0.0",
|
|
19
|
+
"bootstrap": "^5.2.3"
|
|
20
|
+
},
|
|
21
|
+
"dependencies": {
|
|
22
|
+
"tslib": "^2.3.0"
|
|
23
|
+
},
|
|
24
|
+
"type": "module",
|
|
25
|
+
"exports": {
|
|
26
|
+
"./": {
|
|
27
|
+
"import": "./fesm2020/your-lib.mjs",
|
|
28
|
+
"require": "./bundles/your-lib.umd.js"
|
|
29
|
+
},
|
|
30
|
+
"./package.json": {
|
|
31
|
+
"default": "./package.json"
|
|
32
|
+
},
|
|
33
|
+
".": {
|
|
34
|
+
"types": "./index.d.ts",
|
|
35
|
+
"esm2020": "./esm2020/common-header-lib.mjs",
|
|
36
|
+
"es2020": "./fesm2020/common-header-lib.mjs",
|
|
37
|
+
"es2015": "./fesm2015/common-header-lib.mjs",
|
|
38
|
+
"node": "./fesm2015/common-header-lib.mjs",
|
|
39
|
+
"default": "./fesm2020/common-header-lib.mjs"
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
"module": "fesm2015/common-header-lib.mjs",
|
|
43
|
+
"es2020": "fesm2020/common-header-lib.mjs",
|
|
44
|
+
"esm2020": "esm2020/common-header-lib.mjs",
|
|
45
|
+
"fesm2020": "fesm2020/common-header-lib.mjs",
|
|
46
|
+
"fesm2015": "fesm2015/common-header-lib.mjs",
|
|
47
|
+
"typings": "index.d.ts",
|
|
48
|
+
"sideEffects": false
|
|
49
|
+
}
|
package/public-api.d.ts
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export * from './lib/common-header-lib.service';
|
|
2
|
+
export * from './lib/common-header-lib.component';
|
|
3
|
+
export * from './lib/common-header-lib.module';
|
|
4
|
+
export * from './lib/pipes/slice-to-two.pipe';
|
|
5
|
+
export * from './lib/pipes/custome-dateformat.pipe';
|
|
6
|
+
export * from './lib/pipes/date-diff.pipe';
|
|
7
|
+
export * from './lib/components/confirm-dialog/confirm-dialog.component';
|
|
8
|
+
export * from './lib/components/viewpassword-popup/viewpassword-popup.component';
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Generic_lib": {
|
|
3
|
+
"Action": "فعل",
|
|
4
|
+
"ArconLearningCenter": "مركز أركون التعليمي",
|
|
5
|
+
"AssetName": "اسم الأصول",
|
|
6
|
+
"AssetNameFieldValidation": "الرجاء تحديد اسم الأصل",
|
|
7
|
+
"AssetNamePlaceholder": "حدد اسم الأصل",
|
|
8
|
+
"AssetType": "نوع الأصول",
|
|
9
|
+
"AssetTypeFieldValidation": "الرجاء تحديد نوع الأصول",
|
|
10
|
+
"AssetTypePlaceholder": "حدد نوع الأصل",
|
|
11
|
+
"ChangePassword": "تغيير كلمة المرور",
|
|
12
|
+
"CommonError": "حدث خطأ ما!",
|
|
13
|
+
"ConfirmPassword": "تأكيد كلمة المرور",
|
|
14
|
+
"ConfirmPasswordFieldNewValidation": "يجب أن تكون كلمة المرور وتأكيد كلمة المرور متماثلتين",
|
|
15
|
+
"ConfirmPasswordFieldValidation": "الرجاء إدخال تأكيد كلمة المرور الخاصة بك",
|
|
16
|
+
"ConfirmPasswordPlaceholder": "أعد إدخال كلمة المرور الجديدة",
|
|
17
|
+
"ConnectionMethod": "طريقة الاتصال",
|
|
18
|
+
"ConnectionMethodFieldValidation": "الرجاء تحديد طريقة الاتصال",
|
|
19
|
+
"ConnectionMethodPlaceholder": "حدد طريقة الاتصال",
|
|
20
|
+
"CurrentPassword": "كلمة المرور الحالية",
|
|
21
|
+
"CurrentSession": "الجلسة الحالية",
|
|
22
|
+
"CurrentSetting": "الإعداد الحالي",
|
|
23
|
+
"Email": "بريد إلكتروني",
|
|
24
|
+
"EmailAddress": "عنوان البريد الإلكتروني",
|
|
25
|
+
"From": "من",
|
|
26
|
+
"GeneralConfiguration": "التكوين العام",
|
|
27
|
+
"hrs": "ساعات",
|
|
28
|
+
"LandingPageConfig": "صفحة المقصود الافتراضية بعد السدوي",
|
|
29
|
+
"LandingPageErrorMsg": "لا يمكن تحديث تكوين الصفحة المقصودة",
|
|
30
|
+
"LandingPagePlaceHolder": "حدد اسم التطبيق",
|
|
31
|
+
"LandingPageSuccessMsg": "تم تكوين الصفحة المقصودة بنجاح",
|
|
32
|
+
"LastSession": "الجلسة الأخيرة",
|
|
33
|
+
"LastUpdated": "آخر تحديث",
|
|
34
|
+
"Logout": "تسجيل الخروج",
|
|
35
|
+
"MailBox": "صندوق البريد",
|
|
36
|
+
"min": "دقائق",
|
|
37
|
+
"NewPassword": "كلمة المرور الجديدة",
|
|
38
|
+
"NewPasswordFieldValidation": "الرجاء إدخال كلمة المرور الجديدة",
|
|
39
|
+
"NewPasswordPlaceholder": "أدخل كلمة المرور الجديدة",
|
|
40
|
+
"NoSearchResult": "لم نتمكن من العثور على أي خدمة تطابق بحثك ضمن LOB المختار.",
|
|
41
|
+
"NoText": "غير متوفر",
|
|
42
|
+
"Notification": "إشعار",
|
|
43
|
+
"OneTime": "مرة واحدة",
|
|
44
|
+
"Password": "كلمة المرور",
|
|
45
|
+
"PasswordFieldValidation": "الرجاء إدخال كلمة المرور الحالية الخاصة بك",
|
|
46
|
+
"PasswordPlaceholder": "أدخل كلمة المرور الحالية",
|
|
47
|
+
"Permanent": "دائم",
|
|
48
|
+
"PreferencePath": "مسار التفضيل",
|
|
49
|
+
"PreferencePathErrorMsg": "تعذر تحديث مسار التفضيل",
|
|
50
|
+
"PreferencePathFieldSpaceValidation": "الرجاء إدخال المسار المفضل",
|
|
51
|
+
"PreferencePathFieldValidation": "الرجاء إدخال المسار المفضل",
|
|
52
|
+
"PreferencePathPlaceholder": "معرف الحالة المرجعي",
|
|
53
|
+
"PreferencePathSuccessMsg": "تم تحديث مسار التفضيل بنجاح",
|
|
54
|
+
"PreferredTimezone": "المنطقة الزمنية المفضلة",
|
|
55
|
+
"Search": "بحث",
|
|
56
|
+
"secs": "ثواني",
|
|
57
|
+
"SelectLanguage": "اختر اللغة",
|
|
58
|
+
"SSHKey": "مفتاح SSH",
|
|
59
|
+
"Submit": "إرسال",
|
|
60
|
+
"TimeBased": "يعتمد على الوقت",
|
|
61
|
+
"TimeZoneErrorMsg": "لا يمكن تحديث المنطقة الزمنية",
|
|
62
|
+
"TimeZoneFieldValidation": "الرجاء تحديد المنطقة الزمنية",
|
|
63
|
+
"TimeZonePlaceHolder": "حدد المنطقة الزمنية المفضلة",
|
|
64
|
+
"TimeZoneSuccessMsg": "تم تحديث المنطقة الزمنية بنجاح",
|
|
65
|
+
"Update": "تحديث",
|
|
66
|
+
"UserName": "اسم المستخدم",
|
|
67
|
+
"ViewFrom": "عرض من",
|
|
68
|
+
"ViewPassword": "عرض كلمة المرور",
|
|
69
|
+
"ChangeLOB": "تغيير وحدة الأعمال",
|
|
70
|
+
"DoYouWantToChangeTheCurrentLOB": "هل تريد تغيير وحدة الأعمال الحالية؟",
|
|
71
|
+
"No": "لا",
|
|
72
|
+
"Yes": "نعم",
|
|
73
|
+
"Subject": "الموضوع",
|
|
74
|
+
"RemainingTime": "الوقت المتبقي",
|
|
75
|
+
"KeyPassphrase": "عبارة مرور المفتاح",
|
|
76
|
+
"DownloadSSHNote": "ملاحظة: انقر على زر \"تنزيل مفتاح SSH\" لتنزيل ملف مفتاح SSH بصيغة \".ppk\" / \".pem\".",
|
|
77
|
+
"DownloadKey": "تنزيل مفتاح SSH",
|
|
78
|
+
"VaultCredentials": "بيانات اعتماد الخزنة",
|
|
79
|
+
"Copy": "نسخ",
|
|
80
|
+
"YouHaveNNotifications": "لديك {{count}} إشعارات",
|
|
81
|
+
"Refresh": "تحديث"
|
|
82
|
+
}
|
|
83
|
+
}
|