hellfire 0.19.0 → 0.19.1

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/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ## [0.19.1](http://10.16.100.57/diffusion/115/paladin/compare/v0.19.0...v0.19.1) (2022-02-07)
6
+
7
+
8
+
5
9
  # [0.19.0](http://10.16.100.57/diffusion/115/paladin/compare/v0.18.3...v0.19.0) (2022-02-07)
6
10
 
7
11
 
package/dist/index.js CHANGED
@@ -47563,7 +47563,11 @@ var CustomScroll = /*#__PURE__*/function (_Component) {
47563
47563
  currentStep = step - 1;
47564
47564
  }
47565
47565
 
47566
- _this2.debouncedPan(currentStep);
47566
+ if (_this2.props.needDebounce) {
47567
+ _this2.debouncedPan(currentStep);
47568
+ } else {
47569
+ _this2.props.onPan(currentStep);
47570
+ }
47567
47571
  };
47568
47572
 
47569
47573
  switch (type) {
@@ -49953,7 +49957,8 @@ var DicomLayout = /*#__PURE__*/function (_Component) {
49953
49957
  step: Math.ceil(seriesTotalCount / col) - row + 1,
49954
49958
  onPan: this.props.customScrollPan,
49955
49959
  name: 'layout',
49956
- scrollType: "relative"
49960
+ scrollType: "relative",
49961
+ needDebounce: true
49957
49962
  })));
49958
49963
  }
49959
49964
  }, {