hellfire 0.25.7 → 0.25.8
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.25.8](http://10.16.100.57/diffusion/115/paladin/compare/v0.25.7...v0.25.8) (2023-03-07)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
5
9
|
## [0.25.7](http://10.16.100.57/diffusion/115/paladin/compare/v0.25.6...v0.25.7) (2023-03-06)
|
|
6
10
|
|
|
7
11
|
|
package/dist/index.js
CHANGED
|
@@ -52657,6 +52657,7 @@ var ViewportOverlay = /*#__PURE__*/function (_PureComponent) {
|
|
|
52657
52657
|
var windowWidth = parseFloat(viewport.voi.windowWidth) || 0;
|
|
52658
52658
|
var windowCenter = parseFloat(viewport.voi.windowCenter) || 0;
|
|
52659
52659
|
var acquisitionMatrix = dicom.AcquisitionMatrix.value;
|
|
52660
|
+
var sliceLocation = dicom.SliceLocation.value && parseFloat(dicom.SliceLocation.value).toFixed(2);
|
|
52660
52661
|
return /*#__PURE__*/React__default.createElement("div", null, /*#__PURE__*/React__default.createElement("div", {
|
|
52661
52662
|
style: {
|
|
52662
52663
|
position: 'absolute',
|
|
@@ -52693,7 +52694,7 @@ var ViewportOverlay = /*#__PURE__*/function (_PureComponent) {
|
|
|
52693
52694
|
fontSize: '12px',
|
|
52694
52695
|
display: "".concat(hide ? 'none' : 'block')
|
|
52695
52696
|
}
|
|
52696
|
-
}, /*#__PURE__*/React__default.createElement("div", null, "W: ", windowWidth.toFixed(0)), /*#__PURE__*/React__default.createElement("div", null, "C: ", windowCenter.toFixed(0)), /*#__PURE__*/React__default.createElement("div", null, zoom, "X"), /*#__PURE__*/React__default.createElement("div", null, getFov(dicom, imageId)), /*#__PURE__*/React__default.createElement("div", null, getMat(acquisitionMatrix))));
|
|
52697
|
+
}, /*#__PURE__*/React__default.createElement("div", null, "W: ", windowWidth.toFixed(0)), /*#__PURE__*/React__default.createElement("div", null, "C: ", windowCenter.toFixed(0)), /*#__PURE__*/React__default.createElement("div", null, zoom, "X"), /*#__PURE__*/React__default.createElement("div", null, getFov(dicom, imageId)), /*#__PURE__*/React__default.createElement("div", null, getMat(acquisitionMatrix)), (sliceLocation || sliceLocation === 0) && /*#__PURE__*/React__default.createElement("div", null, "Location: ", sliceLocation)));
|
|
52697
52698
|
}
|
|
52698
52699
|
}, {
|
|
52699
52700
|
key: "__reactstandin__regenerateByEval",
|