hellfire 0.17.2 → 0.17.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 +16 -0
- package/dist/index.js +144 -86
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,22 @@
|
|
|
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.17.6](http://10.16.100.57/diffusion/115/paladin/compare/v0.17.5...v0.17.6) (2021-12-28)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
## [0.17.5](http://10.16.100.57/diffusion/115/paladin/compare/v0.17.4...v0.17.5) (2021-12-27)
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
## [0.17.4](http://10.16.100.57/diffusion/115/paladin/compare/v0.17.3...v0.17.4) (2021-12-22)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## [0.17.3](http://10.16.100.57/diffusion/115/paladin/compare/v0.17.2...v0.17.3) (2021-12-15)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
5
21
|
## [0.17.2](http://10.16.100.57/diffusion/115/paladin/compare/v0.17.1...v0.17.2) (2021-12-14)
|
|
6
22
|
|
|
7
23
|
|
package/dist/index.js
CHANGED
|
@@ -7562,9 +7562,7 @@ var LengthTool = /*#__PURE__*/function (_BaseAnnotationPlusTo) {
|
|
|
7562
7562
|
var length = Math.sqrt(dx * dx + dy * dy); // Store the length inside the tool for outside access
|
|
7563
7563
|
|
|
7564
7564
|
data.length = length;
|
|
7565
|
-
data.invalidated = false;
|
|
7566
|
-
|
|
7567
|
-
onToolsUpdate(image, element);
|
|
7565
|
+
data.invalidated = false;
|
|
7568
7566
|
}
|
|
7569
7567
|
}, {
|
|
7570
7568
|
key: "renderToolData",
|
|
@@ -7655,7 +7653,10 @@ var LengthTool = /*#__PURE__*/function (_BaseAnnotationPlusTo) {
|
|
|
7655
7653
|
var _ret = _loop(i);
|
|
7656
7654
|
|
|
7657
7655
|
if (_ret === "continue") continue;
|
|
7658
|
-
}
|
|
7656
|
+
} // socket同步
|
|
7657
|
+
|
|
7658
|
+
|
|
7659
|
+
onToolsUpdate(image, element);
|
|
7659
7660
|
|
|
7660
7661
|
function textBoxText(data, rowPixelSpacing, colPixelSpacing) {
|
|
7661
7662
|
// Set the length text suffix depending on whether or not pixelSpacing is available
|
|
@@ -7741,7 +7742,6 @@ var _cornerstoneTools$imp = cornerstoneTools.importInternal('tools/cursors'),
|
|
|
7741
7742
|
arrowAnnotateCursor = _cornerstoneTools$imp.arrowAnnotateCursor;
|
|
7742
7743
|
|
|
7743
7744
|
var triggerEvent = cornerstoneTools.importInternal('util/triggerEvent');
|
|
7744
|
-
var throttle$1 = cornerstoneTools.importInternal('util/throttle');
|
|
7745
7745
|
var EVENTS = cornerstoneTools.EVENTS,
|
|
7746
7746
|
external$4 = cornerstoneTools.external,
|
|
7747
7747
|
toolStyle$1 = cornerstoneTools.toolStyle,
|
|
@@ -7790,7 +7790,6 @@ var ArrowAnnotateTool = /*#__PURE__*/function (_BaseAnnotationPlusTo) {
|
|
|
7790
7790
|
};
|
|
7791
7791
|
_this = _super.call(this, props, defaultProps);
|
|
7792
7792
|
_this.preventNewMeasurement = false;
|
|
7793
|
-
_this.throttledUpdateCachedStats = throttle$1(_this.updateCachedStats, 110);
|
|
7794
7793
|
return _this;
|
|
7795
7794
|
}
|
|
7796
7795
|
|
|
@@ -7837,13 +7836,6 @@ var ArrowAnnotateTool = /*#__PURE__*/function (_BaseAnnotationPlusTo) {
|
|
|
7837
7836
|
var distance = interactionType && interactionType === 'mouse' ? 5 : 25;
|
|
7838
7837
|
return lineSegDistance$1(element, data.handles.start, data.handles.end, coords) < distance;
|
|
7839
7838
|
}
|
|
7840
|
-
}, {
|
|
7841
|
-
key: "updateCachedStats",
|
|
7842
|
-
value: function updateCachedStats(image, element) {
|
|
7843
|
-
// Implementing to satisfy BaseAnnotationTool
|
|
7844
|
-
// socket同步
|
|
7845
|
-
onToolsUpdate(image, element);
|
|
7846
|
-
}
|
|
7847
7839
|
}, {
|
|
7848
7840
|
key: "renderToolData",
|
|
7849
7841
|
value: function renderToolData(evt) {
|
|
@@ -7912,14 +7904,6 @@ var ArrowAnnotateTool = /*#__PURE__*/function (_BaseAnnotationPlusTo) {
|
|
|
7912
7904
|
distance = -distance;
|
|
7913
7905
|
}
|
|
7914
7906
|
|
|
7915
|
-
if (data.invalidated === true) {
|
|
7916
|
-
if (data.cachedStats) {
|
|
7917
|
-
_this2.throttledUpdateCachedStats(image, element, data);
|
|
7918
|
-
} else {
|
|
7919
|
-
_this2.updateCachedStats(image, element, data);
|
|
7920
|
-
}
|
|
7921
|
-
}
|
|
7922
|
-
|
|
7923
7907
|
if (!data.handles.textBox.hasMoved) {
|
|
7924
7908
|
var textCoords;
|
|
7925
7909
|
|
|
@@ -7953,7 +7937,10 @@ var ArrowAnnotateTool = /*#__PURE__*/function (_BaseAnnotationPlusTo) {
|
|
|
7953
7937
|
var _ret = _loop(i);
|
|
7954
7938
|
|
|
7955
7939
|
if (_ret === "continue") continue;
|
|
7956
|
-
}
|
|
7940
|
+
} // socket同步
|
|
7941
|
+
|
|
7942
|
+
|
|
7943
|
+
onToolsUpdate(image, element);
|
|
7957
7944
|
|
|
7958
7945
|
function textBoxText(data) {
|
|
7959
7946
|
return data.text;
|
|
@@ -8111,7 +8098,6 @@ defineProperty(ArrowAnnotateTool, "setConfiguration", function (_getTextCallback
|
|
|
8111
8098
|
reactHotLoader.register(textBoxWidth, "textBoxWidth", "/Users/huyeqing/workspace/chainz/paladin/src/cornerstone-plus/cornerstone-tools-plus/ArrowAnnotateTool.js");
|
|
8112
8099
|
reactHotLoader.register(arrowAnnotateCursor, "arrowAnnotateCursor", "/Users/huyeqing/workspace/chainz/paladin/src/cornerstone-plus/cornerstone-tools-plus/ArrowAnnotateTool.js");
|
|
8113
8100
|
reactHotLoader.register(triggerEvent, "triggerEvent", "/Users/huyeqing/workspace/chainz/paladin/src/cornerstone-plus/cornerstone-tools-plus/ArrowAnnotateTool.js");
|
|
8114
|
-
reactHotLoader.register(throttle$1, "throttle", "/Users/huyeqing/workspace/chainz/paladin/src/cornerstone-plus/cornerstone-tools-plus/ArrowAnnotateTool.js");
|
|
8115
8101
|
reactHotLoader.register(EVENTS, "EVENTS", "/Users/huyeqing/workspace/chainz/paladin/src/cornerstone-plus/cornerstone-tools-plus/ArrowAnnotateTool.js");
|
|
8116
8102
|
reactHotLoader.register(external$4, "external", "/Users/huyeqing/workspace/chainz/paladin/src/cornerstone-plus/cornerstone-tools-plus/ArrowAnnotateTool.js");
|
|
8117
8103
|
reactHotLoader.register(toolStyle$1, "toolStyle", "/Users/huyeqing/workspace/chainz/paladin/src/cornerstone-plus/cornerstone-tools-plus/ArrowAnnotateTool.js");
|
|
@@ -8154,7 +8140,7 @@ var _cornerstoneTools$imp$1 = cornerstoneTools.importInternal('tools/cursors'),
|
|
|
8154
8140
|
var calculateSUV = cornerstoneTools.importInternal('util/calculateSUV');
|
|
8155
8141
|
var getROITextBoxCoords = cornerstoneTools.importInternal('util/getROITextBoxCoords');
|
|
8156
8142
|
var numbersWithCommas = cornerstoneTools.importInternal('util/numbersWithCommas');
|
|
8157
|
-
var throttle$
|
|
8143
|
+
var throttle$1 = cornerstoneTools.importInternal('util/throttle');
|
|
8158
8144
|
var getLogger = cornerstoneTools.importInternal('util/getLogger');
|
|
8159
8145
|
var getPixelSpacing$1 = cornerstoneTools.importInternal('util/getPixelSpacing');
|
|
8160
8146
|
var logger$2 = getLogger('tools:annotation:RectangleRoiTool');
|
|
@@ -8194,7 +8180,7 @@ var RectangleRoiTool = /*#__PURE__*/function (_BaseAnnotationPlusTo) {
|
|
|
8194
8180
|
|
|
8195
8181
|
};
|
|
8196
8182
|
_this = _super.call(this, props, defaultProps);
|
|
8197
|
-
_this.throttledUpdateCachedStats = throttle$
|
|
8183
|
+
_this.throttledUpdateCachedStats = throttle$1(_this.updateCachedStats, 110);
|
|
8198
8184
|
return _this;
|
|
8199
8185
|
}
|
|
8200
8186
|
|
|
@@ -8275,9 +8261,7 @@ var RectangleRoiTool = /*#__PURE__*/function (_BaseAnnotationPlusTo) {
|
|
|
8275
8261
|
var stats = _calculateStats(image, element, data.handles, modality, pixelSpacing);
|
|
8276
8262
|
|
|
8277
8263
|
data.cachedStats = stats;
|
|
8278
|
-
data.invalidated = false;
|
|
8279
|
-
|
|
8280
|
-
onToolsUpdate(image, element);
|
|
8264
|
+
data.invalidated = false;
|
|
8281
8265
|
}
|
|
8282
8266
|
}, {
|
|
8283
8267
|
key: "renderToolData",
|
|
@@ -8360,7 +8344,9 @@ var RectangleRoiTool = /*#__PURE__*/function (_BaseAnnotationPlusTo) {
|
|
|
8360
8344
|
data.unit = _getUnit(modality, _this2.configuration.showHounsfieldUnits);
|
|
8361
8345
|
drawLinkedTextBox$2(context, element, data.handles.textBox, textBoxContent, data.handles, textBoxAnchorPoints, color, lineWidth, 10, true);
|
|
8362
8346
|
}
|
|
8363
|
-
});
|
|
8347
|
+
}); // socket同步
|
|
8348
|
+
|
|
8349
|
+
onToolsUpdate(image, element);
|
|
8364
8350
|
}
|
|
8365
8351
|
}, {
|
|
8366
8352
|
key: "__reactstandin__regenerateByEval",
|
|
@@ -8612,7 +8598,7 @@ function _createTextBoxContent(context, isColorImage, _ref, modality, hasPixelSp
|
|
|
8612
8598
|
reactHotLoader.register(calculateSUV, "calculateSUV", "/Users/huyeqing/workspace/chainz/paladin/src/cornerstone-plus/cornerstone-tools-plus/RectangleRoiTool.js");
|
|
8613
8599
|
reactHotLoader.register(getROITextBoxCoords, "getROITextBoxCoords", "/Users/huyeqing/workspace/chainz/paladin/src/cornerstone-plus/cornerstone-tools-plus/RectangleRoiTool.js");
|
|
8614
8600
|
reactHotLoader.register(numbersWithCommas, "numbersWithCommas", "/Users/huyeqing/workspace/chainz/paladin/src/cornerstone-plus/cornerstone-tools-plus/RectangleRoiTool.js");
|
|
8615
|
-
reactHotLoader.register(throttle$
|
|
8601
|
+
reactHotLoader.register(throttle$1, "throttle", "/Users/huyeqing/workspace/chainz/paladin/src/cornerstone-plus/cornerstone-tools-plus/RectangleRoiTool.js");
|
|
8616
8602
|
reactHotLoader.register(getLogger, "getLogger", "/Users/huyeqing/workspace/chainz/paladin/src/cornerstone-plus/cornerstone-tools-plus/RectangleRoiTool.js");
|
|
8617
8603
|
reactHotLoader.register(getPixelSpacing$1, "getPixelSpacing", "/Users/huyeqing/workspace/chainz/paladin/src/cornerstone-plus/cornerstone-tools-plus/RectangleRoiTool.js");
|
|
8618
8604
|
reactHotLoader.register(logger$2, "logger", "/Users/huyeqing/workspace/chainz/paladin/src/cornerstone-plus/cornerstone-tools-plus/RectangleRoiTool.js");
|
|
@@ -8655,7 +8641,7 @@ var drawEllipse = cornerstoneTools.importInternal('drawing/drawEllipse');
|
|
|
8655
8641
|
var calculateSUV$1 = cornerstoneTools.importInternal('util/calculateSUV');
|
|
8656
8642
|
var getROITextBoxCoords$1 = cornerstoneTools.importInternal('util/getROITextBoxCoords');
|
|
8657
8643
|
var numbersWithCommas$1 = cornerstoneTools.importInternal('util/numbersWithCommas');
|
|
8658
|
-
var throttle$
|
|
8644
|
+
var throttle$2 = cornerstoneTools.importInternal('util/throttle');
|
|
8659
8645
|
var getLogger$1 = cornerstoneTools.importInternal('util/getLogger');
|
|
8660
8646
|
var getPixelSpacing$2 = cornerstoneTools.importInternal('util/getPixelSpacing');
|
|
8661
8647
|
|
|
@@ -8702,7 +8688,7 @@ var EllipticalRoiTool = /*#__PURE__*/function (_BaseAnnotationPlusTo) {
|
|
|
8702
8688
|
|
|
8703
8689
|
};
|
|
8704
8690
|
_this = _super.call(this, props, defaultProps);
|
|
8705
|
-
_this.throttledUpdateCachedStats = throttle$
|
|
8691
|
+
_this.throttledUpdateCachedStats = throttle$2(_this.updateCachedStats, 110);
|
|
8706
8692
|
return _this;
|
|
8707
8693
|
}
|
|
8708
8694
|
|
|
@@ -8795,9 +8781,7 @@ var EllipticalRoiTool = /*#__PURE__*/function (_BaseAnnotationPlusTo) {
|
|
|
8795
8781
|
var stats = _calculateStats$1(image, element, data.handles, modality, pixelSpacing);
|
|
8796
8782
|
|
|
8797
8783
|
data.cachedStats = stats;
|
|
8798
|
-
data.invalidated = false;
|
|
8799
|
-
|
|
8800
|
-
onToolsUpdate(image, element);
|
|
8784
|
+
data.invalidated = false;
|
|
8801
8785
|
}
|
|
8802
8786
|
}, {
|
|
8803
8787
|
key: "renderToolData",
|
|
@@ -8876,7 +8860,9 @@ var EllipticalRoiTool = /*#__PURE__*/function (_BaseAnnotationPlusTo) {
|
|
|
8876
8860
|
data.unit = _getUnit$1(modality, _this2.configuration.showHounsfieldUnits);
|
|
8877
8861
|
drawLinkedTextBox$3(context, element, data.handles.textBox, textBoxContent, data.handles, textBoxAnchorPoints, color, lineWidth, 10, true);
|
|
8878
8862
|
}
|
|
8879
|
-
});
|
|
8863
|
+
}); // socket同步
|
|
8864
|
+
|
|
8865
|
+
onToolsUpdate(image, element);
|
|
8880
8866
|
}
|
|
8881
8867
|
}, {
|
|
8882
8868
|
key: "__reactstandin__regenerateByEval",
|
|
@@ -9075,7 +9061,7 @@ function _getEllipseImageCoordinates(startHandle, endHandle) {
|
|
|
9075
9061
|
reactHotLoader.register(calculateSUV$1, "calculateSUV", "/Users/huyeqing/workspace/chainz/paladin/src/cornerstone-plus/cornerstone-tools-plus/EllipticalRoiTool.js");
|
|
9076
9062
|
reactHotLoader.register(getROITextBoxCoords$1, "getROITextBoxCoords", "/Users/huyeqing/workspace/chainz/paladin/src/cornerstone-plus/cornerstone-tools-plus/EllipticalRoiTool.js");
|
|
9077
9063
|
reactHotLoader.register(numbersWithCommas$1, "numbersWithCommas", "/Users/huyeqing/workspace/chainz/paladin/src/cornerstone-plus/cornerstone-tools-plus/EllipticalRoiTool.js");
|
|
9078
|
-
reactHotLoader.register(throttle$
|
|
9064
|
+
reactHotLoader.register(throttle$2, "throttle", "/Users/huyeqing/workspace/chainz/paladin/src/cornerstone-plus/cornerstone-tools-plus/EllipticalRoiTool.js");
|
|
9079
9065
|
reactHotLoader.register(getLogger$1, "getLogger", "/Users/huyeqing/workspace/chainz/paladin/src/cornerstone-plus/cornerstone-tools-plus/EllipticalRoiTool.js");
|
|
9080
9066
|
reactHotLoader.register(getPixelSpacing$2, "getPixelSpacing", "/Users/huyeqing/workspace/chainz/paladin/src/cornerstone-plus/cornerstone-tools-plus/EllipticalRoiTool.js");
|
|
9081
9067
|
reactHotLoader.register(pointInEllipse, "pointInEllipse", "/Users/huyeqing/workspace/chainz/paladin/src/cornerstone-plus/cornerstone-tools-plus/EllipticalRoiTool.js");
|
|
@@ -9119,7 +9105,7 @@ var setShadow$4 = cornerstoneTools.importInternal('drawing/setShadow');
|
|
|
9119
9105
|
var drawJoinedLines = cornerstoneTools.importInternal('drawing/drawJoinedLines');
|
|
9120
9106
|
var textBoxWidth$1 = cornerstoneTools.importInternal('drawing/textBoxWidth');
|
|
9121
9107
|
var moveNewHandle$1 = cornerstoneTools.importInternal('manipulators/moveNewHandle');
|
|
9122
|
-
var throttle$
|
|
9108
|
+
var throttle$3 = cornerstoneTools.importInternal('util/throttle');
|
|
9123
9109
|
var getPixelSpacing$3 = cornerstoneTools.importInternal('util/getPixelSpacing');
|
|
9124
9110
|
var lineSegDistance$2 = cornerstoneTools.importInternal('util/lineSegDistance');
|
|
9125
9111
|
var roundToDecimal = cornerstoneTools.importInternal('util/roundToDecimal');
|
|
@@ -9165,7 +9151,7 @@ var AngleTool = /*#__PURE__*/function (_BaseAnnotationPlusTo) {
|
|
|
9165
9151
|
};
|
|
9166
9152
|
_this = _super.call(this, props, defaultProps);
|
|
9167
9153
|
_this.preventNewMeasurement = false;
|
|
9168
|
-
_this.throttledUpdateCachedStats = throttle$
|
|
9154
|
+
_this.throttledUpdateCachedStats = throttle$3(_this.updateCachedStats, 110);
|
|
9169
9155
|
return _this;
|
|
9170
9156
|
}
|
|
9171
9157
|
|
|
@@ -9250,9 +9236,7 @@ var AngleTool = /*#__PURE__*/function (_BaseAnnotationPlusTo) {
|
|
|
9250
9236
|
var angle = Math.acos((Math.pow(sideALength, 2) + Math.pow(sideBLength, 2) - Math.pow(sideCLength, 2)) / (2 * sideALength * sideBLength));
|
|
9251
9237
|
angle *= 180 / Math.PI;
|
|
9252
9238
|
data.rAngle = roundToDecimal(angle, 2);
|
|
9253
|
-
data.invalidated = false;
|
|
9254
|
-
|
|
9255
|
-
onToolsUpdate(image, element);
|
|
9239
|
+
data.invalidated = false;
|
|
9256
9240
|
}
|
|
9257
9241
|
}, {
|
|
9258
9242
|
key: "renderToolData",
|
|
@@ -9355,7 +9339,10 @@ var AngleTool = /*#__PURE__*/function (_BaseAnnotationPlusTo) {
|
|
|
9355
9339
|
var _ret = _loop(i);
|
|
9356
9340
|
|
|
9357
9341
|
if (_ret === "continue") continue;
|
|
9358
|
-
}
|
|
9342
|
+
} // socket同步
|
|
9343
|
+
|
|
9344
|
+
|
|
9345
|
+
onToolsUpdate(image, element);
|
|
9359
9346
|
|
|
9360
9347
|
function textBoxText(data, rowPixelSpacing, colPixelSpacing) {
|
|
9361
9348
|
var suffix = !rowPixelSpacing || !colPixelSpacing ? ' (isotropic)' : '';
|
|
@@ -9430,7 +9417,7 @@ function length(vector) {
|
|
|
9430
9417
|
reactHotLoader.register(drawJoinedLines, "drawJoinedLines", "/Users/huyeqing/workspace/chainz/paladin/src/cornerstone-plus/cornerstone-tools-plus/AngleTool.js");
|
|
9431
9418
|
reactHotLoader.register(textBoxWidth$1, "textBoxWidth", "/Users/huyeqing/workspace/chainz/paladin/src/cornerstone-plus/cornerstone-tools-plus/AngleTool.js");
|
|
9432
9419
|
reactHotLoader.register(moveNewHandle$1, "moveNewHandle", "/Users/huyeqing/workspace/chainz/paladin/src/cornerstone-plus/cornerstone-tools-plus/AngleTool.js");
|
|
9433
|
-
reactHotLoader.register(throttle$
|
|
9420
|
+
reactHotLoader.register(throttle$3, "throttle", "/Users/huyeqing/workspace/chainz/paladin/src/cornerstone-plus/cornerstone-tools-plus/AngleTool.js");
|
|
9434
9421
|
reactHotLoader.register(getPixelSpacing$3, "getPixelSpacing", "/Users/huyeqing/workspace/chainz/paladin/src/cornerstone-plus/cornerstone-tools-plus/AngleTool.js");
|
|
9435
9422
|
reactHotLoader.register(lineSegDistance$2, "lineSegDistance", "/Users/huyeqing/workspace/chainz/paladin/src/cornerstone-plus/cornerstone-tools-plus/AngleTool.js");
|
|
9436
9423
|
reactHotLoader.register(roundToDecimal, "roundToDecimal", "/Users/huyeqing/workspace/chainz/paladin/src/cornerstone-plus/cornerstone-tools-plus/AngleTool.js");
|
|
@@ -9466,7 +9453,7 @@ var drawLinkedTextBox$5 = cornerstoneTools.importInternal('drawing/drawLinkedTex
|
|
|
9466
9453
|
var lineSegDistance$3 = cornerstoneTools.importInternal('util/lineSegDistance');
|
|
9467
9454
|
var roundToDecimal$1 = cornerstoneTools.importInternal('util/roundToDecimal');
|
|
9468
9455
|
var triggerEvent$1 = cornerstoneTools.importInternal('util/triggerEvent');
|
|
9469
|
-
var throttle$
|
|
9456
|
+
var throttle$4 = cornerstoneTools.importInternal('util/throttle');
|
|
9470
9457
|
var getPixelSpacing$4 = cornerstoneTools.importInternal('util/getPixelSpacing');
|
|
9471
9458
|
var getNewContext$5 = cornerstoneTools.importInternal('drawing/getNewContext');
|
|
9472
9459
|
var draw$5 = cornerstoneTools.importInternal('drawing/draw');
|
|
@@ -9513,7 +9500,7 @@ var CobbAngleTool = /*#__PURE__*/function (_BaseAnnotationPlusTo) {
|
|
|
9513
9500
|
};
|
|
9514
9501
|
_this = _super.call(this, props, defaultProps);
|
|
9515
9502
|
_this.hasIncomplete = false;
|
|
9516
|
-
_this.throttledUpdateCachedStats = throttle$
|
|
9503
|
+
_this.throttledUpdateCachedStats = throttle$4(_this.updateCachedStats, 110);
|
|
9517
9504
|
return _this;
|
|
9518
9505
|
}
|
|
9519
9506
|
|
|
@@ -9612,9 +9599,7 @@ var CobbAngleTool = /*#__PURE__*/function (_BaseAnnotationPlusTo) {
|
|
|
9612
9599
|
var angle = Math.acos(Math.abs((dx1 * dx2 + dy1 * dy2) / (Math.sqrt(dx1 * dx1 + dy1 * dy1) * Math.sqrt(dx2 * dx2 + dy2 * dy2))));
|
|
9613
9600
|
angle *= 180 / Math.PI;
|
|
9614
9601
|
data.rAngle = roundToDecimal$1(angle, 2);
|
|
9615
|
-
data.invalidated = false;
|
|
9616
|
-
|
|
9617
|
-
onToolsUpdate(image, element);
|
|
9602
|
+
data.invalidated = false;
|
|
9618
9603
|
}
|
|
9619
9604
|
}, {
|
|
9620
9605
|
key: "renderToolData",
|
|
@@ -9622,6 +9607,8 @@ var CobbAngleTool = /*#__PURE__*/function (_BaseAnnotationPlusTo) {
|
|
|
9622
9607
|
var _this2 = this;
|
|
9623
9608
|
|
|
9624
9609
|
var eventData = evt.detail;
|
|
9610
|
+
var image = eventData.image,
|
|
9611
|
+
element = eventData.element;
|
|
9625
9612
|
var drawHandlesOnHover = this.configuration.drawHandlesOnHover; // If we have no toolData for this element, return immediately as there is nothing to do
|
|
9626
9613
|
|
|
9627
9614
|
var toolData = getToolState$4(evt.currentTarget, this.name);
|
|
@@ -9691,7 +9678,10 @@ var CobbAngleTool = /*#__PURE__*/function (_BaseAnnotationPlusTo) {
|
|
|
9691
9678
|
var _ret = _loop(i);
|
|
9692
9679
|
|
|
9693
9680
|
if (_ret === "continue") continue;
|
|
9694
|
-
}
|
|
9681
|
+
} // socket同步
|
|
9682
|
+
|
|
9683
|
+
|
|
9684
|
+
onToolsUpdate(image, element);
|
|
9695
9685
|
|
|
9696
9686
|
function textBoxAnchorPoints(handles) {
|
|
9697
9687
|
return [handles.start, handles.start2, handles.end, handles.end2];
|
|
@@ -9849,7 +9839,7 @@ var CobbAngleTool = /*#__PURE__*/function (_BaseAnnotationPlusTo) {
|
|
|
9849
9839
|
reactHotLoader.register(lineSegDistance$3, "lineSegDistance", "/Users/huyeqing/workspace/chainz/paladin/src/cornerstone-plus/cornerstone-tools-plus/CobbAngleTool.js");
|
|
9850
9840
|
reactHotLoader.register(roundToDecimal$1, "roundToDecimal", "/Users/huyeqing/workspace/chainz/paladin/src/cornerstone-plus/cornerstone-tools-plus/CobbAngleTool.js");
|
|
9851
9841
|
reactHotLoader.register(triggerEvent$1, "triggerEvent", "/Users/huyeqing/workspace/chainz/paladin/src/cornerstone-plus/cornerstone-tools-plus/CobbAngleTool.js");
|
|
9852
|
-
reactHotLoader.register(throttle$
|
|
9842
|
+
reactHotLoader.register(throttle$4, "throttle", "/Users/huyeqing/workspace/chainz/paladin/src/cornerstone-plus/cornerstone-tools-plus/CobbAngleTool.js");
|
|
9853
9843
|
reactHotLoader.register(getPixelSpacing$4, "getPixelSpacing", "/Users/huyeqing/workspace/chainz/paladin/src/cornerstone-plus/cornerstone-tools-plus/CobbAngleTool.js");
|
|
9854
9844
|
reactHotLoader.register(getNewContext$5, "getNewContext", "/Users/huyeqing/workspace/chainz/paladin/src/cornerstone-plus/cornerstone-tools-plus/CobbAngleTool.js");
|
|
9855
9845
|
reactHotLoader.register(draw$5, "draw", "/Users/huyeqing/workspace/chainz/paladin/src/cornerstone-plus/cornerstone-tools-plus/CobbAngleTool.js");
|
|
@@ -23975,7 +23965,7 @@ var _cornerstoneTools$imp$5 = cornerstoneTools.importInternal('tools/cursors'),
|
|
|
23975
23965
|
probeCursor = _cornerstoneTools$imp$5.probeCursor;
|
|
23976
23966
|
|
|
23977
23967
|
var logger$4 = cornerstoneTools.importInternal('util/getLogger')('tools:annotation:ProbeTool');
|
|
23978
|
-
var throttle$
|
|
23968
|
+
var throttle$5 = cornerstoneTools.importInternal('util/throttle');
|
|
23979
23969
|
var external$d = cornerstoneTools.external,
|
|
23980
23970
|
toolColors$9 = cornerstoneTools.toolColors,
|
|
23981
23971
|
textStyle$4 = cornerstoneTools.textStyle,
|
|
@@ -24010,7 +24000,7 @@ var ProbeTool = /*#__PURE__*/function (_BaseAnnotationPlusTo) {
|
|
|
24010
24000
|
}
|
|
24011
24001
|
};
|
|
24012
24002
|
_this = _super.call(this, props, defaultProps);
|
|
24013
|
-
_this.throttledUpdateCachedStats = throttle$
|
|
24003
|
+
_this.throttledUpdateCachedStats = throttle$5(_this.updateCachedStats, 110);
|
|
24014
24004
|
return _this;
|
|
24015
24005
|
}
|
|
24016
24006
|
|
|
@@ -24088,9 +24078,7 @@ var ProbeTool = /*#__PURE__*/function (_BaseAnnotationPlusTo) {
|
|
|
24088
24078
|
}
|
|
24089
24079
|
|
|
24090
24080
|
data.cachedStats = stats;
|
|
24091
|
-
data.invalidated = false;
|
|
24092
|
-
|
|
24093
|
-
onToolsUpdate(image, element);
|
|
24081
|
+
data.invalidated = false;
|
|
24094
24082
|
}
|
|
24095
24083
|
}, {
|
|
24096
24084
|
key: "renderToolData",
|
|
@@ -24178,7 +24166,10 @@ var ProbeTool = /*#__PURE__*/function (_BaseAnnotationPlusTo) {
|
|
|
24178
24166
|
var _ret = _loop(i);
|
|
24179
24167
|
|
|
24180
24168
|
if (_ret === "continue") continue;
|
|
24181
|
-
}
|
|
24169
|
+
} // socket同步
|
|
24170
|
+
|
|
24171
|
+
|
|
24172
|
+
onToolsUpdate(image, element);
|
|
24182
24173
|
}
|
|
24183
24174
|
}, {
|
|
24184
24175
|
key: "__reactstandin__regenerateByEval",
|
|
@@ -24205,7 +24196,7 @@ var ProbeTool = /*#__PURE__*/function (_BaseAnnotationPlusTo) {
|
|
|
24205
24196
|
reactHotLoader.register(calculateSUV$2, "calculateSUV", "/Users/huyeqing/workspace/chainz/paladin/src/cornerstone-plus/cornerstone-tools-plus/ProbeTool.js");
|
|
24206
24197
|
reactHotLoader.register(probeCursor, "probeCursor", "/Users/huyeqing/workspace/chainz/paladin/src/cornerstone-plus/cornerstone-tools-plus/ProbeTool.js");
|
|
24207
24198
|
reactHotLoader.register(logger$4, "logger", "/Users/huyeqing/workspace/chainz/paladin/src/cornerstone-plus/cornerstone-tools-plus/ProbeTool.js");
|
|
24208
|
-
reactHotLoader.register(throttle$
|
|
24199
|
+
reactHotLoader.register(throttle$5, "throttle", "/Users/huyeqing/workspace/chainz/paladin/src/cornerstone-plus/cornerstone-tools-plus/ProbeTool.js");
|
|
24209
24200
|
reactHotLoader.register(external$d, "external", "/Users/huyeqing/workspace/chainz/paladin/src/cornerstone-plus/cornerstone-tools-plus/ProbeTool.js");
|
|
24210
24201
|
reactHotLoader.register(toolColors$9, "toolColors", "/Users/huyeqing/workspace/chainz/paladin/src/cornerstone-plus/cornerstone-tools-plus/ProbeTool.js");
|
|
24211
24202
|
reactHotLoader.register(textStyle$4, "textStyle", "/Users/huyeqing/workspace/chainz/paladin/src/cornerstone-plus/cornerstone-tools-plus/ProbeTool.js");
|
|
@@ -24889,9 +24880,7 @@ var CTRTool = /*#__PURE__*/function (_BaseAnnotationPlusTo) {
|
|
|
24889
24880
|
|
|
24890
24881
|
data.length = length;
|
|
24891
24882
|
data.imageLength = imageLength;
|
|
24892
|
-
data.invalidated = false;
|
|
24893
|
-
|
|
24894
|
-
onToolsUpdate(image, element);
|
|
24883
|
+
data.invalidated = false;
|
|
24895
24884
|
}
|
|
24896
24885
|
}, {
|
|
24897
24886
|
key: "renderToolData",
|
|
@@ -24995,7 +24984,10 @@ var CTRTool = /*#__PURE__*/function (_BaseAnnotationPlusTo) {
|
|
|
24995
24984
|
var _ret = _loop(i);
|
|
24996
24985
|
|
|
24997
24986
|
if (_ret === "continue") continue;
|
|
24998
|
-
}
|
|
24987
|
+
} // socket同步
|
|
24988
|
+
|
|
24989
|
+
|
|
24990
|
+
onToolsUpdate(image, element);
|
|
24999
24991
|
}
|
|
25000
24992
|
}, {
|
|
25001
24993
|
key: "addNewMeasurement",
|
|
@@ -44473,7 +44465,8 @@ var DicomTool = /*#__PURE__*/function (_Component) {
|
|
|
44473
44465
|
VR = _this$props.VR,
|
|
44474
44466
|
VRCenterPointShow = _this$props.VRCenterPointShow,
|
|
44475
44467
|
VRModeText = _this$props.VRModeText,
|
|
44476
|
-
isMobile = _this$props.isMobile
|
|
44468
|
+
isMobile = _this$props.isMobile,
|
|
44469
|
+
windowLayoutType = _this$props.windowLayoutType;
|
|
44477
44470
|
|
|
44478
44471
|
if (VR) {
|
|
44479
44472
|
if (this.toolsMap) {
|
|
@@ -44502,9 +44495,12 @@ var DicomTool = /*#__PURE__*/function (_Component) {
|
|
|
44502
44495
|
|
|
44503
44496
|
var FlattenMode = DicomToolFlattenMode;
|
|
44504
44497
|
|
|
44505
|
-
if (
|
|
44498
|
+
if (windowLayoutType) {
|
|
44506
44499
|
// 竖屏
|
|
44507
|
-
FlattenMode = DicomToolFlattenMode$1;
|
|
44500
|
+
if (windowLayoutType === 'vertical') FlattenMode = DicomToolFlattenMode$1;
|
|
44501
|
+
} else {
|
|
44502
|
+
// 竖屏
|
|
44503
|
+
if (width < height) FlattenMode = DicomToolFlattenMode$1;
|
|
44508
44504
|
}
|
|
44509
44505
|
|
|
44510
44506
|
return /*#__PURE__*/React__default.createElement("div", {
|
|
@@ -47693,6 +47689,7 @@ var DicomViewport = /*#__PURE__*/function (_Component) {
|
|
|
47693
47689
|
return;
|
|
47694
47690
|
}
|
|
47695
47691
|
|
|
47692
|
+
_this.props.onResizeEmit && _this.props.onResizeEmit();
|
|
47696
47693
|
cornerstone.resize(_this.element, true);
|
|
47697
47694
|
});
|
|
47698
47695
|
|
|
@@ -49304,7 +49301,8 @@ var DicomLayout = /*#__PURE__*/function (_Component) {
|
|
|
49304
49301
|
onViewportMouseDown: _this2.onViewportMouseDown,
|
|
49305
49302
|
onCustomScroll: _this2.onCustomScroll,
|
|
49306
49303
|
onDrop: _this2.props.onDrop,
|
|
49307
|
-
showAIResult: _this2.props.showAIResult
|
|
49304
|
+
showAIResult: _this2.props.showAIResult,
|
|
49305
|
+
onResizeEmit: _this2.props.onResizeEmit
|
|
49308
49306
|
});
|
|
49309
49307
|
}));
|
|
49310
49308
|
})), showVerticalScroll && /*#__PURE__*/React__default.createElement("div", {
|
|
@@ -49474,10 +49472,13 @@ var mergeProps$e = function mergeProps(propsFromState, propsFromDispatch, ownPro
|
|
|
49474
49472
|
currentScrollLine = propsFromState.currentScrollLine,
|
|
49475
49473
|
lastActiveIndex = propsFromState.lastActiveIndex; // 此处open/close onepickmode里包含scrollLine的设置是为了避免重复的render
|
|
49476
49474
|
|
|
49475
|
+
var resizeIndex = 0;
|
|
49476
|
+
|
|
49477
49477
|
if (onePickMode) {
|
|
49478
49478
|
// 当前是op 即将进入custom 回到lastScrollLine
|
|
49479
49479
|
propsFromDispatch.closeOnePickLayout(lastScrollLine);
|
|
49480
49480
|
propsFromDispatch.setActiveIndex(lastActiveIndex);
|
|
49481
|
+
resizeIndex = lastActiveIndex;
|
|
49481
49482
|
} else {
|
|
49482
49483
|
// 当前是custom 即将进入op
|
|
49483
49484
|
// 自定义布局为1*1时不触发
|
|
@@ -49494,6 +49495,15 @@ var mergeProps$e = function mergeProps(propsFromState, propsFromDispatch, ownPro
|
|
|
49494
49495
|
linkSynchronizer.destroy();
|
|
49495
49496
|
linkScrollSynchronizer.destroy();
|
|
49496
49497
|
}
|
|
49498
|
+
|
|
49499
|
+
setTimeout(function () {
|
|
49500
|
+
try {
|
|
49501
|
+
var element = getElement(resizeIndex);
|
|
49502
|
+
cornerstone.resize(element, true);
|
|
49503
|
+
} catch (e) {
|
|
49504
|
+
console.log('ignore element not enabled event');
|
|
49505
|
+
}
|
|
49506
|
+
});
|
|
49497
49507
|
},
|
|
49498
49508
|
// 首次加载把激活状态的element添加到sync中
|
|
49499
49509
|
onImageFirstRender: function onImageFirstRender(index) {
|
|
@@ -51576,6 +51586,43 @@ var _default$18 = ConnectedVR;
|
|
|
51576
51586
|
enterModule && enterModule(module);
|
|
51577
51587
|
})();
|
|
51578
51588
|
|
|
51589
|
+
var __signature__$3c = typeof reactHotLoaderGlobal !== 'undefined' ? reactHotLoaderGlobal.default.signature : function (a) {
|
|
51590
|
+
return a;
|
|
51591
|
+
};
|
|
51592
|
+
|
|
51593
|
+
function colorMapFix(viewportData) {
|
|
51594
|
+
viewportData.imageViewports = lodash$1.map(viewportData.imageViewports, function (seriesViewportArr) {
|
|
51595
|
+
return lodash$1.map(seriesViewportArr, function (item) {
|
|
51596
|
+
if (item.colorMapId) {
|
|
51597
|
+
item.colormap = cornerstone.colors.getColormap(item.colorMapId);
|
|
51598
|
+
}
|
|
51599
|
+
|
|
51600
|
+
return item;
|
|
51601
|
+
});
|
|
51602
|
+
});
|
|
51603
|
+
return viewportData;
|
|
51604
|
+
}
|
|
51605
|
+
|
|
51606
|
+
(function () {
|
|
51607
|
+
var reactHotLoader = typeof reactHotLoaderGlobal !== 'undefined' ? reactHotLoaderGlobal.default : undefined;
|
|
51608
|
+
|
|
51609
|
+
if (!reactHotLoader) {
|
|
51610
|
+
return;
|
|
51611
|
+
}
|
|
51612
|
+
|
|
51613
|
+
reactHotLoader.register(colorMapFix, "colorMapFix", "/Users/huyeqing/workspace/chainz/paladin/src/utils/colorMapMethod.js");
|
|
51614
|
+
})();
|
|
51615
|
+
|
|
51616
|
+
(function () {
|
|
51617
|
+
var leaveModule = typeof reactHotLoaderGlobal !== 'undefined' ? reactHotLoaderGlobal.leaveModule : undefined;
|
|
51618
|
+
leaveModule && leaveModule(module);
|
|
51619
|
+
})();
|
|
51620
|
+
|
|
51621
|
+
(function () {
|
|
51622
|
+
var enterModule = typeof reactHotLoaderGlobal !== 'undefined' ? reactHotLoaderGlobal.enterModule : undefined;
|
|
51623
|
+
enterModule && enterModule(module);
|
|
51624
|
+
})();
|
|
51625
|
+
|
|
51579
51626
|
function _createForOfIteratorHelper$d(o, allowArrayLike) { var it; if (typeof Symbol === "undefined" || o[Symbol.iterator] == null) { if (Array.isArray(o) || (it = _unsupportedIterableToArray$f(o)) || allowArrayLike && o && typeof o.length === "number") { if (it) o = it; var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e) { throw _e; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var normalCompletion = true, didErr = false, err; return { s: function s() { it = o[Symbol.iterator](); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e2) { didErr = true; err = _e2; }, f: function f() { try { if (!normalCompletion && it.return != null) it.return(); } finally { if (didErr) throw err; } } }; }
|
|
51580
51627
|
|
|
51581
51628
|
function _unsupportedIterableToArray$f(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray$f(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray$f(o, minLen); }
|
|
@@ -51586,7 +51633,7 @@ function _createSuper$1i(Derived) { var hasNativeReflectConstruct = _isNativeRef
|
|
|
51586
51633
|
|
|
51587
51634
|
function _isNativeReflectConstruct$1i() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
|
|
51588
51635
|
|
|
51589
|
-
var __signature__$
|
|
51636
|
+
var __signature__$3d = typeof reactHotLoaderGlobal !== 'undefined' ? reactHotLoaderGlobal.default.signature : function (a) {
|
|
51590
51637
|
return a;
|
|
51591
51638
|
};
|
|
51592
51639
|
|
|
@@ -51838,7 +51885,7 @@ var DicomView = /*#__PURE__*/function (_Component) {
|
|
|
51838
51885
|
if (value.cornerstoneState) {
|
|
51839
51886
|
// 从server获取当前viewport数据 更新element 然后重新渲染
|
|
51840
51887
|
// 序列模式 图像模式
|
|
51841
|
-
var cornerstoneState = value.cornerstoneState;
|
|
51888
|
+
var cornerstoneState = colorMapFix(value.cornerstoneState);
|
|
51842
51889
|
set$1('all', cornerstoneState);
|
|
51843
51890
|
var imageViewports = cornerstoneState.imageViewports;
|
|
51844
51891
|
|
|
@@ -51969,7 +52016,9 @@ var DicomView = /*#__PURE__*/function (_Component) {
|
|
|
51969
52016
|
break;
|
|
51970
52017
|
|
|
51971
52018
|
case "cornerstone_state_change":
|
|
51972
|
-
|
|
52019
|
+
var _data = colorMapFix(data);
|
|
52020
|
+
|
|
52021
|
+
set$1('all', _data);
|
|
51973
52022
|
break;
|
|
51974
52023
|
|
|
51975
52024
|
case "cornerstone_measurement_reset":
|
|
@@ -52061,12 +52110,16 @@ var DicomView = /*#__PURE__*/function (_Component) {
|
|
|
52061
52110
|
operateCentesisPath: this.props.operateCentesisPath,
|
|
52062
52111
|
helpLink: this.props.helpLink,
|
|
52063
52112
|
changeWindowSet: this.props.changeWindowSet,
|
|
52064
|
-
study: this.state.study
|
|
52113
|
+
study: this.state.study,
|
|
52114
|
+
windowLayoutType: this.props.windowLayoutType
|
|
52065
52115
|
}));
|
|
52066
52116
|
var DicomLayout = /*#__PURE__*/React__default.createElement(DicomLayoutContainerWrap, null, viewMode === '2D' && (this.props.mode === 'seriesMode' ? /*#__PURE__*/React__default.createElement(_default$14, {
|
|
52067
52117
|
series: this.props.series,
|
|
52068
|
-
showAIResult: this.props.showAIResult
|
|
52069
|
-
|
|
52118
|
+
showAIResult: this.props.showAIResult,
|
|
52119
|
+
onResizeEmit: this.props.onResizeEmit
|
|
52120
|
+
}) : /*#__PURE__*/React__default.createElement(_default$15, {
|
|
52121
|
+
onResizeEmit: this.props.onResizeEmit
|
|
52122
|
+
})), viewMode === 'MPR' && /*#__PURE__*/React__default.createElement(_default$17, null), viewMode === 'VR' && /*#__PURE__*/React__default.createElement(_default$18, null), viewMode === 'Surgery' && /*#__PURE__*/React__default.createElement(_default$16, null));
|
|
52070
52123
|
var DicomThumbnail = /*#__PURE__*/React__default.createElement("div", {
|
|
52071
52124
|
className: "paladin-dicomView-dicomThumbnailWrapper"
|
|
52072
52125
|
}, /*#__PURE__*/React__default.createElement(_default$10, {
|
|
@@ -52084,21 +52137,26 @@ var DicomView = /*#__PURE__*/function (_Component) {
|
|
|
52084
52137
|
}, DicomTool, /*#__PURE__*/React__default.createElement("div", {
|
|
52085
52138
|
className: "paladin-dicomView-pcmobileWrapper"
|
|
52086
52139
|
}, DicomLayout, this.props.showDicomThumbnail && DicomThumbnail));
|
|
52140
|
+
var verticalLayout = /*#__PURE__*/React__default.createElement("div", {
|
|
52141
|
+
style: dcStyle
|
|
52142
|
+
}, /*#__PURE__*/React__default.createElement("div", {
|
|
52143
|
+
style: {
|
|
52144
|
+
display: 'flex',
|
|
52145
|
+
flexDirection: 'column',
|
|
52146
|
+
flex: 1,
|
|
52147
|
+
width: 0
|
|
52148
|
+
}
|
|
52149
|
+
}, DicomLayout, this.props.showDicomThumbnail && DicomThumbnail, DicomTool));
|
|
52087
52150
|
var width = window.innerWidth;
|
|
52088
52151
|
var height = window.innerHeight;
|
|
52089
52152
|
|
|
52090
|
-
if (
|
|
52091
|
-
|
|
52092
|
-
|
|
52093
|
-
|
|
52094
|
-
|
|
52095
|
-
|
|
52096
|
-
|
|
52097
|
-
flexDirection: 'column',
|
|
52098
|
-
flex: 1,
|
|
52099
|
-
width: 0
|
|
52100
|
-
}
|
|
52101
|
-
}, DicomLayout, this.props.showDicomThumbnail && DicomThumbnail, DicomTool));
|
|
52153
|
+
if (this.props.windowLayoutType) {
|
|
52154
|
+
if (this.props.windowLayoutType === 'vertical') pc = verticalLayout;
|
|
52155
|
+
} else {
|
|
52156
|
+
if (width < height && toolMode === 'flatten') {
|
|
52157
|
+
// 竖屏 + 展开
|
|
52158
|
+
pc = verticalLayout;
|
|
52159
|
+
}
|
|
52102
52160
|
}
|
|
52103
52161
|
|
|
52104
52162
|
return (
|
|
@@ -52157,7 +52215,7 @@ function ownKeys$E(object, enumerableOnly) { var keys = Object.keys(object); if
|
|
|
52157
52215
|
|
|
52158
52216
|
function _objectSpread$F(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys$E(Object(source), true).forEach(function (key) { defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys$E(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
|
|
52159
52217
|
|
|
52160
|
-
var __signature__$
|
|
52218
|
+
var __signature__$3e = typeof reactHotLoaderGlobal !== 'undefined' ? reactHotLoaderGlobal.default.signature : function (a) {
|
|
52161
52219
|
return a;
|
|
52162
52220
|
};
|
|
52163
52221
|
var scroll = _default$E.importInternal('util/scroll');
|
|
@@ -52717,7 +52775,7 @@ var _default$19 = ConnectedDicomView;
|
|
|
52717
52775
|
enterModule && enterModule(module);
|
|
52718
52776
|
})();
|
|
52719
52777
|
|
|
52720
|
-
var __signature__$
|
|
52778
|
+
var __signature__$3f = typeof reactHotLoaderGlobal !== 'undefined' ? reactHotLoaderGlobal.default.signature : function (a) {
|
|
52721
52779
|
return a;
|
|
52722
52780
|
};
|
|
52723
52781
|
var _default$1a = _default$19;
|