bpm-core 0.0.113 → 0.0.115
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 +256 -248
- package/fesm2022/bpm-core.mjs.map +1 -1
- package/lib/components/shared-components/form-field/shared-imports.d.ts +1 -1
- package/lib/functions/validators.d.ts +4 -0
- package/lib/testComponent/request-details-section/request-details-section.component.d.ts +0 -2
- package/package.json +1 -1
- package/src/lib/assets/scss/components/_fields.scss +4 -1
|
@@ -11,5 +11,5 @@ import { NgClass } from "@angular/common";
|
|
|
11
11
|
import { TranslatePipe } from "../../../pipes/translate.pipe";
|
|
12
12
|
export declare const MatDatePickerImports: (typeof MatDatepickerInput | typeof MatDatepickerToggle | typeof MatDatepickerModule)[];
|
|
13
13
|
export declare const MatFormImports: (typeof MatInput | typeof MatFormFieldModule | typeof MatFormField)[];
|
|
14
|
-
export declare const Shareds: (typeof
|
|
14
|
+
export declare const Shareds: (typeof FormLabelComponent | typeof ValidationErrorsComponent | typeof InfoItemComponent | typeof ReactiveFormsModule | typeof NgClass | typeof TranslatePipe)[];
|
|
15
15
|
export declare const TextLanguageDirectives: (typeof EnOnlyDirective | typeof ArOnlyDirective)[];
|
|
@@ -39,6 +39,10 @@ export declare function logFormStatus(formGroup: FormGroup): void;
|
|
|
39
39
|
* A collection of custom validators for various data types.
|
|
40
40
|
*/
|
|
41
41
|
export declare class DataValidators {
|
|
42
|
+
/**
|
|
43
|
+
* Validates that the control's value is the string 'true'
|
|
44
|
+
*/
|
|
45
|
+
static checkboxRequired(control: AbstractControl): ValidationErrors | null;
|
|
42
46
|
/**
|
|
43
47
|
* Validates that the control's value is a valid employee object.
|
|
44
48
|
*/
|
|
@@ -57,11 +57,9 @@ export declare class RequestDetailsSectionComponent implements OnInit {
|
|
|
57
57
|
initializeColumns(): void;
|
|
58
58
|
initializeColumnConfig(): void;
|
|
59
59
|
createForm(): void;
|
|
60
|
-
textArea: string;
|
|
61
60
|
editAsset(asset: any): void;
|
|
62
61
|
startsWithDMOEOrCR(): ValidatorFn;
|
|
63
62
|
deleteAsset(asset: any): void;
|
|
64
|
-
log(d: any): void;
|
|
65
63
|
formValue(form: any): void;
|
|
66
64
|
checkValidity(action: string): boolean;
|
|
67
65
|
customCallSubmit(action: string): void;
|
package/package.json
CHANGED