@cornerstonejs/core 0.101.0 → 0.103.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cornerstonejs/core",
3
- "version": "0.101.0",
3
+ "version": "0.103.0",
4
4
  "description": "",
5
5
  "main": "dist/umd/index.js",
6
6
  "types": "dist/esm/index.d.ts",
@@ -43,5 +43,5 @@
43
43
  "type": "individual",
44
44
  "url": "https://ohif.org/donate"
45
45
  },
46
- "gitHead": "186364d5ecda841550ca4928715a988ddf585c7e"
46
+ "gitHead": "4835116fc0224794a950736023c682c25e3be38b"
47
47
  }
@@ -116,7 +116,7 @@ class RenderingEngine implements IRenderingEngine {
116
116
  * 3) Adds the viewport
117
117
  *
118
118
  *
119
- * ```typescript
119
+ * ```
120
120
  * renderingEngine.enableElement({
121
121
  * viewportId: viewportId,
122
122
  * type: ViewportType.ORTHOGRAPHIC,
@@ -150,6 +150,7 @@ class RenderingEngine implements IRenderingEngine {
150
150
  if (viewport) {
151
151
  console.log('Viewport already exists, disabling it first');
152
152
  this.disableElement(viewportId);
153
+ console.log('Viewport disabled');
153
154
  }
154
155
 
155
156
  // 2.a) See if viewport uses a custom rendering pipeline.