@cornerstonejs/tools 2.0.0-beta.15 → 2.0.0-beta.16

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 (2) hide show
  1. package/package.json +4 -4
  2. package/src/index.ts +0 -170
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@cornerstonejs/tools",
3
- "version": "2.0.0-beta.15",
3
+ "version": "2.0.0-beta.16",
4
4
  "description": "Cornerstone3D Tools",
5
- "main": "src/index.ts",
5
+ "main": "dist/umd/index.js",
6
6
  "types": "dist/esm/index.d.ts",
7
7
  "module": "dist/esm/index.js",
8
8
  "repository": "https://github.com/cornerstonejs/cornerstone3D",
@@ -34,7 +34,7 @@
34
34
  "webpack:watch": "webpack --mode development --progress --watch --config ./.webpack/webpack.dev.js"
35
35
  },
36
36
  "dependencies": {
37
- "@cornerstonejs/core": "^2.0.0-beta.15",
37
+ "@cornerstonejs/core": "^2.0.0-beta.16",
38
38
  "@icr/polyseg-wasm": "0.4.0",
39
39
  "@types/offscreencanvas": "2019.7.3",
40
40
  "comlink": "^4.4.1",
@@ -64,5 +64,5 @@
64
64
  "type": "individual",
65
65
  "url": "https://ohif.org/donate"
66
66
  },
67
- "gitHead": "9b3db0751fd1595ccc38f6f42b37a79fcb59092d"
67
+ "gitHead": "d0e9bfba760e2ec0852330c40f8813f3e5860010"
68
68
  }
package/src/index.ts DELETED
@@ -1,170 +0,0 @@
1
- import { init, destroy } from './init';
2
- import {
3
- addTool,
4
- removeTool,
5
- state,
6
- ToolGroupManager,
7
- SynchronizerManager,
8
- Synchronizer,
9
- cancelActiveManipulations,
10
- } from './store';
11
-
12
- import * as CONSTANTS from './constants';
13
-
14
- // Name spaces
15
- import * as synchronizers from './synchronizers';
16
- import * as drawing from './drawingSvg';
17
- import * as utilities from './utilities';
18
- import * as cursors from './cursors';
19
- import * as Types from './types';
20
- import * as annotation from './stateManagement/annotation';
21
- import * as segmentation from './stateManagement/segmentation';
22
-
23
- import {
24
- BaseTool,
25
- AnnotationTool,
26
- AnnotationDisplayTool,
27
- PanTool,
28
- TrackballRotateTool,
29
- DragProbeTool,
30
- WindowLevelTool,
31
- ZoomTool,
32
- StackScrollTool,
33
- PlanarRotateTool,
34
- StackScrollMouseWheelTool,
35
- VolumeRotateMouseWheelTool,
36
- MIPJumpToClickTool,
37
- LengthTool,
38
- ProbeTool,
39
- RectangleROITool,
40
- EllipticalROITool,
41
- CircleROITool,
42
- SplineROITool,
43
- SplineContourSegmentationTool,
44
- BidirectionalTool,
45
- PlanarFreehandROITool,
46
- PlanarFreehandContourSegmentationTool,
47
- LivewireContourTool,
48
- LivewireContourSegmentationTool,
49
- ArrowAnnotateTool,
50
- KeyImageTool,
51
- CrosshairsTool,
52
- ReferenceLinesTool,
53
- RectangleScissorsTool,
54
- CircleScissorsTool,
55
- SphereScissorsTool,
56
- RectangleROIThresholdTool,
57
- RectangleROIStartEndThresholdTool,
58
- CircleROIStartEndThresholdTool,
59
- SegmentationDisplayTool,
60
- BrushTool,
61
- AngleTool,
62
- CobbAngleTool,
63
- UltrasoundDirectionalTool,
64
- MagnifyTool,
65
- AdvancedMagnifyTool,
66
- ReferenceCursors,
67
- ReferenceLines,
68
- PaintFillTool,
69
- ScaleOverlayTool,
70
- OrientationMarkerTool,
71
- OverlayGridTool,
72
- SegmentationIntersectionTool,
73
- EraserTool,
74
- SculptorTool,
75
- SegmentSelectTool,
76
- WindowLevelRegionTool,
77
- } from './tools';
78
-
79
- import VideoRedactionTool from './tools/annotation/VideoRedactionTool';
80
-
81
- import * as Enums from './enums';
82
-
83
- export {
84
- VideoRedactionTool,
85
- //
86
- init,
87
- destroy,
88
- addTool,
89
- removeTool,
90
- cancelActiveManipulations,
91
- // Base Tools
92
- BaseTool,
93
- AnnotationTool,
94
- AnnotationDisplayTool,
95
- // Manipulation Tools
96
- PanTool,
97
- TrackballRotateTool,
98
- DragProbeTool,
99
- WindowLevelTool,
100
- WindowLevelRegionTool,
101
- ZoomTool,
102
- StackScrollTool,
103
- PlanarRotateTool,
104
- StackScrollMouseWheelTool,
105
- VolumeRotateMouseWheelTool,
106
- MIPJumpToClickTool,
107
- // Annotation Tools
108
- LengthTool,
109
- CrosshairsTool,
110
- ReferenceLinesTool,
111
- OverlayGridTool,
112
- SegmentationIntersectionTool,
113
- ProbeTool,
114
- RectangleROITool,
115
- EllipticalROITool,
116
- CircleROITool,
117
- SplineROITool,
118
- SplineContourSegmentationTool,
119
- BidirectionalTool,
120
- PlanarFreehandROITool,
121
- PlanarFreehandContourSegmentationTool,
122
- LivewireContourTool,
123
- LivewireContourSegmentationTool,
124
- ArrowAnnotateTool,
125
- AngleTool,
126
- CobbAngleTool,
127
- UltrasoundDirectionalTool,
128
- KeyImageTool,
129
- MagnifyTool,
130
- AdvancedMagnifyTool,
131
- ReferenceCursors,
132
- ReferenceLines,
133
- ScaleOverlayTool,
134
- SculptorTool,
135
- EraserTool,
136
- // Segmentation Display
137
- SegmentationDisplayTool,
138
- // Segmentation Editing Tools
139
- RectangleScissorsTool,
140
- CircleScissorsTool,
141
- SphereScissorsTool,
142
- RectangleROIThresholdTool,
143
- RectangleROIStartEndThresholdTool,
144
- CircleROIStartEndThresholdTool,
145
- BrushTool,
146
- OrientationMarkerTool,
147
- SegmentSelectTool,
148
- // Synchronizers
149
- synchronizers,
150
- Synchronizer,
151
- SynchronizerManager,
152
- PaintFillTool,
153
- Types,
154
- state,
155
- // ToolGroups
156
- ToolGroupManager,
157
- // Enums
158
- Enums,
159
- // Constants
160
- CONSTANTS,
161
- // Drawing API
162
- drawing,
163
- // Annotation
164
- annotation,
165
- // Segmentations
166
- segmentation,
167
- // Utilities
168
- utilities,
169
- cursors,
170
- };