hellfire 0.26.3 → 0.26.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 +3 -2
- 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.26.4](http://10.16.100.57/diffusion/115/paladin/compare/v0.26.3...v0.26.4) (2023-06-01)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
5
9
|
## [0.26.3](http://10.16.100.57/diffusion/115/paladin/compare/v0.26.2...v0.26.3) (2023-06-01)
|
|
6
10
|
|
|
7
11
|
|
package/dist/index.js
CHANGED
|
@@ -906,9 +906,10 @@ var SET_MIP_ACTIVE_TOOL = 'SET_MIP_ACTIVE_TOOL';
|
|
|
906
906
|
var SET_ACTION_STATE_KEY = 'SET_ACTION_STATE_KEY'; // ---------- Reducers ----------
|
|
907
907
|
|
|
908
908
|
var isMobile = ua.isDeviceTypeMobile();
|
|
909
|
+
var initActiveTool = isMobile ? 'StackScroll' : 'Wwwc';
|
|
909
910
|
var initialState$1 = {
|
|
910
|
-
activeTool:
|
|
911
|
-
originActiveTool:
|
|
911
|
+
activeTool: initActiveTool,
|
|
912
|
+
originActiveTool: initActiveTool,
|
|
912
913
|
mipActiveTool: 'MipWWWc',
|
|
913
914
|
// seriesMode序列模式 imageMode图像模式 allImageMode全部模式
|
|
914
915
|
mode: 'seriesMode',
|