hellfire 0.29.8 → 0.29.9
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 +15 -7
- 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.29.9](http://10.16.100.57/diffusion/115/paladin/compare/v0.29.8...v0.29.9) (2025-05-08)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
5
9
|
## [0.29.8](http://10.16.100.57/diffusion/115/paladin/compare/v0.29.7...v0.29.8) (2025-04-29)
|
|
6
10
|
|
|
7
11
|
|
package/dist/index.js
CHANGED
|
@@ -1040,7 +1040,7 @@ var initialState$1 = {
|
|
|
1040
1040
|
Film: false,
|
|
1041
1041
|
displayShutter: true,
|
|
1042
1042
|
// 开启、关闭遮罩,默认开启
|
|
1043
|
-
showFilmPrinterEntrance:
|
|
1043
|
+
showFilmPrinterEntrance: true,
|
|
1044
1044
|
// 显示隐藏胶片打印入口按钮,默认隐藏
|
|
1045
1045
|
imageAutoLoad: true // 默认开启图像自动预加载
|
|
1046
1046
|
|
|
@@ -48530,9 +48530,7 @@ var UserSettingModal = /*#__PURE__*/function (_Component) {
|
|
|
48530
48530
|
}, value.label, "(", value.hotkey, ")");
|
|
48531
48531
|
})), /*#__PURE__*/React__default.createElement("div", {
|
|
48532
48532
|
className: 'paladin-user-setting-remark'
|
|
48533
|
-
}, "\u6CE8\uFF1A\u4FDD\u5B58\u540E\u4F1A\u81EA\u52A8\u5237\u65B0\u9875\u9762"), /*#__PURE__*/React__default.createElement("div",
|
|
48534
|
-
onClick: this.props.toggleFilmPrinterEntrance
|
|
48535
|
-
}, "\u663E\u793A/\u9690\u85CF\u6253\u5370\u5DE5\u5177\u680F")), /*#__PURE__*/React__default.createElement("div", {
|
|
48533
|
+
}, "\u6CE8\uFF1A\u4FDD\u5B58\u540E\u4F1A\u81EA\u52A8\u5237\u65B0\u9875\u9762"), /*#__PURE__*/React__default.createElement("div", {
|
|
48536
48534
|
className: 'paladin-user-setting-footer'
|
|
48537
48535
|
}, /*#__PURE__*/React__default.createElement(Button, {
|
|
48538
48536
|
onClick: close
|
|
@@ -69113,7 +69111,10 @@ var getFilmPrintImageData = /*#__PURE__*/function () {
|
|
|
69113
69111
|
document.body.appendChild(mergedCanvas);
|
|
69114
69112
|
mergedCanvas.style.width = filmWidth + 'px';
|
|
69115
69113
|
mergedCanvas.style.height = filmHeight + 'px';
|
|
69116
|
-
mergedCanvas.style.position = 'fixed';
|
|
69114
|
+
mergedCanvas.style.position = 'fixed'; // mergedCanvas.style.left = '-1400px';
|
|
69115
|
+
// mergedCanvas.style.top = '-1600px';
|
|
69116
|
+
// mergedCanvas.style.transform = 'scale(0.4)';
|
|
69117
|
+
|
|
69117
69118
|
mergedCanvas.style.left = 0;
|
|
69118
69119
|
mergedCanvas.style.top = 0;
|
|
69119
69120
|
mergedCanvas.style.zIndex = 9999;
|
|
@@ -69183,6 +69184,13 @@ function getImage(wodouri, element, canvas, firstLoad) {
|
|
|
69183
69184
|
}
|
|
69184
69185
|
|
|
69185
69186
|
cornerstone.setViewport(element, _viewport);
|
|
69187
|
+
} else {
|
|
69188
|
+
var currentViewport = cornerstone.getViewport(element);
|
|
69189
|
+
|
|
69190
|
+
if (currentViewport) {
|
|
69191
|
+
var defaultViewport = cornerstone.getDefaultViewport(canvas, image);
|
|
69192
|
+
cornerstone.setViewport(element, defaultViewport);
|
|
69193
|
+
}
|
|
69186
69194
|
}
|
|
69187
69195
|
|
|
69188
69196
|
cornerstone.displayImage(element, image);
|
|
@@ -73371,8 +73379,8 @@ var mergeProps$A = function mergeProps(propsFromState, propsFromDispatch, ownPro
|
|
|
73371
73379
|
KEYE: ['key-e'],
|
|
73372
73380
|
KEYR: ['key-r'],
|
|
73373
73381
|
KEYT: ['key-t'],
|
|
73374
|
-
DICOMMODAL: ['ctrl+alt+key-d'],
|
|
73375
|
-
|
|
73382
|
+
DICOMMODAL: ['ctrl+alt+key-d'] // FILMENTRANCE: ['ctrl+alt+key-p', 'ctrl+alt+key-f']
|
|
73383
|
+
|
|
73376
73384
|
},
|
|
73377
73385
|
handlers: {
|
|
73378
73386
|
PAUSE: function PAUSE() {
|