vcomply-workflow-engine 3.4.31 → 3.4.33
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/sharedComponents/frequency-dialog/frequency-dialog-top/frequency-dialog-top.component.mjs +1 -2
- package/esm2020/lib/ui-kit/time-picker/time-picker/time-picker.component.mjs +30 -7
- package/esm2020/lib/workflow-policy/workflow-policy.component.mjs +6 -6
- package/fesm2015/vcomply-workflow-engine.mjs +43 -21
- package/fesm2015/vcomply-workflow-engine.mjs.map +1 -1
- package/fesm2020/vcomply-workflow-engine.mjs +34 -12
- package/fesm2020/vcomply-workflow-engine.mjs.map +1 -1
- package/lib/ui-kit/time-picker/time-picker/time-picker.component.d.ts +12 -1
- package/package.json +1 -1
|
@@ -12,7 +12,18 @@ export declare class TimePickerComponent {
|
|
|
12
12
|
constructor();
|
|
13
13
|
onScroll(event: any, type: any): void;
|
|
14
14
|
onValueSelect(value: string | number, type: string): void;
|
|
15
|
-
|
|
15
|
+
/**
|
|
16
|
+
* The function `handleMouseWheelEvent` takes an array of current values and a direction ('up' or
|
|
17
|
+
* 'down') as input, and returns an array of next values based on the direction and the maximum and
|
|
18
|
+
* minimum values.
|
|
19
|
+
* @param {number[]} currentValues - An array of numbers representing the current values.
|
|
20
|
+
* @param {'up' | 'down'} direction - The direction parameter is a string that can have two possible
|
|
21
|
+
* values: 'up' or 'down'. It indicates the direction of the mouse wheel event, whether it is
|
|
22
|
+
* scrolling up or scrolling down.
|
|
23
|
+
* @returns an array of numbers representing the next values based on the current values and the
|
|
24
|
+
* direction of the mouse wheel event.
|
|
25
|
+
*/
|
|
26
|
+
getNextValuesOnMouseWheel(currentValues: number[], direction: 'up' | 'down'): number[];
|
|
16
27
|
onCloseTimePicker(actionType: 'cancel' | 'ok'): void;
|
|
17
28
|
private getScrollDirection;
|
|
18
29
|
private setMinutes;
|
package/package.json
CHANGED