vcomply-workflow-engine 7.4.4 → 7.4.5
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/add-multiple-responsibility-with-tab/add-multiple-responsibility-with-tab.component.mjs +146 -44
- package/fesm2022/vcomply-workflow-engine.mjs +145 -43
- package/fesm2022/vcomply-workflow-engine.mjs.map +1 -1
- package/lib/add-multiple-responsibility-with-tab/add-multiple-responsibility-with-tab.component.d.ts +16 -1
- package/lib/workflow-risk/workflow-risk.component.d.ts +1 -1
- package/package.json +1 -1
package/lib/add-multiple-responsibility-with-tab/add-multiple-responsibility-with-tab.component.d.ts
CHANGED
|
@@ -157,6 +157,19 @@ export declare class AddMultipleResponsibilityWithTabComponent implements OnInit
|
|
|
157
157
|
viewResponsibilities(): void;
|
|
158
158
|
fileUpload(): void;
|
|
159
159
|
setOrganizationDetails(tempList: any): void;
|
|
160
|
+
/**
|
|
161
|
+
* Child categories live in later Data-sheet columns whose header is the program id.
|
|
162
|
+
* Skip the program listing id columns (22-29 area) — those same ids also appear there
|
|
163
|
+
* for the first program of each type, which would attach the wrong names.
|
|
164
|
+
*/
|
|
165
|
+
getProgramCategoryIdColumns(headerRow: any[] | undefined, programId: any): number[];
|
|
166
|
+
parsePeopleListCell(value: any): {
|
|
167
|
+
nameAndEmail: string;
|
|
168
|
+
name: string;
|
|
169
|
+
email: string;
|
|
170
|
+
};
|
|
171
|
+
addPeopleDropdownName(value: any): void;
|
|
172
|
+
collectEmailDisplayNamesFromSheet(tempList?: any[]): void;
|
|
160
173
|
getProgramDetails(element: any, index: any, type: number): {
|
|
161
174
|
programName: any;
|
|
162
175
|
programId: any;
|
|
@@ -212,12 +225,14 @@ export declare class AddMultipleResponsibilityWithTabComponent implements OnInit
|
|
|
212
225
|
applyDropdownValidation(obj: any, tabType: string, isProgram: boolean, hasExtendedFrequencyColumns?: boolean): void;
|
|
213
226
|
getTemplateListNames(list: any[] | undefined, key: string): string[];
|
|
214
227
|
getProgramCategoryNames(): string[];
|
|
215
|
-
getAssignorDropdownNames(): string[];
|
|
216
228
|
/**
|
|
217
229
|
* Entrusted By in the xlsx dropdown is the people list in `Name (email)` form
|
|
218
230
|
* (same source as Entrusted To / Reviewer), not the assignor name-only column.
|
|
219
231
|
*/
|
|
220
232
|
isInUserDropdown(value: any): boolean;
|
|
233
|
+
normalizeDropdownValue(value: any): string;
|
|
234
|
+
extractDropdownEmail(value: any): string;
|
|
235
|
+
extractDropdownName(value: any): string;
|
|
221
236
|
isInStaticDropdown(value: any, options: string[]): boolean;
|
|
222
237
|
isInDropdownList(value: any, options: string[]): boolean;
|
|
223
238
|
isValidDropdownDay(value: any): boolean;
|
|
@@ -169,7 +169,7 @@ export declare class WorkflowRiskComponent implements OnInit {
|
|
|
169
169
|
setPopupButtons(): void;
|
|
170
170
|
getRiskDetails(riskId: any): void;
|
|
171
171
|
populateOptionalFields(): void;
|
|
172
|
-
setCategoryType(type: any): "
|
|
172
|
+
setCategoryType(type: any): "strategic" | "compliance" | "others" | "operational";
|
|
173
173
|
getRCList(): void;
|
|
174
174
|
getCategoryList(): void;
|
|
175
175
|
getOwnersList(): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vcomply-workflow-engine",
|
|
3
|
-
"version": "7.4.
|
|
3
|
+
"version": "7.4.5",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": " 12.x || 13.x || 14.x || 15.x || 16.x || 17.x || 18.x || 19.x ",
|
|
6
6
|
"@angular/core": " 12.x || 13.x || 14.x || 15.x || 16.x || 17.x || 18.x || 19.x "
|