@ohif/app 3.7.0-beta.71 → 3.7.0-beta.73
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/{181.bundle.73dd6f63fe0ddc52b7eb.js → 181.bundle.85cd9057254e8d0cc65b.js} +1 -1
- package/dist/{236.bundle.226efc38e453a4aeb7dd.js → 236.bundle.3eee596787b43a3431fa.js} +7 -7
- package/dist/{250.bundle.8bc4553ee5c56bf7cf32.js → 250.bundle.77b124239a2513393b85.js} +1 -1
- package/dist/{663.bundle.6a389399e5196510e0de.js → 663.bundle.1edf02a4a3385f5d96a9.js} +1 -1
- package/dist/{90.bundle.d7a1e818bbbd3bce5419.js → 90.bundle.37b6653222321da8ac2b.js} +16 -10
- package/dist/{967.bundle.8b4adf9b5a7392b51d0c.js → 967.bundle.175f9aecf3d0e04d0773.js} +2 -2
- package/dist/_redirects +1 -1
- package/dist/{app.bundle.1905c07065c4b93afa5a.js → app.bundle.786de28fc13c68a3bc3b.js} +26 -19
- package/dist/index.html +1 -1
- package/dist/sw.js +1 -1
- package/package.json +18 -18
- /package/dist/{12.bundle.078c14f666c71663ae8e.js → 12.bundle.fcfa960eb3ab82fb9c50.js} +0 -0
- /package/dist/{128.bundle.fdb6d1d5391b79de4936.js → 128.bundle.237774053233b9183946.js} +0 -0
- /package/dist/{150.bundle.c99cc2e1df7cd4085265.js → 150.bundle.38db6053a8666b2e3375.js} +0 -0
- /package/dist/{281.bundle.e9554f25a9eeac2f43e6.js → 281.bundle.2999489e9c5ab63e7546.js} +0 -0
- /package/dist/{30.bundle.c8dfb82c70ae9ff67f14.js → 30.bundle.84a5b2f42bae83d7ced9.js} +0 -0
- /package/dist/{348.bundle.e5082a6425f719eb6658.js → 348.bundle.c6ef14f1fab8fb1e8a38.js} +0 -0
- /package/dist/{359.bundle.8da7f102410ca9c0c999.js → 359.bundle.e940c446c7f82917df0e.js} +0 -0
- /package/dist/{410.bundle.5d03eeef5b705198bf5e.js → 410.bundle.426025aab83ac7b43227.js} +0 -0
- /package/dist/{506.bundle.869288177e788d808aaa.js → 506.bundle.b82ff0e1980b53de8a47.js} +0 -0
- /package/dist/{687.bundle.67d721785216e064fc52.js → 687.bundle.bf436e7de49d4859857c.js} +0 -0
- /package/dist/{782.bundle.6d57b35a056506c94352.js → 782.bundle.90d010fa7d39b702d27b.js} +0 -0
- /package/dist/{814.bundle.ad8ebe6cffa96a5cfc1f.js → 814.bundle.cd637833a3b85e61bfdf.js} +0 -0
|
@@ -238,7 +238,7 @@ function formatPN(name) {
|
|
|
238
238
|
* Gets compression type
|
|
239
239
|
*
|
|
240
240
|
* @param {number} imageId
|
|
241
|
-
* @returns {string}
|
|
241
|
+
* @returns {string} compression type.
|
|
242
242
|
*/
|
|
243
243
|
function getCompression(imageId) {
|
|
244
244
|
const generalImageModule = metaData.get('generalImageModule', imageId) || {};
|
|
@@ -273,7 +273,7 @@ class ViewerManager extends core_src/* PubSubService */.hC {
|
|
|
273
273
|
}
|
|
274
274
|
|
|
275
275
|
/**
|
|
276
|
-
*
|
|
276
|
+
* Clears all the relevant event handlers for the third-party API
|
|
277
277
|
*/
|
|
278
278
|
unregisterEvents() {
|
|
279
279
|
this.container.removeEventListener(ApiEvents.ROI_ADDED, this.onRoiAdded);
|
|
@@ -367,7 +367,7 @@ class ViewerManager extends core_src/* PubSubService */.hC {
|
|
|
367
367
|
* @param {String} label The label of the annotation.
|
|
368
368
|
*/
|
|
369
369
|
addRoiGraphicWithLabel(roiGraphic, label) {
|
|
370
|
-
// NOTE: Dicom Microscopy Viewer will override styles for "Text"
|
|
370
|
+
// NOTE: Dicom Microscopy Viewer will override styles for "Text" evaluations
|
|
371
371
|
// to hide all other geometries, we are not going to use its label.
|
|
372
372
|
// if (label) {
|
|
373
373
|
// if (!roiGraphic.properties) roiGraphic.properties = {};
|
|
@@ -740,7 +740,7 @@ class RoiAnnotation extends core_src/* PubSubService */.hC {
|
|
|
740
740
|
/**
|
|
741
741
|
* Returns the geometry type of the annotation concatenated with the label
|
|
742
742
|
* defined for the annotation.
|
|
743
|
-
* Difference with getDetailedLabel() is that this will return empty string for
|
|
743
|
+
* Difference with getDetailedLabel() is that this will return empty string for empty
|
|
744
744
|
* label.
|
|
745
745
|
*
|
|
746
746
|
* @returns {String} Text with geometry type and label
|
|
@@ -807,7 +807,7 @@ class MicroscopyService extends core_src/* PubSubService */.hC {
|
|
|
807
807
|
}
|
|
808
808
|
|
|
809
809
|
/**
|
|
810
|
-
*
|
|
810
|
+
* Clears all the annotations and managed viewers, setting the manager state
|
|
811
811
|
* to its initial state
|
|
812
812
|
*/
|
|
813
813
|
clear() {
|
|
@@ -1087,7 +1087,7 @@ class MicroscopyService extends core_src/* PubSubService */.hC {
|
|
|
1087
1087
|
|
|
1088
1088
|
/**
|
|
1089
1089
|
* Removes the given third-party viewer API's object from the managed viewers
|
|
1090
|
-
* and
|
|
1090
|
+
* and clears all its event subscriptions
|
|
1091
1091
|
*
|
|
1092
1092
|
* @param {Object} viewer Third-party viewer API's object to be removed
|
|
1093
1093
|
*/
|
|
@@ -2349,7 +2349,7 @@ async function loadSR(microscopyService, microscopySRDisplaySet, referencedDispl
|
|
|
2349
2349
|
// NOTE: When saving Microscopy SR, we are attaching identifier property
|
|
2350
2350
|
// to each ROI, and when read for display, it is coming in as "TEXT"
|
|
2351
2351
|
// evaluation.
|
|
2352
|
-
// As the Dicom Microscopy Viewer will override styles for "Text"
|
|
2352
|
+
// As the Dicom Microscopy Viewer will override styles for "Text" evaluations
|
|
2353
2353
|
// to hide all other geometries, we are going to manually remove that
|
|
2354
2354
|
// evaluation item.
|
|
2355
2355
|
const roi = rois[i];
|
|
@@ -2523,7 +2523,7 @@ function DicomMicroscopySRSopClassHandler_getDisplaySetsFromSeries(instances, se
|
|
|
2523
2523
|
const instance = instances[0];
|
|
2524
2524
|
|
|
2525
2525
|
// TODO ! Consumption of DICOMMicroscopySRSOPClassHandler to a derived dataset or normal dataset?
|
|
2526
|
-
//
|
|
2526
|
+
// TODO -> Easy to swap this to a "non-derived" displaySet, but unfortunately need to put it in a different extension.
|
|
2527
2527
|
const naturalizedDataset = core_src.DicomMetadataStore.getSeries(instance.StudyInstanceUID, instance.SeriesInstanceUID).instances[0];
|
|
2528
2528
|
const ReferencedFrameOfReferenceUID = _getReferencedFrameOfReferenceUID(naturalizedDataset);
|
|
2529
2529
|
const {
|
|
@@ -144,7 +144,7 @@ function utils_formatPN(name) {
|
|
|
144
144
|
* Gets compression type
|
|
145
145
|
*
|
|
146
146
|
* @param {number} imageId
|
|
147
|
-
* @returns {string}
|
|
147
|
+
* @returns {string} compression type.
|
|
148
148
|
*/
|
|
149
149
|
function getCompression(imageId) {
|
|
150
150
|
const generalImageModule = cornerstone.metaData.get('generalImageModule', imageId) || {};
|
|
@@ -1502,7 +1502,7 @@ const dicomSRExtension = {
|
|
|
1502
1502
|
},
|
|
1503
1503
|
getCommandsModule: src_commandsModule,
|
|
1504
1504
|
getSopClassHandlerModule: src_getSopClassHandlerModule,
|
|
1505
|
-
// Include
|
|
1505
|
+
// Include dynamically computed values such as toolNames not known till instantiation
|
|
1506
1506
|
getUtilityModule(_ref2) {
|
|
1507
1507
|
let {
|
|
1508
1508
|
servicesManager
|
|
@@ -638,7 +638,7 @@ const StudyMetaDataPromises = new Map();
|
|
|
638
638
|
*
|
|
639
639
|
* @param {Object} server Object with server configuration parameters
|
|
640
640
|
* @param {string} StudyInstanceUID The UID of the Study to be retrieved
|
|
641
|
-
* @param {boolean} enabledStudyLazyLoad Whether the study metadata should be loaded
|
|
641
|
+
* @param {boolean} enabledStudyLazyLoad Whether the study metadata should be loaded asynchronously.
|
|
642
642
|
* @param {function} storeInstancesCallback A callback used to store the retrieved instance metadata.
|
|
643
643
|
* @param {Object} [filters] - Object containing filters to be applied on retrieve metadata process
|
|
644
644
|
* @param {string} [filter.seriesInstanceUID] - series instance uid to filter results against
|
|
@@ -1249,7 +1249,7 @@ function createDicomWebApi(dicomWebConfig, userAuthenticationService) {
|
|
|
1249
1249
|
const addRetrieveBulkData = instance => {
|
|
1250
1250
|
const naturalized = naturalizeDataset(instance);
|
|
1251
1251
|
|
|
1252
|
-
// if we
|
|
1252
|
+
// if we know the server doesn't use bulkDataURI, then don't
|
|
1253
1253
|
if (!dicomWebConfig.bulkDataURI?.enabled) {
|
|
1254
1254
|
return naturalized;
|
|
1255
1255
|
}
|
|
@@ -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.73";
|
|
2195
|
+
const commitHash = "74e62a176374f720080d4e777972f70e7f2d8b2b";
|
|
2196
2196
|
const menuOptions = [{
|
|
2197
2197
|
title: t('Header:About'),
|
|
2198
2198
|
icon: 'info',
|
|
@@ -3273,7 +3273,7 @@ function PanelMeasurementTable(_ref) {
|
|
|
3273
3273
|
promptResult.value === undefined || promptResult.value === '' ? 'Research Derived Series' // default
|
|
3274
3274
|
: promptResult.value; // provided value
|
|
3275
3275
|
|
|
3276
|
-
//
|
|
3276
|
+
// Reuse an existing series having the same series description to avoid
|
|
3277
3277
|
// creating too many series instances.
|
|
3278
3278
|
const options = findSRWithSameSeriesDescription(SeriesDescription, displaySetService);
|
|
3279
3279
|
return Actions_createReportAsync(servicesManager, commandsManager, dataSource, trackedMeasurements, options);
|
|
@@ -3417,7 +3417,7 @@ function _getMappedMeasurements(measurementService) {
|
|
|
3417
3417
|
|
|
3418
3418
|
/**
|
|
3419
3419
|
* Map the measurements to the display text.
|
|
3420
|
-
* Adds finding and site
|
|
3420
|
+
* Adds finding and site information to the displayText and/or label,
|
|
3421
3421
|
* and provides as 'displayText' and 'label', while providing the original
|
|
3422
3422
|
* values as baseDisplayText and baseLabel
|
|
3423
3423
|
*/
|
|
@@ -3665,6 +3665,9 @@ function areAllImagePositionsEqual(instances) {
|
|
|
3665
3665
|
return false;
|
|
3666
3666
|
}
|
|
3667
3667
|
const firstImageOrientationPatient = (0,toNumber/* default */.Z)(instances[0].ImageOrientationPatient);
|
|
3668
|
+
if (!firstImageOrientationPatient) {
|
|
3669
|
+
return false;
|
|
3670
|
+
}
|
|
3668
3671
|
const scanAxisNormal = calculateScanAxisNormal(firstImageOrientationPatient);
|
|
3669
3672
|
const firstImagePositionPatient = (0,toNumber/* default */.Z)(instances[0].ImagePositionPatient);
|
|
3670
3673
|
const lastIpp = (0,toNumber/* default */.Z)(instances[instances.length - 1].ImagePositionPatient);
|
|
@@ -3694,6 +3697,9 @@ function areAllImageSpacingEqual(instances, messages) {
|
|
|
3694
3697
|
return;
|
|
3695
3698
|
}
|
|
3696
3699
|
const firstImagePositionPatient = (0,toNumber/* default */.Z)(instances[0].ImagePositionPatient);
|
|
3700
|
+
if (!firstImagePositionPatient) {
|
|
3701
|
+
return;
|
|
3702
|
+
}
|
|
3697
3703
|
const lastIpp = (0,toNumber/* default */.Z)(instances[instances.length - 1].ImagePositionPatient);
|
|
3698
3704
|
const averageSpacingBetweenFrames = (0,isDisplaySetReconstructable/* _getPerpendicularDistance */.Xn)(firstImagePositionPatient, lastIpp) / (instances.length - 1);
|
|
3699
3705
|
let previousImagePositionPatient = firstImagePositionPatient;
|
|
@@ -4329,8 +4335,8 @@ class ContextMenuController {
|
|
|
4329
4335
|
defaultPosition: ContextMenuController._getDefaultPosition(defaultPointsPosition, event?.detail, viewportElement),
|
|
4330
4336
|
event,
|
|
4331
4337
|
content: ContextMenu/* default */.Z,
|
|
4332
|
-
// This naming is part of
|
|
4333
|
-
// Clicking outside
|
|
4338
|
+
// This naming is part of the uiDialogService convention
|
|
4339
|
+
// Clicking outside simply closes the dialog box.
|
|
4334
4340
|
onClickOutside: () => this.services.uiDialogService.dismiss({
|
|
4335
4341
|
id: 'context-menu'
|
|
4336
4342
|
}),
|
|
@@ -5053,7 +5059,7 @@ const reuseCachedLayout = (state, hangingProtocolService, syncService) => {
|
|
|
5053
5059
|
/**
|
|
5054
5060
|
* This find or create viewport is paired with the reduce results from
|
|
5055
5061
|
* below, and the action of this viewport is to look for previously filled
|
|
5056
|
-
* viewports, and to
|
|
5062
|
+
* viewports, and to reuse by position id. If there is no filled viewport,
|
|
5057
5063
|
* then one can be re-used from the display set if it isn't going to be displayed.
|
|
5058
5064
|
* @param hangingProtocolService - bound parameter supplied before using this
|
|
5059
5065
|
* @param viewportsByPosition - bound parameter supplied before using this
|
|
@@ -5321,7 +5327,7 @@ const commandsModule = _ref => {
|
|
|
5321
5327
|
displaySetSelectorMap
|
|
5322
5328
|
} = stateSyncReduce;
|
|
5323
5329
|
if (!protocolId) {
|
|
5324
|
-
//
|
|
5330
|
+
// Reuse the previous protocol id, and optionally stage
|
|
5325
5331
|
protocolId = hpInfo.protocolId;
|
|
5326
5332
|
if (stageId === undefined && stageIndex === undefined) {
|
|
5327
5333
|
stageIndex = hpInfo.stageIndex;
|
|
@@ -2710,7 +2710,7 @@ function getInterleavedFrames(imageIds) {
|
|
|
2710
2710
|
}
|
|
2711
2711
|
while (!prefetchQueuedFilled.currentPositionDownToMinimum || !prefetchQueuedFilled.currentPositionUpToMaximum) {
|
|
2712
2712
|
if (!prefetchQueuedFilled.currentPositionDownToMinimum) {
|
|
2713
|
-
// Add imageId
|
|
2713
|
+
// Add imageId below
|
|
2714
2714
|
lowerImageIdIndex--;
|
|
2715
2715
|
imageIdsToPrefetch.push({
|
|
2716
2716
|
imageId: imageIds[lowerImageIdIndex],
|
|
@@ -9134,7 +9134,7 @@ const setEnabledElement = (viewportId, element, context) => {
|
|
|
9134
9134
|
};
|
|
9135
9135
|
|
|
9136
9136
|
/**
|
|
9137
|
-
* Grabs the enabled element `dom` reference of an
|
|
9137
|
+
* Grabs the enabled element `dom` reference of an active viewport.
|
|
9138
9138
|
*
|
|
9139
9139
|
* @return {HTMLElement} Active viewport element.
|
|
9140
9140
|
*/
|
package/dist/_redirects
CHANGED
|
@@ -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.73";
|
|
973
|
+
const commitHash = "74e62a176374f720080d4e777972f70e7f2d8b2b";
|
|
974
974
|
const menuOptions = [{
|
|
975
975
|
title: t('Header:About'),
|
|
976
976
|
icon: 'info',
|
|
@@ -2083,6 +2083,13 @@ function defaultRouteInit(_ref, hangingProtocolId) {
|
|
|
2083
2083
|
filters
|
|
2084
2084
|
}));
|
|
2085
2085
|
|
|
2086
|
+
// log the error if this fails, otherwise it's so difficult to tell what went wrong...
|
|
2087
|
+
allRetrieves.forEach(retrieve => {
|
|
2088
|
+
retrieve.catch(error => {
|
|
2089
|
+
console.error(error);
|
|
2090
|
+
});
|
|
2091
|
+
});
|
|
2092
|
+
|
|
2086
2093
|
// The hanging protocol matching service is fairly expensive to run multiple
|
|
2087
2094
|
// times, and doesn't allow partial matches to be made (it will simply fail
|
|
2088
2095
|
// to display anything if a required match fails), so we wait here until all metadata
|
|
@@ -2724,7 +2731,7 @@ async function appInit(appConfigOrFunc, defaultExtensions, defaultModes) {
|
|
|
2724
2731
|
}
|
|
2725
2732
|
const loadedModes = await importItems([...(appConfig.modes || []), ...defaultModes]);
|
|
2726
2733
|
|
|
2727
|
-
// This is the name for the loaded
|
|
2734
|
+
// This is the name for the loaded instance object
|
|
2728
2735
|
appConfig.loadedModes = [];
|
|
2729
2736
|
const modesById = new Set();
|
|
2730
2737
|
for (let i = 0; i < loadedModes.length; i++) {
|
|
@@ -3346,7 +3353,7 @@ class ObjectPath {
|
|
|
3346
3353
|
* @param path {String} A string representing the property to be set, e.g. "user.study.series.timepoint".
|
|
3347
3354
|
* @param value {Any} The value of the property that will be set.
|
|
3348
3355
|
* @return {Boolean} Returns "true" on success, "false" if any intermediate component of the supplied path
|
|
3349
|
-
* ... is not a valid Object, in which case the property cannot be set. No
|
|
3356
|
+
* ... is not a valid Object, in which case the property cannot be set. No exceptions are thrown.
|
|
3350
3357
|
*/
|
|
3351
3358
|
static set(object, path, value) {
|
|
3352
3359
|
let components = ObjectPath.getPathComponents(path),
|
|
@@ -3858,7 +3865,7 @@ class Queue {
|
|
|
3858
3865
|
/**
|
|
3859
3866
|
* Creates a new "proxy" function associated with the current execution queue
|
|
3860
3867
|
* instance. When the returned function is invoked, the queue limit is checked
|
|
3861
|
-
* to make sure the limit of scheduled tasks is
|
|
3868
|
+
* to make sure the limit of scheduled tasks is respected (throwing an
|
|
3862
3869
|
* exception when the limit has been reached and before calling the original
|
|
3863
3870
|
* function). The original function is only invoked after all the previously
|
|
3864
3871
|
* scheduled tasks have finished executing (their returned promises have
|
|
@@ -4064,11 +4071,11 @@ function addToList(list) {
|
|
|
4064
4071
|
* once for each leaf-node of the tree. The ancestors of the leaf-node being
|
|
4065
4072
|
* visited are passed to the callback function along with the leaf-node in
|
|
4066
4073
|
* the exact same order they appear on the tree (from root to leaf);
|
|
4067
|
-
* @ For example, if the
|
|
4074
|
+
* @ For example, if the hierarchy `a > b > c` appears on the tree ("a" being
|
|
4068
4075
|
* the root and "c" being the leaf) the callback function will be called as:
|
|
4069
4076
|
* callback('a', 'b', 'c');
|
|
4070
4077
|
* @param {Array} list The hierarchical list to be iterated
|
|
4071
|
-
* @param {function} callback The callback which will be
|
|
4078
|
+
* @param {function} callback The callback which will be executed once for
|
|
4072
4079
|
* each leaf-node of the hierarchical list;
|
|
4073
4080
|
* @returns {Array} Returns the provided list or null for bad arguments;
|
|
4074
4081
|
*/
|
|
@@ -4336,7 +4343,7 @@ function finish(task) {
|
|
|
4336
4343
|
/**
|
|
4337
4344
|
* Generate a summarized snapshot of the current status of the given task List
|
|
4338
4345
|
* @param {Object} list The List instance to be scanned
|
|
4339
|
-
* @returns {Object} An
|
|
4346
|
+
* @returns {Object} An object representing the summarized status of the list
|
|
4340
4347
|
*/
|
|
4341
4348
|
function getOverallProgress(list) {
|
|
4342
4349
|
const status = createStatus();
|
|
@@ -4432,7 +4439,7 @@ function getTaskByName(list, name) {
|
|
|
4432
4439
|
* @param {Object} list The List instance to which the observer will be appended
|
|
4433
4440
|
* @param {Function} observer The observer (function) that will be executed
|
|
4434
4441
|
* every time a change happens within the list
|
|
4435
|
-
* @returns {boolean} Returns true on success and false
|
|
4442
|
+
* @returns {boolean} Returns true on success and false otherwise
|
|
4436
4443
|
*/
|
|
4437
4444
|
function addObserver(list, observer) {
|
|
4438
4445
|
if (isList(list) && Array.isArray(list.observers) && typeof observer === 'function') {
|
|
@@ -4446,7 +4453,7 @@ function addObserver(list, observer) {
|
|
|
4446
4453
|
* Removes an observer (callback function) from a given List instance
|
|
4447
4454
|
* @param {Object} list The instance List from which the observer will removed
|
|
4448
4455
|
* @param {Function} observer The observer function to be removed
|
|
4449
|
-
* @returns {boolean} Returns true on success and false
|
|
4456
|
+
* @returns {boolean} Returns true on success and false otherwise
|
|
4450
4457
|
*/
|
|
4451
4458
|
function removeObserver(list, observer) {
|
|
4452
4459
|
if (isList(list) && Array.isArray(list.observers) && list.observers.length > 0) {
|
|
@@ -4730,7 +4737,7 @@ function subscribeToNextViewportGridChange(viewportGridService, gridChangeCallba
|
|
|
4730
4737
|
}
|
|
4731
4738
|
|
|
4732
4739
|
;// CONCATENATED MODULE: ../../core/src/utils/splitComma.ts
|
|
4733
|
-
/** Splits a list of
|
|
4740
|
+
/** Splits a list of strings by commas within the strings */
|
|
4734
4741
|
const splitComma = strings => {
|
|
4735
4742
|
if (!strings) {
|
|
4736
4743
|
return null;
|
|
@@ -8620,7 +8627,7 @@ const detectionOptions = {
|
|
|
8620
8627
|
}
|
|
8621
8628
|
});
|
|
8622
8629
|
;// CONCATENATED MODULE: ../../i18n/package.json
|
|
8623
|
-
const package_namespaceObject = JSON.parse('{"i8":"3.7.0-beta.
|
|
8630
|
+
const package_namespaceObject = JSON.parse('{"i8":"3.7.0-beta.72"}');
|
|
8624
8631
|
;// CONCATENATED MODULE: ../../i18n/src/utils.js
|
|
8625
8632
|
const languagesMap = {
|
|
8626
8633
|
ar: 'Arabic',
|
|
@@ -12206,7 +12213,7 @@ function _extends() { _extends = Object.assign ? Object.assign.bind() : function
|
|
|
12206
12213
|
/*
|
|
12207
12214
|
* This is a workaround to import things from ohif/core as docz does
|
|
12208
12215
|
* not allow us to access window element and @ohif/core does use it once
|
|
12209
|
-
* we import to
|
|
12216
|
+
* we import to instantiate cornerstone
|
|
12210
12217
|
*/
|
|
12211
12218
|
|
|
12212
12219
|
|
|
@@ -45667,7 +45674,7 @@ const TableCell = _ref => {
|
|
|
45667
45674
|
children,
|
|
45668
45675
|
className,
|
|
45669
45676
|
colSpan,
|
|
45670
|
-
// ignored because we don't
|
|
45677
|
+
// ignored because we don't want to expose this prop
|
|
45671
45678
|
// eslint-disable-next-line react/prop-types
|
|
45672
45679
|
cellsNum,
|
|
45673
45680
|
isTableHead,
|
|
@@ -48950,7 +48957,7 @@ class MeasurementService extends pubSubServiceInterface/* PubSubService */.h {
|
|
|
48950
48957
|
uid: internalUID
|
|
48951
48958
|
};
|
|
48952
48959
|
if (oldMeasurement) {
|
|
48953
|
-
// TODO: Ultimately, each annotation should have a selected flag right from the
|
|
48960
|
+
// TODO: Ultimately, each annotation should have a selected flag right from the source.
|
|
48954
48961
|
// For now, it is just added in OHIF here and in setMeasurementSelected.
|
|
48955
48962
|
this.measurements.set(internalUID, newMeasurement);
|
|
48956
48963
|
if (isUpdate) {
|
|
@@ -50268,7 +50275,7 @@ class ToolbarService extends pubSubServiceInterface/* PubSubService */.h {
|
|
|
50268
50275
|
// unsubscribe = commandsManager.runCommand(commandName, commandOptions);
|
|
50269
50276
|
// }
|
|
50270
50277
|
|
|
50271
|
-
// // Storing the unsubscribe for later
|
|
50278
|
+
// // Storing the unsubscribe for later resetting
|
|
50272
50279
|
// if (unsubscribe && typeof unsubscribe === 'function') {
|
|
50273
50280
|
// if (this.unsubscriptions.indexOf(unsubscribe) === -1) {
|
|
50274
50281
|
// this.unsubscriptions.push(unsubscribe);
|
|
@@ -51915,7 +51922,7 @@ class HangingProtocolService extends pubSubServiceInterface/* PubSubService */.h
|
|
|
51915
51922
|
* @param params is the dataset to run the hanging protocol on.
|
|
51916
51923
|
* @param params.activeStudy is the "primary" study to hang This may or may
|
|
51917
51924
|
* not be displayed by the actual viewports.
|
|
51918
|
-
* @param params.studies is the list of studies to hang. If absent, will
|
|
51925
|
+
* @param params.studies is the list of studies to hang. If absent, will reuse the previous set.
|
|
51919
51926
|
* @param params.displaySets is the list of display sets associated with
|
|
51920
51927
|
* the studies to display in viewports.
|
|
51921
51928
|
* @param protocol is a specific protocol to apply.
|
|
@@ -55132,7 +55139,7 @@ const WADO_IMAGE_LOADER_TAGS = {
|
|
|
55132
55139
|
PER_SERIES_MODULE: 'petSeriesModule',
|
|
55133
55140
|
OVERLAY_PLANE_MODULE: 'overlayPlaneModule',
|
|
55134
55141
|
PATIENT_DEMOGRAPHIC_MODULE: 'patientDemographicModule',
|
|
55135
|
-
// react-cornerstone-viewport
|
|
55142
|
+
// react-cornerstone-viewport specific
|
|
55136
55143
|
PATIENT_MODULE: 'patientModule',
|
|
55137
55144
|
GENERAL_IMAGE_MODULE: 'generalImageModule',
|
|
55138
55145
|
GENERAL_STUDY_MODULE: 'generalStudyModule',
|
|
@@ -156021,7 +156028,7 @@ var selectOrdinal = function selectOrdinal() {
|
|
|
156021
156028
|
/******/ // This function allow to reference async chunks
|
|
156022
156029
|
/******/ __webpack_require__.u = (chunkId) => {
|
|
156023
156030
|
/******/ // return url for filenames based on template
|
|
156024
|
-
/******/ return "" + (chunkId === 18 ? "dicom-microscopy-viewer" : chunkId) + ".bundle." + {"12":"
|
|
156031
|
+
/******/ return "" + (chunkId === 18 ? "dicom-microscopy-viewer" : chunkId) + ".bundle." + {"12":"fcfa960eb3ab82fb9c50","18":"2c146384eb9466d02ff8","23":"e008ad788170f2ed5569","30":"84a5b2f42bae83d7ced9","90":"37b6653222321da8ac2b","116":"422d1a76d8daccfed61d","125":"aeaad798561853bf6939","128":"237774053233b9183946","150":"38db6053a8666b2e3375","181":"85cd9057254e8d0cc65b","202":"591726b6144882ba0ee0","220":"f7e1c96c94245e70f2be","236":"3eee596787b43a3431fa","250":"77b124239a2513393b85","281":"2999489e9c5ab63e7546","348":"c6ef14f1fab8fb1e8a38","359":"e940c446c7f82917df0e","410":"426025aab83ac7b43227","417":"6cadc61b8a455776de31","451":"e59fcdb1f1d3fbe71cd4","471":"b598d406ddfc2666851b","506":"b82ff0e1980b53de8a47","579":"8fc434a0c13d3f662d42","604":"a51f83e64004bca5f497","663":"1edf02a4a3385f5d96a9","677":"ec5f2b4707db33bd4d8e","686":"b3dbf84eefbef768843f","687":"bf436e7de49d4859857c","754":"a5c9246c77659eab2739","774":"8ba82ee206266eb2da5e","775":"2285e7e0e67878948c0d","782":"90d010fa7d39b702d27b","814":"cd637833a3b85e61bfdf","822":"5cdd9439a62e5c7e902f","886":"9e526affbd17b0ed96a6","967":"175f9aecf3d0e04d0773"}[chunkId] + ".js";
|
|
156025
156032
|
/******/ };
|
|
156026
156033
|
/******/ })();
|
|
156027
156034
|
/******/
|
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.786de28fc13c68a3bc3b.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.fcfa960eb3ab82fb9c50.js'},{'revision':null,'url':'/125.bundle.aeaad798561853bf6939.js'},{'revision':null,'url':'/128.bundle.237774053233b9183946.js'},{'revision':null,'url':'/150.bundle.38db6053a8666b2e3375.js'},{'revision':null,'url':'/181.bundle.85cd9057254e8d0cc65b.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.3eee596787b43a3431fa.js'},{'revision':null,'url':'/250.bundle.77b124239a2513393b85.js'},{'revision':'0afb25509c7f072fbd7eda42c6895dbf','url':'/250.css'},{'revision':null,'url':'/281.bundle.2999489e9c5ab63e7546.js'},{'revision':null,'url':'/30.bundle.84a5b2f42bae83d7ced9.js'},{'revision':null,'url':'/348.bundle.c6ef14f1fab8fb1e8a38.js'},{'revision':null,'url':'/359.bundle.e940c446c7f82917df0e.js'},{'revision':'c4ea120c6da08aa75348edfa3e57ece9','url':'/36785fbd89b0e17f6099.wasm'},{'revision':null,'url':'/410.bundle.426025aab83ac7b43227.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.b82ff0e1980b53de8a47.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.1edf02a4a3385f5d96a9.js'},{'revision':null,'url':'/677.bundle.ec5f2b4707db33bd4d8e.js'},{'revision':null,'url':'/686.bundle.b3dbf84eefbef768843f.js'},{'revision':null,'url':'/687.bundle.bf436e7de49d4859857c.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.90d010fa7d39b702d27b.js'},{'revision':null,'url':'/814.bundle.cd637833a3b85e61bfdf.js'},{'revision':null,'url':'/822.bundle.5cdd9439a62e5c7e902f.js'},{'revision':null,'url':'/886.bundle.9e526affbd17b0ed96a6.js'},{'revision':null,'url':'/90.bundle.37b6653222321da8ac2b.js'},{'revision':'74c9647440e51f149ad12923d6ead952','url':'/945.min.worker.js'},{'revision':'cdf6f0457d4af2cef04fc41816241bc1','url':'/945.min.worker.js.map'},{'revision':null,'url':'/967.bundle.175f9aecf3d0e04d0773.js'},{'revision':'185e5e0a10fa6ab2fc7b3c38e63d550b','url':'/967.css'},{'revision':'d1895aa7a4595dc279c382e5a31ef9f4','url':'/_headers'},{'revision':'e3bf0f3e9c34f51ad59836ae8e8eaf43','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':'77f03014f8f694ba5fd7c89069aab76a','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.73",
|
|
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.73",
|
|
55
|
+
"@ohif/extension-cornerstone": "3.7.0-beta.73",
|
|
56
|
+
"@ohif/extension-cornerstone-dicom-rt": "3.7.0-beta.73",
|
|
57
|
+
"@ohif/extension-cornerstone-dicom-seg": "3.7.0-beta.73",
|
|
58
|
+
"@ohif/extension-cornerstone-dicom-sr": "3.7.0-beta.73",
|
|
59
|
+
"@ohif/extension-default": "3.7.0-beta.73",
|
|
60
|
+
"@ohif/extension-dicom-microscopy": "3.7.0-beta.73",
|
|
61
|
+
"@ohif/extension-dicom-pdf": "3.7.0-beta.73",
|
|
62
|
+
"@ohif/extension-dicom-video": "3.7.0-beta.73",
|
|
63
|
+
"@ohif/extension-test": "3.7.0-beta.73",
|
|
64
|
+
"@ohif/i18n": "3.7.0-beta.73",
|
|
65
|
+
"@ohif/mode-basic-dev-mode": "3.7.0-beta.73",
|
|
66
|
+
"@ohif/mode-longitudinal": "3.7.0-beta.73",
|
|
67
|
+
"@ohif/mode-microscopy": "3.7.0-beta.73",
|
|
68
|
+
"@ohif/mode-test": "3.7.0-beta.73",
|
|
69
|
+
"@ohif/ui": "3.7.0-beta.73",
|
|
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": "bd7f9592eaec1cc7c8347bb48419f449bed675ac"
|
|
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
|