vcomply-workflow-engine 3.4.26 → 3.4.27
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/log-an-issue/log-an-issue.component.mjs +9 -24
- package/esm2020/lib/workflow-services/log-issue.service.mjs +140 -39
- package/fesm2015/vcomply-workflow-engine.mjs +166 -78
- package/fesm2015/vcomply-workflow-engine.mjs.map +1 -1
- package/fesm2020/vcomply-workflow-engine.mjs +147 -61
- package/fesm2020/vcomply-workflow-engine.mjs.map +1 -1
- package/lib/log-an-issue/log-an-issue.component.d.ts +3 -1
- package/lib/workflow-services/log-issue.service.d.ts +1 -0
- package/package.json +1 -1
|
@@ -88,9 +88,11 @@ export declare class LogAnIssueComponent implements OnInit, OnChanges, AfterView
|
|
|
88
88
|
ISSUE_RC: {
|
|
89
89
|
panelTitle: string;
|
|
90
90
|
floatingTextSingular: string;
|
|
91
|
+
floatingTextPlural: string;
|
|
91
92
|
searchPlaceholder: string;
|
|
92
93
|
searchEnabled: boolean;
|
|
93
94
|
noDataText: string;
|
|
95
|
+
selectAllEnabled: boolean;
|
|
94
96
|
};
|
|
95
97
|
ISSUE_WHO: {
|
|
96
98
|
panelTitle: string;
|
|
@@ -157,7 +159,7 @@ export declare class LogAnIssueComponent implements OnInit, OnChanges, AfterView
|
|
|
157
159
|
*/
|
|
158
160
|
checkAllListLoaded(): void;
|
|
159
161
|
/**
|
|
160
|
-
* Removes error from the
|
|
162
|
+
* Removes error from the fields with error to remove the error messag from the UI
|
|
161
163
|
* @param errorKey error Identifier used to show error in specific fields.
|
|
162
164
|
*/
|
|
163
165
|
removeError(errorKey: string): void;
|
|
@@ -18,6 +18,7 @@ export declare class LogIssueService {
|
|
|
18
18
|
generatePayload(issueData: any, optionFieldsStatus: any): any;
|
|
19
19
|
payloadBuilder(issueData: any, optionFieldsStatus: any): any;
|
|
20
20
|
arrayToId(array: any, key: any): any;
|
|
21
|
+
getArrayId(array: any, key: any): any;
|
|
21
22
|
convertFrom12To24Format: (time12: any) => string;
|
|
22
23
|
convertFrom24To12Format(time: any): any;
|
|
23
24
|
arrayToIDsDtring(array: any, identifierKey: any): any;
|
package/package.json
CHANGED