vcomply-workflow-engine 3.1.40 → 3.1.42
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/esm2020/lib/workflow/grc-object/grc-object-container/grc-object-container.component.mjs +20 -10
- package/esm2020/lib/workflow/shared/components/attributes/attributes-text-box/attributes-text-box.component.mjs +4 -3
- package/esm2020/lib/workflow/shared/components/attributes/attributes.component.mjs +4 -3
- package/esm2020/lib/workflow/shared/components/attributes/date-picker/date-picker.component.mjs +3 -3
- package/esm2020/lib/workflow/shared/services/grc.service.mjs +2 -2
- package/esm2020/lib/workflow-risk/workflow-risk.component.mjs +14 -7
- package/fesm2015/vcomply-workflow-engine.mjs +41 -22
- package/fesm2015/vcomply-workflow-engine.mjs.map +1 -1
- package/fesm2020/vcomply-workflow-engine.mjs +41 -22
- package/fesm2020/vcomply-workflow-engine.mjs.map +1 -1
- package/lib/workflow/grc-object/grc-object-container/grc-object-container.component.d.ts +1 -0
- package/lib/workflow/shared/components/attributes/attributes-text-box/attributes-text-box.component.d.ts +1 -0
- package/lib/workflow/shared/components/attributes/attributes.component.d.ts +1 -0
- package/lib/workflow-risk/workflow-risk.component.d.ts +1 -0
- package/package.json +1 -1
|
@@ -150,6 +150,7 @@ export declare class GrcObjectContainerComponent implements OnInit, OnDestroy {
|
|
|
150
150
|
populateLinkRisk(selectedData: any): any;
|
|
151
151
|
getOwnersExceptDefault(users: any): any;
|
|
152
152
|
setMoreOptionsOnSubmit(): void;
|
|
153
|
+
resetOtherGRCCard(): void;
|
|
153
154
|
static ɵfac: i0.ɵɵFactoryDeclaration<GrcObjectContainerComponent, never>;
|
|
154
155
|
static ɵcmp: i0.ɵɵComponentDeclaration<GrcObjectContainerComponent, "lib-grc-object-container", never, { "grcType": "grcType"; "MODE": "MODE"; "ID": "ID"; }, { "populateOption": "populateOption"; "pickerChanged": "pickerChanged"; "closeWorkflow": "closeWorkflow"; "disconnectRefresh": "disconnectRefresh"; "resetForm": "resetForm"; "hideElementsFromMoreOptions": "hideElementsFromMoreOptions"; }, never, never, false>;
|
|
155
156
|
}
|
|
@@ -21,6 +21,7 @@ export declare class AttributesComponent implements OnInit {
|
|
|
21
21
|
currentIndex: number;
|
|
22
22
|
isFormSubmitted: boolean;
|
|
23
23
|
disabled: boolean;
|
|
24
|
+
multiPlaceholderText: string;
|
|
24
25
|
onAttributesSelection: EventEmitter<any>;
|
|
25
26
|
onClick: EventEmitter<any>;
|
|
26
27
|
constructor(grcService: GrcService);
|
|
@@ -208,6 +208,7 @@ export declare class WorkflowRiskComponent implements OnInit {
|
|
|
208
208
|
* "getOtherGRCTabCount" function. It is of type "any", which means it can accept any data type.
|
|
209
209
|
*/
|
|
210
210
|
getOtherGRCTabCount(event?: any): void;
|
|
211
|
+
getAllRCIds(rcIds: any): any;
|
|
211
212
|
getOtherGRCObjects(event?: any): void;
|
|
212
213
|
saveSelectedList(event: any): void;
|
|
213
214
|
setOtherGRCTypesFormate(): void;
|
package/package.json
CHANGED