vcomply-workflow-engine 2.6.85 → 2.6.87
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 +69 -31
- package/bundles/vcomply-workflow-engine.umd.js.map +1 -1
- package/esm2015/lib/add-multiple-responsibility-container/add-multiple-responsibility-container.component.js +9 -6
- package/esm2015/lib/add-multiple-responsibility-container/add-multiple-responsibility-container.component.ngfactory.js +20 -15
- package/esm2015/lib/add-multiple-responsibility-with-tab/add-multiple-responsibility-with-tab.component.js +55 -20
- package/esm2015/lib/add-multiple-responsibility-with-tab/add-multiple-responsibility-with-tab.component.ngsummary.json +1 -1
- package/esm2015/lib/pipes/search.pipe.js +5 -5
- package/esm2015/lib/sharedComponents/bulk-responsibility-view/bulk-responsibility-view.component.js +3 -3
- package/esm2015/lib/sharedComponents/bulk-responsibility-view/bulk-responsibility-view.component.ngfactory.js +123 -59
- package/esm2015/lib/workflow-engine.module.ngfactory.js +1 -1
- package/esm2015/lib/workflow-program/create-program-ui/pipes/search.pipe.js +2 -2
- package/fesm2015/vcomply-workflow-engine.js +69 -31
- package/fesm2015/vcomply-workflow-engine.js.map +1 -1
- package/lib/add-multiple-responsibility-container/add-multiple-responsibility-container.component.d.ts +1 -0
- package/lib/add-multiple-responsibility-with-tab/add-multiple-responsibility-with-tab.component.d.ts +12 -1
- package/package.json +1 -1
- package/vcomply-workflow-engine.metadata.json +1 -1
package/lib/add-multiple-responsibility-with-tab/add-multiple-responsibility-with-tab.component.d.ts
CHANGED
|
@@ -133,13 +133,24 @@ export declare class AddMultipleResponsibilityWithTabComponent implements OnInit
|
|
|
133
133
|
* @returns A boolean value.
|
|
134
134
|
*/
|
|
135
135
|
isValidData(data: any): boolean;
|
|
136
|
+
/**
|
|
137
|
+
* If the assignor is the same as the overseer or the NotifyOnFailure, or if the assignor is not set
|
|
138
|
+
* and the defaultOwner is the same as the overseer or the NotifyOnFailure, or if the assignee is the
|
|
139
|
+
* same as the reviewer, overseer, or NotifyOnFailure, or if the assignee is not set and the
|
|
140
|
+
* defaultOwner is the same as the overseer or the NotifyOnFailure, or if the reviewer is the same as
|
|
141
|
+
* the overseer or the NotifyOnFailure, or if the assignee is not set, then return false. Otherwise,
|
|
142
|
+
* return true
|
|
143
|
+
* @param {any} data - any - this is the data that is passed in from the form.
|
|
144
|
+
* @returns A boolean value.
|
|
145
|
+
*/
|
|
146
|
+
isValidUsers(data: any): boolean;
|
|
136
147
|
/**
|
|
137
148
|
* It takes in a data object and returns an object with 4 boolean properties.
|
|
138
149
|
* The boolean properties are determined by the values of the data object.
|
|
139
150
|
* @param {any} data - any = {
|
|
140
151
|
* @returns {
|
|
141
152
|
* isValidAssignee: true,
|
|
142
|
-
*
|
|
153
|
+
* isValidAssignor: true,
|
|
143
154
|
* isValidReviewer: true,
|
|
144
155
|
* isValidOverseer: true
|
|
145
156
|
* }
|
package/package.json
CHANGED