vcomply-workflow-engine 7.4.5 → 7.4.6
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-with-tab/add-multiple-responsibility-with-tab.component.mjs +40 -2
- package/esm2022/lib/constants/responsibility.mjs +3 -1
- package/esm2022/lib/sharedComponents/bulk-responsibility-view/bulk-responsibility-view.component.mjs +3 -3
- package/fesm2022/vcomply-workflow-engine.mjs +43 -3
- package/fesm2022/vcomply-workflow-engine.mjs.map +1 -1
- package/lib/add-multiple-responsibility-with-tab/add-multiple-responsibility-with-tab.component.d.ts +7 -0
- package/lib/constants/responsibility.d.ts +2 -0
- package/lib/sharedComponents/bulk-responsibility-view/bulk-responsibility-view.component.d.ts +2 -0
- package/package.json +1 -1
package/lib/add-multiple-responsibility-with-tab/add-multiple-responsibility-with-tab.component.d.ts
CHANGED
|
@@ -238,6 +238,13 @@ export declare class AddMultipleResponsibilityWithTabComponent implements OnInit
|
|
|
238
238
|
isValidDropdownDay(value: any): boolean;
|
|
239
239
|
isValidDropdownMonth(value: any): boolean;
|
|
240
240
|
isValidDueTime(dueTime: any, hasExtendedFrequencyColumns?: boolean): boolean;
|
|
241
|
+
/**
|
|
242
|
+
* Optional field. When filled, the value must be a non-negative whole number.
|
|
243
|
+
* Rejects negatives, decimals, and non-numeric text. Blank is valid. 0 is allowed
|
|
244
|
+
* (Fail / Review Fail use 0 to mean complete/review on the due date).
|
|
245
|
+
*/
|
|
246
|
+
getWholeNumberDaysError(value: any): string;
|
|
247
|
+
applyDaysCountValidation(obj: any, tabType: string): void;
|
|
241
248
|
/**
|
|
242
249
|
* Optional field. When filled, the value must be numeric and greater than 0.
|
|
243
250
|
*/
|
|
@@ -15,6 +15,8 @@ export declare const VALIDATION_MESSAGES: {
|
|
|
15
15
|
DUE_TIME: string;
|
|
16
16
|
ENDS_AFTER_OCCURRENCES_GREATER_THAN_ZERO: string;
|
|
17
17
|
ENDS_AFTER_OCCURRENCES_NUMERIC: string;
|
|
18
|
+
WHOLE_NUMBER_NON_NEGATIVE: string;
|
|
19
|
+
POSITIVE_NUMBER: string;
|
|
18
20
|
ENDS_BY_DATE_INVALID_VALUE: string;
|
|
19
21
|
ENDS_BY_DATE_INCOMPLETE: string;
|
|
20
22
|
ENDS_BY_DATE_PAST: string;
|
package/lib/sharedComponents/bulk-responsibility-view/bulk-responsibility-view.component.d.ts
CHANGED
|
@@ -10,6 +10,8 @@ export declare class BulkResponsibilityViewComponent {
|
|
|
10
10
|
DUE_TIME: string;
|
|
11
11
|
ENDS_AFTER_OCCURRENCES_GREATER_THAN_ZERO: string;
|
|
12
12
|
ENDS_AFTER_OCCURRENCES_NUMERIC: string;
|
|
13
|
+
WHOLE_NUMBER_NON_NEGATIVE: string;
|
|
14
|
+
POSITIVE_NUMBER: string;
|
|
13
15
|
ENDS_BY_DATE_INVALID_VALUE: string;
|
|
14
16
|
ENDS_BY_DATE_INCOMPLETE: string;
|
|
15
17
|
ENDS_BY_DATE_PAST: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vcomply-workflow-engine",
|
|
3
|
-
"version": "7.4.
|
|
3
|
+
"version": "7.4.6",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": " 12.x || 13.x || 14.x || 15.x || 16.x || 17.x || 18.x || 19.x ",
|
|
6
6
|
"@angular/core": " 12.x || 13.x || 14.x || 15.x || 16.x || 17.x || 18.x || 19.x "
|