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.
@@ -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
- handleMouseWheelEvent(currentValues: number[], direction: 'up' | 'down'): number[];
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vcomply-workflow-engine",
3
- "version": "3.4.31",
3
+ "version": "3.4.33",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "10.x || 11.x || 12.x || 13.x || 14.x || 15.x || 16.x",
6
6
  "@angular/core": "10.x || 11.x || 12.x || 13.x || 14.x || 15.x || 16.x"