bpm-core 0.0.53 → 0.0.55

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.
Files changed (62) hide show
  1. package/esm2022/lib/app/app.component.mjs +2 -2
  2. package/esm2022/lib/components/app-component-sections/activities/activities.component.mjs +6 -3
  3. package/esm2022/lib/components/app-component-sections/approvals/approvals.component.mjs +3 -6
  4. package/esm2022/lib/components/app-component-sections/approvals-workflow/approvals-workflow.component.mjs +69 -56
  5. package/esm2022/lib/components/app-component-sections/faqs/faqs.component.mjs +1 -1
  6. package/esm2022/lib/components/app-component-sections/feedback-section/feedback-section.component.mjs +5 -6
  7. package/esm2022/lib/components/app-component-sections/layout/layout.component.mjs +6 -3
  8. package/esm2022/lib/components/shared-components/form-field/add-attachment-section/add-attachment-section.component.mjs +2 -2
  9. package/esm2022/lib/components/shared-components/form-field/attachment-section/attachment-section.component.mjs +6 -4
  10. package/esm2022/lib/components/shared-components/form-field/checkbox/checkbox.component.mjs +8 -7
  11. package/esm2022/lib/components/shared-components/form-field/control-value-accessor.directive.mjs +21 -5
  12. package/esm2022/lib/components/shared-components/form-field/custom-searchable-autocomplete/custom-searchable.component.mjs +14 -18
  13. package/esm2022/lib/components/shared-components/form-field/date-picker/date-picker.component.mjs +15 -18
  14. package/esm2022/lib/components/shared-components/form-field/date-range-picker/date-range-picker.component.mjs +12 -13
  15. package/esm2022/lib/components/shared-components/form-field/doc-uploader/docs-uploader.component.mjs +7 -11
  16. package/esm2022/lib/components/shared-components/form-field/form-label/form-label.component.mjs +9 -9
  17. package/esm2022/lib/components/shared-components/form-field/input/input.component.mjs +19 -33
  18. package/esm2022/lib/components/shared-components/form-field/input-currency/input-currency.component.mjs +16 -26
  19. package/esm2022/lib/components/shared-components/form-field/input-email/input-email.component.mjs +16 -27
  20. package/esm2022/lib/components/shared-components/form-field/input-mask/input-mask.component.mjs +3 -6
  21. package/esm2022/lib/components/shared-components/form-field/input-number/input-number.component.mjs +16 -24
  22. package/esm2022/lib/components/shared-components/form-field/input-telephone/input-telephone.component.mjs +11 -12
  23. package/esm2022/lib/components/shared-components/form-field/radio/radio.component.mjs +9 -11
  24. package/esm2022/lib/components/shared-components/form-field/search-employee/search-employee.component.mjs +11 -18
  25. package/esm2022/lib/components/shared-components/form-field/select/select.component.mjs +2 -2
  26. package/esm2022/lib/components/shared-components/form-field/shared-imports.mjs +19 -1
  27. package/esm2022/lib/components/shared-components/form-field/textarea/textarea.component.mjs +17 -29
  28. package/esm2022/lib/components/shared-components/form-field/toggle-button/toggle-button.component.mjs +11 -20
  29. package/esm2022/lib/i18n/ar.mjs +2 -2
  30. package/esm2022/lib/i18n/en.mjs +2 -2
  31. package/esm2022/lib/services/i18n.service.mjs +2 -2
  32. package/esm2022/lib/testComponent/general-approver-section/general-approver-section.component.mjs +2 -2
  33. package/esm2022/lib/testComponent/request-details-section/request-details-section.component.mjs +301 -33
  34. package/fesm2022/bpm-core.mjs +758 -546
  35. package/fesm2022/bpm-core.mjs.map +1 -1
  36. package/lib/components/app-component-sections/activities/activities.component.d.ts +2 -0
  37. package/lib/components/app-component-sections/approvals/approvals.component.d.ts +1 -1
  38. package/lib/components/app-component-sections/approvals-workflow/approvals-workflow.component.d.ts +19 -5
  39. package/lib/components/app-component-sections/feedback-section/feedback-section.component.d.ts +1 -1
  40. package/lib/components/app-component-sections/layout/layout.component.d.ts +2 -1
  41. package/lib/components/shared-components/action-buttons/action-buttons.component.d.ts +1 -1
  42. package/lib/components/shared-components/form-field/control-value-accessor.directive.d.ts +2 -1
  43. package/lib/components/shared-components/form-field/date-picker/date-picker.component.d.ts +1 -2
  44. package/lib/components/shared-components/form-field/doc-uploader/docs-uploader.component.d.ts +1 -3
  45. package/lib/components/shared-components/form-field/form-label/form-label.component.d.ts +2 -3
  46. package/lib/components/shared-components/form-field/input/input.component.d.ts +1 -2
  47. package/lib/components/shared-components/form-field/input-currency/input-currency.component.d.ts +1 -2
  48. package/lib/components/shared-components/form-field/input-email/input-email.component.d.ts +1 -2
  49. package/lib/components/shared-components/form-field/input-mask/input-mask.component.d.ts +1 -2
  50. package/lib/components/shared-components/form-field/input-number/input-number.component.d.ts +1 -2
  51. package/lib/components/shared-components/form-field/search-employee/search-employee.component.d.ts +1 -3
  52. package/lib/components/shared-components/form-field/shared-imports.d.ts +9 -0
  53. package/lib/components/shared-components/form-field/textarea/textarea.component.d.ts +0 -3
  54. package/lib/components/shared-components/form-field/toggle-button/toggle-button.component.d.ts +1 -3
  55. package/lib/i18n/ar.d.ts +1 -1
  56. package/lib/i18n/en.d.ts +1 -1
  57. package/lib/testComponent/request-details-section/request-details-section.component.d.ts +40 -0
  58. package/package.json +2 -2
  59. package/src/lib/assets/scss/_upgrade.scss +2 -0
  60. package/src/lib/assets/scss/input-telephone.scss +6 -4
  61. package/esm2022/lib/environments/environment.local.mjs +0 -27
  62. package/lib/environments/environment.local.d.ts +0 -26
@@ -1,3 +1,4 @@
1
+ import { DestroyRef } from '@angular/core';
1
2
  import { CoreI18nService, CoreService, SidenavService } from '../../../services';
2
3
  import * as i0 from "@angular/core";
3
4
  export declare class ActivitiesComponent {
@@ -5,6 +6,7 @@ export declare class ActivitiesComponent {
5
6
  i18n: CoreI18nService;
6
7
  coreService: CoreService;
7
8
  parsedData: string;
9
+ destroyRef: DestroyRef;
8
10
  constructor(sidenavService: SidenavService, i18n: CoreI18nService, coreService: CoreService);
9
11
  downloadFile(event: any): void;
10
12
  closeSidenav(): void;
@@ -1,7 +1,7 @@
1
1
  import { CoreI18nService, CoreService, SidenavService } from '../../../services';
2
2
  import * as i0 from "@angular/core";
3
3
  export declare class ApprovalsComponent {
4
- private sidenavService;
4
+ private readonly sidenavService;
5
5
  i18n: CoreI18nService;
6
6
  coreService: CoreService;
7
7
  constructor(sidenavService: SidenavService, i18n: CoreI18nService, coreService: CoreService);
@@ -4,16 +4,30 @@ import { ToastrService } from "ngx-toastr";
4
4
  import * as i0 from "@angular/core";
5
5
  export declare class ApprovalsWorkflowComponent {
6
6
  i18n: CoreI18nService;
7
- private sidenavService;
8
- private coreService;
9
- private toasterService;
7
+ private readonly sidenavService;
8
+ private readonly coreService;
9
+ private readonly toasterService;
10
10
  section: Section;
11
11
  form: Form;
12
12
  approvals: unknown[];
13
13
  loading: boolean;
14
14
  constructor(i18n: CoreI18nService, sidenavService: SidenavService, coreService: CoreService, toasterService: ToastrService);
15
- getApproves(): void;
16
- statusClass(status: string): "success" | "danger" | "warning";
15
+ getApprovals(): void;
16
+ isLoading(): boolean;
17
+ initializeApprovals(): void;
18
+ handleResponse(response: any): void;
19
+ createApprovalObject(approval: any): {
20
+ id: number;
21
+ name: any;
22
+ title: any;
23
+ image: string;
24
+ status: string;
25
+ statusLabel: string;
26
+ };
27
+ getStageDetails(approval: any): Section<any>;
28
+ handleError(err: any): void;
29
+ transformStatus(status: string): string;
30
+ getClassBasedOnStatus(status: string): "success" | "danger" | "warning";
17
31
  showProspectiveApprovals(): void;
18
32
  static ɵfac: i0.ɵɵFactoryDeclaration<ApprovalsWorkflowComponent, never>;
19
33
  static ɵcmp: i0.ɵɵComponentDeclaration<ApprovalsWorkflowComponent, "lib-approvals-workflow", never, { "section": { "alias": "section"; "required": false; }; "form": { "alias": "form"; "required": false; }; }, {}, never, never, true, never>;
@@ -1,7 +1,7 @@
1
1
  import { OnInit } from '@angular/core';
2
2
  import { CoreI18nService } from '../../../services';
3
3
  import { Form, InboxItem, ProfileInfoDrop } from '../../../interfaces';
4
- import { FeedBackService } from "../../../services/feedBack.service";
4
+ import { FeedBackService } from "../../../services";
5
5
  import * as i0 from "@angular/core";
6
6
  export declare class FeedbackSectionComponent implements OnInit {
7
7
  feedBackService: FeedBackService;
@@ -12,6 +12,7 @@ export declare class LayoutComponent implements OnInit, OnDestroy {
12
12
  sideContent: any;
13
13
  private sidenavSubscription;
14
14
  form: Form;
15
+ hubContainerMini: boolean;
15
16
  formTitle: string;
16
17
  isLoading: boolean;
17
18
  serviceBrief: any[];
@@ -23,5 +24,5 @@ export declare class LayoutComponent implements OnInit, OnDestroy {
23
24
  private openSideNav;
24
25
  private closeSideNav;
25
26
  static ɵfac: i0.ɵɵFactoryDeclaration<LayoutComponent, never>;
26
- static ɵcmp: i0.ɵɵComponentDeclaration<LayoutComponent, "core-layout", never, { "form": { "alias": "form"; "required": false; }; "formTitle": { "alias": "formTitle"; "required": false; }; "isLoading": { "alias": "isLoading"; "required": false; }; "serviceBrief": { "alias": "serviceBrief"; "required": false; }; }, {}, never, ["*", "[workflow]"], true, never>;
27
+ static ɵcmp: i0.ɵɵComponentDeclaration<LayoutComponent, "core-layout", never, { "form": { "alias": "form"; "required": false; }; "hubContainerMini": { "alias": "hubContainerMini"; "required": false; }; "formTitle": { "alias": "formTitle"; "required": false; }; "isLoading": { "alias": "isLoading"; "required": false; }; "serviceBrief": { "alias": "serviceBrief"; "required": false; }; }, {}, never, ["*", "[workflow]"], true, never>;
27
28
  }
@@ -35,7 +35,7 @@ export declare class ActionButtonsComponent implements AfterViewInit {
35
35
  onSubmit(action: string): void;
36
36
  submitForm(action: string, section: Section): void;
37
37
  success(response: any): void;
38
- buttonShape(item: any): "outline" | "";
38
+ buttonShape(item: any): "" | "outline";
39
39
  buttonColor(item: any): "" | "red";
40
40
  static ɵfac: i0.ɵɵFactoryDeclaration<ActionButtonsComponent, never>;
41
41
  static ɵcmp: i0.ɵɵComponentDeclaration<ActionButtonsComponent, "lib-action-buttons", never, { "lovOptions": { "alias": "lovOptions"; "required": false; }; "lovType": { "alias": "lovType"; "required": false; }; "fieldsForm": { "alias": "fieldsForm"; "required": false; }; "form": { "alias": "form"; "required": false; }; "section": { "alias": "section"; "required": false; }; "sections": { "alias": "sections"; "required": false; }; "showApprovalCycle": { "alias": "showApprovalCycle"; "required": false; }; "customCall": { "alias": "customCall"; "required": false; }; }, { "resetFormEmit": "resetFormEmit"; "customCallEmit": "customCallEmit"; }, never, never, true, never>;
@@ -11,6 +11,7 @@ export declare class ControlValueAccessorDirective<Type> implements ControlValue
11
11
  coreService: CoreService;
12
12
  sanitizer: DomSanitizer;
13
13
  fb: FormBuilder;
14
+ tooltip: any;
14
15
  isReadOnly: boolean;
15
16
  hint: string;
16
17
  loading: boolean;
@@ -53,5 +54,5 @@ export declare class ControlValueAccessorDirective<Type> implements ControlValue
53
54
  registerOnTouched(fn: () => Type): void;
54
55
  setDisabledState?(isDisabled: boolean): void;
55
56
  static ɵfac: i0.ɵɵFactoryDeclaration<ControlValueAccessorDirective<any>, never>;
56
- static ɵdir: i0.ɵɵDirectiveDeclaration<ControlValueAccessorDirective<any>, "[appControlValueAccessor]", never, { "isReadOnly": { "alias": "isReadOnly"; "required": false; }; "hint": { "alias": "hint"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "type": { "alias": "type"; "required": false; }; "showErrorMessage": { "alias": "showErrorMessage"; "required": false; }; "showHint": { "alias": "showHint"; "required": false; }; "showIfEmpty": { "alias": "showIfEmpty"; "required": false; }; "insideTable": { "alias": "insideTable"; "required": false; }; "mask": { "alias": "mask"; "required": false; }; "label": { "alias": "label"; "required": false; }; "matSuffix": { "alias": "matSuffix"; "required": false; }; "hasTooltip": { "alias": "hasTooltip"; "required": false; }; "name": { "alias": "name"; "required": false; }; "randomID": { "alias": "randomID"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "maxDate": { "alias": "maxDate"; "required": false; }; "minDate": { "alias": "minDate"; "required": false; }; "customMaxDate": { "alias": "customMaxDate"; "required": false; }; "customMinDate": { "alias": "customMinDate"; "required": false; }; }, {}, never, never, false, never>;
57
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ControlValueAccessorDirective<any>, "[appControlValueAccessor]", never, { "tooltip": { "alias": "tooltip"; "required": false; }; "isReadOnly": { "alias": "isReadOnly"; "required": false; }; "hint": { "alias": "hint"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "type": { "alias": "type"; "required": false; }; "showErrorMessage": { "alias": "showErrorMessage"; "required": false; }; "showHint": { "alias": "showHint"; "required": false; }; "showIfEmpty": { "alias": "showIfEmpty"; "required": false; }; "insideTable": { "alias": "insideTable"; "required": false; }; "mask": { "alias": "mask"; "required": false; }; "label": { "alias": "label"; "required": false; }; "matSuffix": { "alias": "matSuffix"; "required": false; }; "hasTooltip": { "alias": "hasTooltip"; "required": false; }; "name": { "alias": "name"; "required": false; }; "randomID": { "alias": "randomID"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "maxDate": { "alias": "maxDate"; "required": false; }; "minDate": { "alias": "minDate"; "required": false; }; "customMaxDate": { "alias": "customMaxDate"; "required": false; }; "customMinDate": { "alias": "customMinDate"; "required": false; }; }, {}, never, never, false, never>;
57
58
  }
@@ -8,7 +8,6 @@ export declare class DatePickerComponent<Type> extends ControlValueAccessorDirec
8
8
  date: FormControl<any>;
9
9
  className: string;
10
10
  calendarType: string;
11
- showLabel: boolean;
12
11
  yearOnly: boolean;
13
12
  dateValue: EventEmitter<any>;
14
13
  showIslamic: boolean;
@@ -25,5 +24,5 @@ export declare class DatePickerComponent<Type> extends ControlValueAccessorDirec
25
24
  clearDateValue(event: any): void;
26
25
  private activateYearOnlyMode;
27
26
  static ɵfac: i0.ɵɵFactoryDeclaration<DatePickerComponent<any>, never>;
28
- static ɵcmp: i0.ɵɵComponentDeclaration<DatePickerComponent<any>, "app-datepicker", never, { "className": { "alias": "className"; "required": false; }; "calendarType": { "alias": "calendarType"; "required": false; }; "showLabel": { "alias": "showLabel"; "required": false; }; "yearOnly": { "alias": "yearOnly"; "required": false; }; "error": { "alias": "error"; "required": false; }; "format": { "alias": "format"; "required": false; }; }, { "dateValue": "dateValue"; }, never, never, true, never>;
27
+ static ɵcmp: i0.ɵɵComponentDeclaration<DatePickerComponent<any>, "app-datepicker", never, { "className": { "alias": "className"; "required": false; }; "calendarType": { "alias": "calendarType"; "required": false; }; "yearOnly": { "alias": "yearOnly"; "required": false; }; "error": { "alias": "error"; "required": false; }; "format": { "alias": "format"; "required": false; }; }, { "dateValue": "dateValue"; }, never, never, true, never>;
29
28
  }
@@ -19,8 +19,6 @@ export declare class DocsUploaderComponent<Type> extends ControlValueAccessorDir
19
19
  hints: any;
20
20
  allowedExtensions: string;
21
21
  callApi: boolean;
22
- tooltip: string;
23
- optional: boolean;
24
22
  display: string;
25
23
  validExtension: boolean;
26
24
  attachType: string;
@@ -120,7 +118,7 @@ export declare class DocsUploaderComponent<Type> extends ControlValueAccessorDir
120
118
  private emit;
121
119
  private deleteFileContents;
122
120
  static ɵfac: i0.ɵɵFactoryDeclaration<DocsUploaderComponent<any>, never>;
123
- static ɵcmp: i0.ɵɵComponentDeclaration<DocsUploaderComponent<any>, "app-file-uploader", never, { "useCrop": { "alias": "useCrop"; "required": false; }; "formKey": { "alias": "formKey"; "required": false; }; "showLabel": { "alias": "showLabel"; "required": false; }; "downloadLink": { "alias": "downloadLink"; "required": false; }; "showActions": { "alias": "showActions"; "required": false; }; "styleHeight": { "alias": "styleHeight"; "required": false; }; "fileInputHeight": { "alias": "fileInputHeight"; "required": false; }; "styleWidth": { "alias": "styleWidth"; "required": false; }; "hints": { "alias": "hints"; "required": false; }; "allowedExtensions": { "alias": "allowedExtensions"; "required": false; }; "callApi": { "alias": "callApi"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "optional": { "alias": "optional"; "required": false; }; "display": { "alias": "display"; "required": false; }; "attachType": { "alias": "attachType"; "required": false; }; "error": { "alias": "error"; "required": false; }; "displayedFiles": { "alias": "displayedFiles"; "required": false; }; "getDataFromTemplate": { "alias": "getDataFromTemplate"; "required": false; }; "allowFileContentsWithMultiAttachments": { "alias": "allowFileContentsWithMultiAttachments"; "required": false; }; "accept": { "alias": "accept"; "required": false; }; "signType": { "alias": "signType"; "required": false; }; "showSignButton": { "alias": "showSignButton"; "required": false; }; "printType": { "alias": "printType"; "required": false; }; "showPrintButton": { "alias": "showPrintButton"; "required": false; }; "downloadType": { "alias": "downloadType"; "required": false; }; "showDownloadButton": { "alias": "showDownloadButton"; "required": false; }; "preventFileContents": { "alias": "preventFileContents"; "required": false; }; "maxSize": { "alias": "maxSize"; "required": false; }; }, { "selectedTemplateAttachment": "selectedTemplateAttachment"; "addSignatureClicked": "addSignatureClicked"; "printActionClicked": "printActionClicked"; "emitedValue": "emitedValue"; "downloadActionClicked": "downloadActionClicked"; }, never, never, true, never>;
121
+ static ɵcmp: i0.ɵɵComponentDeclaration<DocsUploaderComponent<any>, "app-file-uploader", never, { "useCrop": { "alias": "useCrop"; "required": false; }; "formKey": { "alias": "formKey"; "required": false; }; "showLabel": { "alias": "showLabel"; "required": false; }; "downloadLink": { "alias": "downloadLink"; "required": false; }; "showActions": { "alias": "showActions"; "required": false; }; "styleHeight": { "alias": "styleHeight"; "required": false; }; "fileInputHeight": { "alias": "fileInputHeight"; "required": false; }; "styleWidth": { "alias": "styleWidth"; "required": false; }; "hints": { "alias": "hints"; "required": false; }; "allowedExtensions": { "alias": "allowedExtensions"; "required": false; }; "callApi": { "alias": "callApi"; "required": false; }; "display": { "alias": "display"; "required": false; }; "attachType": { "alias": "attachType"; "required": false; }; "error": { "alias": "error"; "required": false; }; "displayedFiles": { "alias": "displayedFiles"; "required": false; }; "getDataFromTemplate": { "alias": "getDataFromTemplate"; "required": false; }; "allowFileContentsWithMultiAttachments": { "alias": "allowFileContentsWithMultiAttachments"; "required": false; }; "accept": { "alias": "accept"; "required": false; }; "signType": { "alias": "signType"; "required": false; }; "showSignButton": { "alias": "showSignButton"; "required": false; }; "printType": { "alias": "printType"; "required": false; }; "showPrintButton": { "alias": "showPrintButton"; "required": false; }; "downloadType": { "alias": "downloadType"; "required": false; }; "showDownloadButton": { "alias": "showDownloadButton"; "required": false; }; "preventFileContents": { "alias": "preventFileContents"; "required": false; }; "maxSize": { "alias": "maxSize"; "required": false; }; }, { "selectedTemplateAttachment": "selectedTemplateAttachment"; "addSignatureClicked": "addSignatureClicked"; "printActionClicked": "printActionClicked"; "emitedValue": "emitedValue"; "downloadActionClicked": "downloadActionClicked"; }, never, never, true, never>;
124
122
  }
125
123
  declare class FileInfo {
126
124
  fileName: string;
@@ -2,11 +2,10 @@ import { CoreI18nService } from '../../../../services';
2
2
  import * as i0 from "@angular/core";
3
3
  export declare class FormLabelComponent {
4
4
  i18n: CoreI18nService;
5
- hideOption: boolean;
6
- showLabel: boolean;
5
+ tooltip: any;
7
6
  label: string;
8
7
  optional: boolean;
9
8
  constructor(i18n: CoreI18nService);
10
9
  static ɵfac: i0.ɵɵFactoryDeclaration<FormLabelComponent, never>;
11
- static ɵcmp: i0.ɵɵComponentDeclaration<FormLabelComponent, "app-form-label", never, { "hideOption": { "alias": "hideOption"; "required": false; }; "showLabel": { "alias": "showLabel"; "required": false; }; "label": { "alias": "label"; "required": false; }; "optional": { "alias": "optional"; "required": false; }; }, {}, never, never, true, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<FormLabelComponent, "app-form-label", never, { "tooltip": { "alias": "tooltip"; "required": false; }; "label": { "alias": "label"; "required": false; }; "optional": { "alias": "optional"; "required": false; }; }, {}, never, never, true, never>;
12
11
  }
@@ -2,12 +2,11 @@ import { EventEmitter } from '@angular/core';
2
2
  import { ControlValueAccessorDirective } from '../control-value-accessor.directive';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare class InputComponent<Type> extends ControlValueAccessorDirective<Type> {
5
- tooltip: string;
6
5
  floatLabel: any;
7
6
  className: string;
8
7
  iconPrefixName: string;
9
8
  iconSuffixName: string;
10
9
  emitedChangedValue1: EventEmitter<any>;
11
10
  static ɵfac: i0.ɵɵFactoryDeclaration<InputComponent<any>, never>;
12
- static ɵcmp: i0.ɵɵComponentDeclaration<InputComponent<any>, "app-input", never, { "tooltip": { "alias": "tooltip"; "required": false; }; "floatLabel": { "alias": "floatLabel"; "required": false; }; "className": { "alias": "className"; "required": false; }; "iconPrefixName": { "alias": "iconPrefixName"; "required": false; }; "iconSuffixName": { "alias": "iconSuffixName"; "required": false; }; "emitedChangedValue1": { "alias": "emitedChangedValue1"; "required": false; }; }, {}, never, never, true, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<InputComponent<any>, "app-input", never, { "floatLabel": { "alias": "floatLabel"; "required": false; }; "className": { "alias": "className"; "required": false; }; "iconPrefixName": { "alias": "iconPrefixName"; "required": false; }; "iconSuffixName": { "alias": "iconSuffixName"; "required": false; }; "emitedChangedValue1": { "alias": "emitedChangedValue1"; "required": false; }; }, {}, never, never, true, never>;
13
12
  }
@@ -2,7 +2,6 @@ import { ControlValueAccessorDirective } from '../control-value-accessor.directi
2
2
  import { MycurrencyPipe } from "../../../../pipes";
3
3
  import * as i0 from "@angular/core";
4
4
  export declare class InputCurrencyComponent<Type> extends ControlValueAccessorDirective<Type> {
5
- tooltip: string;
6
5
  floatLabel: any;
7
6
  className: string;
8
7
  iconPrefixName: string;
@@ -10,5 +9,5 @@ export declare class InputCurrencyComponent<Type> extends ControlValueAccessorDi
10
9
  numberSuffixName: string;
11
10
  mycurrencyPipe: MycurrencyPipe;
12
11
  static ɵfac: i0.ɵɵFactoryDeclaration<InputCurrencyComponent<any>, never>;
13
- static ɵcmp: i0.ɵɵComponentDeclaration<InputCurrencyComponent<any>, "app-input-currency", never, { "tooltip": { "alias": "tooltip"; "required": false; }; "floatLabel": { "alias": "floatLabel"; "required": false; }; "className": { "alias": "className"; "required": false; }; "iconPrefixName": { "alias": "iconPrefixName"; "required": false; }; "iconSuffixName": { "alias": "iconSuffixName"; "required": false; }; "numberSuffixName": { "alias": "numberSuffixName"; "required": false; }; }, {}, never, never, true, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<InputCurrencyComponent<any>, "app-input-currency", never, { "floatLabel": { "alias": "floatLabel"; "required": false; }; "className": { "alias": "className"; "required": false; }; "iconPrefixName": { "alias": "iconPrefixName"; "required": false; }; "iconSuffixName": { "alias": "iconSuffixName"; "required": false; }; "numberSuffixName": { "alias": "numberSuffixName"; "required": false; }; }, {}, never, never, true, never>;
14
13
  }
@@ -1,7 +1,6 @@
1
1
  import { ControlValueAccessorDirective } from '../control-value-accessor.directive';
2
2
  import * as i0 from "@angular/core";
3
3
  export declare class InputEmailComponent<Type> extends ControlValueAccessorDirective<Type> {
4
- tooltip: string;
5
4
  floatLabel: any;
6
5
  className: string;
7
6
  matPrefix: boolean;
@@ -10,5 +9,5 @@ export declare class InputEmailComponent<Type> extends ControlValueAccessorDirec
10
9
  numberSuffixName: string;
11
10
  displayErrors(data: any): void;
12
11
  static ɵfac: i0.ɵɵFactoryDeclaration<InputEmailComponent<any>, never>;
13
- static ɵcmp: i0.ɵɵComponentDeclaration<InputEmailComponent<any>, "app-input-email", never, { "tooltip": { "alias": "tooltip"; "required": false; }; "floatLabel": { "alias": "floatLabel"; "required": false; }; "className": { "alias": "className"; "required": false; }; "matPrefix": { "alias": "matPrefix"; "required": false; }; "iconPrefixName": { "alias": "iconPrefixName"; "required": false; }; "iconSuffixName": { "alias": "iconSuffixName"; "required": false; }; "numberSuffixName": { "alias": "numberSuffixName"; "required": false; }; }, {}, never, never, true, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<InputEmailComponent<any>, "app-input-email", never, { "floatLabel": { "alias": "floatLabel"; "required": false; }; "className": { "alias": "className"; "required": false; }; "matPrefix": { "alias": "matPrefix"; "required": false; }; "iconPrefixName": { "alias": "iconPrefixName"; "required": false; }; "iconSuffixName": { "alias": "iconSuffixName"; "required": false; }; "numberSuffixName": { "alias": "numberSuffixName"; "required": false; }; }, {}, never, never, true, never>;
14
13
  }
@@ -1,7 +1,6 @@
1
1
  import { ControlValueAccessorDirective } from '../control-value-accessor.directive';
2
2
  import * as i0 from "@angular/core";
3
3
  export declare class InputMaskComponent<Type> extends ControlValueAccessorDirective<Type> {
4
- tooltip: string;
5
4
  floatLabel: any;
6
5
  className: string;
7
6
  matPrefix: boolean;
@@ -9,5 +8,5 @@ export declare class InputMaskComponent<Type> extends ControlValueAccessorDirect
9
8
  iconSuffixName: string;
10
9
  numberSuffixName: string;
11
10
  static ɵfac: i0.ɵɵFactoryDeclaration<InputMaskComponent<any>, never>;
12
- static ɵcmp: i0.ɵɵComponentDeclaration<InputMaskComponent<any>, "app-input-mask", never, { "tooltip": { "alias": "tooltip"; "required": false; }; "floatLabel": { "alias": "floatLabel"; "required": false; }; "className": { "alias": "className"; "required": false; }; "matPrefix": { "alias": "matPrefix"; "required": false; }; "iconPrefixName": { "alias": "iconPrefixName"; "required": false; }; "iconSuffixName": { "alias": "iconSuffixName"; "required": false; }; "numberSuffixName": { "alias": "numberSuffixName"; "required": false; }; }, {}, never, never, true, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<InputMaskComponent<any>, "app-input-mask", never, { "floatLabel": { "alias": "floatLabel"; "required": false; }; "className": { "alias": "className"; "required": false; }; "matPrefix": { "alias": "matPrefix"; "required": false; }; "iconPrefixName": { "alias": "iconPrefixName"; "required": false; }; "iconSuffixName": { "alias": "iconSuffixName"; "required": false; }; "numberSuffixName": { "alias": "numberSuffixName"; "required": false; }; }, {}, never, never, true, never>;
13
12
  }
@@ -2,7 +2,6 @@ import { EventEmitter } from '@angular/core';
2
2
  import { ControlValueAccessorDirective } from '../control-value-accessor.directive';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare class InputNumberComponent<Type> extends ControlValueAccessorDirective<Type> {
5
- tooltip: string;
6
5
  floatLabel: any;
7
6
  className: string;
8
7
  iconPrefixName: string;
@@ -11,5 +10,5 @@ export declare class InputNumberComponent<Type> extends ControlValueAccessorDire
11
10
  allowedPattern: string;
12
11
  emitedChangedValue: EventEmitter<any>;
13
12
  static ɵfac: i0.ɵɵFactoryDeclaration<InputNumberComponent<any>, never>;
14
- static ɵcmp: i0.ɵɵComponentDeclaration<InputNumberComponent<any>, "app-input-number", never, { "tooltip": { "alias": "tooltip"; "required": false; }; "floatLabel": { "alias": "floatLabel"; "required": false; }; "className": { "alias": "className"; "required": false; }; "iconPrefixName": { "alias": "iconPrefixName"; "required": false; }; "iconSuffixName": { "alias": "iconSuffixName"; "required": false; }; "numberSuffixName": { "alias": "numberSuffixName"; "required": false; }; "allowedPattern": { "alias": "allowedPattern"; "required": false; }; }, { "emitedChangedValue": "emitedChangedValue"; }, never, never, true, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<InputNumberComponent<any>, "app-input-number", never, { "floatLabel": { "alias": "floatLabel"; "required": false; }; "className": { "alias": "className"; "required": false; }; "iconPrefixName": { "alias": "iconPrefixName"; "required": false; }; "iconSuffixName": { "alias": "iconSuffixName"; "required": false; }; "numberSuffixName": { "alias": "numberSuffixName"; "required": false; }; "allowedPattern": { "alias": "allowedPattern"; "required": false; }; }, { "emitedChangedValue": "emitedChangedValue"; }, never, never, true, never>;
15
14
  }
@@ -3,9 +3,7 @@ import { ControlValueAccessorDirective } from '../control-value-accessor.directi
3
3
  import * as i0 from "@angular/core";
4
4
  export declare class SearchEmployeeComponent<Type> extends ControlValueAccessorDirective<Type> {
5
5
  valueName: string;
6
- tooltip: string;
7
6
  className: string;
8
- showLabel: boolean;
9
7
  optional: boolean;
10
8
  data: any[];
11
9
  floatLabel: any;
@@ -26,7 +24,7 @@ export declare class SearchEmployeeComponent<Type> extends ControlValueAccessorD
26
24
  getImage(id: string): string;
27
25
  selectOption(object: any, ev: any): void;
28
26
  static ɵfac: i0.ɵɵFactoryDeclaration<SearchEmployeeComponent<any>, never>;
29
- static ɵcmp: i0.ɵɵComponentDeclaration<SearchEmployeeComponent<any>, "app-search-employee", never, { "valueName": { "alias": "valueName"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "className": { "alias": "className"; "required": false; }; "showLabel": { "alias": "showLabel"; "required": false; }; "optional": { "alias": "optional"; "required": false; }; "data": { "alias": "data"; "required": false; }; "floatLabel": { "alias": "floatLabel"; "required": false; }; "error": { "alias": "error"; "required": false; }; "showEdit": { "alias": "showEdit"; "required": false; }; "arrayList": { "alias": "arrayList"; "required": false; }; "isUniqueUsers": { "alias": "isUniqueUsers"; "required": false; }; }, { "selectedEmp": "selectedEmp"; "onInputChange": "onInputChange"; "editDirectManger": "editDirectManger"; "deleteDirectManger": "deleteDirectManger"; "emitedDeletedValue": "emitedDeletedValue"; }, never, never, true, never>;
27
+ static ɵcmp: i0.ɵɵComponentDeclaration<SearchEmployeeComponent<any>, "app-search-employee", never, { "valueName": { "alias": "valueName"; "required": false; }; "className": { "alias": "className"; "required": false; }; "optional": { "alias": "optional"; "required": false; }; "data": { "alias": "data"; "required": false; }; "floatLabel": { "alias": "floatLabel"; "required": false; }; "error": { "alias": "error"; "required": false; }; "showEdit": { "alias": "showEdit"; "required": false; }; "arrayList": { "alias": "arrayList"; "required": false; }; "isUniqueUsers": { "alias": "isUniqueUsers"; "required": false; }; }, { "selectedEmp": "selectedEmp"; "onInputChange": "onInputChange"; "editDirectManger": "editDirectManger"; "deleteDirectManger": "deleteDirectManger"; "emitedDeletedValue": "emitedDeletedValue"; }, never, never, true, never>;
30
28
  }
31
29
  export interface searchEmp {
32
30
  personName?: string;
@@ -1,5 +1,14 @@
1
1
  import { MatDatepickerInput, MatDatepickerModule, MatDatepickerToggle } from "@angular/material/datepicker";
2
2
  import { MatFormField, MatFormFieldModule } from "@angular/material/form-field";
3
3
  import { MatInput } from "@angular/material/input";
4
+ import { FormLabelComponent } from "./form-label/form-label.component";
5
+ import { ValidationErrorsComponent } from "./validation-errors/validation-errors.component";
6
+ import { ReactiveFormsModule } from "@angular/forms";
7
+ import { InfoItemComponent } from "./info-item/info-item.component";
8
+ import { EnOnlyDirective } from "../../../directives/en.directive";
9
+ import { ArOnlyDirective } from "../../../directives/ar.directive";
10
+ import { NgClass } from "@angular/common";
4
11
  export declare const MatDatePickerImports: (typeof MatDatepickerInput | typeof MatDatepickerToggle | typeof MatDatepickerModule)[];
5
12
  export declare const MatFormImports: (typeof MatInput | typeof MatFormFieldModule | typeof MatFormField)[];
13
+ export declare const Shareds: (typeof NgClass | typeof ReactiveFormsModule | typeof InfoItemComponent | typeof FormLabelComponent | typeof ValidationErrorsComponent)[];
14
+ export declare const TextLanguageDirectives: (typeof EnOnlyDirective | typeof ArOnlyDirective)[];
@@ -3,9 +3,6 @@ import * as i0 from "@angular/core";
3
3
  export declare class TextareaComponent<Type> extends ControlValueAccessorDirective<Type> {
4
4
  className: string;
5
5
  preventSpecailChar: boolean;
6
- focusInFunction(): void;
7
- focusOutFunction(): void;
8
- validateTextAreaBorder(): void;
9
6
  static ɵfac: i0.ɵɵFactoryDeclaration<TextareaComponent<any>, never>;
10
7
  static ɵcmp: i0.ɵɵComponentDeclaration<TextareaComponent<any>, "app-textarea", never, { "className": { "alias": "className"; "required": false; }; "preventSpecailChar": { "alias": "preventSpecailChar"; "required": false; }; }, {}, never, never, true, never>;
11
8
  }
@@ -2,9 +2,7 @@ import { EventEmitter } from '@angular/core';
2
2
  import { ControlValueAccessorDirective } from '../control-value-accessor.directive';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare class ToggleButtonComponent<Type> extends ControlValueAccessorDirective<Type> {
5
- tooltip: string;
6
5
  className: string;
7
- showLabel: boolean;
8
6
  data: any[];
9
7
  onChange: EventEmitter<any>;
10
8
  error: string;
@@ -15,5 +13,5 @@ export declare class ToggleButtonComponent<Type> extends ControlValueAccessorDir
15
13
  displayedLable: string;
16
14
  key: string;
17
15
  static ɵfac: i0.ɵɵFactoryDeclaration<ToggleButtonComponent<any>, never>;
18
- static ɵcmp: i0.ɵɵComponentDeclaration<ToggleButtonComponent<any>, "app-toggle-button", never, { "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; }; "options": { "alias": "options"; "required": false; }; "displayedLable": { "alias": "displayedLable"; "required": false; }; "key": { "alias": "key"; "required": false; }; }, { "onChange": "onChange"; }, never, never, true, never>;
16
+ static ɵcmp: i0.ɵɵComponentDeclaration<ToggleButtonComponent<any>, "app-toggle-button", never, { "className": { "alias": "className"; "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; }; "options": { "alias": "options"; "required": false; }; "displayedLable": { "alias": "displayedLable"; "required": false; }; "key": { "alias": "key"; "required": false; }; }, { "onChange": "onChange"; }, never, never, true, never>;
19
17
  }
package/lib/i18n/ar.d.ts CHANGED
@@ -22,7 +22,7 @@ declare const _default: {
22
22
  nationality: string;
23
23
  businessPhone: string;
24
24
  Viewapprovalcycle: string;
25
- approvalcycle: string;
25
+ approvalCycle: string;
26
26
  viewAllDetails: string;
27
27
  jobPosition: string;
28
28
  sector: string;
package/lib/i18n/en.d.ts CHANGED
@@ -119,7 +119,7 @@ declare const _default: {
119
119
  View: string;
120
120
  edit: string;
121
121
  Viewapprovalcycle: string;
122
- approvalcycle: string;
122
+ approvalCycle: string;
123
123
  link: string;
124
124
  AttachmentInvoices: string;
125
125
  AttachmentsOfBank: string;
@@ -11,12 +11,52 @@ export declare class RequestDetailsSectionComponent implements OnInit {
11
11
  section: Section;
12
12
  form: Form;
13
13
  lov: any;
14
+ isLoading: boolean;
14
15
  className: string;
15
16
  formGroup: FormGroup;
16
17
  options: string[];
18
+ private readonly DEFAULT_PAGE_SIZE;
19
+ private readonly DEFAULT_PAGE_NUMBER;
20
+ pageNumber: number;
21
+ pageSize: number;
22
+ columnsConfig: any[];
23
+ columns: string[];
24
+ isError: boolean;
25
+ categoryData: {
26
+ assetDeviceType: any;
27
+ brand: string;
28
+ colors: any;
29
+ assetCompanies: any;
30
+ descAr: any;
31
+ descEn: any;
32
+ estoreVisible: boolean;
33
+ id: string;
34
+ model: string;
35
+ files: any;
36
+ vendors: {
37
+ id: number;
38
+ vendorName: any;
39
+ vendorNumber: string;
40
+ __typename: string;
41
+ }[];
42
+ category: any;
43
+ assetType: string;
44
+ classifications: any;
45
+ consumedCount: number;
46
+ consumedPercentage: number;
47
+ specs: string[];
48
+ sumQuantity: number;
49
+ __typename: string;
50
+ }[];
51
+ totalElements: number;
17
52
  constructor(i18n: CoreI18nService, fb: FormBuilder, actionStateService: ActionStateService);
18
53
  ngOnInit(): void;
54
+ initializeTableConfig(): void;
55
+ initializeColumns(): void;
56
+ initializeColumnConfig(): void;
19
57
  createForm(): void;
58
+ editAsset(asset: any): void;
59
+ deleteAsset(asset: any): void;
20
60
  formValue(form: any): void;
21
61
  checkValidity(action: string): boolean;
22
62
  customCallSubmit(action: string): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bpm-core",
3
- "version": "0.0.53",
3
+ "version": "0.0.55",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^18.2.0",
6
6
  "@angular/core": "^18.2.0",
@@ -24,4 +24,4 @@
24
24
  "default": "./fesm2022/bpm-core.mjs"
25
25
  }
26
26
  }
27
- }
27
+ }
@@ -74,6 +74,8 @@ mat-slide-toggle {
74
74
 
75
75
  .mat-mdc-checkbox.mat-accent .mdc-checkbox {
76
76
  transform: initial;
77
+ border: 1px solid #d6d6d4;
78
+ border-radius: 5px
77
79
  }
78
80
 
79
81
  // datepicker
@@ -2,6 +2,7 @@
2
2
  display: inline-block;
3
3
  position: relative;
4
4
  width: 100%;
5
+ height: 2.8125rem
5
6
  }
6
7
 
7
8
  .iti .dropdown-menu.country-dropdown {
@@ -48,6 +49,7 @@ ngx-intl-tel-input input {
48
49
  height: 44px;
49
50
  margin-bottom: 20px;
50
51
  padding: 10px;
52
+ padding-top: 15px;
51
53
  border-style: solid;
52
54
  border-width: 1px;
53
55
  border-color: #c7cace;
@@ -59,13 +61,13 @@ ngx-intl-tel-input.ng-invalid.ng-touched input {
59
61
  border: 1px solid #c0392b;
60
62
  }
61
63
 
62
- ngx-intl-tel-input input:hover {
63
- box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.24);
64
- }
64
+ // ngx-intl-tel-input input:hover {
65
+ // box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.24);
66
+ // }
65
67
 
66
68
  ngx-intl-tel-input input:focus {
67
69
  outline: none !important;
68
- border-color: #3498db;
70
+ // border-color: #3498db;
69
71
  box-shadow: 0 0 0 0 #000;
70
72
  }
71
73
 
@@ -1,27 +0,0 @@
1
- export const environment = {
2
- production: false,
3
- CONFIG_NAME: 'wmConfig',
4
- proxyAddress: '',
5
- proxyPort: '',
6
- formConfigApproval: '',
7
- formConfigPerGov: '',
8
- formConfigPerGovAr: '',
9
- formConfigExecute: '',
10
- formConfigPayroll: '',
11
- formName: 'MEO',
12
- formId: '',
13
- authToken: '',
14
- proxyServiceBaseUrl: 'http://localhost' + ':' + '3000/',
15
- proxyFullAddress: '',
16
- proxyServiceAuthorization: '/authenticate',
17
- proxyServiceExecute: '/execute?debug=success',
18
- proxyServiceAttachment: '/attachments/',
19
- proxyServiceForms: '/forms/',
20
- proxyServiceLanguageURLPart: '',
21
- formConfigAproval: 'eyJpbmJveFVyaSI6IlwvZ3JvdXBcL2ktZ2F0ZVwvZS1zZXJ2aWNlc1wvYWR2YW5jZWQtaW5ib3giLCJmb3JtSWQiOiJuZXdfYXByb3ZhbCIsImZvcm1QcmVmaXgiOiJTQ1IiLCJsYW5ndWFnZSI6ImVuIn0=',
22
- formConfigNew: 'eyJpbmJveFVyaSI6IlwvZ3JvdXBcL2ktZ2F0ZVwvZS1zZXJ2aWNlc1wvYWR2YW5jZWQtaW5ib3giLCJmb3JtUHJlZml4IjoiQ09FIiwibGFuZ3VhZ2UiOiJlbiJ9',
23
- formConfigNewAr: 'eyJpbmJveFVyaSI6IlwvZ3JvdXBcL2ktZ2F0ZVwvZS1zZXJ2aWNlc1wvYWR2YW5jZWQtaW5ib3giLCJmb3JtUHJlZml4IjoiSFNUIiwibGFuZ3VhZ2UiOiJhciJ9',
24
- formConfigSubmit: 'eyJpbmJveFVyaSI6IlwvZ3JvdXBcL2ktZ2F0ZVwvZS1zZXJ2aWNlc1wvYWR2YW5jZWQtaW5ib3giLCJmb3JtSWQiOiJuZXdfc3VibWl0IiwiaXNNb2JpbGUiOnRydWUsImZvcm1QcmVmaXgiOiJTQ1IiLCJsYW5ndWFnZSI6ImVuIn0=',
25
- formConfigSubmitAr: 'eyJpbmJveFVyaSI6IlwvZ3JvdXBcL2ktZ2F0ZVwvZS1zZXJ2aWNlc1wvYWR2YW5jZWQtaW5ib3giLCJmb3JtSWQiOiJuZXdfc3VibWl0IiwiZm9ybVByZWZpeCI6IlNDUiIsImxhbmd1YWdlIjoiYXIifQ=='
26
- };
27
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZW52aXJvbm1lbnQubG9jYWwuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9icG0tY29yZS9zcmMvbGliL2Vudmlyb25tZW50cy9lbnZpcm9ubWVudC5sb2NhbC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxNQUFNLENBQUMsTUFBTSxXQUFXLEdBQUc7SUFDekIsVUFBVSxFQUFFLEtBQUs7SUFDakIsV0FBVyxFQUFFLFVBQVU7SUFDdkIsWUFBWSxFQUFFLEVBQUU7SUFDaEIsU0FBUyxFQUFFLEVBQUU7SUFDYixrQkFBa0IsRUFBRSxFQUFFO0lBQ3RCLGdCQUFnQixFQUFFLEVBQUU7SUFDcEIsa0JBQWtCLEVBQUUsRUFBRTtJQUN0QixpQkFBaUIsRUFBRSxFQUFFO0lBQ3JCLGlCQUFpQixFQUFFLEVBQUU7SUFDckIsUUFBUSxFQUFFLEtBQUs7SUFDZixNQUFNLEVBQUUsRUFBRTtJQUNWLFNBQVMsRUFBRSxFQUFFO0lBQ2IsbUJBQW1CLEVBQUUsa0JBQWtCLEdBQUcsR0FBRyxHQUFHLE9BQU87SUFDdkQsZ0JBQWdCLEVBQUUsRUFBRTtJQUNwQix5QkFBeUIsRUFBRSxlQUFlO0lBQzFDLG1CQUFtQixFQUFFLHdCQUF3QjtJQUM3QyxzQkFBc0IsRUFBRSxlQUFlO0lBQ3ZDLGlCQUFpQixFQUFFLFNBQVM7SUFDNUIsMkJBQTJCLEVBQUUsRUFBRTtJQUMvQixpQkFBaUIsRUFBRSw4SkFBOEo7SUFDakwsYUFBYSxFQUFFLDhIQUE4SDtJQUM3SSxlQUFlLEVBQUUsOEhBQThIO0lBQy9JLGdCQUFnQixFQUFFLGtMQUFrTDtJQUNwTSxrQkFBa0IsRUFBRSw4SkFBOEo7Q0FDbkwsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBjb25zdCBlbnZpcm9ubWVudCA9IHtcclxuICBwcm9kdWN0aW9uOiBmYWxzZSxcclxuICBDT05GSUdfTkFNRTogJ3dtQ29uZmlnJyxcclxuICBwcm94eUFkZHJlc3M6ICcnLFxyXG4gIHByb3h5UG9ydDogJycsXHJcbiAgZm9ybUNvbmZpZ0FwcHJvdmFsOiAnJyxcclxuICBmb3JtQ29uZmlnUGVyR292OiAnJyxcclxuICBmb3JtQ29uZmlnUGVyR292QXI6ICcnLFxyXG4gIGZvcm1Db25maWdFeGVjdXRlOiAnJyxcclxuICBmb3JtQ29uZmlnUGF5cm9sbDogJycsXHJcbiAgZm9ybU5hbWU6ICdNRU8nLFxyXG4gIGZvcm1JZDogJycsXHJcbiAgYXV0aFRva2VuOiAnJyxcclxuICBwcm94eVNlcnZpY2VCYXNlVXJsOiAnaHR0cDovL2xvY2FsaG9zdCcgKyAnOicgKyAnMzAwMC8nLFxyXG4gIHByb3h5RnVsbEFkZHJlc3M6ICcnLFxyXG4gIHByb3h5U2VydmljZUF1dGhvcml6YXRpb246ICcvYXV0aGVudGljYXRlJyxcclxuICBwcm94eVNlcnZpY2VFeGVjdXRlOiAnL2V4ZWN1dGU/ZGVidWc9c3VjY2VzcycsXHJcbiAgcHJveHlTZXJ2aWNlQXR0YWNobWVudDogJy9hdHRhY2htZW50cy8nLFxyXG4gIHByb3h5U2VydmljZUZvcm1zOiAnL2Zvcm1zLycsXHJcbiAgcHJveHlTZXJ2aWNlTGFuZ3VhZ2VVUkxQYXJ0OiAnJyxcclxuICBmb3JtQ29uZmlnQXByb3ZhbDogJ2V5SnBibUp2ZUZWeWFTSTZJbHd2WjNKdmRYQmNMMmt0WjJGMFpWd3ZaUzF6WlhKMmFXTmxjMXd2WVdSMllXNWpaV1F0YVc1aWIzZ2lMQ0ptYjNKdFNXUWlPaUp1WlhkZllYQnliM1poYkNJc0ltWnZjbTFRY21WbWFYZ2lPaUpUUTFJaUxDSnNZVzVuZFdGblpTSTZJbVZ1SW4wPScsXHJcbiAgZm9ybUNvbmZpZ05ldzogJ2V5SnBibUp2ZUZWeWFTSTZJbHd2WjNKdmRYQmNMMmt0WjJGMFpWd3ZaUzF6WlhKMmFXTmxjMXd2WVdSMllXNWpaV1F0YVc1aWIzZ2lMQ0ptYjNKdFVISmxabWw0SWpvaVEwOUZJaXdpYkdGdVozVmhaMlVpT2lKbGJpSjknLFxyXG4gIGZvcm1Db25maWdOZXdBcjogJ2V5SnBibUp2ZUZWeWFTSTZJbHd2WjNKdmRYQmNMMmt0WjJGMFpWd3ZaUzF6WlhKMmFXTmxjMXd2WVdSMllXNWpaV1F0YVc1aWIzZ2lMQ0ptYjNKdFVISmxabWw0SWpvaVNGTlVJaXdpYkdGdVozVmhaMlVpT2lKaGNpSjknLFxyXG4gIGZvcm1Db25maWdTdWJtaXQ6ICdleUpwYm1KdmVGVnlhU0k2SWx3dlozSnZkWEJjTDJrdFoyRjBaVnd2WlMxelpYSjJhV05sYzF3dllXUjJZVzVqWldRdGFXNWliM2dpTENKbWIzSnRTV1FpT2lKdVpYZGZjM1ZpYldsMElpd2lhWE5OYjJKcGJHVWlPblJ5ZFdVc0ltWnZjbTFRY21WbWFYZ2lPaUpUUTFJaUxDSnNZVzVuZFdGblpTSTZJbVZ1SW4wPScsXHJcbiAgZm9ybUNvbmZpZ1N1Ym1pdEFyOiAnZXlKcGJtSnZlRlZ5YVNJNklsd3ZaM0p2ZFhCY0wya3RaMkYwWlZ3dlpTMXpaWEoyYVdObGMxd3ZZV1IyWVc1alpXUXRhVzVpYjNnaUxDSm1iM0p0U1dRaU9pSnVaWGRmYzNWaWJXbDBJaXdpWm05eWJWQnlaV1pwZUNJNklsTkRVaUlzSW14aGJtZDFZV2RsSWpvaVlYSWlmUT09J1xyXG59O1xyXG4iXX0=
@@ -1,26 +0,0 @@
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
- };