hellfire 0.25.3 → 0.25.4
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 +5 -0
- 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.25.4](http://10.16.100.57/diffusion/115/paladin/compare/v0.25.3...v0.25.4) (2023-01-18)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
5
9
|
## [0.25.3](http://10.16.100.57/diffusion/115/paladin/compare/v0.25.2...v0.25.3) (2023-01-16)
|
|
6
10
|
|
|
7
11
|
|
package/dist/index.js
CHANGED
|
@@ -60139,6 +60139,11 @@ var mergeProps$p = function mergeProps(propsFromState, propsFromDispatch, ownPro
|
|
|
60139
60139
|
|
|
60140
60140
|
var totalCount = propsFromState.currentSeries && propsFromState.currentSeries.imageIds.length || 0;
|
|
60141
60141
|
var stepTime = lodash$1.floor(10 * 1000 / totalCount);
|
|
60142
|
+
|
|
60143
|
+
if (totalCount < 30) {
|
|
60144
|
+
stepTime = lodash$1.floor(10 * 1000 / 30);
|
|
60145
|
+
}
|
|
60146
|
+
|
|
60142
60147
|
var throttleForwardFunc = throttle$9(forwardFunc, stepTime);
|
|
60143
60148
|
var throttleBackFunc = throttle$9(backFunc, stepTime);
|
|
60144
60149
|
/**
|