hellfire 0.27.5 → 0.27.6
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 +11 -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.27.6](http://10.16.100.57/diffusion/115/paladin/compare/v0.27.5...v0.27.6) (2023-11-21)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
5
9
|
## [0.27.5](http://10.16.100.57/diffusion/115/paladin/compare/v0.27.4...v0.27.5) (2023-10-12)
|
|
6
10
|
|
|
7
11
|
|
package/dist/index.js
CHANGED
|
@@ -44061,7 +44061,8 @@ var DicomToolMobileThreeModeBottom = /*#__PURE__*/function (_Component) {
|
|
|
44061
44061
|
scrollHidden = _this$props.scrollHidden,
|
|
44062
44062
|
MPR = _this$props.MPR,
|
|
44063
44063
|
VR = _this$props.VR,
|
|
44064
|
-
MIP = _this$props.MIP
|
|
44064
|
+
MIP = _this$props.MIP,
|
|
44065
|
+
operateKeyImages = _this$props.operateKeyImages;
|
|
44065
44066
|
|
|
44066
44067
|
var _toolsMap = _objectSpread$D(_objectSpread$D({}, toolsMap), {}, {
|
|
44067
44068
|
MPR: {
|
|
@@ -44111,7 +44112,15 @@ var DicomToolMobileThreeModeBottom = /*#__PURE__*/function (_Component) {
|
|
|
44111
44112
|
});
|
|
44112
44113
|
|
|
44113
44114
|
var phoneToolsFixed = ["StackScroll", "Wwwc", "Zoom"];
|
|
44114
|
-
var phoneTools = ["Layout", "Pan", "Rotate", "Length", "Reset", "Tool", "ReferenceLine", "
|
|
44115
|
+
var phoneTools = ["Layout", "Pan", "Rotate", "Length", "Reset", "Tool", "ReferenceLine", "MPR", "VR", "MIP", "Settings"]; // 关键图工具
|
|
44116
|
+
|
|
44117
|
+
if (operateKeyImages) {
|
|
44118
|
+
var referenceLineIndex = phoneTools.indexOf("ReferenceLine");
|
|
44119
|
+
|
|
44120
|
+
if (referenceLineIndex !== -1) {
|
|
44121
|
+
phoneTools.splice(referenceLineIndex + 1, 0, "KeyImages");
|
|
44122
|
+
}
|
|
44123
|
+
}
|
|
44115
44124
|
|
|
44116
44125
|
if (MPR) {
|
|
44117
44126
|
phoneTools = ["Rotate", "Length", "Reset", "Tool"];
|