@cornerstonejs/tools 0.66.1 → 0.66.2

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.
@@ -9,7 +9,7 @@ class StackScrollTool extends base_1.BaseTool {
9
9
  configuration: {
10
10
  invert: false,
11
11
  debounceIfNotLoaded: true,
12
- loop: false
12
+ loop: false,
13
13
  },
14
14
  }) {
15
15
  super(toolProps, defaultToolProps);
@@ -42,7 +42,7 @@ class StackScrollTool extends base_1.BaseTool {
42
42
  delta: invert ? -imageIdIndexOffset : imageIdIndexOffset,
43
43
  volumeId,
44
44
  debounceLoading: debounceIfNotLoaded,
45
- loop: loop
45
+ loop: loop,
46
46
  });
47
47
  this.deltaY = deltaY % pixelsPerImage;
48
48
  }
@@ -7,7 +7,7 @@ class StackScrollTool extends BaseTool {
7
7
  configuration: {
8
8
  invert: false,
9
9
  debounceIfNotLoaded: true,
10
- loop: false
10
+ loop: false,
11
11
  },
12
12
  }) {
13
13
  super(toolProps, defaultToolProps);
@@ -40,7 +40,7 @@ class StackScrollTool extends BaseTool {
40
40
  delta: invert ? -imageIdIndexOffset : imageIdIndexOffset,
41
41
  volumeId,
42
42
  debounceLoading: debounceIfNotLoaded,
43
- loop: loop
43
+ loop: loop,
44
44
  });
45
45
  this.deltaY = deltaY % pixelsPerImage;
46
46
  }