vcomply-workflow-engine 8.0.9 → 8.0.11
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/index.d.ts
CHANGED
|
@@ -5852,6 +5852,10 @@ declare class BulkResponsibilityViewComponent {
|
|
|
5852
5852
|
DAY: string;
|
|
5853
5853
|
DATE_FORMAT: string;
|
|
5854
5854
|
DUE_DATE: string;
|
|
5855
|
+
START_DATE: string;
|
|
5856
|
+
START_DATE_PAST: string;
|
|
5857
|
+
START_DATE_AFTER_DUE_DATE: string;
|
|
5858
|
+
START_MONTH: string;
|
|
5855
5859
|
};
|
|
5856
5860
|
responsibilityBulkUpload: any;
|
|
5857
5861
|
fileName: any;
|
|
@@ -7562,6 +7566,16 @@ declare class AddMultipleResponsibilityWithTabComponent implements OnInit {
|
|
|
7562
7566
|
checkEmptyFile(data?: any): boolean;
|
|
7563
7567
|
compareWithCurrentDate(day: any, month: any): boolean;
|
|
7564
7568
|
isPastDate(day: any, month: any): boolean;
|
|
7569
|
+
/**
|
|
7570
|
+
* Converts bulk-upload day/month values (e.g. 15 and "June'26") into a moment date.
|
|
7571
|
+
* Used when comparing Start Date against Due Date during frequency responsibility validation.
|
|
7572
|
+
*/
|
|
7573
|
+
parseBulkUploadDate(day: any, month: any): moment.Moment | null;
|
|
7574
|
+
/**
|
|
7575
|
+
* Ensures the responsibility Start Date does not fall after the Due Date.
|
|
7576
|
+
* Returns true when Start Date is omitted, or when it is on/before the Due Date.
|
|
7577
|
+
*/
|
|
7578
|
+
validateTimeLine(startDay: any, startMonth: any, day: any, month: any): boolean;
|
|
7565
7579
|
downloadTemplate(): void;
|
|
7566
7580
|
submitResponsibilityBulkUpload(): void;
|
|
7567
7581
|
submitWorkflow(): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vcomply-workflow-engine",
|
|
3
|
-
"version": "8.0.
|
|
3
|
+
"version": "8.0.11",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": " 12.x || 13.x || 14.x || 15.x || 16.x || 17.x || 18.x || 19.x || 20.x || 21.x || 22.x || 23.x || 24.x",
|
|
6
6
|
"@angular/core": " 12.x || 13.x || 14.x || 15.x || 16.x || 17.x || 18.x || 19.x || 20.x || 21.x || 22.x || 23.x || 24.x"
|