@cornerstonejs/core 0.2.0 → 0.2.3

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 (21) hide show
  1. package/dist/cjs/RenderingEngine/RenderingEngine.d.ts +3 -1
  2. package/dist/cjs/RenderingEngine/RenderingEngine.js +30 -6
  3. package/dist/cjs/RenderingEngine/RenderingEngine.js.map +1 -1
  4. package/dist/cjs/RenderingEngine/helpers/cpuFallback/rendering/generateLut.js +2 -2
  5. package/dist/cjs/RenderingEngine/helpers/cpuFallback/rendering/{getModalityLUT.d.ts → getModalityLut.d.ts} +0 -0
  6. package/dist/cjs/RenderingEngine/helpers/cpuFallback/rendering/{getModalityLUT.js → getModalityLut.js} +1 -1
  7. package/dist/cjs/RenderingEngine/helpers/cpuFallback/rendering/{getModalityLUT.js.map → getModalityLut.js.map} +1 -1
  8. package/dist/cjs/types/IViewport.d.ts +7 -1
  9. package/dist/esm/RenderingEngine/RenderingEngine.d.ts +3 -1
  10. package/dist/esm/RenderingEngine/RenderingEngine.js +36 -6
  11. package/dist/esm/RenderingEngine/RenderingEngine.js.map +1 -1
  12. package/dist/esm/RenderingEngine/helpers/cpuFallback/rendering/generateLut.js +2 -2
  13. package/dist/esm/RenderingEngine/helpers/cpuFallback/rendering/{getModalityLUT.d.ts → getModalityLut.d.ts} +0 -0
  14. package/dist/esm/RenderingEngine/helpers/cpuFallback/rendering/{getModalityLUT.js → getModalityLut.js} +1 -1
  15. package/dist/esm/RenderingEngine/helpers/cpuFallback/rendering/{getModalityLUT.js.map → getModalityLut.js.map} +1 -1
  16. package/dist/esm/types/IViewport.d.ts +7 -1
  17. package/dist/umd/index.js +1 -1
  18. package/dist/umd/index.js.map +1 -1
  19. package/package.json +5 -4
  20. package/dist/core.d.ts +0 -2456
  21. package/dist/esm/tsdoc-metadata.json +0 -11
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cornerstonejs/core",
3
- "version": "0.2.0",
3
+ "version": "0.2.3",
4
4
  "description": "",
5
5
  "main": "dist/umd/index.js",
6
6
  "types": "dist/esm/index.d.ts",
@@ -18,8 +18,9 @@
18
18
  "build:umd": "cross-env NODE_ENV=production webpack --config .webpack/webpack.prod.js",
19
19
  "build:all": "yarn run build:umd && yarn run build:cjs && yarn run build:esm",
20
20
  "copy-dts": "copyfiles -u 1 \"src/**/*.d.ts\" dist/cjs && copyfiles -u 1 \"src/**/*.d.ts\" dist/esm",
21
- "build": "yarn run build:all && yarn run copy-dts && api-extractor --debug run",
22
- "build:update-api": "yarn run build:all && yarn run copy-dts && api-extractor run --local",
21
+ "build": "yarn run build:all && yarn run copy-dts",
22
+ "api-check": "api-extractor --debug run",
23
+ "build:update-api": "yarn run build && api-extractor run --local",
23
24
  "prepublishOnly": "yarn run build",
24
25
  "example": "node ../../utils/ExampleRunner/example-runner-cli.js"
25
26
  },
@@ -48,5 +49,5 @@
48
49
  "type": "individual",
49
50
  "url": "https://ohif.org/donate"
50
51
  },
51
- "gitHead": "1e4d7173c13cce2163a77f6a69272bc87e9c27a4"
52
+ "gitHead": "e7c4fed864690d1b6155fe2ac19ef01204be4d7d"
52
53
  }