@ohif/app 3.7.0-beta.70 → 3.7.0-beta.71
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/{417.bundle.720dc8f3a6e99f378aa9.js → 417.bundle.6cadc61b8a455776de31.js} +40 -6
- package/dist/{90.bundle.48058fca24e7d8be310a.js → 90.bundle.d7a1e818bbbd3bce5419.js} +2 -2
- package/dist/{app.bundle.8e953ffe740f4bae80cf.js → app.bundle.1905c07065c4b93afa5a.js} +4 -4
- package/dist/index.html +1 -1
- package/dist/sw.js +1 -1
- package/package.json +18 -18
- /package/dist/{12.bundle.e6eb1baa615645189a12.js → 12.bundle.078c14f666c71663ae8e.js} +0 -0
- /package/dist/{128.bundle.914f2ac8d0691bd50ff0.js → 128.bundle.fdb6d1d5391b79de4936.js} +0 -0
- /package/dist/{150.bundle.eff6abfcb0d3096e26f6.js → 150.bundle.c99cc2e1df7cd4085265.js} +0 -0
- /package/dist/{236.bundle.cb102f5d6b3e2c164b06.js → 236.bundle.226efc38e453a4aeb7dd.js} +0 -0
- /package/dist/{281.bundle.7c827c7748a1b0306a02.js → 281.bundle.e9554f25a9eeac2f43e6.js} +0 -0
- /package/dist/{30.bundle.81444318ba6847f34c7b.js → 30.bundle.c8dfb82c70ae9ff67f14.js} +0 -0
- /package/dist/{348.bundle.cc3535d1f656926128ac.js → 348.bundle.e5082a6425f719eb6658.js} +0 -0
- /package/dist/{359.bundle.9bcfb38d30fd6c37bcd9.js → 359.bundle.8da7f102410ca9c0c999.js} +0 -0
- /package/dist/{410.bundle.b407a17fa433d19a6783.js → 410.bundle.5d03eeef5b705198bf5e.js} +0 -0
- /package/dist/{506.bundle.67a36beffb00adbfc6e8.js → 506.bundle.869288177e788d808aaa.js} +0 -0
- /package/dist/{663.bundle.c13c43c85cadb099ab82.js → 663.bundle.6a389399e5196510e0de.js} +0 -0
- /package/dist/{687.bundle.9a226918b1760d8e4e54.js → 687.bundle.67d721785216e064fc52.js} +0 -0
- /package/dist/{782.bundle.ecac5103b2bf6a45ba43.js → 782.bundle.6d57b35a056506c94352.js} +0 -0
- /package/dist/{814.bundle.c348892fe4a5f11a5c78.js → 814.bundle.ad8ebe6cffa96a5cfc1f.js} +0 -0
- /package/dist/{967.bundle.11d9620b673abef271eb.js → 967.bundle.8b4adf9b5a7392b51d0c.js} +0 -0
|
@@ -355,13 +355,40 @@ function calculateSUVlbmScalingFactor(inputs) {
|
|
|
355
355
|
PatientSize
|
|
356
356
|
} = inputs;
|
|
357
357
|
let LBM;
|
|
358
|
-
const
|
|
359
|
-
// reference: https://www.medicalconnections.co.uk/kb/calculating-suv-from-pet-images/
|
|
358
|
+
const weightSizeFactor = Math.pow(PatientWeight / (PatientSize * 100), 2); // reference: https://www.medicalconnections.co.uk/kb/calculating-suv-from-pet-images/
|
|
360
359
|
|
|
361
360
|
if (PatientSex === 'F') {
|
|
362
|
-
LBM = 1.07 * PatientWeight - 148 *
|
|
361
|
+
LBM = 1.07 * PatientWeight - 148 * weightSizeFactor;
|
|
363
362
|
} else if (PatientSex === 'M') {
|
|
364
|
-
LBM = 1.1 * PatientWeight - 120 *
|
|
363
|
+
LBM = 1.1 * PatientWeight - 120 * weightSizeFactor;
|
|
364
|
+
} else {
|
|
365
|
+
throw new Error(`PatientSex is an invalid value: ${PatientSex}`);
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
return LBM * 1000; // convert in gr
|
|
369
|
+
}
|
|
370
|
+
/**
|
|
371
|
+
* From https://link.springer.com/article/10.1007/s00259-014-2961-x
|
|
372
|
+
* and https://link.springer.com/article/10.2165/00003088-200544100-00004
|
|
373
|
+
* and
|
|
374
|
+
* @param inputs
|
|
375
|
+
* @returns
|
|
376
|
+
*/
|
|
377
|
+
|
|
378
|
+
|
|
379
|
+
function calculateSUVlbmJanmahasatianScalingFactor(inputs) {
|
|
380
|
+
const {
|
|
381
|
+
PatientSex,
|
|
382
|
+
PatientWeight,
|
|
383
|
+
PatientSize
|
|
384
|
+
} = inputs;
|
|
385
|
+
let LBM;
|
|
386
|
+
const bodyMassIndex = PatientWeight / Math.pow(PatientSize, 2);
|
|
387
|
+
|
|
388
|
+
if (PatientSex === 'F') {
|
|
389
|
+
LBM = 9270 * PatientWeight / (8780 + 244 * bodyMassIndex);
|
|
390
|
+
} else if (PatientSex === 'M') {
|
|
391
|
+
LBM = 9270 * PatientWeight / (6680 + 216 * bodyMassIndex);
|
|
365
392
|
} else {
|
|
366
393
|
throw new Error(`PatientSex is an invalid value: ${PatientSex}`);
|
|
367
394
|
}
|
|
@@ -502,9 +529,10 @@ function calculateSUVScalingFactors(instances) {
|
|
|
502
529
|
|
|
503
530
|
if (!isSingleSeries) {
|
|
504
531
|
throw new Error('The set of instances does not appear to come from one Series. Every instance must have identical values for series-level metadata properties');
|
|
505
|
-
}
|
|
532
|
+
} // Treat null, undefined and zero as a missing PatientWeight.
|
|
533
|
+
|
|
506
534
|
|
|
507
|
-
if (PatientWeight
|
|
535
|
+
if (!PatientWeight) {
|
|
508
536
|
throw new Error('PatientWeight value is missing. It is not possible to calculate the SUV factors');
|
|
509
537
|
}
|
|
510
538
|
|
|
@@ -567,6 +595,7 @@ function calculateSUVScalingFactors(instances) {
|
|
|
567
595
|
|
|
568
596
|
|
|
569
597
|
let suvlbmFactor;
|
|
598
|
+
let suvlbmJenmaFactor;
|
|
570
599
|
|
|
571
600
|
if (PatientSize === null || PatientSize === undefined) {
|
|
572
601
|
console.warn('PatientSize value is missing. It is not possible to calculate the SUV lbm factors');
|
|
@@ -579,6 +608,7 @@ function calculateSUVScalingFactors(instances) {
|
|
|
579
608
|
PatientSize
|
|
580
609
|
};
|
|
581
610
|
suvlbmFactor = calculateSUVlbmScalingFactor(suvlbmInputs);
|
|
611
|
+
suvlbmJenmaFactor = calculateSUVlbmJanmahasatianScalingFactor(suvlbmInputs);
|
|
582
612
|
}
|
|
583
613
|
|
|
584
614
|
return results.map(function (result, index) {
|
|
@@ -594,6 +624,10 @@ function calculateSUVScalingFactors(instances) {
|
|
|
594
624
|
if (suvlbmFactor) {
|
|
595
625
|
// multiply for LBM
|
|
596
626
|
factors.suvlbm = decayCorrectionArray[index] * suvlbmFactor;
|
|
627
|
+
}
|
|
628
|
+
|
|
629
|
+
if (suvlbmJenmaFactor) {
|
|
630
|
+
factors.suvlbmJanma = decayCorrectionArray[index] * suvlbmJenmaFactor;
|
|
597
631
|
} // factor formulaes taken from:
|
|
598
632
|
// https://www.medicalconnections.co.uk/kb/calculating-suv-from-pet-images/
|
|
599
633
|
|
|
@@ -2191,8 +2191,8 @@ function ViewerHeader(_ref) {
|
|
|
2191
2191
|
hotkeyDefinitions,
|
|
2192
2192
|
hotkeyDefaults
|
|
2193
2193
|
} = hotkeysManager;
|
|
2194
|
-
const versionNumber = "3.7.0-beta.
|
|
2195
|
-
const commitHash = "
|
|
2194
|
+
const versionNumber = "3.7.0-beta.71";
|
|
2195
|
+
const commitHash = "0d10f46b885fe54ec3dae1848134da658eb6280a";
|
|
2196
2196
|
const menuOptions = [{
|
|
2197
2197
|
title: t('Header:About'),
|
|
2198
2198
|
icon: 'info',
|
|
@@ -969,8 +969,8 @@ function WorkList(_ref) {
|
|
|
969
969
|
};
|
|
970
970
|
});
|
|
971
971
|
const hasStudies = numOfStudies > 0;
|
|
972
|
-
const versionNumber = "3.7.0-beta.
|
|
973
|
-
const commitHash = "
|
|
972
|
+
const versionNumber = "3.7.0-beta.71";
|
|
973
|
+
const commitHash = "0d10f46b885fe54ec3dae1848134da658eb6280a";
|
|
974
974
|
const menuOptions = [{
|
|
975
975
|
title: t('Header:About'),
|
|
976
976
|
icon: 'info',
|
|
@@ -8620,7 +8620,7 @@ const detectionOptions = {
|
|
|
8620
8620
|
}
|
|
8621
8621
|
});
|
|
8622
8622
|
;// CONCATENATED MODULE: ../../i18n/package.json
|
|
8623
|
-
const package_namespaceObject = JSON.parse('{"i8":"3.7.0-beta.
|
|
8623
|
+
const package_namespaceObject = JSON.parse('{"i8":"3.7.0-beta.70"}');
|
|
8624
8624
|
;// CONCATENATED MODULE: ../../i18n/src/utils.js
|
|
8625
8625
|
const languagesMap = {
|
|
8626
8626
|
ar: 'Arabic',
|
|
@@ -156021,7 +156021,7 @@ var selectOrdinal = function selectOrdinal() {
|
|
|
156021
156021
|
/******/ // This function allow to reference async chunks
|
|
156022
156022
|
/******/ __webpack_require__.u = (chunkId) => {
|
|
156023
156023
|
/******/ // return url for filenames based on template
|
|
156024
|
-
/******/ return "" + (chunkId === 18 ? "dicom-microscopy-viewer" : chunkId) + ".bundle." + {"12":"
|
|
156024
|
+
/******/ return "" + (chunkId === 18 ? "dicom-microscopy-viewer" : chunkId) + ".bundle." + {"12":"078c14f666c71663ae8e","18":"2c146384eb9466d02ff8","23":"e008ad788170f2ed5569","30":"c8dfb82c70ae9ff67f14","90":"d7a1e818bbbd3bce5419","116":"422d1a76d8daccfed61d","125":"aeaad798561853bf6939","128":"fdb6d1d5391b79de4936","150":"c99cc2e1df7cd4085265","181":"73dd6f63fe0ddc52b7eb","202":"591726b6144882ba0ee0","220":"f7e1c96c94245e70f2be","236":"226efc38e453a4aeb7dd","250":"8bc4553ee5c56bf7cf32","281":"e9554f25a9eeac2f43e6","348":"e5082a6425f719eb6658","359":"8da7f102410ca9c0c999","410":"5d03eeef5b705198bf5e","417":"6cadc61b8a455776de31","451":"e59fcdb1f1d3fbe71cd4","471":"b598d406ddfc2666851b","506":"869288177e788d808aaa","579":"8fc434a0c13d3f662d42","604":"a51f83e64004bca5f497","663":"6a389399e5196510e0de","677":"ec5f2b4707db33bd4d8e","686":"b3dbf84eefbef768843f","687":"67d721785216e064fc52","754":"a5c9246c77659eab2739","774":"8ba82ee206266eb2da5e","775":"2285e7e0e67878948c0d","782":"6d57b35a056506c94352","814":"ad8ebe6cffa96a5cfc1f","822":"5cdd9439a62e5c7e902f","886":"9e526affbd17b0ed96a6","967":"8b4adf9b5a7392b51d0c"}[chunkId] + ".js";
|
|
156025
156025
|
/******/ };
|
|
156026
156026
|
/******/ })();
|
|
156027
156027
|
/******/
|
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.1905c07065c4b93afa5a.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':'/116.bundle.422d1a76d8daccfed61d.js'},{'revision':null,'url':'/12.bundle.
|
|
54
|
+
workbox.precaching.precacheAndRoute([{'revision':null,'url':'/116.bundle.422d1a76d8daccfed61d.js'},{'revision':null,'url':'/12.bundle.078c14f666c71663ae8e.js'},{'revision':null,'url':'/125.bundle.aeaad798561853bf6939.js'},{'revision':null,'url':'/128.bundle.fdb6d1d5391b79de4936.js'},{'revision':null,'url':'/150.bundle.c99cc2e1df7cd4085265.js'},{'revision':null,'url':'/181.bundle.73dd6f63fe0ddc52b7eb.js'},{'revision':'8079c6447e119ba0680e8fab5875745d','url':'/181.css'},{'revision':null,'url':'/202.bundle.591726b6144882ba0ee0.js'},{'revision':null,'url':'/220.bundle.f7e1c96c94245e70f2be.js'},{'revision':null,'url':'/23.bundle.e008ad788170f2ed5569.js'},{'revision':null,'url':'/236.bundle.226efc38e453a4aeb7dd.js'},{'revision':null,'url':'/250.bundle.8bc4553ee5c56bf7cf32.js'},{'revision':'0afb25509c7f072fbd7eda42c6895dbf','url':'/250.css'},{'revision':null,'url':'/281.bundle.e9554f25a9eeac2f43e6.js'},{'revision':null,'url':'/30.bundle.c8dfb82c70ae9ff67f14.js'},{'revision':null,'url':'/348.bundle.e5082a6425f719eb6658.js'},{'revision':null,'url':'/359.bundle.8da7f102410ca9c0c999.js'},{'revision':'c4ea120c6da08aa75348edfa3e57ece9','url':'/36785fbd89b0e17f6099.wasm'},{'revision':null,'url':'/410.bundle.5d03eeef5b705198bf5e.js'},{'revision':null,'url':'/417.bundle.6cadc61b8a455776de31.js'},{'revision':null,'url':'/451.bundle.e59fcdb1f1d3fbe71cd4.js'},{'revision':null,'url':'/471.bundle.b598d406ddfc2666851b.js'},{'revision':'c377e1f5fe4a207d270c3f7a8dd3e3ca','url':'/5004fdc02f329ce53b69.wasm'},{'revision':null,'url':'/506.bundle.869288177e788d808aaa.js'},{'revision':'51b8ed55f5b8d448837222f03bdd6de8','url':'/579.css'},{'revision':null,'url':'/604.bundle.a51f83e64004bca5f497.js'},{'revision':'62b4ae8445d191d5aab5503ce475724d','url':'/610.min.worker.js'},{'revision':'3c2206525c18cd87dd28082949a4e43e','url':'/610.min.worker.js.map'},{'revision':'5800265b6831396572fb5d32c6bd8eef','url':'/62ab5d58a2bea7b5a1dc.wasm'},{'revision':'ce10eced3ce34e663d86569b27f5bffb','url':'/65916ef3def695744bda.wasm'},{'revision':null,'url':'/663.bundle.6a389399e5196510e0de.js'},{'revision':null,'url':'/677.bundle.ec5f2b4707db33bd4d8e.js'},{'revision':null,'url':'/686.bundle.b3dbf84eefbef768843f.js'},{'revision':null,'url':'/687.bundle.67d721785216e064fc52.js'},{'revision':null,'url':'/754.bundle.a5c9246c77659eab2739.js'},{'revision':'cf3e4d4fa8884275461c195421812256','url':'/75788f12450d4c5ed494.wasm'},{'revision':'cc4a3a4da4ac1b863a714f93c66c6ef2','url':'/75a0c2dfe07b824c7d21.wasm'},{'revision':null,'url':'/774.bundle.8ba82ee206266eb2da5e.js'},{'revision':null,'url':'/775.bundle.2285e7e0e67878948c0d.js'},{'revision':null,'url':'/782.bundle.6d57b35a056506c94352.js'},{'revision':null,'url':'/814.bundle.ad8ebe6cffa96a5cfc1f.js'},{'revision':null,'url':'/822.bundle.5cdd9439a62e5c7e902f.js'},{'revision':null,'url':'/886.bundle.9e526affbd17b0ed96a6.js'},{'revision':null,'url':'/90.bundle.d7a1e818bbbd3bce5419.js'},{'revision':'74c9647440e51f149ad12923d6ead952','url':'/945.min.worker.js'},{'revision':'cdf6f0457d4af2cef04fc41816241bc1','url':'/945.min.worker.js.map'},{'revision':null,'url':'/967.bundle.8b4adf9b5a7392b51d0c.js'},{'revision':'185e5e0a10fa6ab2fc7b3c38e63d550b','url':'/967.css'},{'revision':'d1895aa7a4595dc279c382e5a31ef9f4','url':'/_headers'},{'revision':'6839a719b6810111d8097998b11293a1','url':'/_redirects'},{'revision':'75b0852380bfab6b77ed10924d558d63','url':'/app-config.js'},{'revision':'cd6768a0b703994232e02c612ae8f5f9','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':'dd001f21b3970d5a7f3e245cc10d21df','url':'/assets/yandex-browser-manifest.json'},{'revision':'52b9a07fe0541fe8c313d9788550bf51','url':'/b6b803111e2d06a825bd.wasm'},{'revision':'7edb59d2be7c993050cb31ded36afa31','url':'/c22b37c3488e1d6c3aa4.wasm'},{'revision':'d907a920fe2d4ba8c270f5584c1118d3','url':'/cornerstoneDICOMImageLoader.min.js'},{'revision':'c6d818c727277f3625a69e43d6a19482','url':'/cornerstoneDICOMImageLoader.min.js.map'},{'revision':null,'url':'/dicom-microscopy-viewer.bundle.2c146384eb9466d02ff8.js'},{'revision':'9d8c85b42d04bb117a3b583d654fbb08','url':'/dicomMicroscopyViewer.min.js'},{'revision':'450494c199cf8dd8e8c34d5e98bf5334','url':'/dicomMicroscopyViewer.min.js.LICENSE.txt'},{'revision':'4acdd19a35d759ec2669f1ba9490937d','url':'/es6-shim.min.js'},{'revision':'791565db341e8852807303918f5f9939','url':'/google.js'},{'revision':'3ee968cfa6745e104772a41cad004278','url':'/index.html'},{'revision':'feee2d4ed9d00c64f0e4d6a46608fecf','url':'/index.worker.e62ecca63f1a2e124230.worker.js'},{'revision':'beaf37c564436e46bbcd825f0330cdbf','url':'/index.worker.e62ecca63f1a2e124230.worker.js.map'},{'revision':'71cec55513e051f0778ad89be760c11a','url':'/index.worker.min.worker.js'},{'revision':'fd1116add443fee52a935df926396e0f','url':'/index.worker.min.worker.js.map'},{'revision':'31c0367ca4160b2c6373e905739c5719','url':'/init-service-worker.js'},{'revision':'74fc9658b62903be2048c1f82a22b4d4','url':'/manifest.json'},{'revision':'3fa71aa0af3e34b4ebd9a71eee0f4bdd','url':'/ohif-logo-light.svg'},{'revision':'7e81da785c63e75650101db6c5d7560e','url':'/ohif-logo.svg'},{'revision':'eadf8bf1d85032a029e2c0df4b8938b0','url':'/oidc-client.min.js'},{'revision':'a1aef5311245f5864315443d12246c37','url':'/polyfill.min.js'},{'revision':'b1e488d9955b62bd2858874df11d5223','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.71",
|
|
4
4
|
"productVersion": "3.4.0",
|
|
5
5
|
"description": "OHIF Viewer",
|
|
6
6
|
"author": "OHIF Contributors",
|
|
@@ -51,22 +51,22 @@
|
|
|
51
51
|
"@cornerstonejs/codec-openjpeg": "^1.2.2",
|
|
52
52
|
"@cornerstonejs/codec-openjph": "^2.4.2",
|
|
53
53
|
"@cornerstonejs/dicom-image-loader": "^1.13.2",
|
|
54
|
-
"@ohif/core": "3.7.0-beta.
|
|
55
|
-
"@ohif/extension-cornerstone": "3.7.0-beta.
|
|
56
|
-
"@ohif/extension-cornerstone-dicom-rt": "3.7.0-beta.
|
|
57
|
-
"@ohif/extension-cornerstone-dicom-seg": "3.7.0-beta.
|
|
58
|
-
"@ohif/extension-cornerstone-dicom-sr": "3.7.0-beta.
|
|
59
|
-
"@ohif/extension-default": "3.7.0-beta.
|
|
60
|
-
"@ohif/extension-dicom-microscopy": "3.7.0-beta.
|
|
61
|
-
"@ohif/extension-dicom-pdf": "3.7.0-beta.
|
|
62
|
-
"@ohif/extension-dicom-video": "3.7.0-beta.
|
|
63
|
-
"@ohif/extension-test": "3.7.0-beta.
|
|
64
|
-
"@ohif/i18n": "3.7.0-beta.
|
|
65
|
-
"@ohif/mode-basic-dev-mode": "3.7.0-beta.
|
|
66
|
-
"@ohif/mode-longitudinal": "3.7.0-beta.
|
|
67
|
-
"@ohif/mode-microscopy": "3.7.0-beta.
|
|
68
|
-
"@ohif/mode-test": "3.7.0-beta.
|
|
69
|
-
"@ohif/ui": "3.7.0-beta.
|
|
54
|
+
"@ohif/core": "3.7.0-beta.71",
|
|
55
|
+
"@ohif/extension-cornerstone": "3.7.0-beta.71",
|
|
56
|
+
"@ohif/extension-cornerstone-dicom-rt": "3.7.0-beta.71",
|
|
57
|
+
"@ohif/extension-cornerstone-dicom-seg": "3.7.0-beta.71",
|
|
58
|
+
"@ohif/extension-cornerstone-dicom-sr": "3.7.0-beta.71",
|
|
59
|
+
"@ohif/extension-default": "3.7.0-beta.71",
|
|
60
|
+
"@ohif/extension-dicom-microscopy": "3.7.0-beta.71",
|
|
61
|
+
"@ohif/extension-dicom-pdf": "3.7.0-beta.71",
|
|
62
|
+
"@ohif/extension-dicom-video": "3.7.0-beta.71",
|
|
63
|
+
"@ohif/extension-test": "3.7.0-beta.71",
|
|
64
|
+
"@ohif/i18n": "3.7.0-beta.71",
|
|
65
|
+
"@ohif/mode-basic-dev-mode": "3.7.0-beta.71",
|
|
66
|
+
"@ohif/mode-longitudinal": "3.7.0-beta.71",
|
|
67
|
+
"@ohif/mode-microscopy": "3.7.0-beta.71",
|
|
68
|
+
"@ohif/mode-test": "3.7.0-beta.71",
|
|
69
|
+
"@ohif/ui": "3.7.0-beta.71",
|
|
70
70
|
"@types/react": "^17.0.38",
|
|
71
71
|
"classnames": "^2.3.2",
|
|
72
72
|
"core-js": "^3.16.1",
|
|
@@ -106,5 +106,5 @@
|
|
|
106
106
|
"webpack-cli": "^4.7.2",
|
|
107
107
|
"webpack-merge": "^5.7.3"
|
|
108
108
|
},
|
|
109
|
-
"gitHead": "
|
|
109
|
+
"gitHead": "64079e0720120a43ee5c1f7c3be2636afe7c5293"
|
|
110
110
|
}
|
|
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
|
|
File without changes
|
|
File without changes
|