vcomply-workflow-engine 0.0.1 → 0.0.2
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/bundles/vcomply-workflow-engine.umd.js +804 -165
- package/bundles/vcomply-workflow-engine.umd.js.map +1 -1
- package/esm2015/lib/interfaces/issue-data.js +2 -0
- package/esm2015/lib/interfaces/issue-data.ngsummary.json +1 -0
- package/esm2015/lib/log-an-issue/log-an-issue.component.js +396 -52
- package/esm2015/lib/log-an-issue/log-an-issue.component.ngfactory.js +228 -175
- package/esm2015/lib/log-an-issue/log-an-issue.component.ngsummary.json +1 -1
- package/esm2015/lib/more-option/more-option.component.js +20 -20
- package/esm2015/lib/pipes/search.pipe.js +53 -10
- package/esm2015/lib/sharedComponents/checkbox-list/checkbox-list.component.js +2 -2
- package/esm2015/lib/sharedComponents/checkbox-list/checkbox-list.component.ngfactory.js +3 -3
- package/esm2015/lib/sharedComponents/list-loader/list-loader.component.js +15 -0
- package/esm2015/lib/sharedComponents/list-loader/list-loader.component.ngfactory.js +19 -0
- package/esm2015/lib/sharedComponents/list-loader/list-loader.component.ngsummary.json +1 -0
- package/esm2015/lib/sharedComponents/pipes/array-filter.pipe.js +14 -0
- package/esm2015/lib/sharedComponents/pipes/array-filter.pipe.ngsummary.json +1 -0
- package/esm2015/lib/sharedComponents/radio-list/radio-list.component.js +7 -4
- package/esm2015/lib/sharedComponents/radio-list/radio-list.component.ngfactory.js +4 -4
- package/esm2015/lib/sharedComponents/radio-list/radio-list.component.ngsummary.json +1 -1
- package/esm2015/lib/sharedComponents/responsibility-risk-selector/responsibility-risk-selector.component.js +70 -0
- package/esm2015/lib/sharedComponents/responsibility-risk-selector/responsibility-risk-selector.component.ngfactory.js +51 -0
- package/esm2015/lib/sharedComponents/responsibility-risk-selector/responsibility-risk-selector.component.ngsummary.json +1 -0
- package/esm2015/lib/workflow-engine-container/workflow-engine-container.component.js +15 -7
- package/esm2015/lib/workflow-engine-container/workflow-engine-container.component.ngfactory.js +42 -35
- package/esm2015/lib/workflow-engine-container/workflow-engine-container.component.ngsummary.json +1 -1
- package/esm2015/lib/workflow-engine.module.js +8 -1
- package/esm2015/lib/workflow-engine.module.ngfactory.js +1 -1
- package/esm2015/lib/workflow-services/log-issue.service.js +100 -10
- package/esm2015/lib/workflow-services/log-issue.service.ngsummary.json +1 -1
- package/esm2015/vcomply-workflow-engine.js +45 -42
- package/esm2015/vcomply-workflow-engine.ngsummary.json +1 -1
- package/fesm2015/vcomply-workflow-engine.js +686 -100
- package/fesm2015/vcomply-workflow-engine.js.map +1 -1
- package/lib/interfaces/issue-data.d.ts +21 -0
- package/lib/log-an-issue/log-an-issue.component.d.ts +67 -13
- package/lib/pipes/search.pipe.d.ts +1 -1
- package/lib/sharedComponents/list-loader/list-loader.component.d.ts +5 -0
- package/lib/sharedComponents/list-loader/list-loader.component.ngfactory.d.ts +1 -0
- package/lib/sharedComponents/pipes/array-filter.pipe.d.ts +4 -0
- package/lib/sharedComponents/radio-list/radio-list.component.d.ts +3 -2
- package/lib/sharedComponents/responsibility-risk-selector/responsibility-risk-selector.component.d.ts +23 -0
- package/lib/sharedComponents/responsibility-risk-selector/responsibility-risk-selector.component.ngfactory.d.ts +1 -0
- package/lib/workflow-engine-container/workflow-engine-container.component.d.ts +11 -3
- package/lib/workflow-services/log-issue.service.d.ts +6 -1
- package/package.json +1 -1
- package/vcomply-workflow-engine.d.ts +44 -41
- package/vcomply-workflow-engine.metadata.json +1 -1
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
export interface IssueConfiguration {
|
|
2
|
+
IsLinkageField: IssueLinkage;
|
|
3
|
+
IsControlRiskField: controlRisk;
|
|
4
|
+
IsRCField: rcConfig;
|
|
5
|
+
}
|
|
6
|
+
export interface IssueLinkage {
|
|
7
|
+
isVisible: boolean;
|
|
8
|
+
linkageId: number;
|
|
9
|
+
linkageName: string;
|
|
10
|
+
readOnly: boolean;
|
|
11
|
+
}
|
|
12
|
+
export interface controlRisk {
|
|
13
|
+
isVisible: boolean;
|
|
14
|
+
entityId: number;
|
|
15
|
+
readOnly: boolean;
|
|
16
|
+
}
|
|
17
|
+
export interface rcConfig {
|
|
18
|
+
isVisible: boolean;
|
|
19
|
+
rcId: number;
|
|
20
|
+
readOnly: boolean;
|
|
21
|
+
}
|
|
@@ -5,19 +5,32 @@ import { EditorConfig } from 'vcomply-editor';
|
|
|
5
5
|
import { DatePickerComponent } from 'ng2-date-picker';
|
|
6
6
|
import { UiKitService } from '../workflow-services/ui-kit.service';
|
|
7
7
|
import { SnackBarService } from '../ui-kit/snack-bar/snack-bar.service';
|
|
8
|
+
import { IssueConfiguration } from '../interfaces/issue-data';
|
|
8
9
|
export declare class LogAnIssueComponent implements OnInit, OnChanges, AfterViewInit {
|
|
9
10
|
private logService;
|
|
10
11
|
private authService;
|
|
11
12
|
private uiKitService;
|
|
12
13
|
private snackBar;
|
|
13
14
|
openedFrom: any;
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
15
|
+
issueId: any;
|
|
16
|
+
reponsibilityData: {
|
|
17
|
+
responsibilityId: null;
|
|
18
|
+
responsibilityName: string;
|
|
19
|
+
rcId: null;
|
|
17
20
|
};
|
|
21
|
+
issueDetails: {
|
|
22
|
+
auditPlanId: null;
|
|
23
|
+
auditPlanName: string;
|
|
24
|
+
rcId: null;
|
|
25
|
+
auditObjId: null;
|
|
26
|
+
};
|
|
27
|
+
mode: string;
|
|
28
|
+
config: IssueConfiguration;
|
|
18
29
|
pickerChanged: EventEmitter<any>;
|
|
19
30
|
populateOption: EventEmitter<any>;
|
|
20
31
|
closeWorkflow: EventEmitter<any>;
|
|
32
|
+
modeChange: EventEmitter<any>;
|
|
33
|
+
disconnectRefresh: EventEmitter<any>;
|
|
21
34
|
currentUser: any;
|
|
22
35
|
datePicker: DatePickerComponent;
|
|
23
36
|
scrollToBottom: boolean;
|
|
@@ -28,6 +41,7 @@ export declare class LogAnIssueComponent implements OnInit, OnChanges, AfterView
|
|
|
28
41
|
loader: boolean;
|
|
29
42
|
smileyMessage: string;
|
|
30
43
|
issueData: any;
|
|
44
|
+
isRiskControlLoading: boolean;
|
|
31
45
|
actionButtons: {
|
|
32
46
|
buttonText: string;
|
|
33
47
|
class: string;
|
|
@@ -43,14 +57,9 @@ export declare class LogAnIssueComponent implements OnInit, OnChanges, AfterView
|
|
|
43
57
|
openOnFocus: boolean;
|
|
44
58
|
min: string;
|
|
45
59
|
};
|
|
46
|
-
listData:
|
|
47
|
-
issueTypeList: never[];
|
|
48
|
-
userList: never[];
|
|
49
|
-
categoryList: never[];
|
|
50
|
-
rcList: never[];
|
|
51
|
-
};
|
|
60
|
+
listData: any;
|
|
52
61
|
logIssueForm: any;
|
|
53
|
-
|
|
62
|
+
AttachmentTrack: any;
|
|
54
63
|
additionalOptionStatus: any;
|
|
55
64
|
riskClassification: {
|
|
56
65
|
name: string;
|
|
@@ -115,10 +124,19 @@ export declare class LogAnIssueComponent implements OnInit, OnChanges, AfterView
|
|
|
115
124
|
activeSelector: string;
|
|
116
125
|
listLoadingStatus: any;
|
|
117
126
|
currentTime: string;
|
|
127
|
+
/**
|
|
128
|
+
* isRCPreSelected,isRCVisible are variable used to set the visibility of rc field and edit button in certain conditions
|
|
129
|
+
*/
|
|
130
|
+
isRCPreSelected: boolean;
|
|
131
|
+
isRCVisible: boolean;
|
|
132
|
+
isRCMandatory: boolean;
|
|
133
|
+
dataForEdit: any;
|
|
134
|
+
isRiskControlVisible: boolean;
|
|
118
135
|
constructor(logService: LogIssueService, authService: AuthService, uiKitService: UiKitService, snackBar: SnackBarService);
|
|
119
136
|
ngOnInit(): void;
|
|
120
137
|
ngAfterViewInit(): void;
|
|
121
138
|
ngOnChanges(): void;
|
|
139
|
+
decideRCmandatory(): void;
|
|
122
140
|
setCurrentTime(): void;
|
|
123
141
|
getCurrentTime(): string;
|
|
124
142
|
setUserDetails(): void;
|
|
@@ -126,6 +144,9 @@ export declare class LogAnIssueComponent implements OnInit, OnChanges, AfterView
|
|
|
126
144
|
fetchUserList(): void;
|
|
127
145
|
fetchCategoryList(): void;
|
|
128
146
|
fetchRCList(): void;
|
|
147
|
+
setSelectedRC(): void;
|
|
148
|
+
fetchControlRisks(): void;
|
|
149
|
+
getLinkage(auditId: any, type: string): void;
|
|
129
150
|
/**
|
|
130
151
|
* This functioj check weather all the required lists are loaded
|
|
131
152
|
* If loaded hides the loader otherwise shows the loader.
|
|
@@ -147,14 +168,47 @@ export declare class LogAnIssueComponent implements OnInit, OnChanges, AfterView
|
|
|
147
168
|
setEvidence(type: any): void;
|
|
148
169
|
addMoreInfo(event: any): void;
|
|
149
170
|
idToArray(selectedItems: any, listItems: any, filterkey: any): any;
|
|
150
|
-
|
|
151
|
-
uploadFile(file: any): void;
|
|
152
|
-
deleteFile(file: any): void;
|
|
171
|
+
selectFile(type: string, files: any): void;
|
|
172
|
+
uploadFile(file: any, type: string): void;
|
|
173
|
+
deleteFile(file: any, type: string): void;
|
|
153
174
|
addIssue(): void;
|
|
154
175
|
closeSmiley(evt?: any): void;
|
|
176
|
+
/**
|
|
177
|
+
* Closes workflow engine
|
|
178
|
+
* @param evt
|
|
179
|
+
* @param confirm
|
|
180
|
+
*/
|
|
155
181
|
closeWorkFlow(evt: any, confirm: any): void;
|
|
156
182
|
action(evt: any): void;
|
|
183
|
+
viewIssue(): void;
|
|
184
|
+
/**
|
|
185
|
+
* Populate the tickmark of optional fields
|
|
186
|
+
*/
|
|
157
187
|
populateOptionalFields(): void;
|
|
188
|
+
/**
|
|
189
|
+
* Fetchs issue details when in edit mode based on the input id passed
|
|
190
|
+
*/
|
|
191
|
+
fetchIssueDetails(): void;
|
|
192
|
+
/**
|
|
193
|
+
* Populates the issue form when in edit mode
|
|
194
|
+
* @param issueData issue data fetched from API
|
|
195
|
+
*/
|
|
196
|
+
populateForm(issueData: any): Promise<void>;
|
|
197
|
+
/**
|
|
198
|
+
* Sets the visibility of optional fields
|
|
199
|
+
* @param issueData issue data fetched from API
|
|
200
|
+
*/
|
|
201
|
+
setOptionalField(issueData: any): void;
|
|
202
|
+
/**
|
|
203
|
+
* Generates list of selected overseer
|
|
204
|
+
* @param allUserList list of all users in the organzation
|
|
205
|
+
* @param overseerList lit of the overseer that needs to be filtered
|
|
206
|
+
* @returns list of array containing the users objects
|
|
207
|
+
*/
|
|
208
|
+
generateOverseerList(allUserList: any, overseerList: any): any;
|
|
209
|
+
/**
|
|
210
|
+
* Resets issue form
|
|
211
|
+
*/
|
|
158
212
|
resetIssueForm(): void;
|
|
159
213
|
checkDescription(): void;
|
|
160
214
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { ElementRef, EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
export declare class RadioListComponent implements OnInit {
|
|
1
|
+
import { ElementRef, EventEmitter, OnInit, AfterViewInit } from '@angular/core';
|
|
2
|
+
export declare class RadioListComponent implements OnInit, AfterViewInit {
|
|
3
3
|
listBlock: ElementRef;
|
|
4
4
|
itemsList: any;
|
|
5
5
|
selectedItems: any;
|
|
@@ -15,6 +15,7 @@ export declare class RadioListComponent implements OnInit {
|
|
|
15
15
|
blockWidth: any;
|
|
16
16
|
constructor();
|
|
17
17
|
ngOnInit(): void;
|
|
18
|
+
ngAfterViewInit(): void;
|
|
18
19
|
selectItem(item: any): void;
|
|
19
20
|
deleteItem(item: any): void;
|
|
20
21
|
save(): void;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
export declare class ResponsibilityRiskSelectorComponent implements OnInit {
|
|
3
|
+
animation: boolean;
|
|
4
|
+
activeTab: string;
|
|
5
|
+
controlIdKey: string;
|
|
6
|
+
itemDisplayKey: string;
|
|
7
|
+
identifierKey: string;
|
|
8
|
+
set activeEntity(value: any);
|
|
9
|
+
listItems: never[];
|
|
10
|
+
selectedItems: any;
|
|
11
|
+
loading: boolean;
|
|
12
|
+
fetchList: EventEmitter<any>;
|
|
13
|
+
closeList: EventEmitter<any>;
|
|
14
|
+
saveList: EventEmitter<any>;
|
|
15
|
+
constructor();
|
|
16
|
+
ngOnInit(): void;
|
|
17
|
+
changeTab(type: string): void;
|
|
18
|
+
selectItem(item: any): void;
|
|
19
|
+
deleteItem(item: any): void;
|
|
20
|
+
save(): void;
|
|
21
|
+
close(): void;
|
|
22
|
+
arrayToId(array: any, identifierKey: any): any;
|
|
23
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { AfterViewInit, ElementRef, EventEmitter, OnInit } from '@angular/core';
|
|
2
2
|
import { AddMultipleRiskComponent } from '../add-multiple-risk/add-multiple-risk.component';
|
|
3
3
|
import { ConfirmationAlert } from '../interfaces/confirmation-alert';
|
|
4
|
+
import { IssueConfiguration } from '../interfaces/issue-data';
|
|
4
5
|
import { SnackBarService } from '../ui-kit/snack-bar/snack-bar.service';
|
|
5
6
|
import { WorkflowComplianceComponent } from '../workflow-compliance/workflow-compliance.component';
|
|
6
7
|
import { WorkflowPolicyComponent } from '../workflow-policy/workflow-policy.component';
|
|
@@ -22,11 +23,18 @@ export declare class WorkflowEngineContainerComponent implements OnInit, AfterVi
|
|
|
22
23
|
allowedWorkflows: any;
|
|
23
24
|
frameworkDetails: Array<any>;
|
|
24
25
|
selectedRC: string;
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
26
|
+
reponsibilityData: {
|
|
27
|
+
responsibilityId: null;
|
|
28
|
+
responsibilityName: string;
|
|
29
|
+
rcId: null;
|
|
30
|
+
};
|
|
31
|
+
issueData: {
|
|
32
|
+
auditPlanId: null;
|
|
33
|
+
auditPlanName: string;
|
|
34
|
+
rcId: null;
|
|
28
35
|
};
|
|
29
36
|
entrustButtonName: string;
|
|
37
|
+
config: IssueConfiguration;
|
|
30
38
|
convertFileData: {};
|
|
31
39
|
selectedCategory: string;
|
|
32
40
|
animation: boolean;
|
|
@@ -11,10 +11,14 @@ export declare class LogIssueService {
|
|
|
11
11
|
getIssueCategories(): import("rxjs").Observable<any[]>;
|
|
12
12
|
getResponsibilityCenterList(): import("rxjs").Observable<any[]>;
|
|
13
13
|
createIssue(payload: any): import("rxjs").Observable<Object>;
|
|
14
|
-
|
|
14
|
+
updateIssue(payload: any, issueId: string): import("rxjs").Observable<Object>;
|
|
15
|
+
getControlRisk(auditPlanId: string, type: string): import("rxjs").Observable<any> | null;
|
|
16
|
+
validate(issueData: any, openedFrom: any, isRCMandatory: any): string[];
|
|
15
17
|
generatePayload(issueData: any, optionFieldsStatus: any): any;
|
|
18
|
+
payloadBuilder(issueData: any, optionFieldsStatus: any): any;
|
|
16
19
|
arrayToId(array: any, key: any): any;
|
|
17
20
|
convertFrom12To24Format: (time12: any) => string;
|
|
21
|
+
convertFrom24To12Format(time: any): any;
|
|
18
22
|
arrayToIDsDtring(array: any, identifierKey: any): any;
|
|
19
23
|
/**
|
|
20
24
|
* Uploads the given file to server
|
|
@@ -23,4 +27,5 @@ export declare class LogIssueService {
|
|
|
23
27
|
* @returns response after uploading a file
|
|
24
28
|
*/
|
|
25
29
|
uploadFiles(payload: any, path: any): import("rxjs").Observable<Object>;
|
|
30
|
+
getIssueDetails(issueId: string): import("rxjs").Observable<Object>;
|
|
26
31
|
}
|
package/package.json
CHANGED
|
@@ -7,17 +7,17 @@ export { AddMultipleRiskComponent as ɵt } from './lib/add-multiple-risk/add-mul
|
|
|
7
7
|
export { Configurations as ɵf } from './lib/configurations';
|
|
8
8
|
export { ConfirmationAlertComponent as ɵw } from './lib/confirmation-alert/confirmation-alert.component';
|
|
9
9
|
export { CreateDocumentsComponent as ɵce } from './lib/create-documents/create-documents.component';
|
|
10
|
-
export { CsCheckboxComponent as
|
|
11
|
-
export { CsRadioGroupComponent as
|
|
12
|
-
export { CsRadioComponent as
|
|
13
|
-
export { CsSelectComponent as
|
|
14
|
-
export { CsSwitchComponent as
|
|
15
|
-
export { FormgroupModule as
|
|
16
|
-
export { PascalPipe as
|
|
17
|
-
export { CsOptionComponent as
|
|
18
|
-
export { CsSelectComponent as
|
|
19
|
-
export { SelectModule as
|
|
20
|
-
export { SelectService as
|
|
10
|
+
export { CsCheckboxComponent as ɵdb } from './lib/formgroup/cs-checkbox/cs-checkbox.component';
|
|
11
|
+
export { CsRadioGroupComponent as ɵde } from './lib/formgroup/cs-radio-group/cs-radio-group.component';
|
|
12
|
+
export { CsRadioComponent as ɵdc } from './lib/formgroup/cs-radio/cs-radio.component';
|
|
13
|
+
export { CsSelectComponent as ɵdf } from './lib/formgroup/cs-select/cs-select.component';
|
|
14
|
+
export { CsSwitchComponent as ɵdd } from './lib/formgroup/cs-switch/cs-switch.component';
|
|
15
|
+
export { FormgroupModule as ɵda } from './lib/formgroup/formgroup.module';
|
|
16
|
+
export { PascalPipe as ɵdg } from './lib/formgroup/pipes/pascal.pipe';
|
|
17
|
+
export { CsOptionComponent as ɵdu } from './lib/formgroup/select/cs-option/cs-option.component';
|
|
18
|
+
export { CsSelectComponent as ɵds } from './lib/formgroup/select/cs-select/cs-select.component';
|
|
19
|
+
export { SelectModule as ɵdr } from './lib/formgroup/select/select.module';
|
|
20
|
+
export { SelectService as ɵdt } from './lib/formgroup/select/select.service';
|
|
21
21
|
export { LogAnIssueComponent as ɵby } from './lib/log-an-issue/log-an-issue.component';
|
|
22
22
|
export { MoreOptionComponent as ɵl } from './lib/more-option/more-option.component';
|
|
23
23
|
export { DataTypePipe as ɵcj } from './lib/pipes/data-type.pipe';
|
|
@@ -25,7 +25,7 @@ export { ListMapperPipe as ɵcd } from './lib/pipes/list-mapper.pipe';
|
|
|
25
25
|
export { SearchPipe as ɵcf } from './lib/pipes/search.pipe';
|
|
26
26
|
export { SpaceBreakerPipe as ɵcr } from './lib/pipes/space-breaker.pipe';
|
|
27
27
|
export { UserFilterPipe as ɵcg } from './lib/pipes/user-filter.pipe';
|
|
28
|
-
export { AuditCategoryListComponent as
|
|
28
|
+
export { AuditCategoryListComponent as ɵcy } from './lib/sharedComponents/audit-category-list/audit-category-list.component';
|
|
29
29
|
export { BulkResponsibilityViewComponent as ɵbt } from './lib/sharedComponents/bulk-responsibility-view/bulk-responsibility-view.component';
|
|
30
30
|
export { BulkViewComponent as ɵu } from './lib/sharedComponents/bulk-view/bulk-view.component';
|
|
31
31
|
export { CategoryListComponent as ɵo } from './lib/sharedComponents/category-list/category-list.component';
|
|
@@ -39,10 +39,10 @@ export { CheckpointsListComponent as ɵy } from './lib/sharedComponents/checkpoi
|
|
|
39
39
|
export { CheckpointsQuestionsComponent as ɵx } from './lib/sharedComponents/checkpoint/checkpoints-questions/checkpoints-questions.component';
|
|
40
40
|
export { CheckpointsComponent as ɵv } from './lib/sharedComponents/checkpoint/checkpoints/checkpoints.component';
|
|
41
41
|
export { AutofocusDirective as ɵco } from './lib/sharedComponents/directive/autofocus.directive';
|
|
42
|
-
export { ConditionalFocusDirective as
|
|
42
|
+
export { ConditionalFocusDirective as ɵcv } from './lib/sharedComponents/directive/conditional-focus.directive';
|
|
43
43
|
export { DragDropDirective as ɵcn } from './lib/sharedComponents/directive/drag-drop.directive';
|
|
44
44
|
export { ScrollInViewDirective as ɵcp } from './lib/sharedComponents/directive/scroll-in-view.directive';
|
|
45
|
-
export { DocumentSectionComponent as
|
|
45
|
+
export { DocumentSectionComponent as ɵcz } from './lib/sharedComponents/document-section/document-section.component';
|
|
46
46
|
export { FloatingBarComponent as ɵq } from './lib/sharedComponents/floating-bar/floating-bar.component';
|
|
47
47
|
export { FormatAndEvidenceComponent as ɵcl } from './lib/sharedComponents/format-and-evidence/format-and-evidence.component';
|
|
48
48
|
export { FrameworkListComponent as ɵch } from './lib/sharedComponents/framework-list/framework-list.component';
|
|
@@ -65,44 +65,47 @@ export { FrequencyTopComponent as ɵbl } from './lib/sharedComponents/frequency/
|
|
|
65
65
|
export { FrequencyWeeklyComponent as ɵbc } from './lib/sharedComponents/frequency/frequency-weekly/frequency-weekly.component';
|
|
66
66
|
export { FrequencyService as ɵi } from './lib/sharedComponents/frequency/frequency.service';
|
|
67
67
|
export { GroupUsersListComponent as ɵbq } from './lib/sharedComponents/group-users-list/group-users-list.component';
|
|
68
|
-
export {
|
|
69
|
-
export {
|
|
68
|
+
export { ListLoaderComponent as ɵcw } from './lib/sharedComponents/list-loader/list-loader.component';
|
|
69
|
+
export { NoDataComponent as ɵdw } from './lib/sharedComponents/no-data/no-data.component';
|
|
70
|
+
export { NoDataModule as ɵdv } from './lib/sharedComponents/no-data/no-data.module';
|
|
70
71
|
export { OwnerListComponent as ɵm } from './lib/sharedComponents/owner-list/owner-list.component';
|
|
72
|
+
export { ArrayFilterPipe as ɵcx } from './lib/sharedComponents/pipes/array-filter.pipe';
|
|
71
73
|
export { FilterPipe as ɵca } from './lib/sharedComponents/pipes/filterPipe';
|
|
72
74
|
export { ShortMergePipe as ɵcq } from './lib/sharedComponents/pipes/short-merge.pipe';
|
|
73
75
|
export { WithinDataPipe as ɵct } from './lib/sharedComponents/pipes/within-data.pipe';
|
|
74
76
|
export { RadioListComponent as ɵcc } from './lib/sharedComponents/radio-list/radio-list.component';
|
|
75
77
|
export { ResponsibilityCentersListComponent as ɵr } from './lib/sharedComponents/responsibility-centers-list/responsibility-centers-list.component';
|
|
78
|
+
export { ResponsibilityRiskSelectorComponent as ɵcu } from './lib/sharedComponents/responsibility-risk-selector/responsibility-risk-selector.component';
|
|
76
79
|
export { ReviewFrequencyComponent as ɵz } from './lib/sharedComponents/review-frequency/review-frequency.component';
|
|
77
80
|
export { RiskClassificationComponent as ɵcm } from './lib/sharedComponents/risk-classification/risk-classification.component';
|
|
78
81
|
export { UserRadioListComponent as ɵn } from './lib/sharedComponents/users-radio-list/users-radio-list.component';
|
|
79
|
-
export { LoaderInlineComponent as
|
|
80
|
-
export { LoaderComponent as
|
|
81
|
-
export { VLoaderModule as
|
|
82
|
-
export { ClickOutsideDirective as
|
|
83
|
-
export { ClickOutsideModule as
|
|
82
|
+
export { LoaderInlineComponent as ɵdz } from './lib/sharedComponents/v-loader/loader-inline/loader-inline.component';
|
|
83
|
+
export { LoaderComponent as ɵdy } from './lib/sharedComponents/v-loader/loader/loader.component';
|
|
84
|
+
export { VLoaderModule as ɵdx } from './lib/sharedComponents/v-loader/v-loader.module';
|
|
85
|
+
export { ClickOutsideDirective as ɵeh } from './lib/ui-kit/click-outside/click-outside.directive';
|
|
86
|
+
export { ClickOutsideModule as ɵeg } from './lib/ui-kit/click-outside/click-outside.module';
|
|
84
87
|
export { FormatHtmlPipe as ɵcs } from './lib/ui-kit/format-html.pipe';
|
|
85
|
-
export { LineLoaderComponent as
|
|
86
|
-
export { LineLoaderModule as
|
|
87
|
-
export { PopoverHoverComponent as
|
|
88
|
-
export { PopoverHoverDirective as
|
|
89
|
-
export { PopoverHoverModule as
|
|
90
|
-
export { PopoverHoverService as
|
|
91
|
-
export { PopoverEventDirective as
|
|
92
|
-
export { PopoverLongpressDirective as
|
|
93
|
-
export { PopoverComponent as
|
|
94
|
-
export { PopoverDirective as
|
|
95
|
-
export { PopoverModule as
|
|
96
|
-
export { PopoverService as
|
|
97
|
-
export { SmileyDialogInlineComponent as
|
|
98
|
-
export { SmileyDialogInlineModule as
|
|
99
|
-
export { SmileyDialogComponent as
|
|
100
|
-
export { SmileyDialogModule as
|
|
101
|
-
export { SnackBarComponent as
|
|
102
|
-
export { SnackBarModule as
|
|
88
|
+
export { LineLoaderComponent as ɵdq } from './lib/ui-kit/line-loader/line-loader.component';
|
|
89
|
+
export { LineLoaderModule as ɵdp } from './lib/ui-kit/line-loader/line-loader.module';
|
|
90
|
+
export { PopoverHoverComponent as ɵej } from './lib/ui-kit/popover-hover/popover-hover.component';
|
|
91
|
+
export { PopoverHoverDirective as ɵel } from './lib/ui-kit/popover-hover/popover-hover.directive';
|
|
92
|
+
export { PopoverHoverModule as ɵei } from './lib/ui-kit/popover-hover/popover-hover.module';
|
|
93
|
+
export { PopoverHoverService as ɵek } from './lib/ui-kit/popover-hover/popover-hover.service';
|
|
94
|
+
export { PopoverEventDirective as ɵdn } from './lib/ui-kit/popover/popover-event.directive';
|
|
95
|
+
export { PopoverLongpressDirective as ɵdo } from './lib/ui-kit/popover/popover-longpress.directive';
|
|
96
|
+
export { PopoverComponent as ɵdk } from './lib/ui-kit/popover/popover.component';
|
|
97
|
+
export { PopoverDirective as ɵdm } from './lib/ui-kit/popover/popover.directive';
|
|
98
|
+
export { PopoverModule as ɵdj } from './lib/ui-kit/popover/popover.module';
|
|
99
|
+
export { PopoverService as ɵdl } from './lib/ui-kit/popover/popover.service';
|
|
100
|
+
export { SmileyDialogInlineComponent as ɵef } from './lib/ui-kit/smiley-dialog-inline/smiley-dialog-inline.component';
|
|
101
|
+
export { SmileyDialogInlineModule as ɵee } from './lib/ui-kit/smiley-dialog-inline/smiley-dialog-inline.module';
|
|
102
|
+
export { SmileyDialogComponent as ɵeb } from './lib/ui-kit/smiley-dialog/smiley-dialog.component';
|
|
103
|
+
export { SmileyDialogModule as ɵea } from './lib/ui-kit/smiley-dialog/smiley-dialog.module';
|
|
104
|
+
export { SnackBarComponent as ɵed } from './lib/ui-kit/snack-bar/snack-bar.component';
|
|
105
|
+
export { SnackBarModule as ɵec } from './lib/ui-kit/snack-bar/snack-bar.module';
|
|
103
106
|
export { SnackBarService as ɵb } from './lib/ui-kit/snack-bar/snack-bar.service';
|
|
104
|
-
export { ToolTipDirective as
|
|
105
|
-
export { TooltipModule as
|
|
107
|
+
export { ToolTipDirective as ɵdi } from './lib/ui-kit/tooltip/tooltip.directive';
|
|
108
|
+
export { TooltipModule as ɵdh } from './lib/ui-kit/tooltip/tooltip.module';
|
|
106
109
|
export { WorkflowComplianceComponent as ɵg } from './lib/workflow-compliance/workflow-compliance.component';
|
|
107
110
|
export { WorkflowPaginationComponent as ɵs } from './lib/workflow-pagination/workflow-pagination.component';
|
|
108
111
|
export { WorkflowPolicyComponent as ɵj } from './lib/workflow-policy/workflow-policy.component';
|