larvitar 2.4.0 → 2.4.1
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/README.md +2 -2
- package/dist/imaging/imageRendering.d.ts +3 -2
- package/dist/larvitar.js +368 -365
- package/dist/larvitar.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -8,9 +8,9 @@
|
|
|
8
8
|
|
|
9
9
|
## Dicom Image Toolkit for CornerstoneJS
|
|
10
10
|
|
|
11
|
-
### Current version: 2.4.
|
|
11
|
+
### Current version: 2.4.1
|
|
12
12
|
|
|
13
|
-
### Latest Published Release: 2.4.
|
|
13
|
+
### Latest Published Release: 2.4.1
|
|
14
14
|
|
|
15
15
|
This library provides common DICOM functionalities to be used in web-applications: it's wrapper that simplifies the use of cornerstone-js environment.
|
|
16
16
|
|
|
@@ -125,8 +125,9 @@ export declare const resetViewports: (elementIds: string[], keys?: Array<"contra
|
|
|
125
125
|
* Update viewport data in store
|
|
126
126
|
* @instance
|
|
127
127
|
* @function updateViewportData
|
|
128
|
-
* @param {
|
|
129
|
-
* @param {
|
|
128
|
+
* @param {string} elementId - The html div id used for rendering or its DOM HTMLElement
|
|
129
|
+
* @param {Viewport} viewportData - The new viewport data
|
|
130
|
+
* @param {string} activeTool - The active tool on the viewport
|
|
130
131
|
*/
|
|
131
132
|
export declare const updateViewportData: (elementId: string, viewportData: Viewport, activeTool: string) => void;
|
|
132
133
|
/**
|