@ohif/app 3.7.0-beta.100 → 3.7.0-beta.101
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/{342.bundle.6edc7ac022b4218ec99f.js → 342.bundle.d44d95d71fb2e5d12367.js} +27 -12
- package/dist/{82.bundle.7a89cd8b81eb7e1e5c66.js → 82.bundle.be2ff9210bb2fad38907.js} +24 -23
- package/dist/{app.bundle.dc0e89948c4f4568fe20.js → app.bundle.7d673420913b4ea775e5.js} +46 -50
- package/dist/index.html +1 -1
- package/dist/sw.js +1 -1
- package/package.json +17 -17
- /package/dist/{12.bundle.34050abb042540a90a3a.js → 12.bundle.596ce30cd85f6b9a1e47.js} +0 -0
- /package/dist/{19.bundle.eef637102334f1832ba9.js → 19.bundle.ce766e7df8a696dbbf02.js} +0 -0
- /package/dist/{221.bundle.0b9f7401294213262852.js → 221.bundle.dcacfa132a78c43ae8fe.js} +0 -0
- /package/dist/{236.bundle.7768b3e29b1fd618b9ec.js → 236.bundle.63061204c6e1d3ebda51.js} +0 -0
- /package/dist/{281.bundle.39cb630582cf8114fd5e.js → 281.bundle.e8f6e02a0cb9ef57e70f.js} +0 -0
- /package/dist/{359.bundle.a8f6cf2f90fe05fc346d.js → 359.bundle.69603175835e0b5b7532.js} +0 -0
- /package/dist/{370.bundle.4e1276530ba7757347f5.js → 370.bundle.25df86d9d452b1774297.js} +0 -0
- /package/dist/{410.bundle.5a330214c0c31cbf2551.js → 410.bundle.f8924c20812caea77a95.js} +0 -0
- /package/dist/{506.bundle.ac385e382f79bbf4f306.js → 506.bundle.a788df1a79060b03fdb0.js} +0 -0
- /package/dist/{613.bundle.f75fd669ddfe4ecf9c1b.js → 613.bundle.1044517a8a209ba730f6.js} +0 -0
- /package/dist/{663.bundle.3863ac49f85320c8ca96.js → 663.bundle.f96cd84411734fc5cbd5.js} +0 -0
- /package/dist/{687.bundle.ebd1260565c31ab9ad08.js → 687.bundle.e79e2ab836a1d2adacf4.js} +0 -0
- /package/dist/{782.bundle.8c17030f76b75035564c.js → 782.bundle.c7c9b143e04a7ef54d1d.js} +0 -0
- /package/dist/{814.bundle.cc0ed4fc75cb16e34f02.js → 814.bundle.573f81eb69e871f5deb0.js} +0 -0
- /package/dist/{99.bundle.c6876aaaa3ff2f1b08a1.js → 99.bundle.9bd882e014262ad3ebf4.js} +0 -0
|
@@ -831,7 +831,7 @@ class StaticWadoClient extends dicomweb_client_es.api.DICOMwebClient {
|
|
|
831
831
|
if (!valueElem) {
|
|
832
832
|
return false;
|
|
833
833
|
}
|
|
834
|
-
if (valueElem.vr
|
|
834
|
+
if (valueElem.vr === 'DA' && valueElem.Value?.[0]) {
|
|
835
835
|
return this.compareDateRange(testValue, valueElem.Value[0]);
|
|
836
836
|
}
|
|
837
837
|
const value = valueElem.Value;
|
|
@@ -2166,8 +2166,8 @@ function ViewerHeader(_ref) {
|
|
|
2166
2166
|
hotkeyDefinitions,
|
|
2167
2167
|
hotkeyDefaults
|
|
2168
2168
|
} = hotkeysManager;
|
|
2169
|
-
const versionNumber = "3.7.0-beta.
|
|
2170
|
-
const commitHash = "
|
|
2169
|
+
const versionNumber = "3.7.0-beta.101";
|
|
2170
|
+
const commitHash = "8bc12a37d0353160ae5ea4624dc0b244b7d59c07";
|
|
2171
2171
|
const menuOptions = [{
|
|
2172
2172
|
title: t('Header:About'),
|
|
2173
2173
|
icon: 'info',
|
|
@@ -2508,7 +2508,6 @@ function PanelStudyBrowser(_ref) {
|
|
|
2508
2508
|
const [studyDisplayList, setStudyDisplayList] = (0,react.useState)([]);
|
|
2509
2509
|
const [displaySets, setDisplaySets] = (0,react.useState)([]);
|
|
2510
2510
|
const [thumbnailImageSrcMap, setThumbnailImageSrcMap] = (0,react.useState)({});
|
|
2511
|
-
const isMounted = (0,react.useRef)(true);
|
|
2512
2511
|
const onDoubleClickThumbnailHandler = displaySetInstanceUID => {
|
|
2513
2512
|
let updatedViewports = [];
|
|
2514
2513
|
const viewportId = activeViewportId;
|
|
@@ -2585,9 +2584,6 @@ function PanelStudyBrowser(_ref) {
|
|
|
2585
2584
|
}
|
|
2586
2585
|
// When the image arrives, render it and store the result in the thumbnailImgSrcMap
|
|
2587
2586
|
newImageSrcEntry[dSet.displaySetInstanceUID] = await getImageSrc(imageId);
|
|
2588
|
-
if (!isMounted.current) {
|
|
2589
|
-
return;
|
|
2590
|
-
}
|
|
2591
2587
|
setThumbnailImageSrcMap(prevState => {
|
|
2592
2588
|
return {
|
|
2593
2589
|
...prevState,
|
|
@@ -2595,9 +2591,6 @@ function PanelStudyBrowser(_ref) {
|
|
|
2595
2591
|
};
|
|
2596
2592
|
});
|
|
2597
2593
|
});
|
|
2598
|
-
return () => {
|
|
2599
|
-
isMounted.current = false;
|
|
2600
|
-
};
|
|
2601
2594
|
}, [StudyInstanceUIDs, dataSource, displaySetService, getImageSrc]);
|
|
2602
2595
|
|
|
2603
2596
|
// ~~ displaySets
|
|
@@ -5570,6 +5563,7 @@ const commandsModule = _ref => {
|
|
|
5570
5563
|
stageIndex,
|
|
5571
5564
|
reset = false
|
|
5572
5565
|
} = _ref3;
|
|
5566
|
+
const primaryToolBeforeHPChange = toolbarService.getActivePrimaryTool();
|
|
5573
5567
|
try {
|
|
5574
5568
|
// Stores in the state the display set selector id to displaySetUID mapping
|
|
5575
5569
|
// Pass in viewportId for the active viewport. This item will get set as
|
|
@@ -5632,7 +5626,27 @@ const commandsModule = _ref => {
|
|
|
5632
5626
|
const {
|
|
5633
5627
|
protocol
|
|
5634
5628
|
} = hangingProtocolService.getActiveProtocol();
|
|
5635
|
-
actions.toggleHpTools(
|
|
5629
|
+
actions.toggleHpTools();
|
|
5630
|
+
|
|
5631
|
+
// try to use the same tool in the new hanging protocol stage
|
|
5632
|
+
const primaryButton = toolbarService.getButton(primaryToolBeforeHPChange);
|
|
5633
|
+
if (primaryButton) {
|
|
5634
|
+
// is there any type of interaction on this button, if not it might be in the
|
|
5635
|
+
// items. This is a bit of a hack, but it works for now.
|
|
5636
|
+
|
|
5637
|
+
let interactionType = primaryButton.props?.interactionType;
|
|
5638
|
+
if (!interactionType && primaryButton.props?.items) {
|
|
5639
|
+
const firstItem = primaryButton.props.items[0];
|
|
5640
|
+
interactionType = firstItem.props?.interactionType || firstItem.props?.type;
|
|
5641
|
+
}
|
|
5642
|
+
if (interactionType) {
|
|
5643
|
+
toolbarService.recordInteraction({
|
|
5644
|
+
interactionType,
|
|
5645
|
+
...primaryButton.props
|
|
5646
|
+
});
|
|
5647
|
+
}
|
|
5648
|
+
}
|
|
5649
|
+
|
|
5636
5650
|
// Send the notification about updating the state
|
|
5637
5651
|
if (protocolId !== hpInfo.protocolId) {
|
|
5638
5652
|
// The old protocol callbacks are used for turning off things
|
|
@@ -5645,7 +5659,8 @@ const commandsModule = _ref => {
|
|
|
5645
5659
|
commandsManager.run(protocol.callbacks?.onProtocolEnter);
|
|
5646
5660
|
return true;
|
|
5647
5661
|
} catch (e) {
|
|
5648
|
-
|
|
5662
|
+
console.error(e);
|
|
5663
|
+
actions.toggleHpTools();
|
|
5649
5664
|
uiNotificationService.show({
|
|
5650
5665
|
title: 'Apply Hanging Protocol',
|
|
5651
5666
|
message: 'The hanging protocol could not be applied.',
|
|
@@ -4786,7 +4786,6 @@ function commandsModule(_ref) {
|
|
|
4786
4786
|
toolGroupService,
|
|
4787
4787
|
cineService,
|
|
4788
4788
|
toolbarService,
|
|
4789
|
-
stateSyncService,
|
|
4790
4789
|
uiDialogService,
|
|
4791
4790
|
cornerstoneViewportService,
|
|
4792
4791
|
uiNotificationService,
|
|
@@ -4913,7 +4912,7 @@ function commandsModule(_ref) {
|
|
|
4913
4912
|
* @param props - containing the updates to apply
|
|
4914
4913
|
* @param props.measurementKey - chooses the measurement key to apply the
|
|
4915
4914
|
* code to. This will typically be finding or site to apply a
|
|
4916
|
-
*
|
|
4915
|
+
* finding code or a findingSites code.
|
|
4917
4916
|
* @param props.code - A coding scheme value from DICOM, including:
|
|
4918
4917
|
* * CodeValue - the language independent code, for example '1234'
|
|
4919
4918
|
* * CodingSchemeDesignator - the issue of the code value
|
|
@@ -4989,6 +4988,22 @@ function commandsModule(_ref) {
|
|
|
4989
4988
|
} = _ref7;
|
|
4990
4989
|
utils_callInputDialog(uiDialogService, data, callback);
|
|
4991
4990
|
},
|
|
4991
|
+
cleanUpCrosshairs: () => {
|
|
4992
|
+
// if the crosshairs tool is active, deactivate it and set window level active
|
|
4993
|
+
// since we are going back to main non-mpr HP
|
|
4994
|
+
const activeViewportToolGroup = toolGroupService.getToolGroup(null);
|
|
4995
|
+
if (activeViewportToolGroup._toolInstances?.Crosshairs?.mode === dist_esm.Enums.ToolModes.Active) {
|
|
4996
|
+
actions.toolbarServiceRecordInteraction({
|
|
4997
|
+
interactionType: 'tool',
|
|
4998
|
+
commands: [{
|
|
4999
|
+
commandOptions: {
|
|
5000
|
+
toolName: 'WindowLevel'
|
|
5001
|
+
},
|
|
5002
|
+
context: 'CORNERSTONE'
|
|
5003
|
+
}]
|
|
5004
|
+
});
|
|
5005
|
+
}
|
|
5006
|
+
},
|
|
4992
5007
|
toggleCine: () => {
|
|
4993
5008
|
const {
|
|
4994
5009
|
viewports
|
|
@@ -5075,16 +5090,7 @@ function commandsModule(_ref) {
|
|
|
5075
5090
|
return;
|
|
5076
5091
|
}
|
|
5077
5092
|
const toolGroup = toolGroupService.getToolGroup(toolGroupId);
|
|
5078
|
-
|
|
5079
|
-
|
|
5080
|
-
// if toolGroup has been destroyed, or its viewports have been removed
|
|
5081
|
-
if (!toolGroupViewportIds || !toolGroupViewportIds.length) {
|
|
5082
|
-
return;
|
|
5083
|
-
}
|
|
5084
|
-
const filteredViewports = Array.from(viewports.values()).filter(viewport => {
|
|
5085
|
-
return toolGroupViewportIds.includes(viewport.viewportId);
|
|
5086
|
-
});
|
|
5087
|
-
if (!filteredViewports.length) {
|
|
5093
|
+
if (!toolGroup) {
|
|
5088
5094
|
return;
|
|
5089
5095
|
}
|
|
5090
5096
|
if (!toolGroup.getToolInstance(toolName)) {
|
|
@@ -5546,6 +5552,9 @@ function commandsModule(_ref) {
|
|
|
5546
5552
|
},
|
|
5547
5553
|
setToolbarToggled: {
|
|
5548
5554
|
commandFn: actions.setToolbarToggled
|
|
5555
|
+
},
|
|
5556
|
+
cleanUpCrosshairs: {
|
|
5557
|
+
commandFn: actions.cleanUpCrosshairs
|
|
5549
5558
|
}
|
|
5550
5559
|
};
|
|
5551
5560
|
return {
|
|
@@ -5579,16 +5588,7 @@ const mpr = {
|
|
|
5579
5588
|
}],
|
|
5580
5589
|
// Turns off crosshairs when switching out of MPR mode
|
|
5581
5590
|
onProtocolExit: [{
|
|
5582
|
-
commandName: '
|
|
5583
|
-
commandOptions: {
|
|
5584
|
-
interactionType: 'tool',
|
|
5585
|
-
commands: [{
|
|
5586
|
-
commandOptions: {
|
|
5587
|
-
toolName: 'WindowLevel'
|
|
5588
|
-
},
|
|
5589
|
-
context: 'CORNERSTONE'
|
|
5590
|
-
}]
|
|
5591
|
-
}
|
|
5591
|
+
commandName: 'cleanUpCrosshairs'
|
|
5592
5592
|
}]
|
|
5593
5593
|
},
|
|
5594
5594
|
displaySetSelectors: {
|
|
@@ -8069,7 +8069,8 @@ class CornerstoneCacheService {
|
|
|
8069
8069
|
for (const segmentation of segmentations) {
|
|
8070
8070
|
const segDisplaySetInstanceUID = segmentation.displaySetInstanceUID;
|
|
8071
8071
|
const segDisplaySet = displaySetService.getDisplaySetByUID(segDisplaySetInstanceUID);
|
|
8072
|
-
const
|
|
8072
|
+
const instance = segDisplaySet.instances?.[0] || segDisplaySet.instance;
|
|
8073
|
+
const shouldDisplaySeg = segmentationService.shouldRenderSegmentation(viewportDisplaySetInstanceUIDs, instance.FrameOfReferenceUID);
|
|
8073
8074
|
if (shouldDisplaySeg) {
|
|
8074
8075
|
return true;
|
|
8075
8076
|
}
|
|
@@ -276,7 +276,8 @@ function DataSourceWrapper(props) {
|
|
|
276
276
|
const isLocationUpdated = typeof data.location === 'string' || !areLocationsTheSame(data.location, location);
|
|
277
277
|
const isDataInvalid = !isSamePage || !isLoading && (newOffset !== previousOffset || isLocationUpdated);
|
|
278
278
|
if (isDataInvalid) {
|
|
279
|
-
getData().catch(
|
|
279
|
+
getData().catch(e => {
|
|
280
|
+
console.error(e);
|
|
280
281
|
// If there is a data source configuration API, then the Worklist will popup the dialog to attempt to configure it
|
|
281
282
|
// and attempt to resolve this issue.
|
|
282
283
|
if (dataSource.getConfig().configurationAPI) {
|
|
@@ -974,8 +975,8 @@ function WorkList(_ref) {
|
|
|
974
975
|
};
|
|
975
976
|
});
|
|
976
977
|
const hasStudies = numOfStudies > 0;
|
|
977
|
-
const versionNumber = "3.7.0-beta.
|
|
978
|
-
const commitHash = "
|
|
978
|
+
const versionNumber = "3.7.0-beta.101";
|
|
979
|
+
const commitHash = "8bc12a37d0353160ae5ea4624dc0b244b7d59c07";
|
|
979
980
|
const menuOptions = [{
|
|
980
981
|
title: t('Header:About'),
|
|
981
982
|
icon: 'info',
|
|
@@ -8673,7 +8674,7 @@ const detectionOptions = {
|
|
|
8673
8674
|
}
|
|
8674
8675
|
});
|
|
8675
8676
|
;// CONCATENATED MODULE: ../../i18n/package.json
|
|
8676
|
-
const package_namespaceObject = JSON.parse('{"i8":"3.7.0-beta.
|
|
8677
|
+
const package_namespaceObject = JSON.parse('{"i8":"3.7.0-beta.100"}');
|
|
8677
8678
|
;// CONCATENATED MODULE: ../../i18n/src/utils.js
|
|
8678
8679
|
const languagesMap = {
|
|
8679
8680
|
ar: 'Arabic',
|
|
@@ -53757,9 +53758,17 @@ class ToolbarService extends pubSubServiceInterface/* PubSubService */.h {
|
|
|
53757
53758
|
const {
|
|
53758
53759
|
groupId,
|
|
53759
53760
|
itemId,
|
|
53760
|
-
|
|
53761
|
-
|
|
53761
|
+
commands,
|
|
53762
|
+
type
|
|
53763
|
+
} = interaction;
|
|
53764
|
+
let {
|
|
53765
|
+
interactionType
|
|
53762
53766
|
} = interaction;
|
|
53767
|
+
|
|
53768
|
+
// if not interaction type, assume the type can be used
|
|
53769
|
+
if (!interactionType) {
|
|
53770
|
+
interactionType = type;
|
|
53771
|
+
}
|
|
53763
53772
|
switch (interactionType) {
|
|
53764
53773
|
case 'action':
|
|
53765
53774
|
{
|
|
@@ -53877,6 +53886,9 @@ class ToolbarService extends pubSubServiceInterface/* PubSubService */.h {
|
|
|
53877
53886
|
});
|
|
53878
53887
|
return activeTools;
|
|
53879
53888
|
}
|
|
53889
|
+
getActivePrimaryTool() {
|
|
53890
|
+
return this.state.primaryToolId;
|
|
53891
|
+
}
|
|
53880
53892
|
|
|
53881
53893
|
/** Sets the toggle state of a button to the isToggled state */
|
|
53882
53894
|
setToggled(id, isToggled) {
|
|
@@ -59555,13 +59567,27 @@ var dcmjs_es = __webpack_require__(67540);
|
|
|
59555
59567
|
// EXTERNAL MODULE: ../../core/src/services/_shared/pubSubServiceInterface.ts
|
|
59556
59568
|
var pubSubServiceInterface = __webpack_require__(81815);
|
|
59557
59569
|
;// CONCATENATED MODULE: ../../core/src/services/DicomMetadataStore/createSeriesMetadata.js
|
|
59558
|
-
function createSeriesMetadata(
|
|
59559
|
-
const
|
|
59560
|
-
|
|
59561
|
-
} = instances[0];
|
|
59570
|
+
function createSeriesMetadata(SeriesInstanceUID) {
|
|
59571
|
+
const instances = [];
|
|
59572
|
+
const instancesMap = new Map();
|
|
59562
59573
|
return {
|
|
59563
59574
|
SeriesInstanceUID,
|
|
59564
|
-
instances
|
|
59575
|
+
instances,
|
|
59576
|
+
addInstance: function (newInstance) {
|
|
59577
|
+
this.addInstances([newInstance]);
|
|
59578
|
+
},
|
|
59579
|
+
addInstances: function (newInstances) {
|
|
59580
|
+
for (let i = 0, len = newInstances.length; i < len; i++) {
|
|
59581
|
+
const instance = newInstances[i];
|
|
59582
|
+
if (!instancesMap.has(instance.SOPInstanceUID)) {
|
|
59583
|
+
instancesMap.set(instance.SOPInstanceUID, instance);
|
|
59584
|
+
instances.push(instance);
|
|
59585
|
+
}
|
|
59586
|
+
}
|
|
59587
|
+
},
|
|
59588
|
+
getInstance: function (SOPInstanceUID) {
|
|
59589
|
+
return instancesMap.get(SOPInstanceUID);
|
|
59590
|
+
}
|
|
59565
59591
|
};
|
|
59566
59592
|
}
|
|
59567
59593
|
/* harmony default export */ const DicomMetadataStore_createSeriesMetadata = (createSeriesMetadata);
|
|
@@ -59575,37 +59601,15 @@ function createStudyMetadata(StudyInstanceUID) {
|
|
|
59575
59601
|
isLoaded: false,
|
|
59576
59602
|
series: [],
|
|
59577
59603
|
/**
|
|
59578
|
-
*
|
|
59579
59604
|
* @param {object} instance
|
|
59580
|
-
* @returns {bool} true if series were added; false if series already exist
|
|
59581
59605
|
*/
|
|
59582
59606
|
addInstanceToSeries: function (instance) {
|
|
59583
|
-
|
|
59584
|
-
SeriesInstanceUID
|
|
59585
|
-
} = instance;
|
|
59586
|
-
if (!this.StudyDescription) {
|
|
59587
|
-
this.StudyDescription = instance.StudyDescription;
|
|
59588
|
-
}
|
|
59589
|
-
const existingSeries = this.series.find(s => s.SeriesInstanceUID === SeriesInstanceUID);
|
|
59590
|
-
if (existingSeries) {
|
|
59591
|
-
existingSeries.instances.push(instance);
|
|
59592
|
-
} else {
|
|
59593
|
-
const series = DicomMetadataStore_createSeriesMetadata([instance]);
|
|
59594
|
-
this.series.push(series);
|
|
59595
|
-
const {
|
|
59596
|
-
Modality
|
|
59597
|
-
} = series;
|
|
59598
|
-
if (this.ModalitiesInStudy.indexOf(Modality) === -1) {
|
|
59599
|
-
this.ModalitiesInStudy.push(Modality);
|
|
59600
|
-
}
|
|
59601
|
-
}
|
|
59607
|
+
this.addInstancesToSeries([instance]);
|
|
59602
59608
|
},
|
|
59603
59609
|
/**
|
|
59604
|
-
*
|
|
59605
59610
|
* @param {object[]} instances
|
|
59606
59611
|
* @param {string} instances[].SeriesInstanceUID
|
|
59607
59612
|
* @param {string} instances[].StudyDescription
|
|
59608
|
-
* @returns {bool} true if series were added; false if series already exist
|
|
59609
59613
|
*/
|
|
59610
59614
|
addInstancesToSeries: function (instances) {
|
|
59611
59615
|
const {
|
|
@@ -59614,28 +59618,20 @@ function createStudyMetadata(StudyInstanceUID) {
|
|
|
59614
59618
|
if (!this.StudyDescription) {
|
|
59615
59619
|
this.StudyDescription = instances[0].StudyDescription;
|
|
59616
59620
|
}
|
|
59617
|
-
|
|
59618
|
-
if (
|
|
59619
|
-
|
|
59620
|
-
// of existing instances and filter the to add by things
|
|
59621
|
-
// already present.
|
|
59622
|
-
const sopMap = {};
|
|
59623
|
-
existingSeries.instances.forEach(it => sopMap[it.SOPInstanceUID] = it);
|
|
59624
|
-
const newInstances = instances.filter(it => !sopMap[it.SOPInstanceUID]);
|
|
59625
|
-
existingSeries.instances.push(...newInstances);
|
|
59626
|
-
} else {
|
|
59627
|
-
const series = DicomMetadataStore_createSeriesMetadata(instances);
|
|
59621
|
+
let series = this.series.find(s => s.SeriesInstanceUID === SeriesInstanceUID);
|
|
59622
|
+
if (!series) {
|
|
59623
|
+
const series = DicomMetadataStore_createSeriesMetadata(SeriesInstanceUID);
|
|
59628
59624
|
this.series.push(series);
|
|
59629
59625
|
}
|
|
59626
|
+
series.addInstances(instances);
|
|
59630
59627
|
},
|
|
59631
59628
|
setSeriesMetadata: function (SeriesInstanceUID, seriesMetadata) {
|
|
59632
59629
|
let existingSeries = this.series.find(s => s.SeriesInstanceUID === SeriesInstanceUID);
|
|
59633
59630
|
if (existingSeries) {
|
|
59634
59631
|
existingSeries = Object.assign(existingSeries, seriesMetadata);
|
|
59635
59632
|
} else {
|
|
59636
|
-
|
|
59637
|
-
|
|
59638
|
-
}, seriesMetadata));
|
|
59633
|
+
const series = DicomMetadataStore_createSeriesMetadata(SeriesInstanceUID);
|
|
59634
|
+
this.series.push(Object.assign(series, seriesMetadata));
|
|
59639
59635
|
}
|
|
59640
59636
|
}
|
|
59641
59637
|
};
|
|
@@ -59708,7 +59704,7 @@ function _getInstance(StudyInstanceUID, SeriesInstanceUID, SOPInstanceUID) {
|
|
|
59708
59704
|
if (!series) {
|
|
59709
59705
|
return;
|
|
59710
59706
|
}
|
|
59711
|
-
return series.
|
|
59707
|
+
return series.getInstance(SOPInstanceUID);
|
|
59712
59708
|
}
|
|
59713
59709
|
function _getInstanceByImageId(imageId) {
|
|
59714
59710
|
for (const study of _model.studies) {
|
|
@@ -159404,7 +159400,7 @@ var selectOrdinal = function selectOrdinal() {
|
|
|
159404
159400
|
/******/ // This function allow to reference async chunks
|
|
159405
159401
|
/******/ __webpack_require__.u = (chunkId) => {
|
|
159406
159402
|
/******/ // return url for filenames based on template
|
|
159407
|
-
/******/ return "" + (chunkId === 18 ? "dicom-microscopy-viewer" : chunkId) + ".bundle." + {"12":"
|
|
159403
|
+
/******/ return "" + (chunkId === 18 ? "dicom-microscopy-viewer" : chunkId) + ".bundle." + {"12":"596ce30cd85f6b9a1e47","18":"2c146384eb9466d02ff8","19":"ce766e7df8a696dbbf02","23":"e008ad788170f2ed5569","82":"be2ff9210bb2fad38907","99":"9bd882e014262ad3ebf4","125":"253395f320b72180da63","181":"169383e9b1a0358b44e8","202":"96bbb4547a346fe3921f","220":"f7e1c96c94245e70f2be","221":"dcacfa132a78c43ae8fe","236":"63061204c6e1d3ebda51","250":"8084960e3318cda37317","281":"e8f6e02a0cb9ef57e70f","342":"d44d95d71fb2e5d12367","359":"69603175835e0b5b7532","370":"25df86d9d452b1774297","410":"f8924c20812caea77a95","417":"af0a207c29b109f84159","451":"9fd36f52ff69594f0669","471":"b3d77b83b1593c09a504","506":"a788df1a79060b03fdb0","530":"a03b6f942ace3e1baa1e","579":"8fc434a0c13d3f662d42","604":"a51f83e64004bca5f497","613":"1044517a8a209ba730f6","663":"f96cd84411734fc5cbd5","686":"dccef1f36e4bc79bcc48","687":"e79e2ab836a1d2adacf4","743":"4bfe6e562ffb2c22708f","774":"7528cba56a1407357144","775":"2285e7e0e67878948c0d","782":"c7c9b143e04a7ef54d1d","814":"573f81eb69e871f5deb0","822":"0545d6dbb49515aa04ee","831":"83658f62fcc769043605","886":"4b3a7f2079d085fdbcb3","957":"71558794566041f37a92"}[chunkId] + ".js";
|
|
159408
159404
|
/******/ };
|
|
159409
159405
|
/******/ })();
|
|
159410
159406
|
/******/
|
package/dist/index.html
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
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"/><script>console.time('scriptToView');
|
|
2
|
-
window.PUBLIC_URL = '/';</script><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 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.
|
|
2
|
+
window.PUBLIC_URL = '/';</script><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 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.7d673420913b4ea775e5.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.596ce30cd85f6b9a1e47.js'},{'revision':null,'url':'/125.bundle.253395f320b72180da63.js'},{'revision':null,'url':'/181.bundle.169383e9b1a0358b44e8.js'},{'revision':'8079c6447e119ba0680e8fab5875745d','url':'/181.css'},{'revision':null,'url':'/19.bundle.ce766e7df8a696dbbf02.js'},{'revision':'51b8ed55f5b8d448837222f03bdd6de8','url':'/19.css'},{'revision':null,'url':'/202.bundle.96bbb4547a346fe3921f.js'},{'revision':null,'url':'/220.bundle.f7e1c96c94245e70f2be.js'},{'revision':null,'url':'/221.bundle.dcacfa132a78c43ae8fe.js'},{'revision':'aa1d1f3e32367e42fe90399144d94577','url':'/221.css'},{'revision':null,'url':'/23.bundle.e008ad788170f2ed5569.js'},{'revision':null,'url':'/236.bundle.63061204c6e1d3ebda51.js'},{'revision':null,'url':'/250.bundle.8084960e3318cda37317.js'},{'revision':'0afb25509c7f072fbd7eda42c6895dbf','url':'/250.css'},{'revision':null,'url':'/281.bundle.e8f6e02a0cb9ef57e70f.js'},{'revision':null,'url':'/342.bundle.d44d95d71fb2e5d12367.js'},{'revision':null,'url':'/359.bundle.69603175835e0b5b7532.js'},{'revision':'c4ea120c6da08aa75348edfa3e57ece9','url':'/36785fbd89b0e17f6099.wasm'},{'revision':null,'url':'/370.bundle.25df86d9d452b1774297.js'},{'revision':null,'url':'/410.bundle.f8924c20812caea77a95.js'},{'revision':null,'url':'/417.bundle.af0a207c29b109f84159.js'},{'revision':null,'url':'/451.bundle.9fd36f52ff69594f0669.js'},{'revision':null,'url':'/471.bundle.b3d77b83b1593c09a504.js'},{'revision':'c377e1f5fe4a207d270c3f7a8dd3e3ca','url':'/5004fdc02f329ce53b69.wasm'},{'revision':null,'url':'/506.bundle.a788df1a79060b03fdb0.js'},{'revision':null,'url':'/530.bundle.a03b6f942ace3e1baa1e.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':null,'url':'/613.bundle.1044517a8a209ba730f6.js'},{'revision':'5800265b6831396572fb5d32c6bd8eef','url':'/62ab5d58a2bea7b5a1dc.wasm'},{'revision':'ce10eced3ce34e663d86569b27f5bffb','url':'/65916ef3def695744bda.wasm'},{'revision':null,'url':'/663.bundle.f96cd84411734fc5cbd5.js'},{'revision':null,'url':'/686.bundle.dccef1f36e4bc79bcc48.js'},{'revision':null,'url':'/687.bundle.e79e2ab836a1d2adacf4.js'},{'revision':null,'url':'/743.bundle.4bfe6e562ffb2c22708f.js'},{'revision':'cf3e4d4fa8884275461c195421812256','url':'/75788f12450d4c5ed494.wasm'},{'revision':'cc4a3a4da4ac1b863a714f93c66c6ef2','url':'/75a0c2dfe07b824c7d21.wasm'},{'revision':null,'url':'/774.bundle.7528cba56a1407357144.js'},{'revision':null,'url':'/775.bundle.2285e7e0e67878948c0d.js'},{'revision':null,'url':'/782.bundle.c7c9b143e04a7ef54d1d.js'},{'revision':null,'url':'/814.bundle.573f81eb69e871f5deb0.js'},{'revision':null,'url':'/82.bundle.be2ff9210bb2fad38907.js'},{'revision':'185e5e0a10fa6ab2fc7b3c38e63d550b','url':'/82.css'},{'revision':null,'url':'/822.bundle.0545d6dbb49515aa04ee.js'},{'revision':null,'url':'/831.bundle.83658f62fcc769043605.js'},{'revision':null,'url':'/886.bundle.4b3a7f2079d085fdbcb3.js'},{'revision':'74c9647440e51f149ad12923d6ead952','url':'/945.min.worker.js'},{'revision':'cdf6f0457d4af2cef04fc41816241bc1','url':'/945.min.worker.js.map'},{'revision':null,'url':'/957.bundle.71558794566041f37a92.js'},{'revision':null,'url':'/99.bundle.9bd882e014262ad3ebf4.js'},{'revision':'d1895aa7a4595dc279c382e5a31ef9f4','url':'/_headers'},{'revision':'e3bf0f3e9c34f51ad59836ae8e8eaf43','url':'/_redirects'},{'revision':'41bb4b36a914c2db5c383a627162b3da','url':'/app-config.js'},{'revision':null,'url':'/app.bundle.7d673420913b4ea775e5.js'},{'revision':'b087b338ae8c00e6585d8ed93cd9915e','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':'5f5a189af3f93caac4d97cf63347d7df','url':'/cornerstoneDICOMImageLoader.min.js'},{'revision':'346733bc702ee77bf7243351d99974f8','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':'3d8a8024abcc52b58ef5ea124ef9153e','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.101",
|
|
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.19.4",
|
|
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.101",
|
|
55
|
+
"@ohif/extension-cornerstone": "3.7.0-beta.101",
|
|
56
|
+
"@ohif/extension-cornerstone-dicom-rt": "3.7.0-beta.101",
|
|
57
|
+
"@ohif/extension-cornerstone-dicom-seg": "3.7.0-beta.101",
|
|
58
|
+
"@ohif/extension-cornerstone-dicom-sr": "3.7.0-beta.101",
|
|
59
|
+
"@ohif/extension-default": "3.7.0-beta.101",
|
|
60
|
+
"@ohif/extension-dicom-microscopy": "3.7.0-beta.101",
|
|
61
|
+
"@ohif/extension-dicom-pdf": "3.7.0-beta.101",
|
|
62
|
+
"@ohif/extension-dicom-video": "3.7.0-beta.101",
|
|
63
|
+
"@ohif/extension-test": "3.7.0-beta.101",
|
|
64
|
+
"@ohif/i18n": "3.7.0-beta.101",
|
|
65
|
+
"@ohif/mode-basic-dev-mode": "3.7.0-beta.101",
|
|
66
|
+
"@ohif/mode-longitudinal": "3.7.0-beta.101",
|
|
67
|
+
"@ohif/mode-microscopy": "3.7.0-beta.101",
|
|
68
|
+
"@ohif/mode-test": "3.7.0-beta.101",
|
|
69
|
+
"@ohif/ui": "3.7.0-beta.101",
|
|
70
70
|
"@types/react": "^17.0.38",
|
|
71
71
|
"classnames": "^2.3.2",
|
|
72
72
|
"core-js": "^3.16.1",
|
|
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
|