vcomply-workflow-engine 6.4.2 → 6.4.4
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/add-multiple-responsibility.component.mjs +2 -2
- package/esm2022/lib/add-multiple-responsibility-with-tab/add-multiple-responsibility-with-tab.component.mjs +2 -2
- package/esm2022/lib/sharedComponents/frequency/frequency.constant.mjs +4 -1
- package/esm2022/lib/workflow-compliance/workflow-compliance.component.mjs +2 -2
- package/esm2022/lib/workflow-program/workflow-program.component.mjs +2 -2
- package/fesm2022/vcomply-workflow-engine.mjs +7 -4
- package/fesm2022/vcomply-workflow-engine.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -12242,6 +12242,9 @@ const MONTH_NAMES = [
|
|
|
12242
12242
|
{ value: 7, month: 'Jul' },
|
|
12243
12243
|
{ value: 8, month: 'Aug' },
|
|
12244
12244
|
{ value: 9, month: 'Sep' },
|
|
12245
|
+
{ value: 10, month: 'Oct' },
|
|
12246
|
+
{ value: 11, month: 'Nov' },
|
|
12247
|
+
{ value: 12, month: 'Dec' },
|
|
12245
12248
|
];
|
|
12246
12249
|
|
|
12247
12250
|
const NO_DATA_FOUND_IMAGE$1 = 'No results matched your search criteria.';
|
|
@@ -34222,7 +34225,7 @@ class WorkflowComplianceComponent {
|
|
|
34222
34225
|
viewResponsibilities() {
|
|
34223
34226
|
let url;
|
|
34224
34227
|
const id = this.responsibilityData?.data?.responsibility?.id;
|
|
34225
|
-
let urlSubstring = '/
|
|
34228
|
+
let urlSubstring = '/complianceops/responsibilities/';
|
|
34226
34229
|
this.disconnectRefresh.emit(false);
|
|
34227
34230
|
if (window.location.host.startsWith('localhost')) {
|
|
34228
34231
|
url = 'http://' + window.location.host + urlSubstring;
|
|
@@ -46194,7 +46197,7 @@ class WorkflowProgramComponent {
|
|
|
46194
46197
|
url += '/programs/' + this.createdProgramId;
|
|
46195
46198
|
}
|
|
46196
46199
|
else {
|
|
46197
|
-
url += '/
|
|
46200
|
+
url += '/complianceops/programs/' + this.createdProgramId;
|
|
46198
46201
|
}
|
|
46199
46202
|
this.iframeService.redirectIfInIframe(url, true);
|
|
46200
46203
|
}
|
|
@@ -47358,7 +47361,7 @@ class AddMultipleResponsibilityComponent {
|
|
|
47358
47361
|
else {
|
|
47359
47362
|
url = 'https://' + window.location.host + '/compliance/#/' + urlSubstring;
|
|
47360
47363
|
}
|
|
47361
|
-
urlSubstring = '/
|
|
47364
|
+
urlSubstring = '/complianceops/responsibilities/';
|
|
47362
47365
|
this.iframeService.redirectIfInIframe(url, false);
|
|
47363
47366
|
}
|
|
47364
47367
|
// Upload File to the server
|
|
@@ -48069,7 +48072,7 @@ class AddMultipleResponsibilityWithTabComponent {
|
|
|
48069
48072
|
}
|
|
48070
48073
|
viewResponsibilities() {
|
|
48071
48074
|
let url;
|
|
48072
|
-
let urlSubstring = '/
|
|
48075
|
+
let urlSubstring = '/complianceops/responsibilities/';
|
|
48073
48076
|
this.disconnectRefresh.emit(false);
|
|
48074
48077
|
if (window.location.host.startsWith('localhost')) {
|
|
48075
48078
|
url = 'http://' + window.location.host + urlSubstring;
|