@ohif/app 3.7.0-beta.21 → 3.7.0-beta.22
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/{270.bundle.cddac4adcfdf8d1082a3.js → 270.bundle.19d379cc8b4776795c32.js} +11 -2
- package/dist/{283.bundle.e0463be176208a49ae07.js → 283.bundle.e23841650eb5de73064f.js} +42 -10
- package/dist/{331.bundle.af86275686a78739ec4c.js → 331.bundle.7b724ef5f8a1b27d21fe.js} +9 -2
- package/dist/{404.bundle.6ab9072b6ca4fdc8e5ad.js → 404.bundle.22b905ab0a105cefff0f.js} +2 -10
- package/dist/{82.bundle.dbd076c633a0568628be.js → 82.bundle.199c0ae7cd0406b9cf81.js} +3 -3
- package/dist/{app.bundle.7793ce08e52aee1382ca.js → app.bundle.605f7e21d840ef1fadb5.js} +32 -25
- package/dist/index.html +1 -1
- package/dist/sw.js +1 -1
- package/package.json +19 -19
- /package/dist/{192.bundle.c08c5ab814e2b37f7de8.js → 192.bundle.4d9cc07ff37640b68fd5.js} +0 -0
- /package/dist/{199.bundle.fff9b2c82296ac60e336.js → 199.bundle.46aa9444e56c36ae6c3a.js} +0 -0
- /package/dist/{208.bundle.44dbeaafde7c957eb5ec.js → 208.bundle.7562f998accaa1829111.js} +0 -0
- /package/dist/{50.bundle.f3f85e8e2fb4532bb16b.js → 50.bundle.e87a49e641fde6e1c04b.js} +0 -0
- /package/dist/{616.bundle.5b72d71408acf40a8372.js → 616.bundle.689adce775cdbb0a3a4f.js} +0 -0
- /package/dist/{642.bundle.81fd0ee19e55de71af16.js → 642.bundle.3c7a616ec37d00a7cbf8.js} +0 -0
- /package/dist/{707.bundle.112a221af4d036185312.js → 707.bundle.95e596c0aea2df823a7c.js} +0 -0
- /package/dist/{744.bundle.480d918dc1d9eb8293da.js → 744.bundle.ae5c9018858c2f8d6e82.js} +0 -0
- /package/dist/{790.bundle.981ed07d900d4a0a4b53.js → 790.bundle.f04ceae29357179c5b8a.js} +0 -0
- /package/dist/{917.bundle.3f61a417e9a607b190da.js → 917.bundle.0fa17c7162950f0295c1.js} +0 -0
- /package/dist/{973.bundle.b833bec4e621fe4283c4.js → 973.bundle.78aefed07d8ff1b08869.js} +0 -0
- /package/dist/{976.bundle.0ec9edf8d307c412df16.js → 976.bundle.9d87677d5ca76cd2b4bc.js} +0 -0
- /package/dist/{984.bundle.1a1fe6f2b122b329a61d.js → 984.bundle.cf7de63d0aaf31ee6b53.js} +0 -0
|
@@ -14783,7 +14783,10 @@ function completeDrawClosedContour(element) {
|
|
|
14783
14783
|
const worldPoints = updatedPoints.map((canvasPoint) => viewport.canvasToWorld(canvasPoint));
|
|
14784
14784
|
annotation.data.polyline = worldPoints;
|
|
14785
14785
|
annotation.data.isOpenContour = false;
|
|
14786
|
-
|
|
14786
|
+
const { textBox } = annotation.data.handles;
|
|
14787
|
+
if (!textBox.hasMoved) {
|
|
14788
|
+
this.triggerAnnotationCompleted(annotation);
|
|
14789
|
+
}
|
|
14787
14790
|
this.isDrawing = false;
|
|
14788
14791
|
this.drawData = undefined;
|
|
14789
14792
|
this.commonData = undefined;
|
|
@@ -14816,6 +14819,7 @@ function completeDrawOpenContour(element) {
|
|
|
14816
14819
|
const worldPoints = updatedPoints.map((canvasPoint) => viewport.canvasToWorld(canvasPoint));
|
|
14817
14820
|
annotation.data.polyline = worldPoints;
|
|
14818
14821
|
annotation.data.isOpenContour = true;
|
|
14822
|
+
const { textBox } = annotation.data.handles;
|
|
14819
14823
|
annotation.data.handles.points = [
|
|
14820
14824
|
worldPoints[0],
|
|
14821
14825
|
worldPoints[worldPoints.length - 1],
|
|
@@ -14824,7 +14828,9 @@ function completeDrawOpenContour(element) {
|
|
|
14824
14828
|
annotation.data.openUShapeContourVectorToPeak =
|
|
14825
14829
|
findOpenUShapedContourVectorToPeak(canvasPoints, viewport);
|
|
14826
14830
|
}
|
|
14827
|
-
|
|
14831
|
+
if (!textBox.hasMoved) {
|
|
14832
|
+
this.triggerAnnotationCompleted(annotation);
|
|
14833
|
+
}
|
|
14828
14834
|
this.isDrawing = false;
|
|
14829
14835
|
this.drawData = undefined;
|
|
14830
14836
|
this.commonData = undefined;
|
|
@@ -15265,6 +15271,7 @@ function completeClosedContourEdit(element) {
|
|
|
15265
15271
|
const worldPoints = updatedPoints.map((canvasPoint) => viewport.canvasToWorld(canvasPoint));
|
|
15266
15272
|
annotation.data.polyline = worldPoints;
|
|
15267
15273
|
annotation.data.isOpenContour = false;
|
|
15274
|
+
annotation.invalidated = true;
|
|
15268
15275
|
this.triggerAnnotationModified(annotation, enabledElement);
|
|
15269
15276
|
}
|
|
15270
15277
|
this.isEditingClosed = false;
|
|
@@ -15573,6 +15580,7 @@ function completeOpenContourEdit(element) {
|
|
|
15573
15580
|
annotation.data.openUShapeContourVectorToPeak =
|
|
15574
15581
|
findOpenUShapedContourVectorToPeak(fusedCanvasPoints, viewport);
|
|
15575
15582
|
}
|
|
15583
|
+
annotation.invalidated = true;
|
|
15576
15584
|
this.triggerAnnotationModified(annotation, enabledElement);
|
|
15577
15585
|
}
|
|
15578
15586
|
this.isEditingOpen = false;
|
|
@@ -16179,6 +16187,7 @@ class PlanarFreehandROITool extends base_AnnotationTool {
|
|
|
16179
16187
|
areaUnit: hasPixelSpacing ? 'mm' : 'px',
|
|
16180
16188
|
};
|
|
16181
16189
|
}
|
|
16190
|
+
this.triggerAnnotationModified(annotation, enabledElement);
|
|
16182
16191
|
annotation.invalidated = false;
|
|
16183
16192
|
return cachedStats;
|
|
16184
16193
|
};
|
|
@@ -233,19 +233,25 @@ const fusionAXIAL = {
|
|
|
233
233
|
displaySets: [{
|
|
234
234
|
id: 'ctDisplaySet'
|
|
235
235
|
}, {
|
|
236
|
+
id: 'ptDisplaySet',
|
|
236
237
|
options: {
|
|
237
238
|
colormap: {
|
|
238
239
|
name: 'hsv',
|
|
239
|
-
|
|
240
|
+
opacity: [{
|
|
241
|
+
value: 0,
|
|
242
|
+
opacity: 0
|
|
243
|
+
}, {
|
|
240
244
|
value: 0.1,
|
|
241
245
|
opacity: 0.9
|
|
246
|
+
}, {
|
|
247
|
+
value: 1,
|
|
248
|
+
opacity: 0.95
|
|
242
249
|
}]
|
|
243
250
|
},
|
|
244
251
|
voi: {
|
|
245
252
|
custom: 'getPTVOIRange'
|
|
246
253
|
}
|
|
247
|
-
}
|
|
248
|
-
id: 'ptDisplaySet'
|
|
254
|
+
}
|
|
249
255
|
}]
|
|
250
256
|
};
|
|
251
257
|
const fusionSAGITTAL = {
|
|
@@ -283,19 +289,25 @@ const fusionSAGITTAL = {
|
|
|
283
289
|
displaySets: [{
|
|
284
290
|
id: 'ctDisplaySet'
|
|
285
291
|
}, {
|
|
292
|
+
id: 'ptDisplaySet',
|
|
286
293
|
options: {
|
|
287
294
|
colormap: {
|
|
288
295
|
name: 'hsv',
|
|
289
|
-
|
|
296
|
+
opacity: [{
|
|
297
|
+
value: 0,
|
|
298
|
+
opacity: 0
|
|
299
|
+
}, {
|
|
290
300
|
value: 0.1,
|
|
291
301
|
opacity: 0.9
|
|
302
|
+
}, {
|
|
303
|
+
value: 1,
|
|
304
|
+
opacity: 0.95
|
|
292
305
|
}]
|
|
293
306
|
},
|
|
294
307
|
voi: {
|
|
295
308
|
custom: 'getPTVOIRange'
|
|
296
309
|
}
|
|
297
|
-
}
|
|
298
|
-
id: 'ptDisplaySet'
|
|
310
|
+
}
|
|
299
311
|
}]
|
|
300
312
|
};
|
|
301
313
|
const fusionCORONAL = {
|
|
@@ -333,19 +345,25 @@ const fusionCORONAL = {
|
|
|
333
345
|
displaySets: [{
|
|
334
346
|
id: 'ctDisplaySet'
|
|
335
347
|
}, {
|
|
348
|
+
id: 'ptDisplaySet',
|
|
336
349
|
options: {
|
|
337
350
|
colormap: {
|
|
338
351
|
name: 'hsv',
|
|
339
|
-
|
|
352
|
+
opacity: [{
|
|
353
|
+
value: 0,
|
|
354
|
+
opacity: 0
|
|
355
|
+
}, {
|
|
340
356
|
value: 0.1,
|
|
341
357
|
opacity: 0.9
|
|
358
|
+
}, {
|
|
359
|
+
value: 1,
|
|
360
|
+
opacity: 0.95
|
|
342
361
|
}]
|
|
343
362
|
},
|
|
344
363
|
voi: {
|
|
345
364
|
custom: 'getPTVOIRange'
|
|
346
365
|
}
|
|
347
|
-
}
|
|
348
|
-
id: 'ptDisplaySet'
|
|
366
|
+
}
|
|
349
367
|
}]
|
|
350
368
|
};
|
|
351
369
|
const mipSAGITTAL = {
|
|
@@ -2776,7 +2794,21 @@ const commandsModule = _ref => {
|
|
|
2776
2794
|
commandsManager.runCommand('setViewportColormap', {
|
|
2777
2795
|
viewportIndex,
|
|
2778
2796
|
displaySetInstanceUID: ptDisplaySet.displaySetInstanceUID,
|
|
2779
|
-
colormap
|
|
2797
|
+
colormap: {
|
|
2798
|
+
name: colormap,
|
|
2799
|
+
// TODO: This opacity mapping matches that in hpViewports, but
|
|
2800
|
+
// ideally making this editable in a side panel would be useful
|
|
2801
|
+
opacity: [{
|
|
2802
|
+
value: 0,
|
|
2803
|
+
opacity: 0
|
|
2804
|
+
}, {
|
|
2805
|
+
value: 0.1,
|
|
2806
|
+
opacity: 0.9
|
|
2807
|
+
}, {
|
|
2808
|
+
value: 1,
|
|
2809
|
+
opacity: 0.95
|
|
2810
|
+
}]
|
|
2811
|
+
}
|
|
2780
2812
|
});
|
|
2781
2813
|
viewports.push(cornerstoneViewportService.getCornerstoneViewport(viewportId));
|
|
2782
2814
|
});
|
|
@@ -49309,6 +49309,10 @@ class StackViewport extends RenderingEngine_Viewport {
|
|
|
49309
49309
|
if (this.currentImageIdIndex !== imageIdIndex) {
|
|
49310
49310
|
return;
|
|
49311
49311
|
}
|
|
49312
|
+
if (this.csImage?.imageFrame?.photometricInterpretation !==
|
|
49313
|
+
image.imageFrame?.photometricInterpretation) {
|
|
49314
|
+
this.stackInvalidated = true;
|
|
49315
|
+
}
|
|
49312
49316
|
this._setCSImage(image);
|
|
49313
49317
|
const eventDetail = {
|
|
49314
49318
|
image,
|
|
@@ -49420,8 +49424,11 @@ class StackViewport extends RenderingEngine_Viewport {
|
|
|
49420
49424
|
this.resetCameraNoEvent();
|
|
49421
49425
|
this.triggerCameraEvent(this.getCamera(), previousCameraProps);
|
|
49422
49426
|
activeCamera.setFreezeFocalPoint(true);
|
|
49423
|
-
|
|
49424
|
-
this.
|
|
49427
|
+
const monochrome1 = imagePixelModule.photometricInterpretation === 'MONOCHROME1';
|
|
49428
|
+
this.setVOI(this._getInitialVOIRange(image), {
|
|
49429
|
+
forceRecreateLUTFunction: !!monochrome1,
|
|
49430
|
+
});
|
|
49431
|
+
this.setInvertColor(!!monochrome1);
|
|
49425
49432
|
this.cameraFocalPointOnRender = this.getCamera().focalPoint;
|
|
49426
49433
|
this.stackInvalidated = false;
|
|
49427
49434
|
if (this._publishCalibratedEvent) {
|
|
@@ -239,9 +239,8 @@ function _createButton(type, id, icon, label, commands, tooltip) {
|
|
|
239
239
|
}
|
|
240
240
|
function _createColormap(label, colormap) {
|
|
241
241
|
return {
|
|
242
|
-
id: label
|
|
243
|
-
|
|
244
|
-
subtitle: label,
|
|
242
|
+
id: label,
|
|
243
|
+
label,
|
|
245
244
|
type: 'action',
|
|
246
245
|
commands: [{
|
|
247
246
|
commandName: 'setFusionPTColormap',
|
|
@@ -249,12 +248,6 @@ function _createColormap(label, colormap) {
|
|
|
249
248
|
toolGroupId: toolGroupIds.Fusion,
|
|
250
249
|
colormap
|
|
251
250
|
}
|
|
252
|
-
}, {
|
|
253
|
-
commandName: 'setFusionPTColormap',
|
|
254
|
-
commandOptions: {
|
|
255
|
-
toolGroupId: toolGroupIds.Fusion,
|
|
256
|
-
colormap
|
|
257
|
-
}
|
|
258
251
|
}]
|
|
259
252
|
};
|
|
260
253
|
}
|
|
@@ -433,7 +426,6 @@ const toolbarButtons = [
|
|
|
433
426
|
},
|
|
434
427
|
isAction: true,
|
|
435
428
|
// ?
|
|
436
|
-
renderer: ui_src/* WindowLevelMenuItem */.eJ,
|
|
437
429
|
items: [_createColormap('HSV', 'hsv'), _createColormap('Hot Iron', 'hot_iron'), _createColormap('S PET', 's_pet'), _createColormap('Red Hot', 'red_hot'), _createColormap('Perfusion', 'perfusion'), _createColormap('Rainbow', 'rainbow_2'), _createColormap('SUV', 'suv'), _createColormap('GE 256', 'ge_256'), _createColormap('GE', 'ge'), _createColormap('Siemens', 'siemens')]
|
|
438
430
|
}
|
|
439
431
|
}];
|
|
@@ -2036,7 +2036,7 @@ function Toolbar(_ref) {
|
|
|
2036
2036
|
unsub2();
|
|
2037
2037
|
};
|
|
2038
2038
|
}, [toolbarService]);
|
|
2039
|
-
return /*#__PURE__*/react.createElement(react.Fragment, null, toolbarButtons.map(
|
|
2039
|
+
return /*#__PURE__*/react.createElement(react.Fragment, null, toolbarButtons.map(toolDef => {
|
|
2040
2040
|
const {
|
|
2041
2041
|
id,
|
|
2042
2042
|
Component,
|
|
@@ -2149,8 +2149,8 @@ function ViewerLayout(_ref) {
|
|
|
2149
2149
|
hotkeyDefinitions,
|
|
2150
2150
|
hotkeyDefaults
|
|
2151
2151
|
} = hotkeysManager;
|
|
2152
|
-
const versionNumber = "3.7.0-beta.
|
|
2153
|
-
const commitHash = "
|
|
2152
|
+
const versionNumber = "3.7.0-beta.22";
|
|
2153
|
+
const commitHash = "64f8bb580aab12d9e034f989f8777a3c4a761974";
|
|
2154
2154
|
const menuOptions = [{
|
|
2155
2155
|
title: t('Header:About'),
|
|
2156
2156
|
icon: 'info',
|
|
@@ -5111,8 +5111,8 @@ function WorkList(_ref) {
|
|
|
5111
5111
|
};
|
|
5112
5112
|
});
|
|
5113
5113
|
const hasStudies = numOfStudies > 0;
|
|
5114
|
-
const versionNumber = "3.7.0-beta.
|
|
5115
|
-
const commitHash = "
|
|
5114
|
+
const versionNumber = "3.7.0-beta.22";
|
|
5115
|
+
const commitHash = "64f8bb580aab12d9e034f989f8777a3c4a761974";
|
|
5116
5116
|
const menuOptions = [{
|
|
5117
5117
|
title: t('Header:About'),
|
|
5118
5118
|
icon: 'info',
|
|
@@ -16207,27 +16207,34 @@ const bindings = [{
|
|
|
16207
16207
|
commandOptions: windowLevelPresets[5],
|
|
16208
16208
|
label: 'W/L Preset 5',
|
|
16209
16209
|
keys: ['5']
|
|
16210
|
-
}
|
|
16211
|
-
|
|
16212
|
-
|
|
16213
|
-
|
|
16214
|
-
|
|
16215
|
-
|
|
16216
|
-
|
|
16217
|
-
|
|
16218
|
-
|
|
16219
|
-
|
|
16220
|
-
|
|
16221
|
-
|
|
16222
|
-
|
|
16223
|
-
|
|
16224
|
-
|
|
16225
|
-
|
|
16226
|
-
|
|
16227
|
-
|
|
16228
|
-
|
|
16229
|
-
|
|
16230
|
-
|
|
16210
|
+
}
|
|
16211
|
+
// These don't exist, so don't try applying them....
|
|
16212
|
+
// {
|
|
16213
|
+
// commandName: 'setWindowLevel',
|
|
16214
|
+
// commandOptions: windowLevelPresets[6],
|
|
16215
|
+
// label: 'W/L Preset 6',
|
|
16216
|
+
// keys: ['6'],
|
|
16217
|
+
// },
|
|
16218
|
+
// {
|
|
16219
|
+
// commandName: 'setWindowLevel',
|
|
16220
|
+
// commandOptions: windowLevelPresets[7],
|
|
16221
|
+
// label: 'W/L Preset 7',
|
|
16222
|
+
// keys: ['7'],
|
|
16223
|
+
// },
|
|
16224
|
+
// {
|
|
16225
|
+
// commandName: 'setWindowLevel',
|
|
16226
|
+
// commandOptions: windowLevelPresets[8],
|
|
16227
|
+
// label: 'W/L Preset 8',
|
|
16228
|
+
// keys: ['8'],
|
|
16229
|
+
// },
|
|
16230
|
+
// {
|
|
16231
|
+
// commandName: 'setWindowLevel',
|
|
16232
|
+
// commandOptions: windowLevelPresets[9],
|
|
16233
|
+
// label: 'W/L Preset 9',
|
|
16234
|
+
// keys: ['9'],
|
|
16235
|
+
// },
|
|
16236
|
+
];
|
|
16237
|
+
|
|
16231
16238
|
/* harmony default export */ const hotkeyBindings = (bindings);
|
|
16232
16239
|
;// CONCATENATED MODULE: ../../core/src/defaults/index.js
|
|
16233
16240
|
|
|
@@ -20353,7 +20360,7 @@ const detectionOptions = {
|
|
|
20353
20360
|
}
|
|
20354
20361
|
});
|
|
20355
20362
|
;// CONCATENATED MODULE: ../../i18n/package.json
|
|
20356
|
-
const package_namespaceObject = JSON.parse('{"i8":"3.7.0-beta.
|
|
20363
|
+
const package_namespaceObject = JSON.parse('{"i8":"3.7.0-beta.21"}');
|
|
20357
20364
|
;// CONCATENATED MODULE: ../../i18n/src/utils.js
|
|
20358
20365
|
const languagesMap = {
|
|
20359
20366
|
ar: 'Arabic',
|
|
@@ -154412,7 +154419,7 @@ var selectOrdinal = function selectOrdinal() {
|
|
|
154412
154419
|
/******/ // This function allow to reference async chunks
|
|
154413
154420
|
/******/ __webpack_require__.u = (chunkId) => {
|
|
154414
154421
|
/******/ // return url for filenames based on template
|
|
154415
|
-
/******/ return "" + (chunkId === 18 ? "dicom-microscopy-viewer" : chunkId) + ".bundle." + {"18":"aa60bdf008c32c39cfd7","50":"
|
|
154422
|
+
/******/ return "" + (chunkId === 18 ? "dicom-microscopy-viewer" : chunkId) + ".bundle." + {"18":"aa60bdf008c32c39cfd7","50":"e87a49e641fde6e1c04b","55":"e9bf24eb17d84049c640","82":"199c0ae7cd0406b9cf81","151":"31ea35044218837bf73f","192":"4d9cc07ff37640b68fd5","199":"46aa9444e56c36ae6c3a","205":"b5a473c200dcf2bbcdb4","208":"7562f998accaa1829111","270":"19d379cc8b4776795c32","283":"e23841650eb5de73064f","295":"957b1159fec14b9199a1","331":"7b724ef5f8a1b27d21fe","351":"bbd6e3b383ac731edc94","381":"0905e683605fcbc0895f","404":"22b905ab0a105cefff0f","531":"2a82fb1d69e5b57cc72b","569":"f71780087b8c9a75d44e","581":"0b1b8273eb694c11366d","606":"5d876f5f3dd8287f0a28","616":"689adce775cdbb0a3a4f","642":"3c7a616ec37d00a7cbf8","664":"09abae984223969d1bde","707":"95e596c0aea2df823a7c","728":"d13856835357400fef82","744":"ae5c9018858c2f8d6e82","780":"fd0f13dc92e9caa0581e","790":"f04ceae29357179c5b8a","799":"6fbb7a97bccfb55dc79f","806":"2e7934d0833c4315c292","917":"0fa17c7162950f0295c1","926":"dbc9d0e591cb9217fda2","935":"deeffff0e4f7b528e3c3","953":"bad442420f62f5ab0c4b","973":"78aefed07d8ff1b08869","976":"9d87677d5ca76cd2b4bc","984":"cf7de63d0aaf31ee6b53"}[chunkId] + ".js";
|
|
154416
154423
|
/******/ };
|
|
154417
154424
|
/******/ })();
|
|
154418
154425
|
/******/
|
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.605f7e21d840ef1fadb5.js"></script><link href="/app.bundle.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>
|
package/dist/sw.js
CHANGED
|
@@ -51,7 +51,7 @@ self.addEventListener('message', event => {
|
|
|
51
51
|
}
|
|
52
52
|
}
|
|
53
53
|
});
|
|
54
|
-
workbox.precaching.precacheAndRoute([{'revision':null,'url':'/151.bundle.31ea35044218837bf73f.js'},{'revision':null,'url':'/192.bundle.
|
|
54
|
+
workbox.precaching.precacheAndRoute([{'revision':null,'url':'/151.bundle.31ea35044218837bf73f.js'},{'revision':null,'url':'/192.bundle.4d9cc07ff37640b68fd5.js'},{'revision':null,'url':'/199.bundle.46aa9444e56c36ae6c3a.js'},{'revision':null,'url':'/205.bundle.b5a473c200dcf2bbcdb4.js'},{'revision':null,'url':'/208.bundle.7562f998accaa1829111.js'},{'revision':null,'url':'/270.bundle.19d379cc8b4776795c32.js'},{'revision':null,'url':'/283.bundle.e23841650eb5de73064f.js'},{'revision':null,'url':'/295.bundle.957b1159fec14b9199a1.js'},{'revision':null,'url':'/331.bundle.7b724ef5f8a1b27d21fe.js'},{'revision':null,'url':'/351.bundle.bbd6e3b383ac731edc94.js'},{'revision':'a04a2f233dc569826f5f6e21b65bc87b','url':'/351.css'},{'revision':'c4ea120c6da08aa75348edfa3e57ece9','url':'/36785fbd89b0e17f6099.wasm'},{'revision':null,'url':'/381.bundle.0905e683605fcbc0895f.js'},{'revision':null,'url':'/404.bundle.22b905ab0a105cefff0f.js'},{'revision':null,'url':'/50.bundle.e87a49e641fde6e1c04b.js'},{'revision':'c377e1f5fe4a207d270c3f7a8dd3e3ca','url':'/5004fdc02f329ce53b69.wasm'},{'revision':null,'url':'/531.bundle.2a82fb1d69e5b57cc72b.js'},{'revision':null,'url':'/55.bundle.e9bf24eb17d84049c640.js'},{'revision':'0afb25509c7f072fbd7eda42c6895dbf','url':'/55.css'},{'revision':null,'url':'/569.bundle.f71780087b8c9a75d44e.js'},{'revision':null,'url':'/581.bundle.0b1b8273eb694c11366d.js'},{'revision':null,'url':'/606.bundle.5d876f5f3dd8287f0a28.js'},{'revision':'62b4ae8445d191d5aab5503ce475724d','url':'/610.min.worker.js'},{'revision':'3c2206525c18cd87dd28082949a4e43e','url':'/610.min.worker.js.map'},{'revision':null,'url':'/616.bundle.689adce775cdbb0a3a4f.js'},{'revision':'5800265b6831396572fb5d32c6bd8eef','url':'/62ab5d58a2bea7b5a1dc.wasm'},{'revision':null,'url':'/642.bundle.3c7a616ec37d00a7cbf8.js'},{'revision':'ce10eced3ce34e663d86569b27f5bffb','url':'/65916ef3def695744bda.wasm'},{'revision':null,'url':'/664.bundle.09abae984223969d1bde.js'},{'revision':null,'url':'/707.bundle.95e596c0aea2df823a7c.js'},{'revision':'185e5e0a10fa6ab2fc7b3c38e63d550b','url':'/707.css'},{'revision':null,'url':'/728.bundle.d13856835357400fef82.js'},{'revision':null,'url':'/744.bundle.ae5c9018858c2f8d6e82.js'},{'revision':'cf3e4d4fa8884275461c195421812256','url':'/75788f12450d4c5ed494.wasm'},{'revision':'cc4a3a4da4ac1b863a714f93c66c6ef2','url':'/75a0c2dfe07b824c7d21.wasm'},{'revision':null,'url':'/780.bundle.fd0f13dc92e9caa0581e.js'},{'revision':null,'url':'/790.bundle.f04ceae29357179c5b8a.js'},{'revision':null,'url':'/799.bundle.6fbb7a97bccfb55dc79f.js'},{'revision':'51b8ed55f5b8d448837222f03bdd6de8','url':'/806.css'},{'revision':null,'url':'/82.bundle.199c0ae7cd0406b9cf81.js'},{'revision':null,'url':'/917.bundle.0fa17c7162950f0295c1.js'},{'revision':null,'url':'/926.bundle.dbc9d0e591cb9217fda2.js'},{'revision':null,'url':'/935.bundle.deeffff0e4f7b528e3c3.js'},{'revision':'b12abc3008862bb7daf6a91d2a13cf6a','url':'/945.min.worker.js'},{'revision':'3aba0a4898e93871a7cd61b4d0216a18','url':'/945.min.worker.js.map'},{'revision':null,'url':'/953.bundle.bad442420f62f5ab0c4b.js'},{'revision':null,'url':'/973.bundle.78aefed07d8ff1b08869.js'},{'revision':null,'url':'/976.bundle.9d87677d5ca76cd2b4bc.js'},{'revision':null,'url':'/984.bundle.cf7de63d0aaf31ee6b53.js'},{'revision':'d1895aa7a4595dc279c382e5a31ef9f4','url':'/_headers'},{'revision':'6839a719b6810111d8097998b11293a1','url':'/_redirects'},{'revision':'52e767cf35feb8ca59c009582b8b0575','url':'/app-config.js'},{'revision':'0871da67d87443bacdeeb07df0a5c282','url':'/app.bundle.css'},{'revision':'cb4f64534cdf8dd88f1d7219d44490db','url':'/assets/android-chrome-144x144.png'},{'revision':'5cde390de8a619ebe55a669d2ac3effd','url':'/assets/android-chrome-192x192.png'},{'revision':'e7466a67e90471de05401e53b8fe20be','url':'/assets/android-chrome-256x256.png'},{'revision':'9bbe9b80156e930d19a4e1725aa9ddae','url':'/assets/android-chrome-36x36.png'},{'revision':'5698b2ac0c82fe06d84521fc5482df04','url':'/assets/android-chrome-384x384.png'},{'revision':'56bef3fceec344d9747f8abe9c0bba27','url':'/assets/android-chrome-48x48.png'},{'revision':'3e8b8a01290992e82c242557417b0596','url':'/assets/android-chrome-512x512.png'},{'revision':'517925e91e2ce724432d296b687d25e2','url':'/assets/android-chrome-72x72.png'},{'revision':'4c3289bc690f8519012686888e08da71','url':'/assets/android-chrome-96x96.png'},{'revision':'cf464289183184df09292f581df0fb4f','url':'/assets/apple-touch-icon-1024x1024.png'},{'revision':'0857c5282c594e4900e8b31e3bade912','url':'/assets/apple-touch-icon-114x114.png'},{'revision':'4208f41a28130a67e9392a9dfcee6011','url':'/assets/apple-touch-icon-120x120.png'},{'revision':'cb4f64534cdf8dd88f1d7219d44490db','url':'/assets/apple-touch-icon-144x144.png'},{'revision':'977d293982af7e9064ba20806b45cf35','url':'/assets/apple-touch-icon-152x152.png'},{'revision':'6de91b4d2a30600b410758405cb567b4','url':'/assets/apple-touch-icon-167x167.png'},{'revision':'87bff140e3773bd7479a620501c4aa5c','url':'/assets/apple-touch-icon-180x180.png'},{'revision':'647386c34e75f1213830ea9a38913525','url':'/assets/apple-touch-icon-57x57.png'},{'revision':'0c200fe83953738b330ea431083e7a86','url':'/assets/apple-touch-icon-60x60.png'},{'revision':'517925e91e2ce724432d296b687d25e2','url':'/assets/apple-touch-icon-72x72.png'},{'revision':'c9989a807bb18633f6dcf254b5b56124','url':'/assets/apple-touch-icon-76x76.png'},{'revision':'87bff140e3773bd7479a620501c4aa5c','url':'/assets/apple-touch-icon-precomposed.png'},{'revision':'87bff140e3773bd7479a620501c4aa5c','url':'/assets/apple-touch-icon.png'},{'revision':'05fa74ea9c1c0c3931ba96467999081d','url':'/assets/apple-touch-startup-image-1182x2208.png'},{'revision':'9e2cd03e1e6fd0520eea6846f4278018','url':'/assets/apple-touch-startup-image-1242x2148.png'},{'revision':'5591e3a1822cbc8439b99c1a40d53425','url':'/assets/apple-touch-startup-image-1496x2048.png'},{'revision':'337de578c5ca04bd7d2be19d24d83821','url':'/assets/apple-touch-startup-image-1536x2008.png'},{'revision':'cafb4ab4eafe6ef946bd229a1d88e7de','url':'/assets/apple-touch-startup-image-320x460.png'},{'revision':'d9bb9e558d729eeac5efb8be8d6111cc','url':'/assets/apple-touch-startup-image-640x1096.png'},{'revision':'038b5b02bac8b82444bf9a87602ac216','url':'/assets/apple-touch-startup-image-640x920.png'},{'revision':'2177076eb07b1d64d663d7c03268be00','url':'/assets/apple-touch-startup-image-748x1024.png'},{'revision':'4fc097443815fe92503584c4bd73c630','url':'/assets/apple-touch-startup-image-750x1294.png'},{'revision':'2e29914062dce5c5141ab47eea2fc5d9','url':'/assets/apple-touch-startup-image-768x1004.png'},{'revision':'f692ec286b3a332c17985f4ed38b1076','url':'/assets/browserconfig.xml'},{'revision':'f3d9a3b647853c45b0e132e4acd0cc4a','url':'/assets/coast-228x228.png'},{'revision':'ad6e1def5c66193d649a31474bbfe45d','url':'/assets/favicon-16x16.png'},{'revision':'84d1dcdb6cdfa55e2f46be0c80fa5698','url':'/assets/favicon-32x32.png'},{'revision':'95fb44c4998a46109e49d724c060db24','url':'/assets/favicon.ico'},{'revision':'5df2a5b0cee399ac0bc40af74ba3c2cb','url':'/assets/firefox_app_128x128.png'},{'revision':'11fd9098c4b07c8a07e1d2a1e309e046','url':'/assets/firefox_app_512x512.png'},{'revision':'27cddfc922dca3bfa27b4a00fc2f5e36','url':'/assets/firefox_app_60x60.png'},{'revision':'2017d95fae79dcf34b5a5b52586d4763','url':'/assets/manifest.webapp'},{'revision':'cb4f64534cdf8dd88f1d7219d44490db','url':'/assets/mstile-144x144.png'},{'revision':'334895225e16a7777e45d81964725a97','url':'/assets/mstile-150x150.png'},{'revision':'e295cca4af6ed0365cf7b014d91b0e9d','url':'/assets/mstile-310x150.png'},{'revision':'cbefa8c42250e5f2443819fe2c69d91e','url':'/assets/mstile-310x310.png'},{'revision':'aa411a69df2b33a1362fa38d1257fa9d','url':'/assets/mstile-70x70.png'},{'revision':'5609af4f69e40e33471aee770ea1d802','url':'/assets/yandex-browser-50x50.png'},{'revision':'cfea70d7ddc8f06f276ea0c85c4b2adf','url':'/assets/yandex-browser-manifest.json'},{'revision':'52b9a07fe0541fe8c313d9788550bf51','url':'/b6b803111e2d06a825bd.wasm'},{'revision':'7edb59d2be7c993050cb31ded36afa31','url':'/c22b37c3488e1d6c3aa4.wasm'},{'revision':'3c03abb7976d9dd2f0958e1c56654102','url':'/cornerstoneDICOMImageLoader.min.js'},{'revision':'f85de7fd8a9a8d95833085a001a19345','url':'/cornerstoneDICOMImageLoader.min.js.map'},{'revision':null,'url':'/dicom-microscopy-viewer.bundle.aa60bdf008c32c39cfd7.js'},{'revision':'9d8c85b42d04bb117a3b583d654fbb08','url':'/dicomMicroscopyViewer.min.js'},{'revision':'450494c199cf8dd8e8c34d5e98bf5334','url':'/dicomMicroscopyViewer.min.js.LICENSE.txt'},{'revision':'0ca44a1b8719e835645ffa804a9d1395','url':'/es6-shim.min.js'},{'revision':'9de58b497a43167958927602cb68cd30','url':'/google.js'},{'revision':'77410b0d6e125dab23ff78eb0cef087f','url':'/index.html'},{'revision':'0d0886e5f1fdb4a209a9065dfb542c22','url':'/index.worker.1c69152d710fa7b84bce.worker.js'},{'revision':'066fd130de42b02857b634de1dc49a73','url':'/index.worker.1c69152d710fa7b84bce.worker.js.map'},{'revision':'71cec55513e051f0778ad89be760c11a','url':'/index.worker.min.worker.js'},{'revision':'fd1116add443fee52a935df926396e0f','url':'/index.worker.min.worker.js.map'},{'revision':'c4c4be134438c4cc55613210f3913526','url':'/init-service-worker.js'},{'revision':'74fc9658b62903be2048c1f82a22b4d4','url':'/manifest.json'},{'revision':'3fa71aa0af3e34b4ebd9a71eee0f4bdd','url':'/ohif-logo-light.svg'},{'revision':'7e81da785c63e75650101db6c5d7560e','url':'/ohif-logo.svg'},{'revision':'754d698a7b334af57c00f29723fd9751','url':'/oidc-client.min.js'},{'revision':'d05a380d50b74e629738ae6f62fb7e78','url':'/polyfill.min.js'},{'revision':'f528b6861c82ee4415fce0821fd695c1','url':'/silent-refresh.html'}]);
|
|
55
55
|
|
|
56
56
|
// TODO: Cache API
|
|
57
57
|
// https://developers.google.com/web/fundamentals/instant-and-offline/web-storage/cache-api
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ohif/app",
|
|
3
|
-
"version": "3.7.0-beta.
|
|
3
|
+
"version": "3.7.0-beta.22",
|
|
4
4
|
"productVersion": "3.4.0",
|
|
5
5
|
"description": "OHIF Viewer",
|
|
6
6
|
"author": "OHIF Contributors",
|
|
@@ -51,23 +51,23 @@
|
|
|
51
51
|
"@cornerstonejs/codec-libjpeg-turbo-8bit": "^1.2.2",
|
|
52
52
|
"@cornerstonejs/codec-openjpeg": "^1.2.2",
|
|
53
53
|
"@cornerstonejs/codec-openjph": "^2.4.2",
|
|
54
|
-
"@cornerstonejs/dicom-image-loader": "^1.2.
|
|
55
|
-
"@ohif/core": "3.7.0-beta.
|
|
56
|
-
"@ohif/extension-cornerstone": "3.7.0-beta.
|
|
57
|
-
"@ohif/extension-cornerstone-dicom-rt": "3.7.0-beta.
|
|
58
|
-
"@ohif/extension-cornerstone-dicom-seg": "3.7.0-beta.
|
|
59
|
-
"@ohif/extension-cornerstone-dicom-sr": "3.7.0-beta.
|
|
60
|
-
"@ohif/extension-default": "3.7.0-beta.
|
|
61
|
-
"@ohif/extension-dicom-microscopy": "3.7.0-beta.
|
|
62
|
-
"@ohif/extension-dicom-pdf": "3.7.0-beta.
|
|
63
|
-
"@ohif/extension-dicom-video": "3.7.0-beta.
|
|
64
|
-
"@ohif/extension-test": "3.7.0-beta.
|
|
65
|
-
"@ohif/i18n": "3.7.0-beta.
|
|
66
|
-
"@ohif/mode-basic-dev-mode": "3.7.0-beta.
|
|
67
|
-
"@ohif/mode-longitudinal": "3.7.0-beta.
|
|
68
|
-
"@ohif/mode-microscopy": "3.7.0-beta.
|
|
69
|
-
"@ohif/mode-test": "3.7.0-beta.
|
|
70
|
-
"@ohif/ui": "3.7.0-beta.
|
|
54
|
+
"@cornerstonejs/dicom-image-loader": "^1.2.8",
|
|
55
|
+
"@ohif/core": "3.7.0-beta.22",
|
|
56
|
+
"@ohif/extension-cornerstone": "3.7.0-beta.22",
|
|
57
|
+
"@ohif/extension-cornerstone-dicom-rt": "3.7.0-beta.22",
|
|
58
|
+
"@ohif/extension-cornerstone-dicom-seg": "3.7.0-beta.22",
|
|
59
|
+
"@ohif/extension-cornerstone-dicom-sr": "3.7.0-beta.22",
|
|
60
|
+
"@ohif/extension-default": "3.7.0-beta.22",
|
|
61
|
+
"@ohif/extension-dicom-microscopy": "3.7.0-beta.22",
|
|
62
|
+
"@ohif/extension-dicom-pdf": "3.7.0-beta.22",
|
|
63
|
+
"@ohif/extension-dicom-video": "3.7.0-beta.22",
|
|
64
|
+
"@ohif/extension-test": "3.7.0-beta.22",
|
|
65
|
+
"@ohif/i18n": "3.7.0-beta.22",
|
|
66
|
+
"@ohif/mode-basic-dev-mode": "3.7.0-beta.22",
|
|
67
|
+
"@ohif/mode-longitudinal": "3.7.0-beta.22",
|
|
68
|
+
"@ohif/mode-microscopy": "3.7.0-beta.22",
|
|
69
|
+
"@ohif/mode-test": "3.7.0-beta.22",
|
|
70
|
+
"@ohif/ui": "3.7.0-beta.22",
|
|
71
71
|
"@types/react": "^17.0.38",
|
|
72
72
|
"classnames": "^2.3.2",
|
|
73
73
|
"core-js": "^3.16.1",
|
|
@@ -107,5 +107,5 @@
|
|
|
107
107
|
"webpack-cli": "^4.7.2",
|
|
108
108
|
"webpack-merge": "^5.7.3"
|
|
109
109
|
},
|
|
110
|
-
"gitHead": "
|
|
110
|
+
"gitHead": "f7b7131d700783bd2b10ebd726d207e915bef3ba"
|
|
111
111
|
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|