hellfire 0.17.6 → 0.17.7
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 +4 -0
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
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.17.7](http://10.16.100.57/diffusion/115/paladin/compare/v0.17.6...v0.17.7) (2021-12-28)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
5
9
|
## [0.17.6](http://10.16.100.57/diffusion/115/paladin/compare/v0.17.5...v0.17.6) (2021-12-28)
|
|
6
10
|
|
|
7
11
|
|
package/dist/index.js
CHANGED
|
@@ -46941,6 +46941,7 @@ var CustomScroll = /*#__PURE__*/function (_Component) {
|
|
|
46941
46941
|
_this.scrollHandle = _this.scrollHandle.bind(assertThisInitialized(_this));
|
|
46942
46942
|
_this.hammer = null;
|
|
46943
46943
|
_this.ele = null;
|
|
46944
|
+
_this.debouncedPan = lodash$1.debounce(_this.props.onPan, 30);
|
|
46944
46945
|
return _this;
|
|
46945
46946
|
}
|
|
46946
46947
|
|
|
@@ -46997,7 +46998,7 @@ var CustomScroll = /*#__PURE__*/function (_Component) {
|
|
|
46997
46998
|
currentStep = step - 1;
|
|
46998
46999
|
}
|
|
46999
47000
|
|
|
47000
|
-
_this2.
|
|
47001
|
+
_this2.debouncedPan(currentStep);
|
|
47001
47002
|
};
|
|
47002
47003
|
|
|
47003
47004
|
switch (type) {
|