vcomply-workflow-engine 3.4.27 → 3.4.29
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/constants/time.constants.mjs +2 -0
- package/esm2020/lib/log-an-issue/log-an-issue.component.mjs +29 -12
- package/esm2020/lib/sharedComponents/frequency/frequency-annual/frequency-annual.component.mjs +4 -3
- package/esm2020/lib/sharedComponents/frequency/frequency-biannual/frequency-biannual.component.mjs +4 -3
- package/esm2020/lib/sharedComponents/frequency/frequency-daily/frequency-daily.component.mjs +4 -3
- package/esm2020/lib/sharedComponents/frequency/frequency-monthly/frequency-monthly.component.mjs +4 -3
- package/esm2020/lib/sharedComponents/frequency/frequency-on-completion-of/frequency-on-completion-of.component.mjs +17 -8
- package/esm2020/lib/sharedComponents/frequency/frequency-one-time/frequency-one-time.component.mjs +15 -6
- package/esm2020/lib/sharedComponents/frequency/frequency-ongoing/frequency-ongoing.component.mjs +4 -3
- package/esm2020/lib/sharedComponents/frequency/frequency-quarterly/frequency-quarterly.component.mjs +4 -3
- package/esm2020/lib/sharedComponents/frequency/frequency-random/frequency-random.component.mjs +3 -2
- package/esm2020/lib/sharedComponents/frequency/frequency-top/frequency-top.component.mjs +14 -6
- package/esm2020/lib/sharedComponents/frequency/frequency-weekly/frequency-weekly.component.mjs +4 -3
- package/esm2020/lib/sharedComponents/frequency/frequency.service.mjs +3 -2
- package/esm2020/lib/sharedComponents/frequency-dialog/frequency-dialog-one-time/frequency-dialog-one-time.component.mjs +3 -3
- package/esm2020/lib/sharedComponents/frequency-dialog/frequency-dialog-top/frequency-dialog-top.component.mjs +5 -3
- package/esm2020/lib/ui-kit/time-picker/constants/constant.mjs +5 -0
- package/esm2020/lib/ui-kit/time-picker/time-picker/time-picker.component.mjs +194 -0
- package/esm2020/lib/ui-kit/time-picker/time-picker.module.mjs +24 -0
- package/esm2020/lib/workflow-compliance/workflow-compliance.component.mjs +8 -7
- package/esm2020/lib/workflow-engine.module.mjs +7 -3
- package/esm2020/lib/workflow-policy/workflow-policy.component.mjs +5 -4
- package/esm2020/lib/workflow-services/log-issue.service.mjs +39 -140
- package/fesm2015/vcomply-workflow-engine.mjs +369 -221
- package/fesm2015/vcomply-workflow-engine.mjs.map +1 -1
- package/fesm2020/vcomply-workflow-engine.mjs +351 -202
- package/fesm2020/vcomply-workflow-engine.mjs.map +1 -1
- package/lib/constants/time.constants.d.ts +1 -0
- package/lib/log-an-issue/log-an-issue.component.d.ts +2 -3
- package/lib/sharedComponents/frequency/frequency-on-completion-of/frequency-on-completion-of.component.d.ts +2 -0
- package/lib/sharedComponents/frequency/frequency-one-time/frequency-one-time.component.d.ts +2 -0
- package/lib/sharedComponents/frequency/frequency-top/frequency-top.component.d.ts +2 -0
- package/lib/sharedComponents/frequency-dialog/frequency-dialog-top/frequency-dialog-top.component.d.ts +1 -0
- package/lib/ui-kit/time-picker/constants/constant.d.ts +4 -0
- package/lib/ui-kit/time-picker/time-picker/time-picker.component.d.ts +25 -0
- package/lib/ui-kit/time-picker/time-picker.module.d.ts +8 -0
- package/lib/workflow-engine.module.d.ts +2 -1
- package/lib/workflow-services/log-issue.service.d.ts +0 -1
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const DEFAULT_TIME: string;
|
|
@@ -62,6 +62,7 @@ export declare class LogAnIssueComponent implements OnInit, OnChanges, AfterView
|
|
|
62
62
|
min: string;
|
|
63
63
|
};
|
|
64
64
|
listData: any;
|
|
65
|
+
DEFAULT_TIME: string;
|
|
65
66
|
get message(): string;
|
|
66
67
|
logIssueForm: any;
|
|
67
68
|
AttachmentTrack: any;
|
|
@@ -88,11 +89,9 @@ export declare class LogAnIssueComponent implements OnInit, OnChanges, AfterView
|
|
|
88
89
|
ISSUE_RC: {
|
|
89
90
|
panelTitle: string;
|
|
90
91
|
floatingTextSingular: string;
|
|
91
|
-
floatingTextPlural: string;
|
|
92
92
|
searchPlaceholder: string;
|
|
93
93
|
searchEnabled: boolean;
|
|
94
94
|
noDataText: string;
|
|
95
|
-
selectAllEnabled: boolean;
|
|
96
95
|
};
|
|
97
96
|
ISSUE_WHO: {
|
|
98
97
|
panelTitle: string;
|
|
@@ -159,7 +158,7 @@ export declare class LogAnIssueComponent implements OnInit, OnChanges, AfterView
|
|
|
159
158
|
*/
|
|
160
159
|
checkAllListLoaded(): void;
|
|
161
160
|
/**
|
|
162
|
-
* Removes error from the
|
|
161
|
+
* Removes error from the fiels with error to remove the error messag from the UI
|
|
163
162
|
* @param errorKey error Identifier used to show error in specific fields.
|
|
164
163
|
*/
|
|
165
164
|
removeError(errorKey: string): void;
|
|
@@ -5,6 +5,7 @@ export declare class FrequencyOnCompletionOfComponent implements OnInit {
|
|
|
5
5
|
private frequencyService;
|
|
6
6
|
mode: any;
|
|
7
7
|
feature: any;
|
|
8
|
+
DEFAULT_TIME: string;
|
|
8
9
|
onCompletionOfInput: number;
|
|
9
10
|
onCompletionOfWindow: number;
|
|
10
11
|
onCompletionOfFailed: number;
|
|
@@ -35,6 +36,7 @@ export declare class FrequencyOnCompletionOfComponent implements OnInit {
|
|
|
35
36
|
getOnCompletionFrequency(): void;
|
|
36
37
|
openRadioResponsibility(event: any): void;
|
|
37
38
|
remove(): void;
|
|
39
|
+
timeSelection(event: any): void;
|
|
38
40
|
static ɵfac: i0.ɵɵFactoryDeclaration<FrequencyOnCompletionOfComponent, never>;
|
|
39
41
|
static ɵcmp: i0.ɵɵComponentDeclaration<FrequencyOnCompletionOfComponent, "app-frequency-on-completion-of", never, { "mode": "mode"; "feature": "feature"; "startDate": "startDate"; "frequencyData": "frequencyData"; }, { "frequencyDetails": "frequencyDetails"; "radioForm": "radioForm"; }, never, never, false>;
|
|
40
42
|
}
|
|
@@ -5,6 +5,7 @@ import * as i0 from "@angular/core";
|
|
|
5
5
|
export declare class FrequencyOneTimeComponent implements OnInit {
|
|
6
6
|
private frequencyService;
|
|
7
7
|
datePicker: DatePickerComponent;
|
|
8
|
+
DEFAULT_TIME: string;
|
|
8
9
|
datepickerOverlay: boolean;
|
|
9
10
|
showDateError: boolean;
|
|
10
11
|
oneTimeFailed: number;
|
|
@@ -31,6 +32,7 @@ export declare class FrequencyOneTimeComponent implements OnInit {
|
|
|
31
32
|
onTimeChanged(event: string): void;
|
|
32
33
|
dateChange(event: any): void;
|
|
33
34
|
getOneTimeFrequency(): void;
|
|
35
|
+
timeSelection(event: any): void;
|
|
34
36
|
static ɵfac: i0.ɵɵFactoryDeclaration<FrequencyOneTimeComponent, never>;
|
|
35
37
|
static ɵcmp: i0.ɵɵComponentDeclaration<FrequencyOneTimeComponent, "app-frequency-one-time", never, { "pageType": "pageType"; "frequencyData": "frequencyData"; "mode": "mode"; }, { "frequencyDetails": "frequencyDetails"; }, never, never, false>;
|
|
36
38
|
}
|
|
@@ -11,6 +11,7 @@ export declare class FrequencyTopComponent implements OnInit {
|
|
|
11
11
|
timeChanged: EventEmitter<any>;
|
|
12
12
|
yearlyDateChanged: EventEmitter<any>;
|
|
13
13
|
mode: any;
|
|
14
|
+
DEFAULT_TIME: string;
|
|
14
15
|
todayDate: Date;
|
|
15
16
|
dateObjectData: Date;
|
|
16
17
|
timeData: string;
|
|
@@ -21,6 +22,7 @@ export declare class FrequencyTopComponent implements OnInit {
|
|
|
21
22
|
getToday(): string;
|
|
22
23
|
onTimeChanged(event: string): void;
|
|
23
24
|
enterYearDay(event: any): void;
|
|
25
|
+
timeSelection(event: any): void;
|
|
24
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<FrequencyTopComponent, never>;
|
|
25
27
|
static ɵcmp: i0.ɵɵComponentDeclaration<FrequencyTopComponent, "app-frequency-top", never, { "occurrenceFirst": "occurrenceFirst"; "id": "id"; "inputTime": "inputTime"; "frequencyType": "frequencyType"; "yearlyDay": "yearlyDay"; "mode": "mode"; }, { "valueChangedFirst": "valueChangedFirst"; "nextDisable": "nextDisable"; "timeChanged": "timeChanged"; "yearlyDateChanged": "yearlyDateChanged"; }, never, never, false>;
|
|
26
28
|
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class TimePickerComponent {
|
|
4
|
+
MINUTES: string[];
|
|
5
|
+
AM_PM: string[];
|
|
6
|
+
private selectedTime;
|
|
7
|
+
hourArray: number[];
|
|
8
|
+
TIME_VARIABLE: string[];
|
|
9
|
+
private defaultSelectedTime;
|
|
10
|
+
set defaultTime(inputTime: string);
|
|
11
|
+
onTimeSelection: EventEmitter<any>;
|
|
12
|
+
constructor();
|
|
13
|
+
onScroll(event: any, type: any): void;
|
|
14
|
+
onValueSelect(value: string | number, type: string): void;
|
|
15
|
+
handleMouseWheelEvent(currentValues: number[], direction: 'up' | 'down'): number[];
|
|
16
|
+
onCloseTimePicker(actionType: 'cancel' | 'ok'): void;
|
|
17
|
+
private getScrollDirection;
|
|
18
|
+
private setMinutes;
|
|
19
|
+
private setMeridiem;
|
|
20
|
+
private findSelectedValue;
|
|
21
|
+
private setDefault;
|
|
22
|
+
private setHoursToDefault;
|
|
23
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TimePickerComponent, never>;
|
|
24
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TimePickerComponent, "app-time-picker", never, { "defaultTime": "time"; }, { "onTimeSelection": "onTimeSelection"; }, never, never, false>;
|
|
25
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./time-picker/time-picker.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
export declare class TimePickerModule {
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TimePickerModule, never>;
|
|
6
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TimePickerModule, [typeof i1.TimePickerComponent], [typeof i2.CommonModule], [typeof i1.TimePickerComponent]>;
|
|
7
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TimePickerModule>;
|
|
8
|
+
}
|
|
@@ -130,9 +130,10 @@ import * as i126 from "./sharedComponents/floating-bar/floating-bar.module";
|
|
|
130
130
|
import * as i127 from "./sharedComponents/group-users-list/group-users-list.component";
|
|
131
131
|
import * as i128 from "./sharedComponents/list-loader/list-loader.module";
|
|
132
132
|
import * as i129 from "./workflow/shared/components/grc-object-list/grc-object-list.component";
|
|
133
|
+
import * as i130 from "./ui-kit/time-picker/time-picker.module";
|
|
133
134
|
export declare class VComplyWorkflowEngineModule {
|
|
134
135
|
static forRoot(environmentConfig: Configurations): ModuleWithProviders<VComplyWorkflowEngineModule>;
|
|
135
136
|
static ɵfac: i0.ɵɵFactoryDeclaration<VComplyWorkflowEngineModule, never>;
|
|
136
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<VComplyWorkflowEngineModule, [typeof i1.WorkflowEngineContainerComponent, typeof i2.WorkflowRiskComponent, typeof i3.WorkflowComplianceComponent, typeof i4.WorkflowPolicyComponent, typeof i5.MoreOptionComponent, typeof i6.OwnerListComponent, typeof i7.UserRadioListComponent, typeof i8.CategoryListComponent, typeof i9.CategoryMultiSelectComponent, typeof i10.WorkflowPaginationComponent, typeof i11.AddMultipleRiskComponent, typeof i12.BulkViewComponent, typeof i13.CheckpointsComponent, typeof i14.ConfirmationAlertComponent, typeof i15.CheckpointsQuestionsComponent, typeof i16.CheckpointsListComponent, typeof i17.ReviewFrequencyComponent, typeof i18.FrequencyContainerComponent, typeof i19.FrequencyDailyComponent, typeof i20.FrequencyWeeklyComponent, typeof i21.FrequencyMonthlyComponent, typeof i22.FrequencyQuarterlyComponent, typeof i23.FrequencyBiannualComponent, typeof i24.FrequencyAnnualComponent, typeof i25.FrequencyOneTimeComponent, typeof i26.FrequencyRandomComponent, typeof i27.FrequencyOnCompletionOfComponent, typeof i28.FrequencyOngoingComponent, typeof i29.FrequencyTopComponent, typeof i30.FrequencyLifecycleComponent, typeof i31.FrequencyDueDateComponent, typeof i32.FrequencyCheckboxListComponent, typeof i33.FrequencyRadioListComponent, typeof i34.AddMultipleResponsibilityComponent, typeof i35.BulkResponsibilityViewComponent, typeof i36.CheckpointsPolicyContainerComponent, typeof i37.CheckpointsPolicyListComponent, typeof i38.CheckpointsPolicyQuestionsComponent, typeof i39.WorkflowSurveyFormComponent, typeof i40.LogAnIssueComponent, typeof i41.FilterPipe, typeof i42.CheckboxListComponent, typeof i43.RadioListComponent, typeof i44.CreateDocumentsComponent, typeof i45.FrameworkListComponent, typeof i46.ParentTableComponent, typeof i47.CheckpointFloatingBarComponent, typeof i48.FormatAndEvidenceComponent, typeof i49.RiskClassificationComponent, typeof i50.DragDropDirective, typeof i51.AutofocusDirective, typeof i52.ScrollInViewDirective, typeof i53.spaceTrimDirective, typeof i54.ShortMergePipe, typeof i55.FormatHtmlPipe, typeof i56.WithinDataPipe, typeof i57.rcTreeToolTipPipe, typeof i58.ResponsibilityRiskSelectorComponent, typeof i59.ConditionalFocusDirective, typeof i60.ArrayFilterPipe, typeof i59.ConditionalFocusDirective, typeof i61.AuditCategoryListComponent, typeof i62.DocumentSectionComponent, typeof i62.DocumentSectionComponent, typeof i63.WorkflowAssessmentComponent, typeof i64.ImportAnAssessmentComponent, typeof i65.AssessmentListComponent, typeof i66.RadioListWithPaginationComponent, typeof i67.LinkTreatmentLoaderComponent, typeof i68.AssessmentListLoaderComponent, typeof i69.AssessmentListSubLoaderComponent, typeof i70.ProgramListingComponent, typeof i71.WorkflowProgramComponent, typeof i72.RolesListComponent, typeof i73.FrameworkListTableComponent, typeof i74.FrameworkResponsibilityTableComponent, typeof i75.FrameworkTableLoaderComponent, typeof i76.ArrayConcatPipe, typeof i77.SpaceTrimPipe, typeof i78.FrequencyDialogContainerComponent, typeof i79.FrequencyDialogWeeklyComponent, typeof i80.FrequencyDialogTopComponent, typeof i81.FrequencyDialogDueDateComponent, typeof i82.FrequencyDialogCheckboxListComponent, typeof i83.FrequencyDialogMonthlyComponent, typeof i84.FrequencyDialogQuarterlyComponent, typeof i85.FrequencyDialogRadioListComponent, typeof i86.FrequencyDialogBiannualComponent, typeof i87.FrequencyDialogAnnualComponent, typeof i88.FrequencyDialogOneTimeComponent, typeof i89.AddMultipleResponsibilityContainerComponent, typeof i90.AddMultipleResponsibilityWithTabComponent, typeof i91.FrequencyResponsibilityListComponent, typeof i92.ApprovalWorkflowComponent, typeof i93.SelectApproversComponent, typeof i94.PolicyAccessComponent, typeof i95.ApprovalWorkflowListComponent, typeof i96.ApprovalCreateFormComponent, typeof i97.LinkProgramComponent, typeof i98.TooltipValidationPipe], [typeof i99.ReactiveFormsModule, typeof i100.CreateAssessmentModule, typeof i101.VcomplyEditorModule, typeof i102.CommonModule, typeof i103.FormgroupModule, typeof i104.TooltipModule, typeof i105.PopoverModule, typeof i106.LineLoaderModule, typeof i99.FormsModule, typeof i107.SelectModule, typeof i108.NgxMaterialTimepickerModule, typeof i109.DpDatePickerModule, typeof i110.NoDataModule, typeof i111.VLoaderModule, typeof i112.SmileyDialogModule, typeof i113.SnackBarModule, typeof i114.HttpClientModule, typeof i115.SmileyDialogInlineModule, typeof i116.ClickOutsideModule, typeof i117.PopoverHoverModule, typeof i118.PaginationModule, typeof i100.CreateAssessmentModule, typeof i119.ActionDialogModule, typeof i120.AssessmentPreviewModule, typeof i121.CreateProgramUiModule, typeof i122.DirectiveModule, typeof i123.GrcObjectModule, typeof i124.RcListModule, typeof i125.PipesModule, typeof i126.FloatingBarModule, typeof i127.GroupUsersListComponent, typeof i128.ListLoaderModule, typeof i129.GrcObjectListComponent], [typeof i1.WorkflowEngineContainerComponent]>;
|
|
137
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<VComplyWorkflowEngineModule, [typeof i1.WorkflowEngineContainerComponent, typeof i2.WorkflowRiskComponent, typeof i3.WorkflowComplianceComponent, typeof i4.WorkflowPolicyComponent, typeof i5.MoreOptionComponent, typeof i6.OwnerListComponent, typeof i7.UserRadioListComponent, typeof i8.CategoryListComponent, typeof i9.CategoryMultiSelectComponent, typeof i10.WorkflowPaginationComponent, typeof i11.AddMultipleRiskComponent, typeof i12.BulkViewComponent, typeof i13.CheckpointsComponent, typeof i14.ConfirmationAlertComponent, typeof i15.CheckpointsQuestionsComponent, typeof i16.CheckpointsListComponent, typeof i17.ReviewFrequencyComponent, typeof i18.FrequencyContainerComponent, typeof i19.FrequencyDailyComponent, typeof i20.FrequencyWeeklyComponent, typeof i21.FrequencyMonthlyComponent, typeof i22.FrequencyQuarterlyComponent, typeof i23.FrequencyBiannualComponent, typeof i24.FrequencyAnnualComponent, typeof i25.FrequencyOneTimeComponent, typeof i26.FrequencyRandomComponent, typeof i27.FrequencyOnCompletionOfComponent, typeof i28.FrequencyOngoingComponent, typeof i29.FrequencyTopComponent, typeof i30.FrequencyLifecycleComponent, typeof i31.FrequencyDueDateComponent, typeof i32.FrequencyCheckboxListComponent, typeof i33.FrequencyRadioListComponent, typeof i34.AddMultipleResponsibilityComponent, typeof i35.BulkResponsibilityViewComponent, typeof i36.CheckpointsPolicyContainerComponent, typeof i37.CheckpointsPolicyListComponent, typeof i38.CheckpointsPolicyQuestionsComponent, typeof i39.WorkflowSurveyFormComponent, typeof i40.LogAnIssueComponent, typeof i41.FilterPipe, typeof i42.CheckboxListComponent, typeof i43.RadioListComponent, typeof i44.CreateDocumentsComponent, typeof i45.FrameworkListComponent, typeof i46.ParentTableComponent, typeof i47.CheckpointFloatingBarComponent, typeof i48.FormatAndEvidenceComponent, typeof i49.RiskClassificationComponent, typeof i50.DragDropDirective, typeof i51.AutofocusDirective, typeof i52.ScrollInViewDirective, typeof i53.spaceTrimDirective, typeof i54.ShortMergePipe, typeof i55.FormatHtmlPipe, typeof i56.WithinDataPipe, typeof i57.rcTreeToolTipPipe, typeof i58.ResponsibilityRiskSelectorComponent, typeof i59.ConditionalFocusDirective, typeof i60.ArrayFilterPipe, typeof i59.ConditionalFocusDirective, typeof i61.AuditCategoryListComponent, typeof i62.DocumentSectionComponent, typeof i62.DocumentSectionComponent, typeof i63.WorkflowAssessmentComponent, typeof i64.ImportAnAssessmentComponent, typeof i65.AssessmentListComponent, typeof i66.RadioListWithPaginationComponent, typeof i67.LinkTreatmentLoaderComponent, typeof i68.AssessmentListLoaderComponent, typeof i69.AssessmentListSubLoaderComponent, typeof i70.ProgramListingComponent, typeof i71.WorkflowProgramComponent, typeof i72.RolesListComponent, typeof i73.FrameworkListTableComponent, typeof i74.FrameworkResponsibilityTableComponent, typeof i75.FrameworkTableLoaderComponent, typeof i76.ArrayConcatPipe, typeof i77.SpaceTrimPipe, typeof i78.FrequencyDialogContainerComponent, typeof i79.FrequencyDialogWeeklyComponent, typeof i80.FrequencyDialogTopComponent, typeof i81.FrequencyDialogDueDateComponent, typeof i82.FrequencyDialogCheckboxListComponent, typeof i83.FrequencyDialogMonthlyComponent, typeof i84.FrequencyDialogQuarterlyComponent, typeof i85.FrequencyDialogRadioListComponent, typeof i86.FrequencyDialogBiannualComponent, typeof i87.FrequencyDialogAnnualComponent, typeof i88.FrequencyDialogOneTimeComponent, typeof i89.AddMultipleResponsibilityContainerComponent, typeof i90.AddMultipleResponsibilityWithTabComponent, typeof i91.FrequencyResponsibilityListComponent, typeof i92.ApprovalWorkflowComponent, typeof i93.SelectApproversComponent, typeof i94.PolicyAccessComponent, typeof i95.ApprovalWorkflowListComponent, typeof i96.ApprovalCreateFormComponent, typeof i97.LinkProgramComponent, typeof i98.TooltipValidationPipe], [typeof i99.ReactiveFormsModule, typeof i100.CreateAssessmentModule, typeof i101.VcomplyEditorModule, typeof i102.CommonModule, typeof i103.FormgroupModule, typeof i104.TooltipModule, typeof i105.PopoverModule, typeof i106.LineLoaderModule, typeof i99.FormsModule, typeof i107.SelectModule, typeof i108.NgxMaterialTimepickerModule, typeof i109.DpDatePickerModule, typeof i110.NoDataModule, typeof i111.VLoaderModule, typeof i112.SmileyDialogModule, typeof i113.SnackBarModule, typeof i114.HttpClientModule, typeof i115.SmileyDialogInlineModule, typeof i116.ClickOutsideModule, typeof i117.PopoverHoverModule, typeof i118.PaginationModule, typeof i100.CreateAssessmentModule, typeof i119.ActionDialogModule, typeof i120.AssessmentPreviewModule, typeof i121.CreateProgramUiModule, typeof i122.DirectiveModule, typeof i123.GrcObjectModule, typeof i124.RcListModule, typeof i125.PipesModule, typeof i126.FloatingBarModule, typeof i127.GroupUsersListComponent, typeof i128.ListLoaderModule, typeof i129.GrcObjectListComponent, typeof i130.TimePickerModule], [typeof i1.WorkflowEngineContainerComponent]>;
|
|
137
138
|
static ɵinj: i0.ɵɵInjectorDeclaration<VComplyWorkflowEngineModule>;
|
|
138
139
|
}
|
|
@@ -18,7 +18,6 @@ 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;
|
|
22
21
|
convertFrom12To24Format: (time12: any) => string;
|
|
23
22
|
convertFrom24To12Format(time: any): any;
|
|
24
23
|
arrayToIDsDtring(array: any, identifierKey: any): any;
|
package/package.json
CHANGED