bpm-core 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 +30 -0
- package/esm2022/bpm-core.mjs +5 -0
- package/esm2022/lib/classes/form-validation.mjs +80 -0
- package/esm2022/lib/classes/index.mjs +2 -0
- package/esm2022/lib/components/app-component-sections/activities/activities.component.mjs +51 -0
- package/esm2022/lib/components/app-component-sections/comment-section/comment-section.component.mjs +66 -0
- package/esm2022/lib/components/app-component-sections/faq-sidenav/faq-sidenav.component.mjs +29 -0
- package/esm2022/lib/components/app-component-sections/faqs/faqs.component.mjs +32 -0
- package/esm2022/lib/components/app-component-sections/faqs/index.mjs +2 -0
- package/esm2022/lib/components/app-component-sections/feedback-section/feedback-section.component.mjs +236 -0
- package/esm2022/lib/components/app-component-sections/form-section/form-section.component.mjs +270 -0
- package/esm2022/lib/components/app-component-sections/index.mjs +9 -0
- package/esm2022/lib/components/app-component-sections/main-request-details/main-request-details.component.mjs +34 -0
- package/esm2022/lib/components/app-component-sections/profile-section/profile-section.component.mjs +45 -0
- package/esm2022/lib/components/app-component-sections/service-header/service-header.component.mjs +162 -0
- package/esm2022/lib/components/app-component-sections/status/status.component.mjs +38 -0
- package/esm2022/lib/components/app-component-sections/workflow-section/workflow-section.component.mjs +162 -0
- package/esm2022/lib/components/shared-components/confirmation-popup/confirmation-popup.component.mjs +39 -0
- package/esm2022/lib/components/shared-components/delete-popup/delete-popup.component.mjs +19 -0
- package/esm2022/lib/components/shared-components/dialogs/confirm-dialog/confirm-dialog.component.mjs +30 -0
- package/esm2022/lib/components/shared-components/dialogs/delete-dialog/delete-dialog.component.mjs +28 -0
- package/esm2022/lib/components/shared-components/dialogs/submit-dialog/submit-dialog.component.mjs +72 -0
- package/esm2022/lib/components/shared-components/doc-uploader/docs-uploader.component.mjs +686 -0
- package/esm2022/lib/components/shared-components/form-field/add-attachment-section/add-attachment-section.component.mjs +77 -0
- package/esm2022/lib/components/shared-components/form-field/attachment-section/attachment-section.component.mjs +181 -0
- package/esm2022/lib/components/shared-components/form-field/base-component/base-component.component.mjs +198 -0
- package/esm2022/lib/components/shared-components/form-field/checkbox/checkbox.component.mjs +69 -0
- package/esm2022/lib/components/shared-components/form-field/custom-searchable-autocomplete/custom-searchable.component.mjs +201 -0
- package/esm2022/lib/components/shared-components/form-field/date-picker/date-format.mjs +31 -0
- package/esm2022/lib/components/shared-components/form-field/date-picker/date-picker.component.mjs +244 -0
- package/esm2022/lib/components/shared-components/form-field/date-range-picker/date-range-picker.component.mjs +26 -0
- package/esm2022/lib/components/shared-components/form-field/form-label/form-label.component.mjs +31 -0
- package/esm2022/lib/components/shared-components/form-field/index.mjs +25 -0
- package/esm2022/lib/components/shared-components/form-field/info-item/info-item.component.mjs +72 -0
- package/esm2022/lib/components/shared-components/form-field/input/input.component.mjs +155 -0
- package/esm2022/lib/components/shared-components/form-field/input-autocomplete/index.mjs +3 -0
- package/esm2022/lib/components/shared-components/form-field/input-autocomplete/input-autocomplete.model.mjs +2 -0
- package/esm2022/lib/components/shared-components/form-field/input-currency/input-currency.component.mjs +157 -0
- package/esm2022/lib/components/shared-components/form-field/input-email/input-email.component.mjs +114 -0
- package/esm2022/lib/components/shared-components/form-field/input-mask/input-mask.component.mjs +111 -0
- package/esm2022/lib/components/shared-components/form-field/input-number/input-number.component.mjs +153 -0
- package/esm2022/lib/components/shared-components/form-field/input-telephone/input-telephone.component.mjs +176 -0
- package/esm2022/lib/components/shared-components/form-field/radio/radio.component.mjs +38 -0
- package/esm2022/lib/components/shared-components/form-field/repeated-list/repeated-list.component.mjs +32 -0
- package/esm2022/lib/components/shared-components/form-field/search-employee/search-employee.component.mjs +228 -0
- package/esm2022/lib/components/shared-components/form-field/select/select.component.mjs +191 -0
- package/esm2022/lib/components/shared-components/form-field/table-list/table-list.component.mjs +116 -0
- package/esm2022/lib/components/shared-components/form-field/textarea/special-chars.directive.mjs +39 -0
- package/esm2022/lib/components/shared-components/form-field/textarea/textarea.component.mjs +88 -0
- package/esm2022/lib/components/shared-components/form-field/toggle-button/toggle-button.component.mjs +75 -0
- package/esm2022/lib/components/shared-components/index.mjs +10 -0
- package/esm2022/lib/components/shared-components/terms-conditions/terms-conditions.component.mjs +31 -0
- package/esm2022/lib/components/shared-components/title-section/title-section.component.mjs +31 -0
- package/esm2022/lib/constants/constants.mjs +144 -0
- package/esm2022/lib/constants/index.mjs +2 -0
- package/esm2022/lib/environments/environment.local.mjs +27 -0
- package/esm2022/lib/functions/data-to-blob.mjs +12 -0
- package/esm2022/lib/functions/encode-password.mjs +14 -0
- package/esm2022/lib/functions/handel-error-response.mjs +12 -0
- package/esm2022/lib/functions/index.mjs +5 -0
- package/esm2022/lib/functions/is-valid-data.mjs +42 -0
- package/esm2022/lib/hooks/index.mjs +3 -0
- package/esm2022/lib/hooks/load-form.mjs +13 -0
- package/esm2022/lib/hooks/save-form.mjs +18 -0
- package/esm2022/lib/i18n/ar.mjs +183 -0
- package/esm2022/lib/i18n/en.mjs +187 -0
- package/esm2022/lib/i18n/index.mjs +3 -0
- package/esm2022/lib/interfaces/api-response.interface.mjs +2 -0
- package/esm2022/lib/interfaces/document-file.interface.mjs +2 -0
- package/esm2022/lib/interfaces/form-items.interface.mjs +2 -0
- package/esm2022/lib/interfaces/form.interface.mjs +150 -0
- package/esm2022/lib/interfaces/igate-user.interface.mjs +2 -0
- package/esm2022/lib/interfaces/index.mjs +8 -0
- package/esm2022/lib/interfaces/lov-list.interface.mjs +2 -0
- package/esm2022/lib/interfaces/lov.interface.mjs +2 -0
- package/esm2022/lib/interfaces/shared.interface.mjs +2 -0
- package/esm2022/lib/pipes/currency.pipe.mjs +66 -0
- package/esm2022/lib/pipes/format-as-password.pipe.mjs +19 -0
- package/esm2022/lib/pipes/index.mjs +3 -0
- package/esm2022/lib/services/feedBack.service.mjs +80 -0
- package/esm2022/lib/services/i18n.service.mjs +36 -0
- package/esm2022/lib/services/index.mjs +3 -0
- package/esm2022/lib/services/sidenav.service.mjs +69 -0
- package/esm2022/lib/validators/ar.directive.mjs +53 -0
- package/esm2022/lib/validators/currency.directive.mjs +74 -0
- package/esm2022/lib/validators/en.directive.mjs +50 -0
- package/esm2022/lib/validators/id.validator.mjs +66 -0
- package/esm2022/lib/validators/index.mjs +8 -0
- package/esm2022/lib/validators/string-to-boolean.pipe.mjs +16 -0
- package/esm2022/lib/validators/text.directive.mjs +50 -0
- package/esm2022/lib/validators/timer.pipe.mjs +19 -0
- package/esm2022/public-api.mjs +16 -0
- package/fesm2022/bpm-core.mjs +6005 -0
- package/fesm2022/bpm-core.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/classes/form-validation.d.ts +19 -0
- package/lib/classes/index.d.ts +1 -0
- package/lib/components/app-component-sections/activities/activities.component.d.ts +22 -0
- package/lib/components/app-component-sections/comment-section/comment-section.component.d.ts +19 -0
- package/lib/components/app-component-sections/faq-sidenav/faq-sidenav.component.d.ts +13 -0
- package/lib/components/app-component-sections/faqs/faqs.component.d.ts +17 -0
- package/lib/components/app-component-sections/faqs/index.d.ts +1 -0
- package/lib/components/app-component-sections/feedback-section/feedback-section.component.d.ts +38 -0
- package/lib/components/app-component-sections/form-section/form-section.component.d.ts +58 -0
- package/lib/components/app-component-sections/index.d.ts +8 -0
- package/lib/components/app-component-sections/main-request-details/main-request-details.component.d.ts +13 -0
- package/lib/components/app-component-sections/profile-section/profile-section.component.d.ts +17 -0
- package/lib/components/app-component-sections/service-header/service-header.component.d.ts +35 -0
- package/lib/components/app-component-sections/status/status.component.d.ts +23 -0
- package/lib/components/app-component-sections/workflow-section/workflow-section.component.d.ts +29 -0
- package/lib/components/shared-components/confirmation-popup/confirmation-popup.component.d.ts +25 -0
- package/lib/components/shared-components/delete-popup/delete-popup.component.d.ts +6 -0
- package/lib/components/shared-components/dialogs/confirm-dialog/confirm-dialog.component.d.ts +11 -0
- package/lib/components/shared-components/dialogs/delete-dialog/delete-dialog.component.d.ts +11 -0
- package/lib/components/shared-components/dialogs/submit-dialog/submit-dialog.component.d.ts +15 -0
- package/lib/components/shared-components/doc-uploader/docs-uploader.component.d.ts +144 -0
- package/lib/components/shared-components/form-field/add-attachment-section/add-attachment-section.component.d.ts +16 -0
- package/lib/components/shared-components/form-field/attachment-section/attachment-section.component.d.ts +30 -0
- package/lib/components/shared-components/form-field/base-component/base-component.component.d.ts +63 -0
- package/lib/components/shared-components/form-field/checkbox/checkbox.component.d.ts +18 -0
- package/lib/components/shared-components/form-field/custom-searchable-autocomplete/custom-searchable.component.d.ts +29 -0
- package/lib/components/shared-components/form-field/date-picker/date-format.d.ts +17 -0
- package/lib/components/shared-components/form-field/date-picker/date-picker.component.d.ts +41 -0
- package/lib/components/shared-components/form-field/date-range-picker/date-range-picker.component.d.ts +10 -0
- package/lib/components/shared-components/form-field/form-label/form-label.component.d.ts +12 -0
- package/lib/components/shared-components/form-field/index.d.ts +24 -0
- package/lib/components/shared-components/form-field/info-item/info-item.component.d.ts +23 -0
- package/lib/components/shared-components/form-field/input/input.component.d.ts +32 -0
- package/lib/components/shared-components/form-field/input-autocomplete/index.d.ts +1 -0
- package/lib/components/shared-components/form-field/input-autocomplete/input-autocomplete.model.d.ts +6 -0
- package/lib/components/shared-components/form-field/input-currency/input-currency.component.d.ts +31 -0
- package/lib/components/shared-components/form-field/input-email/input-email.component.d.ts +27 -0
- package/lib/components/shared-components/form-field/input-mask/input-mask.component.d.ts +27 -0
- package/lib/components/shared-components/form-field/input-number/input-number.component.d.ts +30 -0
- package/lib/components/shared-components/form-field/input-telephone/input-telephone.component.d.ts +45 -0
- package/lib/components/shared-components/form-field/radio/radio.component.d.ts +10 -0
- package/lib/components/shared-components/form-field/repeated-list/repeated-list.component.d.ts +9 -0
- package/lib/components/shared-components/form-field/search-employee/search-employee.component.d.ts +44 -0
- package/lib/components/shared-components/form-field/select/select.component.d.ts +36 -0
- package/lib/components/shared-components/form-field/table-list/table-list.component.d.ts +26 -0
- package/lib/components/shared-components/form-field/textarea/special-chars.directive.d.ts +10 -0
- package/lib/components/shared-components/form-field/textarea/textarea.component.d.ts +20 -0
- package/lib/components/shared-components/form-field/toggle-button/toggle-button.component.d.ts +20 -0
- package/lib/components/shared-components/index.d.ts +9 -0
- package/lib/components/shared-components/terms-conditions/terms-conditions.component.d.ts +12 -0
- package/lib/components/shared-components/title-section/title-section.component.d.ts +13 -0
- package/lib/constants/constants.d.ts +122 -0
- package/lib/constants/index.d.ts +1 -0
- package/lib/environments/environment.local.d.ts +26 -0
- package/lib/functions/data-to-blob.d.ts +1 -0
- package/lib/functions/encode-password.d.ts +1 -0
- package/lib/functions/handel-error-response.d.ts +4 -0
- package/lib/functions/index.d.ts +4 -0
- package/lib/functions/is-valid-data.d.ts +1 -0
- package/lib/hooks/index.d.ts +2 -0
- package/lib/hooks/load-form.d.ts +10 -0
- package/lib/hooks/save-form.d.ts +15 -0
- package/lib/i18n/ar.d.ts +170 -0
- package/lib/i18n/en.d.ts +174 -0
- package/lib/i18n/index.d.ts +2 -0
- package/lib/interfaces/api-response.interface.d.ts +5 -0
- package/lib/interfaces/document-file.interface.d.ts +12 -0
- package/lib/interfaces/form-items.interface.d.ts +14 -0
- package/lib/interfaces/form.interface.d.ts +95 -0
- package/lib/interfaces/igate-user.interface.d.ts +16 -0
- package/lib/interfaces/index.d.ts +7 -0
- package/lib/interfaces/lov-list.interface.d.ts +10 -0
- package/lib/interfaces/lov.interface.d.ts +19 -0
- package/lib/interfaces/shared.interface.d.ts +21 -0
- package/lib/pipes/currency.pipe.d.ts +13 -0
- package/lib/pipes/format-as-password.pipe.d.ts +7 -0
- package/lib/pipes/index.d.ts +2 -0
- package/lib/services/feedBack.service.d.ts +21 -0
- package/lib/services/i18n.service.d.ts +10 -0
- package/lib/services/index.d.ts +2 -0
- package/lib/services/sidenav.service.d.ts +28 -0
- package/lib/validators/ar.directive.d.ts +11 -0
- package/lib/validators/currency.directive.d.ts +16 -0
- package/lib/validators/en.directive.d.ts +11 -0
- package/lib/validators/id.validator.d.ts +3 -0
- package/lib/validators/index.d.ts +7 -0
- package/lib/validators/string-to-boolean.pipe.d.ts +7 -0
- package/lib/validators/text.directive.d.ts +12 -0
- package/lib/validators/timer.pipe.d.ts +7 -0
- package/package.json +26 -0
- package/public-api.d.ts +13 -0
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { OnChanges, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { BaseComponent } from '../base-component/base-component.component';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class TextareaComponent extends BaseComponent implements OnChanges {
|
|
5
|
+
label: string;
|
|
6
|
+
tooltip: string;
|
|
7
|
+
className: string;
|
|
8
|
+
preventSpecailChar: boolean;
|
|
9
|
+
textAreaFocus: boolean;
|
|
10
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
11
|
+
ngOnInit(): void;
|
|
12
|
+
focusInFunction(): void;
|
|
13
|
+
focusOutFunction(): void;
|
|
14
|
+
validateTextAreaBorder(): {
|
|
15
|
+
"field-border-error": boolean;
|
|
16
|
+
};
|
|
17
|
+
onValueChange(event: any): void;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TextareaComponent, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TextareaComponent, "app-textarea", never, { "label": { "alias": "label"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "className": { "alias": "className"; "required": false; }; "preventSpecailChar": { "alias": "preventSpecailChar"; "required": false; }; }, {}, never, never, true, never>;
|
|
20
|
+
}
|
package/lib/components/shared-components/form-field/toggle-button/toggle-button.component.d.ts
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { BaseComponent } from './../base-component/base-component.component';
|
|
2
|
+
import { EventEmitter } from '@angular/core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ToggleButtonComponent extends BaseComponent {
|
|
5
|
+
label: string;
|
|
6
|
+
tooltip: string;
|
|
7
|
+
className: string;
|
|
8
|
+
showLabel: boolean;
|
|
9
|
+
data: any[];
|
|
10
|
+
onChange: EventEmitter<any>;
|
|
11
|
+
error: string;
|
|
12
|
+
optionAr: string;
|
|
13
|
+
optionEn: string;
|
|
14
|
+
hasHint: boolean;
|
|
15
|
+
ngOnInit(): void;
|
|
16
|
+
resetKeyValue(): void;
|
|
17
|
+
emitSelectedValue(event: any): void;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ToggleButtonComponent, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ToggleButtonComponent, "app-toggle-button", never, { "label": { "alias": "label"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "className": { "alias": "className"; "required": false; }; "showLabel": { "alias": "showLabel"; "required": false; }; "data": { "alias": "data"; "required": false; }; "error": { "alias": "error"; "required": false; }; "optionAr": { "alias": "optionAr"; "required": false; }; "optionEn": { "alias": "optionEn"; "required": false; }; "hasHint": { "alias": "hasHint"; "required": false; }; }, { "onChange": "onChange"; }, never, never, true, never>;
|
|
20
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export * from './confirmation-popup/confirmation-popup.component';
|
|
2
|
+
export * from './delete-popup/delete-popup.component';
|
|
3
|
+
export * from './dialogs/delete-dialog/delete-dialog.component';
|
|
4
|
+
export * from './dialogs/submit-dialog/submit-dialog.component';
|
|
5
|
+
export * from './dialogs/confirm-dialog/confirm-dialog.component';
|
|
6
|
+
export * from './doc-uploader/docs-uploader.component';
|
|
7
|
+
export * from './form-field';
|
|
8
|
+
export * from './terms-conditions/terms-conditions.component';
|
|
9
|
+
export * from './title-section/title-section.component';
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { MatDialogRef } from '@angular/material/dialog';
|
|
2
|
+
import { CoreI18nService } from '../../../services';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class TermsConditionsComponent {
|
|
5
|
+
dialogRef: MatDialogRef<TermsConditionsComponent>;
|
|
6
|
+
i18n: CoreI18nService;
|
|
7
|
+
data: any;
|
|
8
|
+
termsBody: string;
|
|
9
|
+
constructor(dialogRef: MatDialogRef<TermsConditionsComponent>, i18n: CoreI18nService, data: any);
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TermsConditionsComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TermsConditionsComponent, "app-terms-conditions", never, {}, {}, never, never, true, never>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { MatDialog } from '@angular/material/dialog';
|
|
2
|
+
import { SidenavService } from '../../../services';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class TitleSectionComponent {
|
|
5
|
+
private sidenavService;
|
|
6
|
+
private dialog;
|
|
7
|
+
title: string;
|
|
8
|
+
tooltip: boolean;
|
|
9
|
+
constructor(sidenavService: SidenavService, dialog: MatDialog);
|
|
10
|
+
openFaq(): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TitleSectionComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TitleSectionComponent, "app-title-section", never, { "title": { "alias": "title"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; }, {}, never, ["[filter]", "[action]", "[search]"], false, never>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
export declare const DONT_SHOW: any;
|
|
2
|
+
export declare const NO_COMMENTS = false;
|
|
3
|
+
export declare const HAS_COMMENTS = true;
|
|
4
|
+
export declare const URL_SEPARATOR = "/";
|
|
5
|
+
export declare const READ_ONLY = true;
|
|
6
|
+
export declare const WRITE_MODE = false;
|
|
7
|
+
export declare const NO_VALUE: any;
|
|
8
|
+
export declare const TRUE_STRING = "TRUE";
|
|
9
|
+
export declare const FALSE_STRING = "FALSE";
|
|
10
|
+
export declare const TRUE_BOOL = true;
|
|
11
|
+
export declare const FALSE_BOOL = false;
|
|
12
|
+
export declare const STATE_MACHINE_STATUS_IDLE = "idle";
|
|
13
|
+
export declare const STATE_MACHINE_STATUS_FETCHING = "fetching";
|
|
14
|
+
export declare const STATE_MACHINE_STATUS_SENDING = "sending";
|
|
15
|
+
export declare const STATE_MACHINE_STATUS_RESULT = "result";
|
|
16
|
+
export declare const STATE_MACHINE_STATUS_ERROR = "error";
|
|
17
|
+
export declare const STATE_MACHINE_ACTION_LOAD_FORM = "loadForm";
|
|
18
|
+
export declare const STATE_MACHINE_ACTION_SUBMIT_FORM = "submitForm";
|
|
19
|
+
export declare const STATE_MACHINE_ACTION_SEARCH_EMPLOYEE = "searchEmployee";
|
|
20
|
+
export declare const STATE_MACHINE_ACTION_EMPLOYEE_PROFILE = "employeeProfile";
|
|
21
|
+
export declare const STATE_MACHINE_ACTION_SUCCESS_WM = "successWm";
|
|
22
|
+
export declare const STATE_MACHINE_ACTION_SUCCESS_RESPONSE = "serviceResponce";
|
|
23
|
+
export declare const STATE_MACHINE_ACTION_SUCCESS_USERS = "successUsers";
|
|
24
|
+
export declare const STATE_MACHINE_ACTION_CONVERT = "convert";
|
|
25
|
+
export declare const STATE_MACHINE_ACTION_SUCCESS = "success";
|
|
26
|
+
export declare const STATE_MACHINE_ACTION_FAILURE = "failure";
|
|
27
|
+
export declare const STATE_MACHINE_ACTION_HANDLE_ERROR = "handleError";
|
|
28
|
+
export declare const STATE_MACHINE_ACTION_LOAD_FILE = "loadFile";
|
|
29
|
+
export declare const STATE_MACHINE_ACTION_USER_MAF = "userDetails";
|
|
30
|
+
export declare const STATE_MACHINE_ACTION_USER_CEP = "user";
|
|
31
|
+
export declare const STATE_MACHINE_ACTION_CALC = "calc";
|
|
32
|
+
export declare const STATE_MACHINE_ACTION_SHOW_PRINT = "showPrint";
|
|
33
|
+
export declare const STATE_MACHINE_ACTION_SUCCESS_PRINT = "successPrint";
|
|
34
|
+
export declare const SERVICE_NAME_WM_HTML_GENERATOR = "htmlGenerator";
|
|
35
|
+
export declare const PROCESS_NAME_CODE = "SCR";
|
|
36
|
+
export declare const HTTP_PROTOCOL_HTTP = "http://";
|
|
37
|
+
export declare const HTTP_PROTOCOL_HTTPS = "https://";
|
|
38
|
+
export declare const HTTP_METHOD_GET = "GET";
|
|
39
|
+
export declare const HTTP_METHOD_POST = "POST";
|
|
40
|
+
export declare const HTTP_METHOD_PUT = "PUT";
|
|
41
|
+
export declare const TARGET_SERVER_WM = "WM";
|
|
42
|
+
export declare const TARGET_SERVER_DP = "DP";
|
|
43
|
+
export declare const SERVICE_NAME_WM_FORM = "form";
|
|
44
|
+
export declare const SERVICE_NAME_WM_CHILD_FORM = "";
|
|
45
|
+
export declare const SERVICE_NAME_DP_SEARCH_EMPLOYEE = "igate.users.search.v3";
|
|
46
|
+
export declare const LANGUAGE_CODE_EN = "en";
|
|
47
|
+
export declare const LANGUAGE_CODE_AR = "ar";
|
|
48
|
+
export declare const IGATE_STATIC_ASSET_PROFILE_PHOTO_URL = "/group/i-gate/wm-bpm/forms/-/proxy/portrait?email=";
|
|
49
|
+
export declare const HEADER_CONTENT_TYPE_FORM = "application/x-www-form-urlencoded";
|
|
50
|
+
export declare const ROLE_REQUESTER = "R";
|
|
51
|
+
export declare const SECTION_ID_REQUEST_DETAILS = "requestDetails";
|
|
52
|
+
export declare const SECTION_ID_GM_PARTIAL_ROLE = "GM";
|
|
53
|
+
export declare const SECTION_ID_SM_PARTIAL_ROLE = "SM";
|
|
54
|
+
export declare const SECTION_ID_DM_PARTIAL_ROLE = "DM";
|
|
55
|
+
export declare const SECTION_ID_VP_PARTIAL_ROLE = "VP";
|
|
56
|
+
export declare const SECTION_ID_SVP_PARTIAL_ROLE = "SVP";
|
|
57
|
+
export declare const SECTION_ID_EXECUTE_PARTIAL_ROLE = "GovtRelationsLead";
|
|
58
|
+
export declare const SECTION_ID_PERFORM_PARTIAL_ROLE = "GovtRelationsMember";
|
|
59
|
+
export declare const SECTION_ID_EMP_INFO_APPROVAL_PARTIAL_ROLE = "EmpInfo";
|
|
60
|
+
export declare const SECTION_ID_PAYROLL_APPROVAL_PARTIAL_ROLE = "Payroll";
|
|
61
|
+
export declare const SECTION_ID_REQUESTER_PARTIAL_NAME = "Requester";
|
|
62
|
+
export declare const SECTION_ID_APPROVAL_PARTIAL_NAME = "Approval";
|
|
63
|
+
export declare const SECTION_ID_NOTHING_PARTIAL_NAME = "";
|
|
64
|
+
export declare const SECTION_STATUS_PENDING = "PENDING";
|
|
65
|
+
export declare const SECTION_STATUS_APPROVED = "APPROVED";
|
|
66
|
+
export declare const SECTION_STATUS_UNSATISFIED = "UNSATISFIED";
|
|
67
|
+
export declare const WM_ACTION_SAVE = "SAVE";
|
|
68
|
+
export declare const WM_ACTION_SUBMIT = "SUBMIT";
|
|
69
|
+
export declare const FORM_STATUS_NEW = "NEW";
|
|
70
|
+
export declare const FORM_STATUS_PENDING = "PENDING";
|
|
71
|
+
export declare const FORM_STATUS_APPROVED = "APPROVED";
|
|
72
|
+
export declare const FORM_STATUS_REJECTED = "REJECTED";
|
|
73
|
+
export declare const FORM_STATUS_SEND_BACK = "SENDBACK";
|
|
74
|
+
export declare const FORM_STATUS_CANCELLED = "CANCELLED";
|
|
75
|
+
export declare const FORM_STATUS_COMPLETED = "COMPLETED";
|
|
76
|
+
export declare const STATE_MACHINE_ACTION_LOAD_HISTORY = "loadHistory";
|
|
77
|
+
export declare const STATE_MACHINE_ACTION_SUCCESS_HISTORY = "successHistory";
|
|
78
|
+
export declare const SERVICE_NAME_DP_LOAD_HISTORY = "igate.get.inbox.item.workflow";
|
|
79
|
+
export declare const WM_ACTION_SAVE_CHANGES = "SAVE_CHANGES";
|
|
80
|
+
export declare const SERVICE_NAME_WM_DRAFT_FORM = "draft";
|
|
81
|
+
export declare const STATE_MACHINE_ACTION_GET_INBOX_ITEM = "getInboxItem";
|
|
82
|
+
export declare const SERVICE_NAME_DP_INBOX_ITEM = "igate.get.inbox.item";
|
|
83
|
+
export declare const STATE_MACHINE_ACTION_SUCCESS_INBOX_ITEM = "successInboxItem";
|
|
84
|
+
export declare const STATE_MACHINE_ACTION_SET_FLAG = "setFlagPriority";
|
|
85
|
+
export declare const SERVICE_NAME_DP_UPDATE_INBOX_ITEM = "igate.update.inbox.item";
|
|
86
|
+
export declare const STATE_MACHINE_ACTION_INBOX_ITEM_RESPONSE = "inboxItemResponse";
|
|
87
|
+
export declare const FEEDBACK_STATUS_REQUEST = "requestFeedback";
|
|
88
|
+
export declare const FEEDBACK_STATUS_RESPOND = "respondToFeedback";
|
|
89
|
+
export declare const FEEDBACK_STATUS_WAITING = "waitingFeedback";
|
|
90
|
+
export declare const FEEDBACK_STATUS_RESPONDED = "feedbackResponded";
|
|
91
|
+
export declare const STATE_MACHINE_ACTION_SUBMIT_FEEDBACK = "submitFeedback";
|
|
92
|
+
export declare const STATE_MACHINE_ACTION_GET_FEEDBACK = "getFeedback";
|
|
93
|
+
export declare const STATE_MACHINE_ACTION_UPDATE_FEEDBACK = "submitFeedbackResponse";
|
|
94
|
+
export declare const SERVICE_NAME_DP_CREATE_FEEDBACK = "igate.create.inbox.item.feedback";
|
|
95
|
+
export declare const STATE_NAME_DP_GET_FEEDBACK = "igate.get.inbox.item.feedback";
|
|
96
|
+
export declare const SERVICE_NAME_DP_UPDATE_FEEDBACK = "igate.update.inbox.item.feedback";
|
|
97
|
+
export declare const PROFILE_CONTAINER = "#profileFormContent";
|
|
98
|
+
export declare const COMMENT_CONTAINER = "#commentsFormContent";
|
|
99
|
+
export declare const FEEDBACK_CONTAINER = "#feedbackFormContent";
|
|
100
|
+
export declare const INBOX_STATUS_PENDING = "pending";
|
|
101
|
+
export declare const INBOX_STATUS_PROCESSED = "processed";
|
|
102
|
+
export declare const INBOX_STATUS_SENT = "sent";
|
|
103
|
+
export declare const REPORT = "report";
|
|
104
|
+
export declare const DATE_TIME = "DD/MM/YYYY HH:mm:ss";
|
|
105
|
+
export declare const DATE_DASH = "DD-MMM-YYYY";
|
|
106
|
+
export declare const DATE_SLASH = "DD/MM/YYYY";
|
|
107
|
+
export declare const SERVICE_NAME_WM_GET_APPROVED_REQUEST = "requests";
|
|
108
|
+
export declare const SERVICE_NAME_WM_GET_MY_APPROVED_REQUEST = "myRequests";
|
|
109
|
+
export declare const STATE_MACHINE_ACTION_GET_APPROVED_REQUEST = "getApprovedRequest";
|
|
110
|
+
export declare const STATE_MACHINE_ACTION_GET_APPROVED_REQUEST_RESPONSE = "getApprovedRequestResponse";
|
|
111
|
+
export declare const STATE_MACHINE_ACTION_PROJECT_MAF = "projectDetails";
|
|
112
|
+
export declare const STATE_MACHINE_ACTION_PROJECT_CEP = "project";
|
|
113
|
+
export declare const STATE_MACHINE_ACTION_COMMONAPI = "commonApi";
|
|
114
|
+
export declare const STATE_MACHINE_ACTION_SEARCH = "search";
|
|
115
|
+
export declare const STATE_MACHINE_ACTION_PPROVED_REQUESTS = "approvedRequests";
|
|
116
|
+
export declare const GETSIPORTENTRYGROUPS = "getSiportEntryGroups";
|
|
117
|
+
export declare const GETSIPORTENTRYLOCATIONS = "getSiportEntryLocations";
|
|
118
|
+
export declare const STATE_MACHINE_ACTION_SUCCESS_SERVICES = "serviceResponce";
|
|
119
|
+
export declare const SERVICE_NAME_MAF = "MAF";
|
|
120
|
+
export declare const SERVICE_NAME_CEP = "CEP";
|
|
121
|
+
export declare const STATE_MACHINE_ACTION_PDF = "pdfAttachments";
|
|
122
|
+
export declare const LOGOUT_URL = "/c/portal/logout";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './constants';
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
export declare const environment: {
|
|
2
|
+
production: boolean;
|
|
3
|
+
CONFIG_NAME: string;
|
|
4
|
+
proxyAddress: string;
|
|
5
|
+
proxyPort: string;
|
|
6
|
+
formConfigApproval: string;
|
|
7
|
+
formConfigPerGov: string;
|
|
8
|
+
formConfigPerGovAr: string;
|
|
9
|
+
formConfigExecute: string;
|
|
10
|
+
formConfigPayroll: string;
|
|
11
|
+
formName: string;
|
|
12
|
+
formId: string;
|
|
13
|
+
authToken: string;
|
|
14
|
+
proxyServiceBaseUrl: string;
|
|
15
|
+
proxyFullAddress: string;
|
|
16
|
+
proxyServiceAuthorization: string;
|
|
17
|
+
proxyServiceExecute: string;
|
|
18
|
+
proxyServiceAttachment: string;
|
|
19
|
+
proxyServiceForms: string;
|
|
20
|
+
proxyServiceLanguageURLPart: string;
|
|
21
|
+
formConfigAproval: string;
|
|
22
|
+
formConfigNew: string;
|
|
23
|
+
formConfigNewAr: string;
|
|
24
|
+
formConfigSubmit: string;
|
|
25
|
+
formConfigSubmitAr: string;
|
|
26
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function dataURItoBlob(dataURI: any, mimeType?: string): Blob;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function encodePassword(formId: string, password: string): string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function isValidData(data: any): boolean;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { Section } from "../interfaces";
|
|
2
|
+
declare const _default: {
|
|
3
|
+
beforeTranspileSection(section: Section): Section;
|
|
4
|
+
beforeSendPayload(submitPayload: {
|
|
5
|
+
[key: string]: any;
|
|
6
|
+
}): {
|
|
7
|
+
[key: string]: any;
|
|
8
|
+
};
|
|
9
|
+
afterSendPayload(responsePayload: {
|
|
10
|
+
[key: string]: any;
|
|
11
|
+
}): {
|
|
12
|
+
[key: string]: any;
|
|
13
|
+
};
|
|
14
|
+
};
|
|
15
|
+
export default _default;
|
package/lib/i18n/ar.d.ts
ADDED
|
@@ -0,0 +1,170 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
pageErrorLoading: string;
|
|
3
|
+
pageTimeOut: string;
|
|
4
|
+
reset: string;
|
|
5
|
+
submit: string;
|
|
6
|
+
selectYourOption: string;
|
|
7
|
+
optional: string;
|
|
8
|
+
Optional: string;
|
|
9
|
+
browse: string;
|
|
10
|
+
MyRequests: string;
|
|
11
|
+
maxAllowedSize: string;
|
|
12
|
+
requestDetailsTitle: string;
|
|
13
|
+
hrRequestDetailsTitle: string;
|
|
14
|
+
applyRequestFor: string;
|
|
15
|
+
searchForEmployee: string;
|
|
16
|
+
directManager: string;
|
|
17
|
+
employeeEmail: string;
|
|
18
|
+
generalDepartmentName: string;
|
|
19
|
+
departmentName: string;
|
|
20
|
+
generalDepartmentCode: string;
|
|
21
|
+
humanResourcesLocation: string;
|
|
22
|
+
nationality: string;
|
|
23
|
+
businessPhone: string;
|
|
24
|
+
Viewapprovalcycle: string;
|
|
25
|
+
approvalcycle: string;
|
|
26
|
+
viewAllDetails: string;
|
|
27
|
+
jobPosition: string;
|
|
28
|
+
sector: string;
|
|
29
|
+
delegateTo: string;
|
|
30
|
+
processedBy: string;
|
|
31
|
+
gregorian: string;
|
|
32
|
+
hijri: string;
|
|
33
|
+
successSubmited: string;
|
|
34
|
+
lenghtMin15Max500: string;
|
|
35
|
+
lenghtMin15Max1000: string;
|
|
36
|
+
minLength15: string;
|
|
37
|
+
maxlength500: string;
|
|
38
|
+
maxSize: string;
|
|
39
|
+
unsupportedType: string;
|
|
40
|
+
unsupportedTypeImgPdf: string;
|
|
41
|
+
unsupportedTypeImgPdf2: string;
|
|
42
|
+
unsupportedTypeImg: string;
|
|
43
|
+
unsupportedTypePdf: string;
|
|
44
|
+
noUsersFound: string;
|
|
45
|
+
formTableFormId: string;
|
|
46
|
+
formTableFormStatus: string;
|
|
47
|
+
formTableCreationDate: string;
|
|
48
|
+
formTablePendingWith: string;
|
|
49
|
+
formTableBackToInbox: string;
|
|
50
|
+
requestFeedback: string;
|
|
51
|
+
requestTo: string;
|
|
52
|
+
feedback: string;
|
|
53
|
+
viewFeedback: string;
|
|
54
|
+
requestFrom: string;
|
|
55
|
+
feedbackQuestion: string;
|
|
56
|
+
employeeSearch: string;
|
|
57
|
+
searchEmployeeTooltip_1: string;
|
|
58
|
+
searchEmployeeTooltip_2: string;
|
|
59
|
+
searchEmployeeTooltip_3: string;
|
|
60
|
+
searchEmployeeTooltip_4: string;
|
|
61
|
+
onBehalfFlag: string;
|
|
62
|
+
onBehalfOfEmail: string;
|
|
63
|
+
commentHistory: string;
|
|
64
|
+
NODATA: string;
|
|
65
|
+
termsAndConditions: string;
|
|
66
|
+
"no-files": string;
|
|
67
|
+
"drag-files": string;
|
|
68
|
+
"limit-error": string;
|
|
69
|
+
"size-error": string;
|
|
70
|
+
"type-error": string;
|
|
71
|
+
"duplicated-error": string;
|
|
72
|
+
thisIsInvalidFile: string;
|
|
73
|
+
add: string;
|
|
74
|
+
addAttachments: string;
|
|
75
|
+
attachmentdescription: string;
|
|
76
|
+
attachmentcomment: string;
|
|
77
|
+
addAttachment: string;
|
|
78
|
+
locationOfIncident: string;
|
|
79
|
+
FileName: string;
|
|
80
|
+
FileDescription: string;
|
|
81
|
+
Attachments: string;
|
|
82
|
+
Attachment: string;
|
|
83
|
+
comment: string;
|
|
84
|
+
comments: string;
|
|
85
|
+
description: string;
|
|
86
|
+
processingDate: string;
|
|
87
|
+
Approvals: string;
|
|
88
|
+
submittedSuccessfully: string;
|
|
89
|
+
support: string;
|
|
90
|
+
support2: string;
|
|
91
|
+
mb: string;
|
|
92
|
+
support3: string;
|
|
93
|
+
employeeID: string;
|
|
94
|
+
NoData: string;
|
|
95
|
+
NoData1: string;
|
|
96
|
+
NoData2: string;
|
|
97
|
+
Delete: string;
|
|
98
|
+
ViewDetails: string;
|
|
99
|
+
fullName: string;
|
|
100
|
+
welcomeBack: string;
|
|
101
|
+
Hello: string;
|
|
102
|
+
Cancel: string;
|
|
103
|
+
validEmailError: string;
|
|
104
|
+
validFieldError: string;
|
|
105
|
+
validSelectError: string;
|
|
106
|
+
validSearchError: string;
|
|
107
|
+
delete: string;
|
|
108
|
+
Areyousureyouwantdelete: string;
|
|
109
|
+
"drf-confirmatton-msg": string;
|
|
110
|
+
"Yes-Proceed": string;
|
|
111
|
+
"No-Discard": string;
|
|
112
|
+
yes: string;
|
|
113
|
+
NoAttachments: string;
|
|
114
|
+
cancel: string;
|
|
115
|
+
View: string;
|
|
116
|
+
edit: string;
|
|
117
|
+
placeholder: string;
|
|
118
|
+
downloadLink: string;
|
|
119
|
+
link: string;
|
|
120
|
+
AttachmentInvoices: string;
|
|
121
|
+
AttachmentsOfBank: string;
|
|
122
|
+
DepositVoucherAttachments: string;
|
|
123
|
+
serviceBrief: string;
|
|
124
|
+
PreviousRequests: string;
|
|
125
|
+
'Product Implementation': string;
|
|
126
|
+
'Sales Order and Quality Assurance': string;
|
|
127
|
+
'Billing Support and Contracts': string;
|
|
128
|
+
'Sales Excellence': string;
|
|
129
|
+
'Order Engineering and Delivery Management': string;
|
|
130
|
+
'Third Party Control and Projects': string;
|
|
131
|
+
'Enterprise Customer Care': string;
|
|
132
|
+
'Enterprise Account Sales': string;
|
|
133
|
+
'Government Accounts Sales': string;
|
|
134
|
+
'Marketing Communications': string;
|
|
135
|
+
'Customer Experience Excellence': string;
|
|
136
|
+
'Commercial Regulation': string;
|
|
137
|
+
'Enterprise Commercial Finance': string;
|
|
138
|
+
'Product Pricing and Profitability': string;
|
|
139
|
+
'Data Protection and Privacy': string;
|
|
140
|
+
'Customer Value Management': string;
|
|
141
|
+
termNote1: string;
|
|
142
|
+
termNote2: string;
|
|
143
|
+
termNote3: string;
|
|
144
|
+
termNote4: string;
|
|
145
|
+
termNote5: string;
|
|
146
|
+
termNote6: string;
|
|
147
|
+
termNote7: string;
|
|
148
|
+
termNote8: string;
|
|
149
|
+
termNote9: string;
|
|
150
|
+
termNote10: string;
|
|
151
|
+
termNote11: string;
|
|
152
|
+
messageErrorPhoneNumber: string;
|
|
153
|
+
serviceAgreement: string;
|
|
154
|
+
lengthError: string;
|
|
155
|
+
userAlreadyExist: string;
|
|
156
|
+
INTERNAL: string;
|
|
157
|
+
SPECIFIC_OR_CONFIDENTIAL: string;
|
|
158
|
+
AVAILABLE: string;
|
|
159
|
+
other: string;
|
|
160
|
+
others: string;
|
|
161
|
+
selectAll: string;
|
|
162
|
+
URGENT: string;
|
|
163
|
+
NORMAL: string;
|
|
164
|
+
select: string;
|
|
165
|
+
addMultiAttachments: string;
|
|
166
|
+
welcome: string;
|
|
167
|
+
logout: string;
|
|
168
|
+
otherLang: string;
|
|
169
|
+
};
|
|
170
|
+
export default _default;
|
package/lib/i18n/en.d.ts
ADDED
|
@@ -0,0 +1,174 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
pageTimeOut: string;
|
|
3
|
+
pageErrorLoading: string;
|
|
4
|
+
reset: string;
|
|
5
|
+
submit: string;
|
|
6
|
+
selectYourOption: string;
|
|
7
|
+
optional: string;
|
|
8
|
+
Optional: string;
|
|
9
|
+
browse: string;
|
|
10
|
+
requestDetailsTitle: string;
|
|
11
|
+
hrRequestDetailsTitle: string;
|
|
12
|
+
applyRequestFor: string;
|
|
13
|
+
searchForEmployee: string;
|
|
14
|
+
directManager: string;
|
|
15
|
+
employeeEmail: string;
|
|
16
|
+
generalDepartmentName: string;
|
|
17
|
+
departmentName: string;
|
|
18
|
+
generalDepartmentCode: string;
|
|
19
|
+
humanResourcesLocation: string;
|
|
20
|
+
nationality: string;
|
|
21
|
+
businessPhone: string;
|
|
22
|
+
viewAllDetails: string;
|
|
23
|
+
jobPosition: string;
|
|
24
|
+
sector: string;
|
|
25
|
+
delegateTo: string;
|
|
26
|
+
processedBy: string;
|
|
27
|
+
gregorian: string;
|
|
28
|
+
hijri: string;
|
|
29
|
+
successSubmited: string;
|
|
30
|
+
lenghtMin15Max500: string;
|
|
31
|
+
lenghtMin15Max1000: string;
|
|
32
|
+
minLength15: string;
|
|
33
|
+
maxlength500: string;
|
|
34
|
+
maxSize: string;
|
|
35
|
+
unsupportedType: string;
|
|
36
|
+
unsupportedTypeImgPdf: string;
|
|
37
|
+
unsupportedTypeImgPdf2: string;
|
|
38
|
+
unsupportedTypeImg: string;
|
|
39
|
+
unsupportedTypePdf: string;
|
|
40
|
+
noUsersFound: string;
|
|
41
|
+
formTableFormId: string;
|
|
42
|
+
formTableFormStatus: string;
|
|
43
|
+
formTableCreationDate: string;
|
|
44
|
+
formTablePendingWith: string;
|
|
45
|
+
formTableBackToInbox: string;
|
|
46
|
+
requestFeedback: string;
|
|
47
|
+
requestTo: string;
|
|
48
|
+
feedback: string;
|
|
49
|
+
viewFeedback: string;
|
|
50
|
+
requestFrom: string;
|
|
51
|
+
feedbackQuestion: string;
|
|
52
|
+
employeeSearch: string;
|
|
53
|
+
searchEmployeeTooltip_1: string;
|
|
54
|
+
searchEmployeeTooltip_2: string;
|
|
55
|
+
searchEmployeeTooltip_3: string;
|
|
56
|
+
searchEmployeeTooltip_4: string;
|
|
57
|
+
onBehalfFlag: string;
|
|
58
|
+
onBehalfOfEmail: string;
|
|
59
|
+
commentHistory: string;
|
|
60
|
+
NODATA: string;
|
|
61
|
+
termsAndConditions: string;
|
|
62
|
+
"no-files": string;
|
|
63
|
+
"drag-files": string;
|
|
64
|
+
"limit-error": string;
|
|
65
|
+
"size-error": string;
|
|
66
|
+
"type-error": string;
|
|
67
|
+
"duplicated-error": string;
|
|
68
|
+
thisIsInvalidFile: string;
|
|
69
|
+
add: string;
|
|
70
|
+
addAttachments: string;
|
|
71
|
+
attachmentdescription: string;
|
|
72
|
+
attachmentcomment: string;
|
|
73
|
+
addAttachment: string;
|
|
74
|
+
locationOfIncident: string;
|
|
75
|
+
FileName: string;
|
|
76
|
+
FileDescription: string;
|
|
77
|
+
Attachments: string;
|
|
78
|
+
Attachment: string;
|
|
79
|
+
comment: string;
|
|
80
|
+
comments: string;
|
|
81
|
+
description: string;
|
|
82
|
+
MyRequests: string;
|
|
83
|
+
processingDate: string;
|
|
84
|
+
Approvals: string;
|
|
85
|
+
submittedSuccessfully: string;
|
|
86
|
+
support: string;
|
|
87
|
+
support2: string;
|
|
88
|
+
mb: string;
|
|
89
|
+
support3: string;
|
|
90
|
+
maxAllowedSize: string;
|
|
91
|
+
ViewDetails: string;
|
|
92
|
+
NoData2: string;
|
|
93
|
+
NoData1: string;
|
|
94
|
+
NoData: string;
|
|
95
|
+
Filters: string;
|
|
96
|
+
ApplyFilters: string;
|
|
97
|
+
Discard: string;
|
|
98
|
+
employeeID: string;
|
|
99
|
+
Delete: string;
|
|
100
|
+
fullName: string;
|
|
101
|
+
welcomeBack: string;
|
|
102
|
+
welcome: string;
|
|
103
|
+
logout: string;
|
|
104
|
+
otherLang: string;
|
|
105
|
+
Hello: string;
|
|
106
|
+
Cancel: string;
|
|
107
|
+
validEmailError: string;
|
|
108
|
+
validFieldError: string;
|
|
109
|
+
validSelectError: string;
|
|
110
|
+
validSearchError: string;
|
|
111
|
+
delete: string;
|
|
112
|
+
Areyousureyouwantdelete: string;
|
|
113
|
+
"drf-confirmatton-msg": string;
|
|
114
|
+
"Yes-Proceed": string;
|
|
115
|
+
"No-Discard": string;
|
|
116
|
+
yes: string;
|
|
117
|
+
NoAttachments: string;
|
|
118
|
+
cancel: string;
|
|
119
|
+
View: string;
|
|
120
|
+
edit: string;
|
|
121
|
+
Viewapprovalcycle: string;
|
|
122
|
+
approvalcycle: string;
|
|
123
|
+
link: string;
|
|
124
|
+
AttachmentInvoices: string;
|
|
125
|
+
AttachmentsOfBank: string;
|
|
126
|
+
DepositVoucherAttachments: string;
|
|
127
|
+
placeholder: string;
|
|
128
|
+
approve: string;
|
|
129
|
+
downloadLink: string;
|
|
130
|
+
serviceBrief: string;
|
|
131
|
+
PreviousRequests: string;
|
|
132
|
+
'Product Implementation': string;
|
|
133
|
+
'Sales Order and Quality Assurance': string;
|
|
134
|
+
'Billing Support and Contracts': string;
|
|
135
|
+
'Sales Excellence': string;
|
|
136
|
+
'Order Engineering and Delivery Management': string;
|
|
137
|
+
'Third Party Control and Projects': string;
|
|
138
|
+
'Enterprise Customer Care': string;
|
|
139
|
+
'Enterprise Account Sales': string;
|
|
140
|
+
'Government Accounts Sales': string;
|
|
141
|
+
'Marketing Communications': string;
|
|
142
|
+
'Customer Experience Excellence': string;
|
|
143
|
+
'Commercial Regulation': string;
|
|
144
|
+
'Enterprise Commercial Finance': string;
|
|
145
|
+
'Product Pricing and Profitability': string;
|
|
146
|
+
'Data Protection and Privacy': string;
|
|
147
|
+
'Customer Value Management': string;
|
|
148
|
+
termNote1: string;
|
|
149
|
+
termNote2: string;
|
|
150
|
+
termNote3: string;
|
|
151
|
+
termNote4: string;
|
|
152
|
+
termNote5: string;
|
|
153
|
+
termNote6: string;
|
|
154
|
+
termNote7: string;
|
|
155
|
+
termNote8: string;
|
|
156
|
+
termNote9: string;
|
|
157
|
+
termNote10: string;
|
|
158
|
+
termNote11: string;
|
|
159
|
+
messageErrorPhoneNumber: string;
|
|
160
|
+
serviceAgreement: string;
|
|
161
|
+
lengthError: string;
|
|
162
|
+
userAlreadyExist: string;
|
|
163
|
+
INTERNAL: string;
|
|
164
|
+
SPECIFIC_OR_CONFIDENTIAL: string;
|
|
165
|
+
AVAILABLE: string;
|
|
166
|
+
other: string;
|
|
167
|
+
others: string;
|
|
168
|
+
selectAll: string;
|
|
169
|
+
URGENT: string;
|
|
170
|
+
NORMAL: string;
|
|
171
|
+
select: string;
|
|
172
|
+
addMultiAttachments: string;
|
|
173
|
+
};
|
|
174
|
+
export default _default;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export interface Attachment {
|
|
2
|
+
fileName: string;
|
|
3
|
+
mimeType: string;
|
|
4
|
+
fileContents?: string;
|
|
5
|
+
attachmentId: string;
|
|
6
|
+
}
|
|
7
|
+
export interface Employee {
|
|
8
|
+
personEmail: string;
|
|
9
|
+
personName: string;
|
|
10
|
+
}
|
|
11
|
+
export interface Select {
|
|
12
|
+
key: string;
|
|
13
|
+
value: string;
|
|
14
|
+
}
|