bpm-core 0.0.78 → 0.0.80
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/esm2022/lib/components/shared-components/form-field/control-value-accessor.directive.mjs +4 -1
- package/esm2022/lib/components/shared-components/form-field/toggle-button/toggle-button.component.mjs +16 -5
- package/esm2022/lib/testComponent/request-details-section/request-details-section.component.mjs +29 -19
- package/fesm2022/bpm-core.mjs +46 -22
- package/fesm2022/bpm-core.mjs.map +1 -1
- package/lib/components/shared-components/form-field/control-value-accessor.directive.d.ts +1 -0
- package/lib/components/shared-components/form-field/toggle-button/toggle-button.component.d.ts +1 -0
- package/package.json +1 -1
|
@@ -30,6 +30,7 @@ export declare class ControlValueAccessorDirective<Type> implements ControlValue
|
|
|
30
30
|
randomID: string;
|
|
31
31
|
multiple: boolean;
|
|
32
32
|
searchControl: FormControl<any>;
|
|
33
|
+
toggleButtonControl: FormControl<any>;
|
|
33
34
|
employeeSearchControl: FormControl<any>;
|
|
34
35
|
telephoneControl: FormControl<any>;
|
|
35
36
|
attachments: any[];
|
package/lib/components/shared-components/form-field/toggle-button/toggle-button.component.d.ts
CHANGED
|
@@ -14,6 +14,7 @@ export declare class ToggleButtonComponent<Type> extends ControlValueAccessorDir
|
|
|
14
14
|
key: string;
|
|
15
15
|
destroyRef: DestroyRef;
|
|
16
16
|
ngOnInit(): void;
|
|
17
|
+
setToggelButtonValue(hasHint: boolean, hintSection: any, item: any): void;
|
|
17
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<ToggleButtonComponent<any>, never>;
|
|
18
19
|
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; }; "displayedLabel": { "alias": "displayedLabel"; "required": false; }; "key": { "alias": "key"; "required": false; }; }, { "onChange": "onChange"; }, never, never, true, never>;
|
|
19
20
|
}
|