bpm-core 0.0.112 → 0.0.114
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/fesm2022/bpm-core.mjs +206 -137
- package/fesm2022/bpm-core.mjs.map +1 -1
- package/lib/components/shared-components/form-field/shared-imports.d.ts +3 -3
- package/lib/functions/index.d.ts +1 -1
- package/lib/functions/validators.d.ts +59 -0
- package/package.json +1 -1
- package/public-api.d.ts +0 -1
- package/src/lib/assets/scss/components/_fields.scss +1 -1
- package/lib/classes/form-validation.d.ts +0 -19
- package/lib/classes/index.d.ts +0 -1
- package/lib/functions/is-valid-data.d.ts +0 -1
package/fesm2022/bpm-core.mjs
CHANGED
|
@@ -12,7 +12,7 @@ import { NgIf, CommonModule, NgSwitchCase, DecimalPipe, DatePipe, NgClass, NgSwi
|
|
|
12
12
|
import * as i2 from '@angular/material/core';
|
|
13
13
|
import { MAT_DATE_FORMATS, MatNativeDateModule } from '@angular/material/core';
|
|
14
14
|
import * as i4 from '@angular/forms';
|
|
15
|
-
import { NG_VALUE_ACCESSOR, FormControl, NgForm, ControlContainer, Validators, NgControl, NgModel, FormControlName, FormGroupDirective, ReactiveFormsModule, FormsModule } from '@angular/forms';
|
|
15
|
+
import { NG_VALUE_ACCESSOR, FormControl, NgForm, ControlContainer, Validators, NgControl, NgModel, FormControlName, FormGroupDirective, ReactiveFormsModule, FormsModule, FormGroup, FormArray } from '@angular/forms';
|
|
16
16
|
import * as i3 from '@angular/platform-browser';
|
|
17
17
|
import { MatCheckbox } from '@angular/material/checkbox';
|
|
18
18
|
import * as i2$1 from 'ngx-toastr';
|
|
@@ -7554,7 +7554,7 @@ class RequestDetailsSectionComponent {
|
|
|
7554
7554
|
// numberInput: new FormControl(null, Validators.required),
|
|
7555
7555
|
customSearchable: new FormControl(null, Validators.required),
|
|
7556
7556
|
// checkbox: new FormControl(null, [Validators.requiredTrue, Validators.required]),
|
|
7557
|
-
textArea: new FormControl('defaultText', [Validators.required, Validators.maxLength(5)]),
|
|
7557
|
+
// textArea: new FormControl('defaultText', [Validators.required, Validators.maxLength(5)]),
|
|
7558
7558
|
// datePicker: new FormControl(null, Validators.required),
|
|
7559
7559
|
// datePickerRange: new FormControl(null, Validators.required),
|
|
7560
7560
|
// radio: new FormControl(null, Validators.required),
|
|
@@ -7563,7 +7563,7 @@ class RequestDetailsSectionComponent {
|
|
|
7563
7563
|
// searchEmployee: new FormControl(null, Validators.required),
|
|
7564
7564
|
// // ...newForm,
|
|
7565
7565
|
// attachment: new FormControl(null, Validators.required),
|
|
7566
|
-
attachmentSection: new FormControl([], Validators.required),
|
|
7566
|
+
// attachmentSection: new FormControl([], Validators.required),
|
|
7567
7567
|
});
|
|
7568
7568
|
/* if(this.lov?.['decision']?.options?.length){
|
|
7569
7569
|
|
|
@@ -7689,7 +7689,7 @@ class RequestDetailsSectionComponent {
|
|
|
7689
7689
|
this.pageSize = event.pageSize;
|
|
7690
7690
|
}
|
|
7691
7691
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.1", ngImport: i0, type: RequestDetailsSectionComponent, deps: [{ token: CoreI18nService }, { token: i4.FormBuilder }, { token: ActionStateService }], target: i0.ɵɵFactoryTarget.Component });
|
|
7692
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.1", type: RequestDetailsSectionComponent, isStandalone: true, selector: "app-request-details-section", inputs: { isReadOnly: "isReadOnly", section: "section", form: "form", lov: "lov", className: "className" }, ngImport: i0, template: "<div>\r\n <form [ngClass]=\"{'form-section-divide form-section':!section?.header?.readOnly,'info-section':section?.header?.readOnly}\" [formGroup]=\"formGroup\">\r\n\r\n<app-
|
|
7692
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.1", type: RequestDetailsSectionComponent, isStandalone: true, selector: "app-request-details-section", inputs: { isReadOnly: "isReadOnly", section: "section", form: "form", lov: "lov", className: "className" }, ngImport: i0, template: "<div>\r\n <form [ngClass]=\"{'form-section-divide form-section':!section?.header?.readOnly,'info-section':section?.header?.readOnly}\" [formGroup]=\"formGroup\">\r\n\r\n <app-custom-searchable\r\n class=\"section-item mb-0 full\"\r\n [isReadOnly]=\"isReadOnly\"\r\n formControlName=\"customSearchable\"\r\n label=\"Custom searchable\"\r\n [options]=\"[{value: '1', description: 'CxO Unit 1'}, {value: '2', description: 'CxO Unit 2'}]\"\r\n [displayedLabel]=\"'description'\"\r\n [key]=\"'value'\"></app-custom-searchable>\r\n<!-- <app-textarea \r\n class=\"section-item full\" [isReadOnly]=\"isReadOnly\" \r\n [(ngModel)]=\"textArea\" (ngModelChange)=\"log($event)\"\r\n [ngModelOptions]=\"{standalone: true}\" [required]=\"true\"\r\n label=\"Text-area\"></app-textarea> -->\r\n <!-- <app-custom-searchable\r\n class=\"section-item mb-0 full\"\r\n [isReadOnly]=\"isReadOnly\"\r\n formControlName=\"customSearchable\"\r\n label=\"Custom searchable\"\r\n [options]=\"lov?.['approverActions']?.options\"\r\n [displayedLabel]=\"'name'\"\r\n [key]=\"'name'\"></app-custom-searchable> -->\r\n\r\n <!-- <app-attachment-section\r\n class=\"section-item full\"\r\n [descriptionRequired]=\"false\"\r\n label=\"Attachment section\"\r\n [commentsRequired]=\"false\"\r\n [isReadOnly]=\"isReadOnly\"\r\n formControlName=\"attachmentSection\"></app-attachment-section> -->\r\n\r\n<!-- {{formGroup.valid}}-->\r\n<!-- <app-input class=\"section-item full\" [isReadOnly]=\"false\" [mandatory]=\"true\" [loading]=\"true\" type=\"enOnly\" formControlName=\"input\" label=\"Input\"></app-input>-->\r\n<!-- <app-checkbox\r\n class=\"section-item full\"\r\n [isReadOnly]=\"isReadOnly\"\r\n formControlName=\"checkbox\"\r\n termsLabel=\"Terms and conditions\"\r\n label=\"check-box\"\r\n [containTerms]=\"true\"></app-checkbox>-->\r\n <!--\r\n <app-search-employee\r\n class=\"section-item full\"\r\n [multiple]=\"true\"\r\n [arrayList]=\"formGroup.get('searchEmployee').value\"\r\n [isReadOnly]=\"isReadOnly\"\r\n formControlName=\"searchEmployee\"\r\n label=\"Search-employee\"></app-search-employee>\r\n <app-input class=\"section-item full\" [isReadOnly]=\"isReadOnly\" [loading]=\"true\" type=\"enOnly\" formControlName=\"input\" label=\"Input\"></app-input>\r\n <app-input-currency class=\"section-item full\" [isReadOnly]=\"isReadOnly\" formControlName=\"currencyInput\" label=\"currency\"></app-input-currency>\r\n <app-input-email class=\"section-item full\" [isReadOnly]=\"isReadOnly\" formControlName=\"emailInput\" label=\"email\"></app-input-email>\r\n <app-input-number class=\"section-item full\" [isReadOnly]=\"isReadOnly\" formControlName=\"numberInput\" label=\"number\"></app-input-number>\r\n <app-custom-searchable\r\n class=\"section-item mb-0 full\"\r\n [isReadOnly]=\"isReadOnly\"\r\n formControlName=\"customSearchable\"\r\n label=\"Custom-searchable\"\r\n [options]=\"lov?.['approverActions']?.options\"\r\n [displayedLabel]=\"'name'\"\r\n [key]=\"'name'\"></app-custom-searchable>\r\n <app-checkbox\r\n class=\"section-item full\"\r\n [isReadOnly]=\"isReadOnly\"\r\n formControlName=\"checkbox\"\r\n termsLabel=\"Terms and conditions\"\r\n label=\"check-box\"\r\n [containTerms]=\"true\"></app-checkbox>\r\n <app-textarea class=\"section-item full\" [isReadOnly]=\"isReadOnly\" formControlName=\"textArea\" label=\"Text-area\"></app-textarea>\r\n\r\n <app-date-range-picker\r\n class=\"section-item full\"\r\n [isReadOnly]=\"isReadOnly\"\r\n formControlName=\"datePickerRange\"\r\n label=\"Date-picker-range\"\r\n [matSuffix]=\"true\"></app-date-range-picker>\r\n <app-radio class=\"section-item full\" [isReadOnly]=\"isReadOnly\" formControlName=\"radio\" [options]=\"options\" label=\"Radio\"></app-radio>-->\r\n <!-- <app-toggle-button\r\n class=\"section-item full\"\r\n [isReadOnly]=\"isReadOnly\"\r\n formControlName=\"toggle\"\r\n [options]=\"lov?.['decision']?.options\"\r\n label=\"Toggle-button\"\r\n [displayedLabel]=\"'description'\"\r\n [key]=\"'value'\"></app-toggle-button>-->\r\n <!--<app-input-telephone class=\"section-item full\" [isReadOnly]=\"isReadOnly\" formControlName=\"telephone\" label=\"Telephone\"></app-input-telephone>\r\n\r\n <app-file-uploader\r\n class=\"section-item full\"\r\n [callApi]=\"true\"\r\n [isReadOnly]=\"isReadOnly\"\r\n [multiple]=\"false\"\r\n label=\"attachment\"\r\n formControlName=\"attachment\"></app-file-uploader>\r\n\r\n <app-attachment-section\r\n class=\"section-item full\"\r\n [descriptionRequired]=\"false\"\r\n label=\"Attachment section\"\r\n [commentsRequired]=\"false\"\r\n [isReadOnly]=\"isReadOnly\"\r\n formControlName=\"attachmentSection\"></app-attachment-section>\r\n-->\r\n\r\n\r\n\r\n <!-- <app-table\r\n [columnsConfig]=\"columnsConfig\"\r\n [columns]=\"columns\"\r\n [isError]=\"isError\"\r\n [isLoading]=\"isLoading\"\r\n [rows]=\"categoryData\" [hasPaginator]=\"true\"\r\n [pageSize]=\"pageSize\" [currentPage]=\"pageNumber\"\r\n [totalElements]=\"totalElements\"\r\n (pageChange)=\"pageChanged($event)\"\r\n class=\"new-primary-table full\">\r\n </app-table> -->\r\n\r\n<!-- <app-datepicker\r\n class=\"section-item full\"\r\n [isReadOnly]=\"false\"\r\n formControlName=\"datePicker\"\r\n [matSuffix]=\"true\"\r\n label=\"Date-picker\"></app-datepicker>-->\r\n\r\n\r\n </form>\r\n\r\n\r\n</div>\r\n@if (!section?.header?.readOnly) {\r\n <div class=\"mt-4\">\r\n <lib-action-buttons\r\n [lovOptions]=\"lov?.['decision']?.options\"\r\n [lovType]=\"lov?.['decision']?.type\"\r\n [section]=\"section\"\r\n [form]=\"form\"\r\n [sections]=\"form.sections\"\r\n [showApprovalCycle]=\"true\"\r\n [customCall]=\"false\"\r\n [fieldsForm]=\"formGroup\"\r\n (customCallEmit)=\"customCallSubmit($event)\"\r\n (resetFormEmit)=\"resetForm()\"\r\n />\r\n </div>\r\n}\r\n", styles: [".form-section-divide{--form-section-columns: 1fr 1fr}@media (max-width: 756px){.form-section-divide{--form-section-columns: 100%}}.form-section-divide .full{grid-column:1/-1}.head-title{position:relative;margin-bottom:12px}.head-title h3{display:inline-block;color:#8e9aa0;font-size:14px;font-weight:500;background-color:#fff;padding-inline-end:20px;position:relative;z-index:2;margin:0}.head-title:after{content:\"\";position:absolute;width:100%;height:1px;background-color:#dee0e2;top:50%;left:0;right:0;transform:translateY(-50%);z-index:1}.chamber{margin-bottom:20px}.chamber .chamber-content{background-color:#f8f8f8;padding:20px}.chamber .chamber-content .chamber-select{display:flex}.chamber .chamber-content mat-checkbox{font-size:14px}.section-item{margin-bottom:20px}\n"], dependencies: [{ kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "component", type: ActionButtonsComponent, selector: "lib-action-buttons", inputs: ["lovOptions", "lovType", "fieldsForm", "form", "section", "sections", "showApprovalCycle", "customCall"], outputs: ["resetFormEmit", "customCallEmit"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i4.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i4.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i4.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i4.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i4.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "component", type: CustomSearchableComponent, selector: "app-custom-searchable", inputs: ["options", "disabled", "displayedLabel", "key", "floatLabel", "className"], outputs: ["selectedValue", "isLengthGreaterThan4"] }, { kind: "ngmodule", type: FormsModule }] });
|
|
7693
7693
|
}
|
|
7694
7694
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.1", ngImport: i0, type: RequestDetailsSectionComponent, decorators: [{
|
|
7695
7695
|
type: Component,
|
|
@@ -7715,7 +7715,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.1", ngImpor
|
|
|
7715
7715
|
TableComponent,
|
|
7716
7716
|
TranslatePipe,
|
|
7717
7717
|
FormsModule
|
|
7718
|
-
], template: "<div>\r\n <form [ngClass]=\"{'form-section-divide form-section':!section?.header?.readOnly,'info-section':section?.header?.readOnly}\" [formGroup]=\"formGroup\">\r\n\r\n<app-
|
|
7718
|
+
], template: "<div>\r\n <form [ngClass]=\"{'form-section-divide form-section':!section?.header?.readOnly,'info-section':section?.header?.readOnly}\" [formGroup]=\"formGroup\">\r\n\r\n <app-custom-searchable\r\n class=\"section-item mb-0 full\"\r\n [isReadOnly]=\"isReadOnly\"\r\n formControlName=\"customSearchable\"\r\n label=\"Custom searchable\"\r\n [options]=\"[{value: '1', description: 'CxO Unit 1'}, {value: '2', description: 'CxO Unit 2'}]\"\r\n [displayedLabel]=\"'description'\"\r\n [key]=\"'value'\"></app-custom-searchable>\r\n<!-- <app-textarea \r\n class=\"section-item full\" [isReadOnly]=\"isReadOnly\" \r\n [(ngModel)]=\"textArea\" (ngModelChange)=\"log($event)\"\r\n [ngModelOptions]=\"{standalone: true}\" [required]=\"true\"\r\n label=\"Text-area\"></app-textarea> -->\r\n <!-- <app-custom-searchable\r\n class=\"section-item mb-0 full\"\r\n [isReadOnly]=\"isReadOnly\"\r\n formControlName=\"customSearchable\"\r\n label=\"Custom searchable\"\r\n [options]=\"lov?.['approverActions']?.options\"\r\n [displayedLabel]=\"'name'\"\r\n [key]=\"'name'\"></app-custom-searchable> -->\r\n\r\n <!-- <app-attachment-section\r\n class=\"section-item full\"\r\n [descriptionRequired]=\"false\"\r\n label=\"Attachment section\"\r\n [commentsRequired]=\"false\"\r\n [isReadOnly]=\"isReadOnly\"\r\n formControlName=\"attachmentSection\"></app-attachment-section> -->\r\n\r\n<!-- {{formGroup.valid}}-->\r\n<!-- <app-input class=\"section-item full\" [isReadOnly]=\"false\" [mandatory]=\"true\" [loading]=\"true\" type=\"enOnly\" formControlName=\"input\" label=\"Input\"></app-input>-->\r\n<!-- <app-checkbox\r\n class=\"section-item full\"\r\n [isReadOnly]=\"isReadOnly\"\r\n formControlName=\"checkbox\"\r\n termsLabel=\"Terms and conditions\"\r\n label=\"check-box\"\r\n [containTerms]=\"true\"></app-checkbox>-->\r\n <!--\r\n <app-search-employee\r\n class=\"section-item full\"\r\n [multiple]=\"true\"\r\n [arrayList]=\"formGroup.get('searchEmployee').value\"\r\n [isReadOnly]=\"isReadOnly\"\r\n formControlName=\"searchEmployee\"\r\n label=\"Search-employee\"></app-search-employee>\r\n <app-input class=\"section-item full\" [isReadOnly]=\"isReadOnly\" [loading]=\"true\" type=\"enOnly\" formControlName=\"input\" label=\"Input\"></app-input>\r\n <app-input-currency class=\"section-item full\" [isReadOnly]=\"isReadOnly\" formControlName=\"currencyInput\" label=\"currency\"></app-input-currency>\r\n <app-input-email class=\"section-item full\" [isReadOnly]=\"isReadOnly\" formControlName=\"emailInput\" label=\"email\"></app-input-email>\r\n <app-input-number class=\"section-item full\" [isReadOnly]=\"isReadOnly\" formControlName=\"numberInput\" label=\"number\"></app-input-number>\r\n <app-custom-searchable\r\n class=\"section-item mb-0 full\"\r\n [isReadOnly]=\"isReadOnly\"\r\n formControlName=\"customSearchable\"\r\n label=\"Custom-searchable\"\r\n [options]=\"lov?.['approverActions']?.options\"\r\n [displayedLabel]=\"'name'\"\r\n [key]=\"'name'\"></app-custom-searchable>\r\n <app-checkbox\r\n class=\"section-item full\"\r\n [isReadOnly]=\"isReadOnly\"\r\n formControlName=\"checkbox\"\r\n termsLabel=\"Terms and conditions\"\r\n label=\"check-box\"\r\n [containTerms]=\"true\"></app-checkbox>\r\n <app-textarea class=\"section-item full\" [isReadOnly]=\"isReadOnly\" formControlName=\"textArea\" label=\"Text-area\"></app-textarea>\r\n\r\n <app-date-range-picker\r\n class=\"section-item full\"\r\n [isReadOnly]=\"isReadOnly\"\r\n formControlName=\"datePickerRange\"\r\n label=\"Date-picker-range\"\r\n [matSuffix]=\"true\"></app-date-range-picker>\r\n <app-radio class=\"section-item full\" [isReadOnly]=\"isReadOnly\" formControlName=\"radio\" [options]=\"options\" label=\"Radio\"></app-radio>-->\r\n <!-- <app-toggle-button\r\n class=\"section-item full\"\r\n [isReadOnly]=\"isReadOnly\"\r\n formControlName=\"toggle\"\r\n [options]=\"lov?.['decision']?.options\"\r\n label=\"Toggle-button\"\r\n [displayedLabel]=\"'description'\"\r\n [key]=\"'value'\"></app-toggle-button>-->\r\n <!--<app-input-telephone class=\"section-item full\" [isReadOnly]=\"isReadOnly\" formControlName=\"telephone\" label=\"Telephone\"></app-input-telephone>\r\n\r\n <app-file-uploader\r\n class=\"section-item full\"\r\n [callApi]=\"true\"\r\n [isReadOnly]=\"isReadOnly\"\r\n [multiple]=\"false\"\r\n label=\"attachment\"\r\n formControlName=\"attachment\"></app-file-uploader>\r\n\r\n <app-attachment-section\r\n class=\"section-item full\"\r\n [descriptionRequired]=\"false\"\r\n label=\"Attachment section\"\r\n [commentsRequired]=\"false\"\r\n [isReadOnly]=\"isReadOnly\"\r\n formControlName=\"attachmentSection\"></app-attachment-section>\r\n-->\r\n\r\n\r\n\r\n <!-- <app-table\r\n [columnsConfig]=\"columnsConfig\"\r\n [columns]=\"columns\"\r\n [isError]=\"isError\"\r\n [isLoading]=\"isLoading\"\r\n [rows]=\"categoryData\" [hasPaginator]=\"true\"\r\n [pageSize]=\"pageSize\" [currentPage]=\"pageNumber\"\r\n [totalElements]=\"totalElements\"\r\n (pageChange)=\"pageChanged($event)\"\r\n class=\"new-primary-table full\">\r\n </app-table> -->\r\n\r\n<!-- <app-datepicker\r\n class=\"section-item full\"\r\n [isReadOnly]=\"false\"\r\n formControlName=\"datePicker\"\r\n [matSuffix]=\"true\"\r\n label=\"Date-picker\"></app-datepicker>-->\r\n\r\n\r\n </form>\r\n\r\n\r\n</div>\r\n@if (!section?.header?.readOnly) {\r\n <div class=\"mt-4\">\r\n <lib-action-buttons\r\n [lovOptions]=\"lov?.['decision']?.options\"\r\n [lovType]=\"lov?.['decision']?.type\"\r\n [section]=\"section\"\r\n [form]=\"form\"\r\n [sections]=\"form.sections\"\r\n [showApprovalCycle]=\"true\"\r\n [customCall]=\"false\"\r\n [fieldsForm]=\"formGroup\"\r\n (customCallEmit)=\"customCallSubmit($event)\"\r\n (resetFormEmit)=\"resetForm()\"\r\n />\r\n </div>\r\n}\r\n", styles: [".form-section-divide{--form-section-columns: 1fr 1fr}@media (max-width: 756px){.form-section-divide{--form-section-columns: 100%}}.form-section-divide .full{grid-column:1/-1}.head-title{position:relative;margin-bottom:12px}.head-title h3{display:inline-block;color:#8e9aa0;font-size:14px;font-weight:500;background-color:#fff;padding-inline-end:20px;position:relative;z-index:2;margin:0}.head-title:after{content:\"\";position:absolute;width:100%;height:1px;background-color:#dee0e2;top:50%;left:0;right:0;transform:translateY(-50%);z-index:1}.chamber{margin-bottom:20px}.chamber .chamber-content{background-color:#f8f8f8;padding:20px}.chamber .chamber-content .chamber-select{display:flex}.chamber .chamber-content mat-checkbox{font-size:14px}.section-item{margin-bottom:20px}\n"] }]
|
|
7719
7719
|
}], ctorParameters: () => [{ type: CoreI18nService }, { type: i4.FormBuilder }, { type: ActionStateService }], propDecorators: { isReadOnly: [{
|
|
7720
7720
|
type: Input
|
|
7721
7721
|
}], section: [{
|
|
@@ -7968,6 +7968,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.1", ngImpor
|
|
|
7968
7968
|
args: [PLATFORM_ID]
|
|
7969
7969
|
}] }] });
|
|
7970
7970
|
|
|
7971
|
+
var loadForm = {
|
|
7972
|
+
beforeTranspilePayload(payload) {
|
|
7973
|
+
const hookResult = payload;
|
|
7974
|
+
// Here should be the code to manipulate the payload before the transpile stage
|
|
7975
|
+
return hookResult;
|
|
7976
|
+
},
|
|
7977
|
+
afterTranspilePayload(form) {
|
|
7978
|
+
const hookResult = form;
|
|
7979
|
+
// Here should be the code to manipulate the form object after the transpile stage
|
|
7980
|
+
return hookResult;
|
|
7981
|
+
}
|
|
7982
|
+
};
|
|
7983
|
+
|
|
7971
7984
|
function encodePassword(formId, password) {
|
|
7972
7985
|
const formIdString = Array.from(new TextEncoder().encode(formId), (x) => String.fromCodePoint(x)).join('');
|
|
7973
7986
|
let encodedFormId = btoa(formIdString);
|
|
@@ -7982,46 +7995,194 @@ function encodePassword(formId, password) {
|
|
|
7982
7995
|
return newPassword;
|
|
7983
7996
|
}
|
|
7984
7997
|
|
|
7985
|
-
const
|
|
7986
|
-
|
|
7987
|
-
|
|
7988
|
-
|
|
7989
|
-
|
|
7990
|
-
|
|
7991
|
-
|
|
7992
|
-
|
|
7993
|
-
|
|
7994
|
-
|
|
7995
|
-
|
|
7996
|
-
|
|
7997
|
-
|
|
7998
|
-
|
|
7999
|
-
|
|
8000
|
-
|
|
8001
|
-
|
|
8002
|
-
|
|
8003
|
-
|
|
8004
|
-
|
|
7998
|
+
const ACTION_ERROR_SUFFIX = '_ACTION';
|
|
7999
|
+
class ManageActionErrors {
|
|
8000
|
+
/*
|
|
8001
|
+
action error structure
|
|
8002
|
+
{error_key}_{action_name}ACTION_ERROR_SUFFIX
|
|
8003
|
+
e.g. required_REJECT_ACTION
|
|
8004
|
+
*/
|
|
8005
|
+
hasActionError(errors, action) {
|
|
8006
|
+
if (!errors)
|
|
8007
|
+
return false;
|
|
8008
|
+
return !!Object.keys(errors).filter(key => key.endsWith(`${action}${ACTION_ERROR_SUFFIX}`)).length;
|
|
8009
|
+
}
|
|
8010
|
+
hasOtherError(errors) {
|
|
8011
|
+
if (!errors)
|
|
8012
|
+
return false;
|
|
8013
|
+
const actionErrorKeys = this.getActionErrorKeys(errors);
|
|
8014
|
+
const allErrorKeys = this.getAllErrorKeys(errors);
|
|
8015
|
+
if (actionErrorKeys.size === allErrorKeys.size)
|
|
8016
|
+
return false;
|
|
8017
|
+
return true;
|
|
8018
|
+
}
|
|
8019
|
+
getActionErrorKeys(errors) {
|
|
8020
|
+
return new Set(
|
|
8021
|
+
//required_REJECT_ACTION => required
|
|
8022
|
+
Object.keys(errors).filter(actionKey => actionKey.endsWith(ACTION_ERROR_SUFFIX)).map(key => key.split('_')[0]));
|
|
8023
|
+
}
|
|
8024
|
+
getAllErrorKeys(errors) {
|
|
8025
|
+
return new Set(Object.keys(errors).filter(key => !key.endsWith(ACTION_ERROR_SUFFIX)));
|
|
8026
|
+
}
|
|
8027
|
+
addActionError(actions, errors) {
|
|
8028
|
+
const actionErrors = {};
|
|
8029
|
+
actions.forEach(action => {
|
|
8030
|
+
for (let key in errors) {
|
|
8031
|
+
actionErrors[`${key}_${action}${ACTION_ERROR_SUFFIX}`] = errors[key];
|
|
8032
|
+
}
|
|
8033
|
+
});
|
|
8034
|
+
return { ...errors, ...actionErrors };
|
|
8035
|
+
}
|
|
8036
|
+
}
|
|
8037
|
+
/**
|
|
8038
|
+
* Checks if the form group is valid for a specific action.
|
|
8039
|
+
* You should use this function to check form validity if you use `validateIfAction` function.
|
|
8040
|
+
* @param action The action to check against.
|
|
8041
|
+
* @param formGroup The form group or form array to validate.
|
|
8042
|
+
* @returns {boolean} True if all controls are valid for the action, false otherwise.
|
|
8043
|
+
*/
|
|
8044
|
+
function isValidForAction(action, formGroup) {
|
|
8045
|
+
return Object.entries(formGroup.controls).every(([controlName, control]) => {
|
|
8046
|
+
if (control instanceof FormGroup || control instanceof FormArray) {
|
|
8047
|
+
return isValidForAction(action, control);
|
|
8048
|
+
}
|
|
8049
|
+
const errors = control.errors;
|
|
8050
|
+
if (!errors)
|
|
8051
|
+
return true;
|
|
8052
|
+
const invalidAction = new ManageActionErrors().hasActionError(errors, action);
|
|
8053
|
+
if (invalidAction)
|
|
8054
|
+
return false;
|
|
8055
|
+
const hasOtherError = new ManageActionErrors().hasOtherError(errors);
|
|
8056
|
+
if (hasOtherError)
|
|
8057
|
+
return false;
|
|
8058
|
+
return true;
|
|
8059
|
+
});
|
|
8060
|
+
}
|
|
8061
|
+
/**
|
|
8062
|
+
* Updates the value and validity of all controls.
|
|
8063
|
+
* Use this function when your validators depend on the values of other controls.
|
|
8064
|
+
* @param formGroup The FormGroup or FormArray to update.
|
|
8065
|
+
* @returns {void}
|
|
8066
|
+
*/
|
|
8067
|
+
function updateValueAndValidity(formGroup) {
|
|
8068
|
+
Object.values(formGroup.controls).forEach((control) => {
|
|
8069
|
+
if (control instanceof FormGroup || control instanceof FormArray) {
|
|
8070
|
+
updateValueAndValidity(control);
|
|
8071
|
+
}
|
|
8072
|
+
else {
|
|
8073
|
+
control.updateValueAndValidity({ emitEvent: false });
|
|
8074
|
+
}
|
|
8075
|
+
});
|
|
8076
|
+
}
|
|
8077
|
+
/**
|
|
8078
|
+
* Validates a control only when a certain condition is met.
|
|
8079
|
+
* @param condition A function that returns a boolean indicating whether to apply the validator.
|
|
8080
|
+
* @param validator A single ValidatorFn or an array of ValidatorFns to apply if the condition is true.
|
|
8081
|
+
* @returns {ValidatorFn} A ValidatorFn that applies the given validator only when the condition is true.
|
|
8082
|
+
*/
|
|
8083
|
+
function validateOnlyWhen(condition, validator) {
|
|
8084
|
+
return (control) => {
|
|
8085
|
+
if (condition()) {
|
|
8086
|
+
return Array.isArray(validator) ? Validators.compose(validator)(control) : validator(control);
|
|
8087
|
+
}
|
|
8088
|
+
return null;
|
|
8089
|
+
};
|
|
8090
|
+
}
|
|
8091
|
+
/**
|
|
8092
|
+
* Validates a control if the current action is one of the specified actions.
|
|
8093
|
+
* @param actions An array of action names to check against.
|
|
8094
|
+
* @param validator A single ValidatorFn or an array of ValidatorFns to apply if the current action matches one of the actions.
|
|
8095
|
+
* @returns {ValidatorFn} A ValidatorFn that applies the given validator only if the current action is one of the specified actions.
|
|
8096
|
+
* */
|
|
8097
|
+
function validateIfAction(actions, validator) {
|
|
8098
|
+
return (control) => {
|
|
8099
|
+
const output = Array.isArray(validator) ? Validators.compose(validator)(control) : validator(control);
|
|
8100
|
+
if (output) {
|
|
8101
|
+
return new ManageActionErrors().addActionError(actions, output);
|
|
8102
|
+
}
|
|
8103
|
+
return null;
|
|
8104
|
+
};
|
|
8105
|
+
}
|
|
8106
|
+
/**
|
|
8107
|
+
* Logs the status of all controls in a FormGroup.
|
|
8108
|
+
* It traverses the form structure and logs whether each control is valid or invalid.
|
|
8109
|
+
* @param formGroup The FormGroup to log the status of.
|
|
8110
|
+
* @returns {void} This function does not return anything, it logs the status to the console.
|
|
8111
|
+
*/
|
|
8112
|
+
function logFormStatus(formGroup) {
|
|
8113
|
+
const stack = [{ controls: formGroup.controls, path: '' }];
|
|
8114
|
+
const status = {
|
|
8115
|
+
all: {},
|
|
8116
|
+
valid: {},
|
|
8117
|
+
invalid: {}
|
|
8118
|
+
};
|
|
8119
|
+
while (stack.length) {
|
|
8120
|
+
const { controls, path } = stack.pop();
|
|
8121
|
+
for (const key in controls) {
|
|
8122
|
+
const control = controls[key];
|
|
8123
|
+
const newPath = path ? `${path}.${key}` : key;
|
|
8124
|
+
if (control instanceof FormGroup) {
|
|
8125
|
+
stack.push({ controls: control.controls, path: newPath });
|
|
8126
|
+
}
|
|
8127
|
+
else if (control instanceof FormArray) {
|
|
8128
|
+
const formArrayControlsAsObj = control.controls.reduce((prev, current, index) => {
|
|
8129
|
+
prev[index] = current;
|
|
8130
|
+
return prev;
|
|
8131
|
+
}, {});
|
|
8132
|
+
stack.push({ controls: formArrayControlsAsObj, path: newPath });
|
|
8133
|
+
}
|
|
8134
|
+
else {
|
|
8135
|
+
status.all[newPath] = control.valid;
|
|
8136
|
+
if (control.valid)
|
|
8137
|
+
status.valid[newPath] = control.valid;
|
|
8138
|
+
else
|
|
8139
|
+
status.invalid[newPath] = control.valid;
|
|
8140
|
+
}
|
|
8141
|
+
}
|
|
8142
|
+
}
|
|
8143
|
+
console.log(status);
|
|
8144
|
+
}
|
|
8145
|
+
/**
|
|
8146
|
+
* A collection of custom validators for various data types.
|
|
8147
|
+
*/
|
|
8148
|
+
class DataValidators {
|
|
8149
|
+
/**
|
|
8150
|
+
* Validates that the control's value is a valid employee object.
|
|
8151
|
+
*/
|
|
8152
|
+
static employeeRequired(control) {
|
|
8153
|
+
if (control.value?.personEmail)
|
|
8154
|
+
return null;
|
|
8155
|
+
return { required: true };
|
|
8156
|
+
}
|
|
8157
|
+
/**
|
|
8158
|
+
* Validates that the control's value is a valid attachment object.
|
|
8159
|
+
*/
|
|
8160
|
+
static fileUploaderRequired(control) {
|
|
8161
|
+
if (control.value?.attachmentId)
|
|
8162
|
+
return null;
|
|
8163
|
+
return { required: true };
|
|
8164
|
+
}
|
|
8165
|
+
/**
|
|
8166
|
+
* Validates that the control's value is a valid attachments list.
|
|
8167
|
+
*/
|
|
8168
|
+
static multiFileUploaderRequired(control) {
|
|
8169
|
+
if (!Array.isArray(control.value))
|
|
8170
|
+
return { required: true };
|
|
8171
|
+
if (!control.value.length)
|
|
8172
|
+
return { required: true };
|
|
8173
|
+
if (control.value.every(item => item.attachmentId))
|
|
8174
|
+
return null;
|
|
8175
|
+
return { required: true };
|
|
8176
|
+
}
|
|
8177
|
+
/**
|
|
8178
|
+
* Validates that the control's value is a valid select object.
|
|
8179
|
+
* The select object should have a 'key' property.
|
|
8180
|
+
*/
|
|
8181
|
+
static selectRequired(control) {
|
|
8182
|
+
if (control.value?.key)
|
|
8183
|
+
return null;
|
|
8184
|
+
return { required: true };
|
|
8005
8185
|
}
|
|
8006
|
-
};
|
|
8007
|
-
function isValidData(data) {
|
|
8008
|
-
if (data === undefined || data === null)
|
|
8009
|
-
return false;
|
|
8010
|
-
let requiredKey;
|
|
8011
|
-
//get current data type
|
|
8012
|
-
for (let item of Object.entries(dataTypes)) {
|
|
8013
|
-
const type = item[0]; //string or attachmentsList or select ...
|
|
8014
|
-
const verifyDataTypeFn = item[1].verifyDataType;
|
|
8015
|
-
if (verifyDataTypeFn(data)) {
|
|
8016
|
-
requiredKey = type;
|
|
8017
|
-
break;
|
|
8018
|
-
}
|
|
8019
|
-
}
|
|
8020
|
-
if (!requiredKey) {
|
|
8021
|
-
throw Error('data type is not found');
|
|
8022
|
-
}
|
|
8023
|
-
//check if the current data type is valid
|
|
8024
|
-
return dataTypes[requiredKey].isValid(data);
|
|
8025
8186
|
}
|
|
8026
8187
|
|
|
8027
8188
|
function handelErrorResponse(obj, errorMsgs) {
|
|
@@ -8046,98 +8207,6 @@ function dataURItoBlob(dataURI, mimeType) {
|
|
|
8046
8207
|
}
|
|
8047
8208
|
;
|
|
8048
8209
|
|
|
8049
|
-
class FormValidation {
|
|
8050
|
-
validators;
|
|
8051
|
-
constructor(validators) {
|
|
8052
|
-
this.validators = validators;
|
|
8053
|
-
}
|
|
8054
|
-
isFormValidForAction(section, action) {
|
|
8055
|
-
return Object.entries(this.validators)
|
|
8056
|
-
.every(([fieldName, fieldValidators]) => fieldValidators.every(fn => fn(fieldName, section, action) === null));
|
|
8057
|
-
}
|
|
8058
|
-
logFormControlsValidationStatus(section, action) {
|
|
8059
|
-
console.log(Object.entries(this.validators).map(([fieldName, fieldValidators]) => {
|
|
8060
|
-
const isValid = fieldValidators.every(fn => fn(fieldName, section, action) === null);
|
|
8061
|
-
return { [fieldName]: fieldValidators.map(fn => fn(fieldName, section, action)), isValid };
|
|
8062
|
-
}));
|
|
8063
|
-
}
|
|
8064
|
-
}
|
|
8065
|
-
class BuiltInCustomValidators {
|
|
8066
|
-
static required(fieldName, section, action) {
|
|
8067
|
-
const value = section.body.details[fieldName];
|
|
8068
|
-
if (isValidData(value))
|
|
8069
|
-
return null;
|
|
8070
|
-
return { required: true };
|
|
8071
|
-
}
|
|
8072
|
-
static requiredIfAction(action) {
|
|
8073
|
-
return (fieldName, section, currentAction) => {
|
|
8074
|
-
if (action.includes(currentAction)) {
|
|
8075
|
-
return BuiltInCustomValidators.required(fieldName, section, currentAction);
|
|
8076
|
-
}
|
|
8077
|
-
return null;
|
|
8078
|
-
};
|
|
8079
|
-
}
|
|
8080
|
-
static requiredOnlyWhen(conditionFn) {
|
|
8081
|
-
return (fieldName, section, currentAction) => {
|
|
8082
|
-
if (conditionFn()) {
|
|
8083
|
-
return BuiltInCustomValidators.required(fieldName, section, currentAction);
|
|
8084
|
-
}
|
|
8085
|
-
return null;
|
|
8086
|
-
};
|
|
8087
|
-
}
|
|
8088
|
-
static maxLength(max) {
|
|
8089
|
-
return (fieldName, section, currentAction) => {
|
|
8090
|
-
const value = section.body?.details?.[fieldName];
|
|
8091
|
-
if (!value)
|
|
8092
|
-
return null;
|
|
8093
|
-
if (value.length > max)
|
|
8094
|
-
return { maxLength: 'required', required: max };
|
|
8095
|
-
return null;
|
|
8096
|
-
};
|
|
8097
|
-
}
|
|
8098
|
-
static minLength(min) {
|
|
8099
|
-
return (fieldName, section, currentAction) => {
|
|
8100
|
-
const value = section.body?.details?.[fieldName];
|
|
8101
|
-
if (!value)
|
|
8102
|
-
return null;
|
|
8103
|
-
if (value.length < min)
|
|
8104
|
-
return { minLength: 'required', required: min };
|
|
8105
|
-
return null;
|
|
8106
|
-
};
|
|
8107
|
-
}
|
|
8108
|
-
static ifAction(actions, validators) {
|
|
8109
|
-
return validators.map(fn => {
|
|
8110
|
-
return (fieldName, section, currentAction) => {
|
|
8111
|
-
if (!actions.includes(currentAction))
|
|
8112
|
-
return null;
|
|
8113
|
-
return fn(fieldName, section, currentAction);
|
|
8114
|
-
};
|
|
8115
|
-
});
|
|
8116
|
-
}
|
|
8117
|
-
static validateOnlyWhen(conditionFn, validators) {
|
|
8118
|
-
return validators.map(fn => {
|
|
8119
|
-
return (fieldName, section, currentAction) => {
|
|
8120
|
-
if (conditionFn())
|
|
8121
|
-
return fn(fieldName, section, currentAction);
|
|
8122
|
-
return null;
|
|
8123
|
-
};
|
|
8124
|
-
});
|
|
8125
|
-
}
|
|
8126
|
-
}
|
|
8127
|
-
|
|
8128
|
-
var loadForm = {
|
|
8129
|
-
beforeTranspilePayload(payload) {
|
|
8130
|
-
const hookResult = payload;
|
|
8131
|
-
// Here should be the code to manipulate the payload before the transpile stage
|
|
8132
|
-
return hookResult;
|
|
8133
|
-
},
|
|
8134
|
-
afterTranspilePayload(form) {
|
|
8135
|
-
const hookResult = form;
|
|
8136
|
-
// Here should be the code to manipulate the form object after the transpile stage
|
|
8137
|
-
return hookResult;
|
|
8138
|
-
}
|
|
8139
|
-
};
|
|
8140
|
-
|
|
8141
8210
|
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
8142
8211
|
function validateSAID() {
|
|
8143
8212
|
if (this?.personalInfoFormTemp) {
|
|
@@ -8300,5 +8369,5 @@ const MY_LIB_CONFIG_TOKEN = new InjectionToken('MyLibConfig');
|
|
|
8300
8369
|
* Generated bundle index. Do not edit.
|
|
8301
8370
|
*/
|
|
8302
8371
|
|
|
8303
|
-
export { APPROVERS, ActionButtonsComponent, ActionStateService, AttachmentSectionComponent, AttachmentSectionDataComponent, BaseComponent,
|
|
8372
|
+
export { APPROVERS, ActionButtonsComponent, ActionStateService, AttachmentSectionComponent, AttachmentSectionDataComponent, BaseComponent, COMMENT_CONTAINER, CheckBoxComponent, CommentsDrop, ConfirmDialogComponent, CoreAppComponent, CoreI18nService, CoreService, CustomSearchableComponent, DATE_DASH, DATE_SLASH, DATE_TIME, DONT_SHOW, DataValidators, DatePickerComponent, DateRangePickerComponent, DeleteDialogComponent, DocsUploaderComponent, FALSE_BOOL, FALSE_STRING, FEEDBACK_CONTAINER, FEEDBACK_STATUS_REQUEST, FEEDBACK_STATUS_RESPOND, FEEDBACK_STATUS_RESPONDED, FEEDBACK_STATUS_WAITING, FORM_STATUS_APPROVE, FORM_STATUS_APPROVED, FORM_STATUS_CANCEL, FORM_STATUS_CANCELLED, FORM_STATUS_COMPLETED, FORM_STATUS_NEW, FORM_STATUS_PENDING, FORM_STATUS_REJECT, FORM_STATUS_REJECTED, FORM_STATUS_SEND_BACK, FeedBackService, FeedbackSectionComponent, Form, FormLabelComponent, FormSectionComponent, FormatAsPasswordPipe, FormatTimePipe, GETSIPORTENTRYGROUPS, GETSIPORTENTRYLOCATIONS, HAS_COMMENTS, HEADER_CONTENT_TYPE_FORM, HTTP_METHOD_GET, HTTP_METHOD_POST, HTTP_METHOD_PUT, HTTP_PROTOCOL_HTTP, HTTP_PROTOCOL_HTTPS, Header, IGATE_STATIC_ASSET_PROFILE_PHOTO_URL, INBOX_STATUS_PENDING, INBOX_STATUS_PROCESSED, INBOX_STATUS_SENT, InboxItem, InfoItemComponent, InputComponent, InputCurrencyComponent, InputEmailComponent, InputMaskComponent, InputNumberComponent, InputTelephoneComponent, LANGUAGE_CODE_AR, LANGUAGE_CODE_EN, LOGOUT_URL, LayoutComponent, MY_LIB_CONFIG_TOKEN, MainRequestDetailsComponent, Messages, MycurrencyPipe, NO_COMMENTS, NO_VALUE, PROCESS_NAME_CODE, PROFILE_CONTAINER, ProfileInfoDrop, ProfileSectionComponent, READ_ONLY, REPORT, ROLE_REQUESTER, RadioComponent, RegexPatterns, RepeatedListComponent, SECTION_ID_APPROVAL_PARTIAL_NAME, SECTION_ID_DM_PARTIAL_ROLE, SECTION_ID_EMP_INFO_APPROVAL_PARTIAL_ROLE, SECTION_ID_EXECUTE_PARTIAL_ROLE, SECTION_ID_GM_PARTIAL_ROLE, SECTION_ID_NOTHING_PARTIAL_NAME, SECTION_ID_PAYROLL_APPROVAL_PARTIAL_ROLE, SECTION_ID_PERFORM_PARTIAL_ROLE, SECTION_ID_REQUESTER_PARTIAL_NAME, SECTION_ID_REQUEST_DETAILS, SECTION_ID_SM_PARTIAL_ROLE, SECTION_ID_SVP_PARTIAL_ROLE, SECTION_ID_VP_PARTIAL_ROLE, SECTION_STATUS_APPROVED, SECTION_STATUS_PENDING, SECTION_STATUS_UNSATISFIED, SERVICE_NAME_CEP, SERVICE_NAME_DP_CREATE_FEEDBACK, SERVICE_NAME_DP_INBOX_ITEM, SERVICE_NAME_DP_LOAD_HISTORY, SERVICE_NAME_DP_SEARCH_EMPLOYEE, SERVICE_NAME_DP_UPDATE_FEEDBACK, SERVICE_NAME_DP_UPDATE_INBOX_ITEM, SERVICE_NAME_MAF, SERVICE_NAME_WM_CHILD_FORM, SERVICE_NAME_WM_DRAFT_FORM, SERVICE_NAME_WM_FORM, SERVICE_NAME_WM_GET_APPROVED_REQUEST, SERVICE_NAME_WM_GET_MY_APPROVED_REQUEST, SERVICE_NAME_WM_HTML_GENERATOR, STATE_MACHINE_ACTION_CALC, STATE_MACHINE_ACTION_COMMONAPI, STATE_MACHINE_ACTION_CONVERT, STATE_MACHINE_ACTION_EMPLOYEE_PROFILE, STATE_MACHINE_ACTION_FAILURE, STATE_MACHINE_ACTION_GET_APPROVED_REQUEST, STATE_MACHINE_ACTION_GET_APPROVED_REQUEST_RESPONSE, STATE_MACHINE_ACTION_GET_FEEDBACK, STATE_MACHINE_ACTION_GET_INBOX_ITEM, STATE_MACHINE_ACTION_HANDLE_ERROR, STATE_MACHINE_ACTION_INBOX_ITEM_RESPONSE, STATE_MACHINE_ACTION_LOAD_FILE, STATE_MACHINE_ACTION_LOAD_FORM, STATE_MACHINE_ACTION_LOAD_HISTORY, STATE_MACHINE_ACTION_PDF, STATE_MACHINE_ACTION_PPROVED_REQUESTS, STATE_MACHINE_ACTION_PROJECT_CEP, STATE_MACHINE_ACTION_PROJECT_MAF, STATE_MACHINE_ACTION_SEARCH, STATE_MACHINE_ACTION_SEARCH_EMPLOYEE, STATE_MACHINE_ACTION_SET_FLAG, STATE_MACHINE_ACTION_SHOW_PRINT, STATE_MACHINE_ACTION_SUBMIT_FEEDBACK, STATE_MACHINE_ACTION_SUBMIT_FORM, STATE_MACHINE_ACTION_SUCCESS, STATE_MACHINE_ACTION_SUCCESS_HISTORY, STATE_MACHINE_ACTION_SUCCESS_INBOX_ITEM, STATE_MACHINE_ACTION_SUCCESS_PRINT, STATE_MACHINE_ACTION_SUCCESS_RESPONSE, STATE_MACHINE_ACTION_SUCCESS_SERVICES, STATE_MACHINE_ACTION_SUCCESS_USERS, STATE_MACHINE_ACTION_SUCCESS_WM, STATE_MACHINE_ACTION_UPDATE_FEEDBACK, STATE_MACHINE_ACTION_USER_CEP, STATE_MACHINE_ACTION_USER_MAF, STATE_MACHINE_STATUS_ERROR, STATE_MACHINE_STATUS_FETCHING, STATE_MACHINE_STATUS_IDLE, STATE_MACHINE_STATUS_RESULT, STATE_MACHINE_STATUS_SENDING, STATE_NAME_DP_GET_FEEDBACK, SearchEmployeeComponent, Section, SectionHeader, SelectComponent, ServiceHeaderComponent, SidenavService, StatusComponent, SubmitDialogComponent, TARGET_SERVER_DP, TARGET_SERVER_WM, TRUE_BOOL, TRUE_STRING, TableComponent, TableListComponent, TermsConditionsComponent, TextDirective, TextareaComponent, TitleSectionComponent, ToggleButtonComponent, URL_SEPARATOR, ValidationErrorsComponent, WM_ACTION_SAVE, WM_ACTION_SAVE_CHANGES, WM_ACTION_SUBMIT, WORKFLOW_ITEMS, WRITE_MODE, WorkflowSectionComponent, dataURItoBlob, encodePassword, handelErrorResponse, isValidForAction, logFormStatus, stringToBooleanPipe, updateValueAndValidity, validateIfAction, validateOnlyWhen, validateSAID };
|
|
8304
8373
|
//# sourceMappingURL=bpm-core.mjs.map
|