hellfire 0.24.0 → 0.24.1
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.24.1](http://10.16.100.57/diffusion/115/paladin/compare/v0.24.0...v0.24.1) (2022-09-01)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
5
9
|
# [0.24.0](http://10.16.100.57/diffusion/115/paladin/compare/v0.23.5...v0.24.0) (2022-08-23)
|
|
6
10
|
|
|
7
11
|
|
package/dist/index.js
CHANGED
|
@@ -52366,7 +52366,8 @@ var ViewportOverlay = /*#__PURE__*/function (_PureComponent) {
|
|
|
52366
52366
|
var patientSex = dicom.PatientSex.toString();
|
|
52367
52367
|
var patientAge = dicom.PatientAge.toString();
|
|
52368
52368
|
var patientID = dicom.PatientID.toString();
|
|
52369
|
-
var bodyPartExamined = dicom.BodyPartExamined.toString();
|
|
52369
|
+
var bodyPartExamined = dicom.BodyPartExamined.toString();
|
|
52370
|
+
var laterality = dicom.Laterality.toString() || ''; //左下
|
|
52370
52371
|
|
|
52371
52372
|
var patientOrientation = dicom.PatientOrientation.toString();
|
|
52372
52373
|
var protocolName = dicom.ProtocolName.toString();
|
|
@@ -52410,7 +52411,7 @@ var ViewportOverlay = /*#__PURE__*/function (_PureComponent) {
|
|
|
52410
52411
|
fontSize: '12px',
|
|
52411
52412
|
display: "".concat(hide ? 'none' : 'block')
|
|
52412
52413
|
}
|
|
52413
|
-
}, /*#__PURE__*/React__default.createElement("div", null, institutionName), /*#__PURE__*/React__default.createElement("div", null, manufacturer, " ", manufacturerModelName), /*#__PURE__*/React__default.createElement("div", null, patientName, "/", patientSex, "/", patientAge), /*#__PURE__*/React__default.createElement("div", null, patientID), /*#__PURE__*/React__default.createElement("div", null, bodyPartExamined)), /*#__PURE__*/React__default.createElement("div", {
|
|
52414
|
+
}, /*#__PURE__*/React__default.createElement("div", null, institutionName), /*#__PURE__*/React__default.createElement("div", null, manufacturer, " ", manufacturerModelName), /*#__PURE__*/React__default.createElement("div", null, patientName, "/", patientSex, "/", patientAge), /*#__PURE__*/React__default.createElement("div", null, patientID), /*#__PURE__*/React__default.createElement("div", null, bodyPartExamined), /*#__PURE__*/React__default.createElement("div", null, laterality)), /*#__PURE__*/React__default.createElement("div", {
|
|
52414
52415
|
style: {
|
|
52415
52416
|
position: 'absolute',
|
|
52416
52417
|
bottom: 4,
|