vcomply-workflow-engine 3.4.29 → 3.4.31
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/log-an-issue/log-an-issue.component.mjs +27 -8
- package/esm2020/lib/sharedComponents/frequency/frequency-on-completion-of/frequency-on-completion-of.component.mjs +3 -3
- package/esm2020/lib/sharedComponents/frequency-dialog/frequency-dialog-one-time/frequency-dialog-one-time.component.mjs +9 -7
- package/esm2020/lib/sharedComponents/frequency-dialog/frequency-dialog-top/frequency-dialog-top.component.mjs +8 -4
- package/esm2020/lib/ui-kit/time-picker/time-picker/time-picker.component.mjs +5 -2
- package/esm2020/lib/workflow-policy/workflow-policy.component.mjs +3 -3
- package/esm2020/lib/workflow-risk/workflow-risk.component.mjs +2 -2
- package/fesm2015/vcomply-workflow-engine.mjs +248 -224
- package/fesm2015/vcomply-workflow-engine.mjs.map +1 -1
- package/fesm2020/vcomply-workflow-engine.mjs +240 -216
- package/fesm2020/vcomply-workflow-engine.mjs.map +1 -1
- package/lib/log-an-issue/log-an-issue.component.d.ts +2 -0
- package/lib/sharedComponents/frequency-dialog/frequency-dialog-one-time/frequency-dialog-one-time.component.d.ts +1 -1
- package/lib/sharedComponents/frequency-dialog/frequency-dialog-top/frequency-dialog-top.component.d.ts +1 -1
- package/package.json +1 -1
|
@@ -217,6 +217,8 @@ export declare class LogAnIssueComponent implements OnInit, OnChanges, AfterView
|
|
|
217
217
|
*/
|
|
218
218
|
resetIssueForm(): void;
|
|
219
219
|
checkDescription(): void;
|
|
220
|
+
onTimeChanged(event: any): void;
|
|
221
|
+
validateDate(time: string): boolean;
|
|
220
222
|
static ɵfac: i0.ɵɵFactoryDeclaration<LogAnIssueComponent, never>;
|
|
221
223
|
static ɵcmp: i0.ɵɵComponentDeclaration<LogAnIssueComponent, "app-log-an-issue", never, { "openedFrom": "openedFrom"; "issueId": "issueId"; "reponsibilityData": "reponsibilityData"; "issueDetails": "issueDetails"; "mode": "mode"; "config": "config"; "responsibilitiesData": "responsibilitiesData"; }, { "pickerChanged": "pickerChanged"; "populateOption": "populateOption"; "closeWorkflow": "closeWorkflow"; "modeChange": "modeChange"; "disconnectRefresh": "disconnectRefresh"; }, never, never, false>;
|
|
222
224
|
}
|
|
@@ -31,7 +31,7 @@ export declare class FrequencyDialogOneTimeComponent implements OnInit {
|
|
|
31
31
|
onValueChange(event: any): void;
|
|
32
32
|
onWindowOpenChange(event: any): void;
|
|
33
33
|
onExtensionChange(event: any): void;
|
|
34
|
-
onTimeChanged(event:
|
|
34
|
+
onTimeChanged(event: any): void;
|
|
35
35
|
dateChange(event: any): void;
|
|
36
36
|
getOneTimeFrequency(): void;
|
|
37
37
|
static ɵfac: i0.ɵɵFactoryDeclaration<FrequencyDialogOneTimeComponent, never>;
|
|
@@ -19,7 +19,7 @@ export declare class FrequencyDialogTopComponent implements OnInit {
|
|
|
19
19
|
enterValueFirst(event: any, actionType: string): void;
|
|
20
20
|
enterValue(event: any, actionType: any): void;
|
|
21
21
|
getToday(): string;
|
|
22
|
-
onTimeChanged(event:
|
|
22
|
+
onTimeChanged(event: any): void;
|
|
23
23
|
enterYearDay(event: any): void;
|
|
24
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<FrequencyDialogTopComponent, never>;
|
|
25
25
|
static ɵcmp: i0.ɵɵComponentDeclaration<FrequencyDialogTopComponent, "app-frequency-dialog-top", never, { "occurrenceFirst": "occurrenceFirst"; "id": "id"; "inputTime": "inputTime"; "frequencyType": "frequencyType"; "yearlyDay": "yearlyDay"; }, { "valueChangedFirst": "valueChangedFirst"; "nextDisable": "nextDisable"; "timeChanged": "timeChanged"; "yearlyDateChanged": "yearlyDateChanged"; }, never, never, false>;
|
package/package.json
CHANGED