hellfire 0.26.7 → 0.26.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 +8 -0
- package/dist/index.js +3 -9
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
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.9](http://10.16.100.57/diffusion/115/paladin/compare/v0.26.8...v0.26.9) (2023-07-24)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
## [0.26.8](http://10.16.100.57/diffusion/115/paladin/compare/v0.26.7...v0.26.8) (2023-07-20)
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
5
13
|
## [0.26.7](http://10.16.100.57/diffusion/115/paladin/compare/v0.26.6...v0.26.7) (2023-07-20)
|
|
6
14
|
|
|
7
15
|
|
package/dist/index.js
CHANGED
|
@@ -44469,10 +44469,7 @@ var mergeProps$h = function mergeProps(propsFromState, propsFromDispatch, ownPro
|
|
|
44469
44469
|
return _objectSpread$G(_objectSpread$G(_objectSpread$G({}, ownProps), propsFromState), {}, {
|
|
44470
44470
|
handleRemove: function handleRemove(data) {
|
|
44471
44471
|
if (ownProps.operateKeyImages) {
|
|
44472
|
-
ownProps.operateKeyImages('remove',
|
|
44473
|
-
studyInstanceUID: data.studyInstanceUID,
|
|
44474
|
-
attachmentId: data._id
|
|
44475
|
-
});
|
|
44472
|
+
ownProps.operateKeyImages('remove', data);
|
|
44476
44473
|
}
|
|
44477
44474
|
}
|
|
44478
44475
|
});
|
|
@@ -46465,10 +46462,7 @@ var mergeProps$i = function mergeProps(propsFromState, propsFromDispatch, ownPro
|
|
|
46465
46462
|
});
|
|
46466
46463
|
|
|
46467
46464
|
if (selectImage) {
|
|
46468
|
-
ownProps.operateKeyImages('remove',
|
|
46469
|
-
studyInstanceUID: currentSeries.studyInstanceUID,
|
|
46470
|
-
attachmentId: selectImage._id
|
|
46471
|
-
});
|
|
46465
|
+
ownProps.operateKeyImages('remove', selectImage);
|
|
46472
46466
|
} else {
|
|
46473
46467
|
var _activeElement = getElement(realActiveIndex);
|
|
46474
46468
|
|
|
@@ -49354,7 +49348,7 @@ var DicomViewport = /*#__PURE__*/function (_Component) {
|
|
|
49354
49348
|
|
|
49355
49349
|
var _imageProcessType = Surgery ? ImageProcessType.Centesis : CPR ? ImageProcessType.CPR : ImageProcessType.MPR;
|
|
49356
49350
|
|
|
49357
|
-
var isKey = keyImages && stack && stack.SOPInstanceUIDs[currentImageIndex] && lodash$1.find(keyImages, {
|
|
49351
|
+
var isKey = keyImages && stack && stack.SOPInstanceUIDs && stack.SOPInstanceUIDs[currentImageIndex] && lodash$1.find(keyImages, {
|
|
49358
49352
|
seriesInstanceUID: stack.seriesInstanceUID,
|
|
49359
49353
|
SOPInstanceUID: stack.SOPInstanceUIDs[currentImageIndex]
|
|
49360
49354
|
});
|