@cornerstonejs/core 4.1.2 → 4.1.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.
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export type PixelDataTypedArray = Float32Array | Int16Array | Uint16Array | Uint8Array | Int8Array | Uint8ClampedArray | Uint32Array | Int32Array;
|
|
2
|
-
export type PixelDataTypedArrayString = 'Float32Array' | 'Int16Array' | 'Uint16Array' | 'Uint8Array' | 'Int8Array' | 'Uint8ClampedArray' | 'Uint32Array' | 'Int32Array' | 'none';
|
|
1
|
+
export type PixelDataTypedArray = Float32Array | Float64Array | Int16Array | Uint16Array | Uint8Array | Int8Array | Uint8ClampedArray | Uint32Array | Int32Array;
|
|
2
|
+
export type PixelDataTypedArrayString = 'Float32Array' | 'Float64Array' | 'Int16Array' | 'Uint16Array' | 'Uint8Array' | 'Int8Array' | 'Uint8ClampedArray' | 'Uint32Array' | 'Int32Array' | 'none';
|
|
@@ -74,6 +74,8 @@ function _determineDataType(imageIds, volumeMetadata) {
|
|
|
74
74
|
return 'Uint8Array';
|
|
75
75
|
case 32:
|
|
76
76
|
return 'Float32Array';
|
|
77
|
+
case 64:
|
|
78
|
+
return 'Float64Array';
|
|
77
79
|
default:
|
|
78
80
|
throw new Error(`Bits allocated of ${BitsAllocated} is not defined to generate scalarData for the volume.`);
|
|
79
81
|
}
|
package/dist/esm/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "4.1.
|
|
1
|
+
export declare const version = "4.1.3";
|
package/dist/esm/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const version = '4.1.
|
|
1
|
+
export const version = '4.1.3';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cornerstonejs/core",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.3",
|
|
4
4
|
"description": "Cornerstone3D Core",
|
|
5
5
|
"module": "./dist/esm/index.js",
|
|
6
6
|
"types": "./dist/esm/index.d.ts",
|
|
@@ -97,5 +97,5 @@
|
|
|
97
97
|
"type": "individual",
|
|
98
98
|
"url": "https://ohif.org/donate"
|
|
99
99
|
},
|
|
100
|
-
"gitHead": "
|
|
100
|
+
"gitHead": "83db94eeecf7ddfaa6cb683e0ff096ec616494d3"
|
|
101
101
|
}
|