hellfire 0.32.4 → 0.32.5

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 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.32.5](http://10.16.100.57/diffusion/115/paladin/compare/v0.32.4...v0.32.5) (2026-01-05)
6
+
7
+
8
+
5
9
  ## [0.32.4](http://10.16.100.57/diffusion/115/paladin/compare/v0.32.3...v0.32.4) (2025-12-19)
6
10
 
7
11
 
package/dist/index.js CHANGED
@@ -28930,7 +28930,7 @@ var AIAnalysisOverlayTool = /*#__PURE__*/function (_BaseAnnotationPlusTo) {
28930
28930
  lodash$1.forEach(this.aiResult, function (item, i) {
28931
28931
  if (item.seriesUid === seriesInstanceUID) {
28932
28932
  var segmentations = lodash$1.map(item.segmentations, function (segmentation) {
28933
- var info = lodash$1.pick(item, ['type', 'risk', 'intensity', 'avgAxisDiameter_mm', 'longAxisDiameter_mm', 'shortAxisDiameter_mm', 'characteristic', 'typeWithTexture']);
28933
+ var info = lodash$1.pick(item, ['type', 'risk', 'intensity', 'avgAxisDiameter_mm', 'longAxisDiameter_mm', 'shortAxisDiameter_mm', 'characteristic', 'typeWithTexture', 'lobe']);
28934
28934
 
28935
28935
  return _objectSpread$c(_objectSpread$c({}, segmentation), {}, {
28936
28936
  index: i + 1,
@@ -29006,8 +29006,15 @@ function getAIText(data) {
29006
29006
  type = _data$info.type,
29007
29007
  risk = _data$info.risk,
29008
29008
  typeWithTexture = _data$info.typeWithTexture,
29009
+ lobe = _data$info.lobe,
29009
29010
  index = data.index;
29010
- var title = "#".concat(index, " ").concat(typeWithTexture || inspectionTypeDic(type), " ").concat(riskTypeDic[risk] || '');
29011
+ var _lobe = '';
29012
+
29013
+ if (type === '骨折' && lobe) {
29014
+ _lobe = "(".concat(lobe, ")");
29015
+ }
29016
+
29017
+ var title = "#".concat(index, " ").concat(typeWithTexture || inspectionTypeDic(type), " ").concat(riskTypeDic[risk] || '', " ").concat(_lobe);
29011
29018
  var text = [title];
29012
29019
 
29013
29020
  if (type === 'nodule') {