@ohif/app 3.7.0-beta.60 → 3.7.0-beta.62
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/{362.bundle.83715cb9a9840bb12baa.js → 362.bundle.2a151f9133ec69afe62f.js} +37 -14
- package/dist/{754.bundle.1884c227b361aefa66b4.js → 754.bundle.7ae67c55a90a6a2d8494.js} +14 -5
- package/dist/{925.bundle.7b06521fc75e0d3f71c3.js → 925.bundle.5e929605d3235ebcdebf.js} +7 -4
- package/dist/{app.bundle.94bb72f0e058333e5069.js → app.bundle.6aab67e2d86a83eb6712.js} +17 -7
- package/dist/index.html +1 -1
- package/dist/sw.js +1 -1
- package/package.json +19 -19
- /package/dist/{12.bundle.56c12c94922a48453cdc.js → 12.bundle.80f93cf58aa62145ca65.js} +0 -0
- /package/dist/{128.bundle.8c6cc23d0aff5dbfdfa3.js → 128.bundle.e9cd21f29f78e27c11c9.js} +0 -0
- /package/dist/{150.bundle.ba741f61af6b3e3c8572.js → 150.bundle.a9e3e6a75a8374f87913.js} +0 -0
- /package/dist/{236.bundle.ae9556bb7966720a6779.js → 236.bundle.a99d4eca55b331878a02.js} +0 -0
- /package/dist/{281.bundle.2be6c2fa032eef85dfa9.js → 281.bundle.1e8645e250e4cd6ba6ca.js} +0 -0
- /package/dist/{30.bundle.2a82953d7d0dc2d66469.js → 30.bundle.427ef5434fd52819af9f.js} +0 -0
- /package/dist/{348.bundle.83326c2c372b22fa9016.js → 348.bundle.f35989e2daa0e3ab2e96.js} +0 -0
- /package/dist/{359.bundle.03c2c422a5ec39645958.js → 359.bundle.cf89aee1673022259ad4.js} +0 -0
- /package/dist/{378.bundle.30dbe7a71f1e24328cf8.js → 378.bundle.e40da18053d1dff916df.js} +0 -0
- /package/dist/{410.bundle.def3577eb1b0379428c0.js → 410.bundle.02c8a49bdca46910e344.js} +0 -0
- /package/dist/{506.bundle.320f4bfd2da8bd012180.js → 506.bundle.530f88c83a16373f284b.js} +0 -0
- /package/dist/{663.bundle.5384a0ee700039674cf4.js → 663.bundle.458432a201e239a1a576.js} +0 -0
- /package/dist/{678.bundle.d0134995debdfe6b8713.js → 678.bundle.ba62e1ffbd6eb423e1cc.js} +0 -0
- /package/dist/{782.bundle.cbf568f1a233bbbd0019.js → 782.bundle.93b1a0f86a4deb12426e.js} +0 -0
- /package/dist/{814.bundle.c7cab0737c2b4eaf9a68.js → 814.bundle.982d5c1771891684f23a.js} +0 -0
|
@@ -2211,8 +2211,8 @@ function ViewerLayout(_ref) {
|
|
|
2211
2211
|
hotkeyDefinitions,
|
|
2212
2212
|
hotkeyDefaults
|
|
2213
2213
|
} = hotkeysManager;
|
|
2214
|
-
const versionNumber = "3.7.0-beta.
|
|
2215
|
-
const commitHash = "
|
|
2214
|
+
const versionNumber = "3.7.0-beta.62";
|
|
2215
|
+
const commitHash = "adedc8c382e18a2e86a569e3d023cc55a157363f";
|
|
2216
2216
|
const menuOptions = [{
|
|
2217
2217
|
title: t('Header:About'),
|
|
2218
2218
|
icon: 'info',
|
|
@@ -6386,13 +6386,16 @@ function DataSourceConfigurationModalComponent(_ref) {
|
|
|
6386
6386
|
} = (0,es/* useTranslation */.$G)('DataSourceConfiguration');
|
|
6387
6387
|
const [itemList, setItemList] = (0,react.useState)();
|
|
6388
6388
|
const [selectedItems, setSelectedItems] = (0,react.useState)(configuredItems);
|
|
6389
|
-
|
|
6390
|
-
// Determines whether to show the full configuration for the data source.
|
|
6391
|
-
// This typically occurs when the configuration component is first displayed.
|
|
6392
|
-
const [showFullConfig, setShowFullConfig] = (0,react.useState)(true);
|
|
6393
6389
|
const [errorMessage, setErrorMessage] = (0,react.useState)();
|
|
6394
6390
|
const [itemLabels] = (0,react.useState)(configurationAPI.getItemLabels());
|
|
6395
6391
|
|
|
6392
|
+
// Determines whether to show the full/existing configuration for the data source.
|
|
6393
|
+
// A full or complete configuration is one where the data source (path) has the
|
|
6394
|
+
// maximum/required number of path items. Anything less is considered not complete and
|
|
6395
|
+
// the configuration starts from scratch (i.e. as if no items are configured at all).
|
|
6396
|
+
// TODO: consider configuration starting from a partial (i.e. non-empty) configuration
|
|
6397
|
+
const [showFullConfig, setShowFullConfig] = (0,react.useState)(itemLabels.length === configuredItems.length);
|
|
6398
|
+
|
|
6396
6399
|
/**
|
|
6397
6400
|
* The index of the selected item that is considered current and for which
|
|
6398
6401
|
* its sub-items should be displayed in the items list component. When the
|
|
@@ -6516,6 +6519,9 @@ function DataSourceConfigurationComponent(_ref) {
|
|
|
6516
6519
|
}
|
|
6517
6520
|
const configAPI = configurationAPIFactory(activeDataSourceDef.sourceName);
|
|
6518
6521
|
setConfigurationAPI(configAPI);
|
|
6522
|
+
|
|
6523
|
+
// New configuration API means that the existing configured items must be cleared.
|
|
6524
|
+
setConfiguredItems(null);
|
|
6519
6525
|
configAPI.getConfiguredItems().then(list => {
|
|
6520
6526
|
if (shouldUpdate) {
|
|
6521
6527
|
setConfiguredItems(list);
|
|
@@ -6529,12 +6535,8 @@ function DataSourceConfigurationComponent(_ref) {
|
|
|
6529
6535
|
sub.unsubscribe();
|
|
6530
6536
|
};
|
|
6531
6537
|
}, []);
|
|
6532
|
-
|
|
6533
|
-
|
|
6534
|
-
}, /*#__PURE__*/react.createElement(ui_src/* Icon */.JO, {
|
|
6535
|
-
name: "settings",
|
|
6536
|
-
className: "cursor-pointer shrink-0 w-3.5 h-3.5 mr-2.5",
|
|
6537
|
-
onClick: () => show({
|
|
6538
|
+
const showConfigurationModal = (0,react.useCallback)(() => {
|
|
6539
|
+
show({
|
|
6538
6540
|
content: Components_DataSourceConfigurationModalComponent,
|
|
6539
6541
|
title: t('Configure Data Source'),
|
|
6540
6542
|
contentProps: {
|
|
@@ -6542,7 +6544,23 @@ function DataSourceConfigurationComponent(_ref) {
|
|
|
6542
6544
|
configuredItems,
|
|
6543
6545
|
onHide: hide
|
|
6544
6546
|
}
|
|
6545
|
-
})
|
|
6547
|
+
});
|
|
6548
|
+
}, [configurationAPI, configuredItems]);
|
|
6549
|
+
(0,react.useEffect)(() => {
|
|
6550
|
+
if (!configurationAPI || !configuredItems) {
|
|
6551
|
+
return;
|
|
6552
|
+
}
|
|
6553
|
+
if (configuredItems.length !== configurationAPI.getItemLabels().length) {
|
|
6554
|
+
// Not the correct number of configured items, so show the modal to configure the data source.
|
|
6555
|
+
showConfigurationModal();
|
|
6556
|
+
}
|
|
6557
|
+
}, [configurationAPI, configuredItems, showConfigurationModal]);
|
|
6558
|
+
return configuredItems ? /*#__PURE__*/react.createElement("div", {
|
|
6559
|
+
className: "flex text-aqua-pale overflow-hidden items-center"
|
|
6560
|
+
}, /*#__PURE__*/react.createElement(ui_src/* Icon */.JO, {
|
|
6561
|
+
name: "settings",
|
|
6562
|
+
className: "cursor-pointer shrink-0 w-3.5 h-3.5 mr-2.5",
|
|
6563
|
+
onClick: showConfigurationModal
|
|
6546
6564
|
}), configuredItems.map((item, itemIndex) => {
|
|
6547
6565
|
return /*#__PURE__*/react.createElement("div", {
|
|
6548
6566
|
key: itemIndex,
|
|
@@ -6651,9 +6669,14 @@ class GoogleCloudDataSourceConfigurationAPI {
|
|
|
6651
6669
|
const dataSourceDefinition = this._extensionManager.getDataSourceDefinition(this._dataSourceName);
|
|
6652
6670
|
const url = dataSourceDefinition.configuration.wadoUriRoot;
|
|
6653
6671
|
const projectsIndex = url.indexOf('projects');
|
|
6672
|
+
// Split the configured URL into (essentially) pairs (i.e. item type followed by item)
|
|
6673
|
+
// Explicitly: ['projects','aProject','locations','aLocation','datasets','aDataSet','dicomStores','aDicomStore']
|
|
6674
|
+
// Note that a partial configuration will have a subset of the above.
|
|
6654
6675
|
const urlSplit = url.substring(projectsIndex).split('/');
|
|
6655
6676
|
const configuredItems = [];
|
|
6656
|
-
for (let itemType = 0;
|
|
6677
|
+
for (let itemType = 0;
|
|
6678
|
+
// the number of configured items is either the max (4) or the number extracted from the url split
|
|
6679
|
+
itemType < 4 && (itemType + 1) * 2 < urlSplit.length; itemType += 1) {
|
|
6657
6680
|
if (itemType === ItemType.projects) {
|
|
6658
6681
|
const projectId = urlSplit[1];
|
|
6659
6682
|
const projectUrl = `${initialUrl}/projects/${projectId}`;
|
|
@@ -46842,6 +46842,7 @@ class BaseVolumeViewport extends RenderingEngine_Viewport {
|
|
|
46842
46842
|
};
|
|
46843
46843
|
}
|
|
46844
46844
|
_setVolumeActors(volumeActorEntries) {
|
|
46845
|
+
this.inverted = false;
|
|
46845
46846
|
this.setActors(volumeActorEntries);
|
|
46846
46847
|
}
|
|
46847
46848
|
_getOrientationVectors(orientation) {
|
|
@@ -47071,12 +47072,20 @@ class VolumeViewport extends RenderingEngine_BaseVolumeViewport {
|
|
|
47071
47072
|
this.updateClippingPlanesForActors(currentCamera);
|
|
47072
47073
|
this.triggerCameraModifiedEventIfNecessary(currentCamera, currentCamera);
|
|
47073
47074
|
}
|
|
47074
|
-
resetProperties() {
|
|
47075
|
-
this._resetProperties();
|
|
47075
|
+
resetProperties(volumeId) {
|
|
47076
|
+
this._resetProperties(volumeId);
|
|
47076
47077
|
}
|
|
47077
|
-
_resetProperties() {
|
|
47078
|
-
const volumeActor =
|
|
47078
|
+
_resetProperties(volumeId) {
|
|
47079
|
+
const volumeActor = volumeId
|
|
47080
|
+
? this.getActor(volumeId)
|
|
47081
|
+
: this.getDefaultActor();
|
|
47082
|
+
if (!volumeActor) {
|
|
47083
|
+
throw new Error(`No actor found for the given volumeId: ${volumeId}`);
|
|
47084
|
+
}
|
|
47079
47085
|
const imageVolume = esm_cache.getVolume(volumeActor.uid);
|
|
47086
|
+
if (!imageVolume) {
|
|
47087
|
+
throw new Error(`imageVolume with id: ${volumeActor.uid} does not exist in cache`);
|
|
47088
|
+
}
|
|
47080
47089
|
helpers_setDefaultVolumeVOI(volumeActor.actor, imageVolume, false);
|
|
47081
47090
|
}
|
|
47082
47091
|
}
|
|
@@ -49761,7 +49770,7 @@ class VolumeViewport3D extends RenderingEngine_BaseVolumeViewport {
|
|
|
49761
49770
|
setBlendMode(blendMode, filterActorUIDs, immediate) {
|
|
49762
49771
|
return null;
|
|
49763
49772
|
}
|
|
49764
|
-
resetProperties() {
|
|
49773
|
+
resetProperties(volumeId) {
|
|
49765
49774
|
return null;
|
|
49766
49775
|
}
|
|
49767
49776
|
}
|
|
@@ -20951,10 +20951,13 @@ function getDataInTime(dynamicVolume, options) {
|
|
|
20951
20951
|
}
|
|
20952
20952
|
if (options.maskVolumeId) {
|
|
20953
20953
|
const segmentationVolume = esm.cache.getVolume(options.maskVolumeId);
|
|
20954
|
-
const
|
|
20955
|
-
|
|
20956
|
-
|
|
20957
|
-
|
|
20954
|
+
const segScalarData = segmentationVolume.getScalarData();
|
|
20955
|
+
const indexArray = [];
|
|
20956
|
+
for (let i = 0, len = segScalarData.length; i < len; i++) {
|
|
20957
|
+
if (segScalarData[i] !== 0) {
|
|
20958
|
+
indexArray.push(i);
|
|
20959
|
+
}
|
|
20960
|
+
}
|
|
20958
20961
|
const dataInTime = _getTimePointDataMask(frames, indexArray, dynamicVolume);
|
|
20959
20962
|
return dataInTime;
|
|
20960
20963
|
}
|
|
@@ -228,6 +228,7 @@ function DataSourceWrapper(props) {
|
|
|
228
228
|
}, [dataSource]);
|
|
229
229
|
(0,react.useEffect)(() => {
|
|
230
230
|
const dataSourceChangedCallback = () => {
|
|
231
|
+
setIsLoading(false);
|
|
231
232
|
setIsDataSourceInitialized(false);
|
|
232
233
|
setDataSourcePath('');
|
|
233
234
|
setDataSource(extensionManager.getActiveDataSource()[0]);
|
|
@@ -269,7 +270,16 @@ function DataSourceWrapper(props) {
|
|
|
269
270
|
const isLocationUpdated = typeof data.location === 'string' || !areLocationsTheSame(data.location, location);
|
|
270
271
|
const isDataInvalid = !isSamePage || !isLoading && (newOffset !== previousOffset || isLocationUpdated);
|
|
271
272
|
if (isDataInvalid) {
|
|
272
|
-
getData().catch(() =>
|
|
273
|
+
getData().catch(() => {
|
|
274
|
+
// If there is a data source configuration API, then the Worklist will popup the dialog to attempt to configure it
|
|
275
|
+
// and attempt to resolve this issue.
|
|
276
|
+
if (dataSource.getConfig().configurationAPI) {
|
|
277
|
+
return;
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
// No data source configuration API, so navigate to the not found server page.
|
|
281
|
+
navigate('/notfoundserver', '_self');
|
|
282
|
+
});
|
|
273
283
|
}
|
|
274
284
|
} catch (ex) {
|
|
275
285
|
console.warn(ex);
|
|
@@ -959,8 +969,8 @@ function WorkList(_ref) {
|
|
|
959
969
|
};
|
|
960
970
|
});
|
|
961
971
|
const hasStudies = numOfStudies > 0;
|
|
962
|
-
const versionNumber = "3.7.0-beta.
|
|
963
|
-
const commitHash = "
|
|
972
|
+
const versionNumber = "3.7.0-beta.62";
|
|
973
|
+
const commitHash = "adedc8c382e18a2e86a569e3d023cc55a157363f";
|
|
964
974
|
const menuOptions = [{
|
|
965
975
|
title: t('Header:About'),
|
|
966
976
|
icon: 'info',
|
|
@@ -2928,8 +2938,8 @@ function OpenIdConnectRoutes(_ref) {
|
|
|
2928
2938
|
Authorization: `Bearer ${user.access_token}`
|
|
2929
2939
|
};
|
|
2930
2940
|
};
|
|
2931
|
-
const handleUnauthenticated = () => {
|
|
2932
|
-
userManager.signinRedirect();
|
|
2941
|
+
const handleUnauthenticated = async () => {
|
|
2942
|
+
await userManager.signinRedirect();
|
|
2933
2943
|
|
|
2934
2944
|
// return null because this is used in a react component
|
|
2935
2945
|
return null;
|
|
@@ -7045,7 +7055,7 @@ const detectionOptions = {
|
|
|
7045
7055
|
}
|
|
7046
7056
|
});
|
|
7047
7057
|
;// CONCATENATED MODULE: ../../i18n/package.json
|
|
7048
|
-
const package_namespaceObject = JSON.parse('{"i8":"3.7.0-beta.
|
|
7058
|
+
const package_namespaceObject = JSON.parse('{"i8":"3.7.0-beta.61"}');
|
|
7049
7059
|
;// CONCATENATED MODULE: ../../i18n/src/utils.js
|
|
7050
7060
|
const languagesMap = {
|
|
7051
7061
|
ar: 'Arabic',
|
|
@@ -155897,7 +155907,7 @@ var selectOrdinal = function selectOrdinal() {
|
|
|
155897
155907
|
/******/ // This function allow to reference async chunks
|
|
155898
155908
|
/******/ __webpack_require__.u = (chunkId) => {
|
|
155899
155909
|
/******/ // return url for filenames based on template
|
|
155900
|
-
/******/ return "" + (chunkId === 18 ? "dicom-microscopy-viewer" : chunkId) + ".bundle." + {"12":"
|
|
155910
|
+
/******/ return "" + (chunkId === 18 ? "dicom-microscopy-viewer" : chunkId) + ".bundle." + {"12":"80f93cf58aa62145ca65","18":"2c146384eb9466d02ff8","23":"e008ad788170f2ed5569","30":"427ef5434fd52819af9f","125":"1ae4c6313c31cd0502cc","128":"e9cd21f29f78e27c11c9","150":"a9e3e6a75a8374f87913","181":"70c4340cbe29bd14aafc","202":"8007de18c96daaceca7f","220":"f7e1c96c94245e70f2be","236":"a99d4eca55b331878a02","250":"0d497b1b8afb0cbbe02f","281":"1e8645e250e4cd6ba6ca","348":"f35989e2daa0e3ab2e96","359":"cf89aee1673022259ad4","362":"2a151f9133ec69afe62f","378":"e40da18053d1dff916df","410":"02c8a49bdca46910e344","417":"720dc8f3a6e99f378aa9","451":"a573877dff7b43382138","471":"e9ecd59867a19e323234","506":"530f88c83a16373f284b","579":"8fc434a0c13d3f662d42","604":"a51f83e64004bca5f497","663":"458432a201e239a1a576","677":"ec5f2b4707db33bd4d8e","678":"ba62e1ffbd6eb423e1cc","686":"70565410179f1e7d22e6","754":"7ae67c55a90a6a2d8494","774":"8ba82ee206266eb2da5e","775":"2285e7e0e67878948c0d","782":"93b1a0f86a4deb12426e","814":"982d5c1771891684f23a","822":"99bf759483aa32086346","886":"c5a6b96760ea43352375","925":"5e929605d3235ebcdebf"}[chunkId] + ".js";
|
|
155901
155911
|
/******/ };
|
|
155902
155912
|
/******/ })();
|
|
155903
155913
|
/******/
|
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.6aab67e2d86a83eb6712.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':'/12.bundle.
|
|
54
|
+
workbox.precaching.precacheAndRoute([{'revision':null,'url':'/12.bundle.80f93cf58aa62145ca65.js'},{'revision':null,'url':'/125.bundle.1ae4c6313c31cd0502cc.js'},{'revision':null,'url':'/128.bundle.e9cd21f29f78e27c11c9.js'},{'revision':null,'url':'/150.bundle.a9e3e6a75a8374f87913.js'},{'revision':null,'url':'/181.bundle.70c4340cbe29bd14aafc.js'},{'revision':'8079c6447e119ba0680e8fab5875745d','url':'/181.css'},{'revision':null,'url':'/202.bundle.8007de18c96daaceca7f.js'},{'revision':null,'url':'/220.bundle.f7e1c96c94245e70f2be.js'},{'revision':null,'url':'/23.bundle.e008ad788170f2ed5569.js'},{'revision':null,'url':'/236.bundle.a99d4eca55b331878a02.js'},{'revision':null,'url':'/250.bundle.0d497b1b8afb0cbbe02f.js'},{'revision':'0afb25509c7f072fbd7eda42c6895dbf','url':'/250.css'},{'revision':null,'url':'/281.bundle.1e8645e250e4cd6ba6ca.js'},{'revision':null,'url':'/30.bundle.427ef5434fd52819af9f.js'},{'revision':null,'url':'/348.bundle.f35989e2daa0e3ab2e96.js'},{'revision':null,'url':'/359.bundle.cf89aee1673022259ad4.js'},{'revision':null,'url':'/362.bundle.2a151f9133ec69afe62f.js'},{'revision':'c4ea120c6da08aa75348edfa3e57ece9','url':'/36785fbd89b0e17f6099.wasm'},{'revision':null,'url':'/378.bundle.e40da18053d1dff916df.js'},{'revision':null,'url':'/410.bundle.02c8a49bdca46910e344.js'},{'revision':null,'url':'/417.bundle.720dc8f3a6e99f378aa9.js'},{'revision':null,'url':'/451.bundle.a573877dff7b43382138.js'},{'revision':null,'url':'/471.bundle.e9ecd59867a19e323234.js'},{'revision':'c377e1f5fe4a207d270c3f7a8dd3e3ca','url':'/5004fdc02f329ce53b69.wasm'},{'revision':null,'url':'/506.bundle.530f88c83a16373f284b.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.458432a201e239a1a576.js'},{'revision':null,'url':'/677.bundle.ec5f2b4707db33bd4d8e.js'},{'revision':null,'url':'/678.bundle.ba62e1ffbd6eb423e1cc.js'},{'revision':'185e5e0a10fa6ab2fc7b3c38e63d550b','url':'/678.css'},{'revision':null,'url':'/686.bundle.70565410179f1e7d22e6.js'},{'revision':null,'url':'/754.bundle.7ae67c55a90a6a2d8494.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.93b1a0f86a4deb12426e.js'},{'revision':null,'url':'/814.bundle.982d5c1771891684f23a.js'},{'revision':null,'url':'/822.bundle.99bf759483aa32086346.js'},{'revision':null,'url':'/886.bundle.c5a6b96760ea43352375.js'},{'revision':null,'url':'/925.bundle.5e929605d3235ebcdebf.js'},{'revision':'74c9647440e51f149ad12923d6ead952','url':'/945.min.worker.js'},{'revision':'cdf6f0457d4af2cef04fc41816241bc1','url':'/945.min.worker.js.map'},{'revision':'d1895aa7a4595dc279c382e5a31ef9f4','url':'/_headers'},{'revision':'6839a719b6810111d8097998b11293a1','url':'/_redirects'},{'revision':'75b0852380bfab6b77ed10924d558d63','url':'/app-config.js'},{'revision':'4996f24552a5d44e6da4b72070dd9a09','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':'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':'0ca44a1b8719e835645ffa804a9d1395','url':'/es6-shim.min.js'},{'revision':'e85722bce14175b05d7cd8791164ff65','url':'/google.js'},{'revision':'e83c0cc68128551778fd5109db10dbc8','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':'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.62",
|
|
4
4
|
"productVersion": "3.4.0",
|
|
5
5
|
"description": "OHIF Viewer",
|
|
6
6
|
"author": "OHIF Contributors",
|
|
@@ -50,23 +50,23 @@
|
|
|
50
50
|
"@cornerstonejs/codec-libjpeg-turbo-8bit": "^1.2.2",
|
|
51
51
|
"@cornerstonejs/codec-openjpeg": "^1.2.2",
|
|
52
52
|
"@cornerstonejs/codec-openjph": "^2.4.2",
|
|
53
|
-
"@cornerstonejs/dicom-image-loader": "^1.11.
|
|
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.
|
|
53
|
+
"@cornerstonejs/dicom-image-loader": "^1.11.4",
|
|
54
|
+
"@ohif/core": "3.7.0-beta.62",
|
|
55
|
+
"@ohif/extension-cornerstone": "3.7.0-beta.62",
|
|
56
|
+
"@ohif/extension-cornerstone-dicom-rt": "3.7.0-beta.62",
|
|
57
|
+
"@ohif/extension-cornerstone-dicom-seg": "3.7.0-beta.62",
|
|
58
|
+
"@ohif/extension-cornerstone-dicom-sr": "3.7.0-beta.62",
|
|
59
|
+
"@ohif/extension-default": "3.7.0-beta.62",
|
|
60
|
+
"@ohif/extension-dicom-microscopy": "3.7.0-beta.62",
|
|
61
|
+
"@ohif/extension-dicom-pdf": "3.7.0-beta.62",
|
|
62
|
+
"@ohif/extension-dicom-video": "3.7.0-beta.62",
|
|
63
|
+
"@ohif/extension-test": "3.7.0-beta.62",
|
|
64
|
+
"@ohif/i18n": "3.7.0-beta.62",
|
|
65
|
+
"@ohif/mode-basic-dev-mode": "3.7.0-beta.62",
|
|
66
|
+
"@ohif/mode-longitudinal": "3.7.0-beta.62",
|
|
67
|
+
"@ohif/mode-microscopy": "3.7.0-beta.62",
|
|
68
|
+
"@ohif/mode-test": "3.7.0-beta.62",
|
|
69
|
+
"@ohif/ui": "3.7.0-beta.62",
|
|
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": "5dafac7c9203c31a47f81021a6e72195527e0bdc"
|
|
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
|