@ohif/app 3.7.0-beta.5 → 3.7.0-beta.7
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/dist/{199.bundle.dff92336f7bc36f2e484.js → 199.bundle.7cec631fcf4b8475abda.js} +0 -5
- package/dist/{707.bundle.7068a46e5be26fe60fce.js → 707.bundle.0b18a871c9eb8df9e992.js} +39 -33
- package/dist/{82.bundle.0456c9e58fa89b131f14.js → 82.bundle.b824c7d8ff72de0fc149.js} +2 -2
- package/dist/{app.bundle.3ab8624d0394f1b10a0d.js → app.bundle.f0885cb776ab9ae8974b.js} +4 -4
- package/dist/index.html +1 -1
- package/dist/sw.js +1 -1
- package/package.json +18 -18
- /package/dist/{192.bundle.6dc1f92074738663620f.js → 192.bundle.1efc10937535a37a17f0.js} +0 -0
- /package/dist/{208.bundle.e50761cf714ac772d9cc.js → 208.bundle.21c449bf9b00123e1db3.js} +0 -0
- /package/dist/{283.bundle.f06203ec47c287f44cea.js → 283.bundle.8ffad59b5844a24b2a62.js} +0 -0
- /package/dist/{404.bundle.b7b371a30ca5bc5a0554.js → 404.bundle.d980e423e9670737ef12.js} +0 -0
- /package/dist/{50.bundle.135ada11018fff84d66b.js → 50.bundle.9b5c9aaaf1188ab0794a.js} +0 -0
- /package/dist/{616.bundle.cbb2e0a23b1343b6441f.js → 616.bundle.be469f44809e9b2485b2.js} +0 -0
- /package/dist/{642.bundle.e8d980d4ba95b0b2665f.js → 642.bundle.88a563313292ae2cdd2e.js} +0 -0
- /package/dist/{744.bundle.81246dc9f043a17fde8a.js → 744.bundle.d07b9ad7b31de0ba4956.js} +0 -0
- /package/dist/{790.bundle.ca48b21507b91b675810.js → 790.bundle.ed28f0930111217b742a.js} +0 -0
- /package/dist/{917.bundle.24fc5ca2280d2980bf0f.js → 917.bundle.37f76105d2e1a70d94cf.js} +0 -0
- /package/dist/{973.bundle.77245411064eaa3ee79a.js → 973.bundle.f4b8ccf7ad2ff9f6041c.js} +0 -0
- /package/dist/{976.bundle.3b8f97b61cdfa7dc32e3.js → 976.bundle.c1df3878a015cdf0e51f.js} +0 -0
- /package/dist/{984.bundle.0301a876361809048be0.js → 984.bundle.b33e9e702a96c5ae9fb7.js} +0 -0
|
@@ -159,11 +159,6 @@ async function loadRTStruct(extensionManager, rtStructDisplaySet, referencedDisp
|
|
|
159
159
|
NumberOfContourPoints,
|
|
160
160
|
ContourGeometricType
|
|
161
161
|
} = ContourSequenceArray[c];
|
|
162
|
-
const sopInstanceUID = ContourImageSequence.ReferencedSOPInstanceUID;
|
|
163
|
-
const imageId = _getImageId(imageIdSopInstanceUidPairs, sopInstanceUID);
|
|
164
|
-
if (!imageId) {
|
|
165
|
-
continue;
|
|
166
|
-
}
|
|
167
162
|
let isSupported = false;
|
|
168
163
|
const points = [];
|
|
169
164
|
for (let p = 0; p < NumberOfContourPoints * 3; p += 3) {
|
|
@@ -6936,41 +6936,47 @@ class SegmentationService extends src/* PubSubService */.hC {
|
|
|
6936
6936
|
segmentIndex,
|
|
6937
6937
|
geometryId
|
|
6938
6938
|
} = rtStructData;
|
|
6939
|
-
const geometry = await esm.geometryLoader.createAndCacheGeometry(geometryId, {
|
|
6940
|
-
geometryData: {
|
|
6941
|
-
data,
|
|
6942
|
-
id,
|
|
6943
|
-
color,
|
|
6944
|
-
frameOfReferenceUID: structureSet.frameOfReferenceUID,
|
|
6945
|
-
segmentIndex
|
|
6946
|
-
},
|
|
6947
|
-
type: esm.Enums.GeometryType.CONTOUR
|
|
6948
|
-
});
|
|
6949
|
-
const contourSet = geometry.data;
|
|
6950
|
-
const centroid = contourSet.getCentroid();
|
|
6951
|
-
segmentsCachedStats[segmentIndex] = {
|
|
6952
|
-
center: {
|
|
6953
|
-
world: centroid
|
|
6954
|
-
},
|
|
6955
|
-
modifiedTime: rtDisplaySet.SeriesDate // we use the SeriesDate as the modifiedTime since this is the first time we are creating the segmentation
|
|
6956
|
-
};
|
|
6957
6939
|
|
|
6958
|
-
|
|
6959
|
-
|
|
6960
|
-
|
|
6961
|
-
|
|
6962
|
-
|
|
6963
|
-
|
|
6964
|
-
|
|
6940
|
+
// catch error instead of failing to allow loading to continue
|
|
6941
|
+
try {
|
|
6942
|
+
const geometry = await esm.geometryLoader.createAndCacheGeometry(geometryId, {
|
|
6943
|
+
geometryData: {
|
|
6944
|
+
data,
|
|
6945
|
+
id,
|
|
6946
|
+
color,
|
|
6947
|
+
frameOfReferenceUID: structureSet.frameOfReferenceUID,
|
|
6948
|
+
segmentIndex
|
|
6949
|
+
},
|
|
6950
|
+
type: esm.Enums.GeometryType.CONTOUR
|
|
6951
|
+
});
|
|
6952
|
+
const contourSet = geometry.data;
|
|
6953
|
+
const centroid = contourSet.getCentroid();
|
|
6954
|
+
segmentsCachedStats[segmentIndex] = {
|
|
6955
|
+
center: {
|
|
6956
|
+
world: centroid
|
|
6957
|
+
},
|
|
6958
|
+
modifiedTime: rtDisplaySet.SeriesDate // we use the SeriesDate as the modifiedTime since this is the first time we are creating the segmentation
|
|
6959
|
+
};
|
|
6965
6960
|
|
|
6966
|
-
|
|
6967
|
-
|
|
6968
|
-
|
|
6969
|
-
|
|
6970
|
-
|
|
6971
|
-
|
|
6972
|
-
|
|
6973
|
-
|
|
6961
|
+
segmentation.segments[segmentIndex] = {
|
|
6962
|
+
label: id,
|
|
6963
|
+
segmentIndex,
|
|
6964
|
+
color,
|
|
6965
|
+
...SEGMENT_CONSTANT
|
|
6966
|
+
};
|
|
6967
|
+
const numInitialized = Object.keys(segmentsCachedStats).length;
|
|
6968
|
+
|
|
6969
|
+
// Calculate percentage completed
|
|
6970
|
+
const percentComplete = Math.round(numInitialized / allRTStructData.length * 100);
|
|
6971
|
+
this._broadcastEvent(SegmentationService_EVENTS.SEGMENT_LOADING_COMPLETE, {
|
|
6972
|
+
percentComplete,
|
|
6973
|
+
// Note: this is not the geometryIds length since there might be
|
|
6974
|
+
// some missing ROINumbers
|
|
6975
|
+
numSegments: allRTStructData.length
|
|
6976
|
+
});
|
|
6977
|
+
} catch (e) {
|
|
6978
|
+
console.warn(e);
|
|
6979
|
+
}
|
|
6974
6980
|
};
|
|
6975
6981
|
const promiseArray = [];
|
|
6976
6982
|
for (let i = 0; i < allRTStructData.length; i++) {
|
|
@@ -2143,8 +2143,8 @@ function ViewerLayout(_ref) {
|
|
|
2143
2143
|
hotkeyDefinitions,
|
|
2144
2144
|
hotkeyDefaults
|
|
2145
2145
|
} = hotkeysManager;
|
|
2146
|
-
const versionNumber = "3.7.0-beta.
|
|
2147
|
-
const commitHash = "
|
|
2146
|
+
const versionNumber = "3.7.0-beta.7";
|
|
2147
|
+
const commitHash = "63e12dd6514e6ef1b9c27bda3d8a38e8d51744b0";
|
|
2148
2148
|
const menuOptions = [{
|
|
2149
2149
|
title: t('Header:About'),
|
|
2150
2150
|
icon: 'info',
|
|
@@ -5111,8 +5111,8 @@ function WorkList(_ref) {
|
|
|
5111
5111
|
};
|
|
5112
5112
|
});
|
|
5113
5113
|
const hasStudies = numOfStudies > 0;
|
|
5114
|
-
const versionNumber = "3.7.0-beta.
|
|
5115
|
-
const commitHash = "
|
|
5114
|
+
const versionNumber = "3.7.0-beta.7";
|
|
5115
|
+
const commitHash = "63e12dd6514e6ef1b9c27bda3d8a38e8d51744b0";
|
|
5116
5116
|
const menuOptions = [{
|
|
5117
5117
|
title: t('Header:About'),
|
|
5118
5118
|
icon: 'info',
|
|
@@ -19929,7 +19929,7 @@ const detectionOptions = {
|
|
|
19929
19929
|
}
|
|
19930
19930
|
});
|
|
19931
19931
|
;// CONCATENATED MODULE: ../../i18n/package.json
|
|
19932
|
-
const package_namespaceObject = JSON.parse('{"i8":"3.7.0-beta.
|
|
19932
|
+
const package_namespaceObject = JSON.parse('{"i8":"3.7.0-beta.6"}');
|
|
19933
19933
|
;// CONCATENATED MODULE: ../../i18n/src/utils.js
|
|
19934
19934
|
const languagesMap = {
|
|
19935
19935
|
ar: 'Arabic',
|
|
@@ -153988,7 +153988,7 @@ var selectOrdinal = function selectOrdinal() {
|
|
|
153988
153988
|
/******/ // This function allow to reference async chunks
|
|
153989
153989
|
/******/ __webpack_require__.u = (chunkId) => {
|
|
153990
153990
|
/******/ // return url for filenames based on template
|
|
153991
|
-
/******/ return "" + (chunkId === 18 ? "dicom-microscopy-viewer" : chunkId) + ".bundle." + {"18":"aa60bdf008c32c39cfd7","50":"
|
|
153991
|
+
/******/ return "" + (chunkId === 18 ? "dicom-microscopy-viewer" : chunkId) + ".bundle." + {"18":"aa60bdf008c32c39cfd7","50":"9b5c9aaaf1188ab0794a","55":"550a823e75eb608e8d5e","82":"b824c7d8ff72de0fc149","151":"31ea35044218837bf73f","192":"1efc10937535a37a17f0","199":"7cec631fcf4b8475abda","205":"b5a473c200dcf2bbcdb4","208":"21c449bf9b00123e1db3","270":"4564621556b0f963a004","283":"8ffad59b5844a24b2a62","295":"957b1159fec14b9199a1","331":"bd0c13931a21d53086c9","351":"0742237651aef9694a65","381":"0905e683605fcbc0895f","404":"d980e423e9670737ef12","531":"2a82fb1d69e5b57cc72b","569":"21f8ad57c06a210448b5","581":"dc6197189f7c88c27d4c","606":"5d876f5f3dd8287f0a28","616":"be469f44809e9b2485b2","642":"88a563313292ae2cdd2e","664":"09abae984223969d1bde","707":"0b18a871c9eb8df9e992","728":"d13856835357400fef82","744":"d07b9ad7b31de0ba4956","780":"fd0f13dc92e9caa0581e","790":"ed28f0930111217b742a","799":"758558e64147e5aad612","806":"2e7934d0833c4315c292","917":"37f76105d2e1a70d94cf","926":"dbc9d0e591cb9217fda2","935":"deeffff0e4f7b528e3c3","953":"3b0189ebc11cf0946f18","973":"f4b8ccf7ad2ff9f6041c","976":"c1df3878a015cdf0e51f","984":"b33e9e702a96c5ae9fb7"}[chunkId] + ".js";
|
|
153992
153992
|
/******/ };
|
|
153993
153993
|
/******/ })();
|
|
153994
153994
|
/******/
|
package/dist/index.html
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
<!doctype html><html lang="en"><head><meta charset="UTF-8"/><meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"/><meta name="theme-color" content="#000000"/><meta name="mobile-web-app-capable" content="yes"/><meta name="application-name" content="OHIF Viewer"/><meta name="apple-mobile-web-app-capable" content="yes"/><meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"/><meta name="apple-mobile-web-app-title" content="@ohif/app"/><meta name="msapplication-TileColor" content="#fff"/><meta name="msapplication-TileImage" content="/assets/mstile-144x144.png"/><meta name="msapplication-config" content="/assets/browserconfig.xml"/><link rel="manifest" href="/manifest.json"/><link rel="shortcut icon" href="/assets/favicon.ico"/><link rel="icon" type="image/png" sizes="16x16" href="/assets/favicon-16x16.png"/><link rel="icon" type="image/png" sizes="32x32" href="/assets/favicon-32x32.png"/><link rel="apple-touch-icon" sizes="57x57" href="/assets/apple-touch-icon-57x57.png"/><link rel="apple-touch-icon" sizes="60x60" href="/assets/apple-touch-icon-60x60.png"/><link rel="apple-touch-icon" sizes="72x72" href="/assets/apple-touch-icon-72x72.png"/><link rel="apple-touch-icon" sizes="76x76" href="/assets/apple-touch-icon-76x76.png"/><link rel="apple-touch-icon" sizes="114x114" href="/assets/apple-touch-icon-114x114.png"/><link rel="apple-touch-icon" sizes="120x120" href="/assets/apple-touch-icon-120x120.png"/><link rel="apple-touch-icon" sizes="144x144" href="/assets/apple-touch-icon-144x144.png"/><link rel="apple-touch-icon" sizes="152x152" href="/assets/apple-touch-icon-152x152.png"/><link rel="apple-touch-icon" sizes="167x167" href="/assets/apple-touch-icon-167x167.png"/><link rel="apple-touch-icon" sizes="180x180" href="/assets/apple-touch-icon-180x180.png"/><link rel="apple-touch-icon" sizes="1024x1024" href="/assets/apple-touch-icon-1024x1024.png"/><link rel="apple-touch-startup-image" media="(device-width: 320px) and (device-height: 480px) and (-webkit-device-pixel-ratio: 1)" href="/assets/apple-touch-startup-image-320x460.png"/><link rel="apple-touch-startup-image" media="(device-width: 320px) and (device-height: 480px) and (-webkit-device-pixel-ratio: 2)" href="/assets/apple-touch-startup-image-640x920.png"/><link rel="apple-touch-startup-image" media="(device-width: 320px) and (device-height: 568px) and (-webkit-device-pixel-ratio: 2)" href="/assets/apple-touch-startup-image-640x1096.png"/><link rel="apple-touch-startup-image" media="(device-width: 375px) and (device-height: 667px) and (-webkit-device-pixel-ratio: 2)" href="/assets/apple-touch-startup-image-750x1294.png"/><link rel="apple-touch-startup-image" media="(device-width: 414px) and (device-height: 736px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3)" href="/assets/apple-touch-startup-image-1182x2208.png"/><link rel="apple-touch-startup-image" media="(device-width: 414px) and (device-height: 736px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3)" href="/assets/apple-touch-startup-image-1242x2148.png"/><link rel="apple-touch-startup-image" media="(device-width: 768px) and (device-height: 1024px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 1)" href="/assets/apple-touch-startup-image-748x1024.png"/><link rel="apple-touch-startup-image" media="(device-width: 768px) and (device-height: 1024px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 1)" href="/assets/apple-touch-startup-image-768x1004.png"/><link rel="apple-touch-startup-image" media="(device-width: 768px) and (device-height: 1024px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2)" href="/assets/apple-touch-startup-image-1496x2048.png"/><link rel="apple-touch-startup-image" media="(device-width: 768px) and (device-height: 1024px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2)" href="/assets/apple-touch-startup-image-1536x2008.png"/><link rel="icon" type="image/png" sizes="228x228" href="/assets/coast-228x228.png"/><link rel="yandex-tableau-widget" href="/assets/yandex-browser-manifest.json"/><script>window.PUBLIC_URL = '/';</script><script rel="preload" as="script" src="/app-config.js"></script><script rel="preload" as="script" type="module" src="/init-service-worker.js"></script><title>OHIF Viewer</title><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin/><link href="https://fonts.googleapis.com/css?family=Inter:100,300,400,500,700&display=swap" rel="stylesheet" rel="preload" as="style"/><script defer="defer" src="/app.bundle.
|
|
1
|
+
<!doctype html><html lang="en"><head><meta charset="UTF-8"/><meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"/><meta name="theme-color" content="#000000"/><meta name="mobile-web-app-capable" content="yes"/><meta name="application-name" content="OHIF Viewer"/><meta name="apple-mobile-web-app-capable" content="yes"/><meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"/><meta name="apple-mobile-web-app-title" content="@ohif/app"/><meta name="msapplication-TileColor" content="#fff"/><meta name="msapplication-TileImage" content="/assets/mstile-144x144.png"/><meta name="msapplication-config" content="/assets/browserconfig.xml"/><link rel="manifest" href="/manifest.json"/><link rel="shortcut icon" href="/assets/favicon.ico"/><link rel="icon" type="image/png" sizes="16x16" href="/assets/favicon-16x16.png"/><link rel="icon" type="image/png" sizes="32x32" href="/assets/favicon-32x32.png"/><link rel="apple-touch-icon" sizes="57x57" href="/assets/apple-touch-icon-57x57.png"/><link rel="apple-touch-icon" sizes="60x60" href="/assets/apple-touch-icon-60x60.png"/><link rel="apple-touch-icon" sizes="72x72" href="/assets/apple-touch-icon-72x72.png"/><link rel="apple-touch-icon" sizes="76x76" href="/assets/apple-touch-icon-76x76.png"/><link rel="apple-touch-icon" sizes="114x114" href="/assets/apple-touch-icon-114x114.png"/><link rel="apple-touch-icon" sizes="120x120" href="/assets/apple-touch-icon-120x120.png"/><link rel="apple-touch-icon" sizes="144x144" href="/assets/apple-touch-icon-144x144.png"/><link rel="apple-touch-icon" sizes="152x152" href="/assets/apple-touch-icon-152x152.png"/><link rel="apple-touch-icon" sizes="167x167" href="/assets/apple-touch-icon-167x167.png"/><link rel="apple-touch-icon" sizes="180x180" href="/assets/apple-touch-icon-180x180.png"/><link rel="apple-touch-icon" sizes="1024x1024" href="/assets/apple-touch-icon-1024x1024.png"/><link rel="apple-touch-startup-image" media="(device-width: 320px) and (device-height: 480px) and (-webkit-device-pixel-ratio: 1)" href="/assets/apple-touch-startup-image-320x460.png"/><link rel="apple-touch-startup-image" media="(device-width: 320px) and (device-height: 480px) and (-webkit-device-pixel-ratio: 2)" href="/assets/apple-touch-startup-image-640x920.png"/><link rel="apple-touch-startup-image" media="(device-width: 320px) and (device-height: 568px) and (-webkit-device-pixel-ratio: 2)" href="/assets/apple-touch-startup-image-640x1096.png"/><link rel="apple-touch-startup-image" media="(device-width: 375px) and (device-height: 667px) and (-webkit-device-pixel-ratio: 2)" href="/assets/apple-touch-startup-image-750x1294.png"/><link rel="apple-touch-startup-image" media="(device-width: 414px) and (device-height: 736px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3)" href="/assets/apple-touch-startup-image-1182x2208.png"/><link rel="apple-touch-startup-image" media="(device-width: 414px) and (device-height: 736px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3)" href="/assets/apple-touch-startup-image-1242x2148.png"/><link rel="apple-touch-startup-image" media="(device-width: 768px) and (device-height: 1024px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 1)" href="/assets/apple-touch-startup-image-748x1024.png"/><link rel="apple-touch-startup-image" media="(device-width: 768px) and (device-height: 1024px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 1)" href="/assets/apple-touch-startup-image-768x1004.png"/><link rel="apple-touch-startup-image" media="(device-width: 768px) and (device-height: 1024px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2)" href="/assets/apple-touch-startup-image-1496x2048.png"/><link rel="apple-touch-startup-image" media="(device-width: 768px) and (device-height: 1024px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2)" href="/assets/apple-touch-startup-image-1536x2008.png"/><link rel="icon" type="image/png" sizes="228x228" href="/assets/coast-228x228.png"/><link rel="yandex-tableau-widget" href="/assets/yandex-browser-manifest.json"/><script>window.PUBLIC_URL = '/';</script><script rel="preload" as="script" src="/app-config.js"></script><script rel="preload" as="script" type="module" src="/init-service-worker.js"></script><title>OHIF Viewer</title><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin/><link href="https://fonts.googleapis.com/css?family=Inter:100,300,400,500,700&display=swap" rel="stylesheet" rel="preload" as="style"/><script defer="defer" src="/app.bundle.f0885cb776ab9ae8974b.js"></script><link href="/app.bundle.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>
|
package/dist/sw.js
CHANGED
|
@@ -51,7 +51,7 @@ self.addEventListener('message', event => {
|
|
|
51
51
|
}
|
|
52
52
|
}
|
|
53
53
|
});
|
|
54
|
-
workbox.precaching.precacheAndRoute([{'revision':null,'url':'/151.bundle.31ea35044218837bf73f.js'},{'revision':null,'url':'/192.bundle.
|
|
54
|
+
workbox.precaching.precacheAndRoute([{'revision':null,'url':'/151.bundle.31ea35044218837bf73f.js'},{'revision':null,'url':'/192.bundle.1efc10937535a37a17f0.js'},{'revision':null,'url':'/199.bundle.7cec631fcf4b8475abda.js'},{'revision':null,'url':'/205.bundle.b5a473c200dcf2bbcdb4.js'},{'revision':null,'url':'/208.bundle.21c449bf9b00123e1db3.js'},{'revision':null,'url':'/270.bundle.4564621556b0f963a004.js'},{'revision':null,'url':'/283.bundle.8ffad59b5844a24b2a62.js'},{'revision':null,'url':'/295.bundle.957b1159fec14b9199a1.js'},{'revision':null,'url':'/331.bundle.bd0c13931a21d53086c9.js'},{'revision':null,'url':'/351.bundle.0742237651aef9694a65.js'},{'revision':'a04a2f233dc569826f5f6e21b65bc87b','url':'/351.css'},{'revision':'c4ea120c6da08aa75348edfa3e57ece9','url':'/36785fbd89b0e17f6099.wasm'},{'revision':null,'url':'/381.bundle.0905e683605fcbc0895f.js'},{'revision':null,'url':'/404.bundle.d980e423e9670737ef12.js'},{'revision':null,'url':'/50.bundle.9b5c9aaaf1188ab0794a.js'},{'revision':'c377e1f5fe4a207d270c3f7a8dd3e3ca','url':'/5004fdc02f329ce53b69.wasm'},{'revision':null,'url':'/531.bundle.2a82fb1d69e5b57cc72b.js'},{'revision':null,'url':'/55.bundle.550a823e75eb608e8d5e.js'},{'revision':'0afb25509c7f072fbd7eda42c6895dbf','url':'/55.css'},{'revision':null,'url':'/569.bundle.21f8ad57c06a210448b5.js'},{'revision':null,'url':'/581.bundle.dc6197189f7c88c27d4c.js'},{'revision':null,'url':'/606.bundle.5d876f5f3dd8287f0a28.js'},{'revision':'62b4ae8445d191d5aab5503ce475724d','url':'/610.min.worker.js'},{'revision':'3c2206525c18cd87dd28082949a4e43e','url':'/610.min.worker.js.map'},{'revision':null,'url':'/616.bundle.be469f44809e9b2485b2.js'},{'revision':'5800265b6831396572fb5d32c6bd8eef','url':'/62ab5d58a2bea7b5a1dc.wasm'},{'revision':null,'url':'/642.bundle.88a563313292ae2cdd2e.js'},{'revision':'ce10eced3ce34e663d86569b27f5bffb','url':'/65916ef3def695744bda.wasm'},{'revision':null,'url':'/664.bundle.09abae984223969d1bde.js'},{'revision':null,'url':'/707.bundle.0b18a871c9eb8df9e992.js'},{'revision':'185e5e0a10fa6ab2fc7b3c38e63d550b','url':'/707.css'},{'revision':null,'url':'/728.bundle.d13856835357400fef82.js'},{'revision':null,'url':'/744.bundle.d07b9ad7b31de0ba4956.js'},{'revision':'cf3e4d4fa8884275461c195421812256','url':'/75788f12450d4c5ed494.wasm'},{'revision':'cc4a3a4da4ac1b863a714f93c66c6ef2','url':'/75a0c2dfe07b824c7d21.wasm'},{'revision':null,'url':'/780.bundle.fd0f13dc92e9caa0581e.js'},{'revision':null,'url':'/790.bundle.ed28f0930111217b742a.js'},{'revision':null,'url':'/799.bundle.758558e64147e5aad612.js'},{'revision':'51b8ed55f5b8d448837222f03bdd6de8','url':'/806.css'},{'revision':null,'url':'/82.bundle.b824c7d8ff72de0fc149.js'},{'revision':null,'url':'/917.bundle.37f76105d2e1a70d94cf.js'},{'revision':null,'url':'/926.bundle.dbc9d0e591cb9217fda2.js'},{'revision':null,'url':'/935.bundle.deeffff0e4f7b528e3c3.js'},{'revision':'b12abc3008862bb7daf6a91d2a13cf6a','url':'/945.min.worker.js'},{'revision':'3aba0a4898e93871a7cd61b4d0216a18','url':'/945.min.worker.js.map'},{'revision':null,'url':'/953.bundle.3b0189ebc11cf0946f18.js'},{'revision':null,'url':'/973.bundle.f4b8ccf7ad2ff9f6041c.js'},{'revision':null,'url':'/976.bundle.c1df3878a015cdf0e51f.js'},{'revision':null,'url':'/984.bundle.b33e9e702a96c5ae9fb7.js'},{'revision':'d1895aa7a4595dc279c382e5a31ef9f4','url':'/_headers'},{'revision':'6839a719b6810111d8097998b11293a1','url':'/_redirects'},{'revision':'db6fe78a2311f21f5bdbd90ffded7ce4','url':'/app-config.js'},{'revision':'0871da67d87443bacdeeb07df0a5c282','url':'/app.bundle.css'},{'revision':'cb4f64534cdf8dd88f1d7219d44490db','url':'/assets/android-chrome-144x144.png'},{'revision':'5cde390de8a619ebe55a669d2ac3effd','url':'/assets/android-chrome-192x192.png'},{'revision':'e7466a67e90471de05401e53b8fe20be','url':'/assets/android-chrome-256x256.png'},{'revision':'9bbe9b80156e930d19a4e1725aa9ddae','url':'/assets/android-chrome-36x36.png'},{'revision':'5698b2ac0c82fe06d84521fc5482df04','url':'/assets/android-chrome-384x384.png'},{'revision':'56bef3fceec344d9747f8abe9c0bba27','url':'/assets/android-chrome-48x48.png'},{'revision':'3e8b8a01290992e82c242557417b0596','url':'/assets/android-chrome-512x512.png'},{'revision':'517925e91e2ce724432d296b687d25e2','url':'/assets/android-chrome-72x72.png'},{'revision':'4c3289bc690f8519012686888e08da71','url':'/assets/android-chrome-96x96.png'},{'revision':'cf464289183184df09292f581df0fb4f','url':'/assets/apple-touch-icon-1024x1024.png'},{'revision':'0857c5282c594e4900e8b31e3bade912','url':'/assets/apple-touch-icon-114x114.png'},{'revision':'4208f41a28130a67e9392a9dfcee6011','url':'/assets/apple-touch-icon-120x120.png'},{'revision':'cb4f64534cdf8dd88f1d7219d44490db','url':'/assets/apple-touch-icon-144x144.png'},{'revision':'977d293982af7e9064ba20806b45cf35','url':'/assets/apple-touch-icon-152x152.png'},{'revision':'6de91b4d2a30600b410758405cb567b4','url':'/assets/apple-touch-icon-167x167.png'},{'revision':'87bff140e3773bd7479a620501c4aa5c','url':'/assets/apple-touch-icon-180x180.png'},{'revision':'647386c34e75f1213830ea9a38913525','url':'/assets/apple-touch-icon-57x57.png'},{'revision':'0c200fe83953738b330ea431083e7a86','url':'/assets/apple-touch-icon-60x60.png'},{'revision':'517925e91e2ce724432d296b687d25e2','url':'/assets/apple-touch-icon-72x72.png'},{'revision':'c9989a807bb18633f6dcf254b5b56124','url':'/assets/apple-touch-icon-76x76.png'},{'revision':'87bff140e3773bd7479a620501c4aa5c','url':'/assets/apple-touch-icon-precomposed.png'},{'revision':'87bff140e3773bd7479a620501c4aa5c','url':'/assets/apple-touch-icon.png'},{'revision':'05fa74ea9c1c0c3931ba96467999081d','url':'/assets/apple-touch-startup-image-1182x2208.png'},{'revision':'9e2cd03e1e6fd0520eea6846f4278018','url':'/assets/apple-touch-startup-image-1242x2148.png'},{'revision':'5591e3a1822cbc8439b99c1a40d53425','url':'/assets/apple-touch-startup-image-1496x2048.png'},{'revision':'337de578c5ca04bd7d2be19d24d83821','url':'/assets/apple-touch-startup-image-1536x2008.png'},{'revision':'cafb4ab4eafe6ef946bd229a1d88e7de','url':'/assets/apple-touch-startup-image-320x460.png'},{'revision':'d9bb9e558d729eeac5efb8be8d6111cc','url':'/assets/apple-touch-startup-image-640x1096.png'},{'revision':'038b5b02bac8b82444bf9a87602ac216','url':'/assets/apple-touch-startup-image-640x920.png'},{'revision':'2177076eb07b1d64d663d7c03268be00','url':'/assets/apple-touch-startup-image-748x1024.png'},{'revision':'4fc097443815fe92503584c4bd73c630','url':'/assets/apple-touch-startup-image-750x1294.png'},{'revision':'2e29914062dce5c5141ab47eea2fc5d9','url':'/assets/apple-touch-startup-image-768x1004.png'},{'revision':'f692ec286b3a332c17985f4ed38b1076','url':'/assets/browserconfig.xml'},{'revision':'f3d9a3b647853c45b0e132e4acd0cc4a','url':'/assets/coast-228x228.png'},{'revision':'ad6e1def5c66193d649a31474bbfe45d','url':'/assets/favicon-16x16.png'},{'revision':'84d1dcdb6cdfa55e2f46be0c80fa5698','url':'/assets/favicon-32x32.png'},{'revision':'95fb44c4998a46109e49d724c060db24','url':'/assets/favicon.ico'},{'revision':'5df2a5b0cee399ac0bc40af74ba3c2cb','url':'/assets/firefox_app_128x128.png'},{'revision':'11fd9098c4b07c8a07e1d2a1e309e046','url':'/assets/firefox_app_512x512.png'},{'revision':'27cddfc922dca3bfa27b4a00fc2f5e36','url':'/assets/firefox_app_60x60.png'},{'revision':'2017d95fae79dcf34b5a5b52586d4763','url':'/assets/manifest.webapp'},{'revision':'cb4f64534cdf8dd88f1d7219d44490db','url':'/assets/mstile-144x144.png'},{'revision':'334895225e16a7777e45d81964725a97','url':'/assets/mstile-150x150.png'},{'revision':'e295cca4af6ed0365cf7b014d91b0e9d','url':'/assets/mstile-310x150.png'},{'revision':'cbefa8c42250e5f2443819fe2c69d91e','url':'/assets/mstile-310x310.png'},{'revision':'aa411a69df2b33a1362fa38d1257fa9d','url':'/assets/mstile-70x70.png'},{'revision':'5609af4f69e40e33471aee770ea1d802','url':'/assets/yandex-browser-50x50.png'},{'revision':'cfea70d7ddc8f06f276ea0c85c4b2adf','url':'/assets/yandex-browser-manifest.json'},{'revision':'52b9a07fe0541fe8c313d9788550bf51','url':'/b6b803111e2d06a825bd.wasm'},{'revision':'7edb59d2be7c993050cb31ded36afa31','url':'/c22b37c3488e1d6c3aa4.wasm'},{'revision':'fff4cc3f9cc50823c3352c4fba0d1c7d','url':'/cornerstoneDICOMImageLoader.min.js'},{'revision':'19d3b78af81090608c85898aa2389805','url':'/cornerstoneDICOMImageLoader.min.js.map'},{'revision':null,'url':'/dicom-microscopy-viewer.bundle.aa60bdf008c32c39cfd7.js'},{'revision':'9d8c85b42d04bb117a3b583d654fbb08','url':'/dicomMicroscopyViewer.min.js'},{'revision':'450494c199cf8dd8e8c34d5e98bf5334','url':'/dicomMicroscopyViewer.min.js.LICENSE.txt'},{'revision':'0ca44a1b8719e835645ffa804a9d1395','url':'/es6-shim.min.js'},{'revision':'c120b64a5930bc240d1d6bf358ac3907','url':'/google.js'},{'revision':'56686de6377c27c9e9cde4d5c6e40f1d','url':'/index.html'},{'revision':'0d0886e5f1fdb4a209a9065dfb542c22','url':'/index.worker.1c69152d710fa7b84bce.worker.js'},{'revision':'066fd130de42b02857b634de1dc49a73','url':'/index.worker.1c69152d710fa7b84bce.worker.js.map'},{'revision':'71cec55513e051f0778ad89be760c11a','url':'/index.worker.min.worker.js'},{'revision':'fd1116add443fee52a935df926396e0f','url':'/index.worker.min.worker.js.map'},{'revision':'c4c4be134438c4cc55613210f3913526','url':'/init-service-worker.js'},{'revision':'74fc9658b62903be2048c1f82a22b4d4','url':'/manifest.json'},{'revision':'3fa71aa0af3e34b4ebd9a71eee0f4bdd','url':'/ohif-logo-light.svg'},{'revision':'7e81da785c63e75650101db6c5d7560e','url':'/ohif-logo.svg'},{'revision':'754d698a7b334af57c00f29723fd9751','url':'/oidc-client.min.js'},{'revision':'d05a380d50b74e629738ae6f62fb7e78','url':'/polyfill.min.js'},{'revision':'f528b6861c82ee4415fce0821fd695c1','url':'/silent-refresh.html'}]);
|
|
55
55
|
|
|
56
56
|
// TODO: Cache API
|
|
57
57
|
// https://developers.google.com/web/fundamentals/instant-and-offline/web-storage/cache-api
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ohif/app",
|
|
3
|
-
"version": "3.7.0-beta.
|
|
3
|
+
"version": "3.7.0-beta.7",
|
|
4
4
|
"productVersion": "3.4.0",
|
|
5
5
|
"description": "OHIF Viewer",
|
|
6
6
|
"author": "OHIF Contributors",
|
|
@@ -52,22 +52,22 @@
|
|
|
52
52
|
"@cornerstonejs/codec-openjpeg": "^1.2.2",
|
|
53
53
|
"@cornerstonejs/codec-openjph": "^2.4.2",
|
|
54
54
|
"@cornerstonejs/dicom-image-loader": "^1.1.8",
|
|
55
|
-
"@ohif/core": "3.7.0-beta.
|
|
56
|
-
"@ohif/extension-cornerstone": "3.7.0-beta.
|
|
57
|
-
"@ohif/extension-cornerstone-dicom-rt": "3.7.0-beta.
|
|
58
|
-
"@ohif/extension-cornerstone-dicom-seg": "3.7.0-beta.
|
|
59
|
-
"@ohif/extension-cornerstone-dicom-sr": "3.7.0-beta.
|
|
60
|
-
"@ohif/extension-default": "3.7.0-beta.
|
|
61
|
-
"@ohif/extension-dicom-microscopy": "3.7.0-beta.
|
|
62
|
-
"@ohif/extension-dicom-pdf": "3.7.0-beta.
|
|
63
|
-
"@ohif/extension-dicom-video": "3.7.0-beta.
|
|
64
|
-
"@ohif/extension-test": "3.7.0-beta.
|
|
65
|
-
"@ohif/i18n": "3.7.0-beta.
|
|
66
|
-
"@ohif/mode-basic-dev-mode": "3.7.0-beta.
|
|
67
|
-
"@ohif/mode-longitudinal": "3.7.0-beta.
|
|
68
|
-
"@ohif/mode-microscopy": "3.7.0-beta.
|
|
69
|
-
"@ohif/mode-test": "3.7.0-beta.
|
|
70
|
-
"@ohif/ui": "3.7.0-beta.
|
|
55
|
+
"@ohif/core": "3.7.0-beta.7",
|
|
56
|
+
"@ohif/extension-cornerstone": "3.7.0-beta.7",
|
|
57
|
+
"@ohif/extension-cornerstone-dicom-rt": "3.7.0-beta.7",
|
|
58
|
+
"@ohif/extension-cornerstone-dicom-seg": "3.7.0-beta.7",
|
|
59
|
+
"@ohif/extension-cornerstone-dicom-sr": "3.7.0-beta.7",
|
|
60
|
+
"@ohif/extension-default": "3.7.0-beta.7",
|
|
61
|
+
"@ohif/extension-dicom-microscopy": "3.7.0-beta.7",
|
|
62
|
+
"@ohif/extension-dicom-pdf": "3.7.0-beta.7",
|
|
63
|
+
"@ohif/extension-dicom-video": "3.7.0-beta.7",
|
|
64
|
+
"@ohif/extension-test": "3.7.0-beta.7",
|
|
65
|
+
"@ohif/i18n": "3.7.0-beta.7",
|
|
66
|
+
"@ohif/mode-basic-dev-mode": "3.7.0-beta.7",
|
|
67
|
+
"@ohif/mode-longitudinal": "3.7.0-beta.7",
|
|
68
|
+
"@ohif/mode-microscopy": "3.7.0-beta.7",
|
|
69
|
+
"@ohif/mode-test": "3.7.0-beta.7",
|
|
70
|
+
"@ohif/ui": "3.7.0-beta.7",
|
|
71
71
|
"@types/react": "^17.0.38",
|
|
72
72
|
"classnames": "^2.3.2",
|
|
73
73
|
"core-js": "^3.16.1",
|
|
@@ -107,5 +107,5 @@
|
|
|
107
107
|
"webpack-cli": "^4.7.2",
|
|
108
108
|
"webpack-merge": "^5.7.3"
|
|
109
109
|
},
|
|
110
|
-
"gitHead": "
|
|
110
|
+
"gitHead": "971c5947916338b6ad4444ec06cf758434d2422a"
|
|
111
111
|
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|