@cornerstonejs/tools 1.61.7 → 1.63.0

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.
Files changed (39) hide show
  1. package/dist/cjs/index.d.ts +2 -2
  2. package/dist/cjs/index.js +2 -1
  3. package/dist/cjs/index.js.map +1 -1
  4. package/dist/cjs/tools/index.d.ts +2 -1
  5. package/dist/cjs/tools/index.js +4 -1
  6. package/dist/cjs/tools/index.js.map +1 -1
  7. package/dist/cjs/tools/segmentation/CircleROIStartEndThresholdTool.d.ts +63 -0
  8. package/dist/cjs/tools/segmentation/CircleROIStartEndThresholdTool.js +347 -0
  9. package/dist/cjs/tools/segmentation/CircleROIStartEndThresholdTool.js.map +1 -0
  10. package/dist/cjs/tools/segmentation/RectangleROIStartEndThresholdTool.d.ts +3 -0
  11. package/dist/cjs/tools/segmentation/RectangleROIStartEndThresholdTool.js +73 -0
  12. package/dist/cjs/tools/segmentation/RectangleROIStartEndThresholdTool.js.map +1 -1
  13. package/dist/cjs/types/ToolSpecificAnnotationTypes.d.ts +34 -1
  14. package/dist/esm/index.js +2 -2
  15. package/dist/esm/index.js.map +1 -1
  16. package/dist/esm/tools/index.js +2 -1
  17. package/dist/esm/tools/index.js.map +1 -1
  18. package/dist/esm/tools/segmentation/CircleROIStartEndThresholdTool.js +342 -0
  19. package/dist/esm/tools/segmentation/CircleROIStartEndThresholdTool.js.map +1 -0
  20. package/dist/esm/tools/segmentation/RectangleROIStartEndThresholdTool.js +75 -2
  21. package/dist/esm/tools/segmentation/RectangleROIStartEndThresholdTool.js.map +1 -1
  22. package/dist/types/index.d.ts +2 -2
  23. package/dist/types/index.d.ts.map +1 -1
  24. package/dist/types/tools/index.d.ts +2 -1
  25. package/dist/types/tools/index.d.ts.map +1 -1
  26. package/dist/types/tools/segmentation/CircleROIStartEndThresholdTool.d.ts +64 -0
  27. package/dist/types/tools/segmentation/CircleROIStartEndThresholdTool.d.ts.map +1 -0
  28. package/dist/types/tools/segmentation/RectangleROIStartEndThresholdTool.d.ts +3 -0
  29. package/dist/types/tools/segmentation/RectangleROIStartEndThresholdTool.d.ts.map +1 -1
  30. package/dist/types/types/ToolSpecificAnnotationTypes.d.ts +34 -1
  31. package/dist/types/types/ToolSpecificAnnotationTypes.d.ts.map +1 -1
  32. package/dist/umd/index.js +1 -1
  33. package/dist/umd/index.js.map +1 -1
  34. package/package.json +3 -3
  35. package/src/index.ts +2 -0
  36. package/src/tools/index.ts +2 -0
  37. package/src/tools/segmentation/CircleROIStartEndThresholdTool.ts +677 -0
  38. package/src/tools/segmentation/RectangleROIStartEndThresholdTool.ts +134 -2
  39. package/src/types/ToolSpecificAnnotationTypes.ts +43 -8
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cornerstonejs/tools",
3
- "version": "1.61.7",
3
+ "version": "1.63.0",
4
4
  "description": "Cornerstone3D Tools",
5
5
  "main": "src/index.ts",
6
6
  "types": "dist/types/index.d.ts",
@@ -29,7 +29,7 @@
29
29
  "webpack:watch": "webpack --mode development --progress --watch --config ./.webpack/webpack.dev.js"
30
30
  },
31
31
  "dependencies": {
32
- "@cornerstonejs/core": "^1.61.7",
32
+ "@cornerstonejs/core": "^1.63.0",
33
33
  "@icr/polyseg-wasm": "0.4.0",
34
34
  "@types/offscreencanvas": "2019.7.3",
35
35
  "comlink": "^4.4.1",
@@ -59,5 +59,5 @@
59
59
  "type": "individual",
60
60
  "url": "https://ohif.org/donate"
61
61
  },
62
- "gitHead": "5a9ace306d9c82f9bbbe7844351b0113ea001da3"
62
+ "gitHead": "952379ee23e86f276b66bc7f58c4b37431a35a53"
63
63
  }
package/src/index.ts CHANGED
@@ -55,6 +55,7 @@ import {
55
55
  SphereScissorsTool,
56
56
  RectangleROIThresholdTool,
57
57
  RectangleROIStartEndThresholdTool,
58
+ CircleROIStartEndThresholdTool,
58
59
  SegmentationDisplayTool,
59
60
  BrushTool,
60
61
  AngleTool,
@@ -136,6 +137,7 @@ export {
136
137
  SphereScissorsTool,
137
138
  RectangleROIThresholdTool,
138
139
  RectangleROIStartEndThresholdTool,
140
+ CircleROIStartEndThresholdTool,
139
141
  BrushTool,
140
142
  OrientationMarkerTool,
141
143
  SegmentSelectTool,
@@ -48,6 +48,7 @@ import CircleScissorsTool from './segmentation/CircleScissorsTool';
48
48
  import SphereScissorsTool from './segmentation/SphereScissorsTool';
49
49
  import RectangleROIThresholdTool from './segmentation/RectangleROIThresholdTool';
50
50
  import RectangleROIStartEndThresholdTool from './segmentation/RectangleROIStartEndThresholdTool';
51
+ import CircleROIStartEndThresholdTool from './segmentation/CircleROIStartEndThresholdTool';
51
52
  import BrushTool from './segmentation/BrushTool';
52
53
  import PaintFillTool from './segmentation/PaintFillTool';
53
54
  import OrientationMarkerTool from './OrientationMarkerTool';
@@ -100,6 +101,7 @@ export {
100
101
  SphereScissorsTool,
101
102
  RectangleROIThresholdTool,
102
103
  RectangleROIStartEndThresholdTool,
104
+ CircleROIStartEndThresholdTool,
103
105
  SplineContourSegmentationTool,
104
106
  BrushTool,
105
107
  MagnifyTool,