@ohif/app 3.7.0-beta.50 → 3.7.0-beta.52
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/{150.bundle.e6880fd33346f8c24f6e.js → 150.bundle.66686c9295f7e8ab288e.js} +7 -1
- package/dist/{236.bundle.765f3c70e21f29ab2e89.js → 236.bundle.b6aa7e71a3145a5d1d7a.js} +1 -1
- package/dist/{250.bundle.3bcee6d765a209281ddd.js → 250.bundle.a523e899f4fb640949f9.js} +2 -2
- package/dist/{789.bundle.aad9b29b476ea70e1350.js → 260.bundle.9413ba0b5ee0fad0e3c9.js} +177 -6
- package/dist/{30.bundle.5e2f6eeb779d579fc16e.js → 30.bundle.4d42b94a5606b0b00631.js} +22 -9
- package/dist/{663.bundle.e839c4819de3e372d07b.js → 663.bundle.35887d52ec913e3d18fc.js} +15 -3
- package/dist/{678.bundle.84a43fe18483016344de.js → 678.bundle.88da61209fcabca1a8bb.js} +1 -3
- package/dist/{782.bundle.0ea6e2a386f4ba43d830.js → 782.bundle.4b27ab6392855d736c3d.js} +0 -1
- package/dist/{886.bundle.68ef58774a6837f57631.js → 886.bundle.09fc0e8c8aa227b70351.js} +5 -1
- package/dist/{app.bundle.00cc8e251524b80d3347.js → app.bundle.97b19ae6b73425b79352.js} +33 -16
- package/dist/index.html +1 -1
- package/dist/sw.js +1 -1
- package/package.json +18 -18
- /package/dist/{12.bundle.7348933f311b7e2e7d1e.js → 12.bundle.5e2ecb206aa004a7727b.js} +0 -0
- /package/dist/{128.bundle.d933d385a22b1ce9ac77.js → 128.bundle.21a267ee74c0f3072548.js} +0 -0
- /package/dist/{181.bundle.234fef330d4fe6baca8b.js → 181.bundle.1705c0775d72e671dede.js} +0 -0
- /package/dist/{281.bundle.dcc5492f44a83edd5320.js → 281.bundle.f68807e7555a728c5942.js} +0 -0
- /package/dist/{348.bundle.c2deacff008bb8c68a14.js → 348.bundle.0e407df6dee83f5fd683.js} +0 -0
- /package/dist/{359.bundle.594d68e783da31f97c30.js → 359.bundle.4db0416ec3ee9f844bc9.js} +0 -0
- /package/dist/{378.bundle.6996a4170f4f05198f23.js → 378.bundle.1cbca4404c56723075ba.js} +0 -0
- /package/dist/{410.bundle.c8759293de9af17687c4.js → 410.bundle.28bd638e80e6c7fc8d16.js} +0 -0
- /package/dist/{506.bundle.8a2562b7038f6c983884.js → 506.bundle.75ae18b1d034ed58fa90.js} +0 -0
- /package/dist/{814.bundle.2e308e04f0d21b4295a9.js → 814.bundle.feaef3dfc549e4a732f0.js} +0 -0
- /package/dist/{822.bundle.d40c439da659f0e8500d.js → 822.bundle.34b2c7e2f175dc797380.js} +0 -0
- /package/dist/{925.bundle.a2f1103d968c53a2b8fb.js → 925.bundle.22f021ff05c44ae74f24.js} +0 -0
|
@@ -316,6 +316,8 @@ function callInputDialog(uiDialogService, label, callback) {
|
|
|
316
316
|
}
|
|
317
317
|
}
|
|
318
318
|
/* harmony default export */ const panels_callInputDialog = (callInputDialog);
|
|
319
|
+
// EXTERNAL MODULE: ./state/index.js + 1 modules
|
|
320
|
+
var state = __webpack_require__(62657);
|
|
319
321
|
// EXTERNAL MODULE: ../../../node_modules/react-i18next/dist/es/index.js + 15 modules
|
|
320
322
|
var es = __webpack_require__(69190);
|
|
321
323
|
;// CONCATENATED MODULE: ../../../extensions/cornerstone-dicom-seg/src/panels/PanelSegmentation.tsx
|
|
@@ -324,6 +326,7 @@ var es = __webpack_require__(69190);
|
|
|
324
326
|
|
|
325
327
|
|
|
326
328
|
|
|
329
|
+
|
|
327
330
|
function PanelSegmentation(_ref) {
|
|
328
331
|
let {
|
|
329
332
|
servicesManager,
|
|
@@ -333,6 +336,8 @@ function PanelSegmentation(_ref) {
|
|
|
333
336
|
segmentationService,
|
|
334
337
|
uiDialogService
|
|
335
338
|
} = servicesManager.services;
|
|
339
|
+
const [appConfig] = (0,state/* useAppConfig */.M)();
|
|
340
|
+
const disableEditing = appConfig?.disableEditing;
|
|
336
341
|
const {
|
|
337
342
|
t
|
|
338
343
|
} = (0,es/* useTranslation */.$G)('PanelSegmentation');
|
|
@@ -474,6 +479,7 @@ function PanelSegmentation(_ref) {
|
|
|
474
479
|
onSegmentationEdit: onSegmentationEdit,
|
|
475
480
|
onSegmentClick: onSegmentClick,
|
|
476
481
|
onSegmentEdit: onSegmentEdit,
|
|
482
|
+
disableEditing: disableEditing,
|
|
477
483
|
onSegmentColorClick: onSegmentColorClick,
|
|
478
484
|
onSegmentDelete: onSegmentDelete,
|
|
479
485
|
onToggleSegmentVisibility: onToggleSegmentVisibility,
|
|
@@ -495,6 +501,7 @@ PanelSegmentation.propTypes = {
|
|
|
495
501
|
commandsManager: prop_types_default().shape({
|
|
496
502
|
runCommand: (prop_types_default()).func.isRequired
|
|
497
503
|
}),
|
|
504
|
+
appConfig: (prop_types_default()).object.isRequired,
|
|
498
505
|
servicesManager: prop_types_default().shape({
|
|
499
506
|
services: prop_types_default().shape({
|
|
500
507
|
segmentationService: prop_types_default().shape({
|
|
@@ -513,7 +520,6 @@ const segProtocol = {
|
|
|
513
520
|
// Don't store this hanging protocol as it applies to the currently active
|
|
514
521
|
// display set by default
|
|
515
522
|
// cacheId: null,
|
|
516
|
-
hasUpdatedPriorsInformation: false,
|
|
517
523
|
name: 'Segmentations',
|
|
518
524
|
// Just apply this one when specifically listed
|
|
519
525
|
protocolMatchingRules: [],
|
|
@@ -2627,7 +2627,7 @@ function _extends() { _extends = Object.assign ? Object.assign.bind() : function
|
|
|
2627
2627
|
|
|
2628
2628
|
|
|
2629
2629
|
const Component = /*#__PURE__*/react.lazy(() => {
|
|
2630
|
-
return Promise.all(/* import() */[__webpack_require__.e(754), __webpack_require__.e(604), __webpack_require__.e(417), __webpack_require__.e(23), __webpack_require__.e(
|
|
2630
|
+
return Promise.all(/* import() */[__webpack_require__.e(754), __webpack_require__.e(604), __webpack_require__.e(417), __webpack_require__.e(23), __webpack_require__.e(260), __webpack_require__.e(250)]).then(__webpack_require__.bind(__webpack_require__, 76516));
|
|
2631
2631
|
});
|
|
2632
2632
|
const MicroscopyViewport = props => {
|
|
2633
2633
|
return /*#__PURE__*/react.createElement(react.Suspense, {
|
|
@@ -343,8 +343,8 @@ function getDicomWebClient(_ref) {
|
|
|
343
343
|
}
|
|
344
344
|
// EXTERNAL MODULE: ../../../node_modules/dcmjs/build/dcmjs.es.js
|
|
345
345
|
var dcmjs_es = __webpack_require__(67540);
|
|
346
|
-
// EXTERNAL MODULE: ../../../extensions/default/src/index.ts +
|
|
347
|
-
var default_src = __webpack_require__(
|
|
346
|
+
// EXTERNAL MODULE: ../../../extensions/default/src/index.ts + 68 modules
|
|
347
|
+
var default_src = __webpack_require__(78260);
|
|
348
348
|
;// CONCATENATED MODULE: ../../../extensions/dicom-microscopy/src/utils/cleanDenaturalizedDataset.ts
|
|
349
349
|
|
|
350
350
|
function isPrimitive(v) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
(self["webpackChunk"] = self["webpackChunk"] || []).push([[
|
|
2
|
+
(self["webpackChunk"] = self["webpackChunk"] || []).push([[260],{
|
|
3
3
|
|
|
4
|
-
/***/
|
|
4
|
+
/***/ 78260:
|
|
5
5
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
6
6
|
|
|
7
7
|
// ESM COMPAT FLAG
|
|
@@ -2211,8 +2211,8 @@ function ViewerLayout(_ref) {
|
|
|
2211
2211
|
hotkeyDefinitions,
|
|
2212
2212
|
hotkeyDefaults
|
|
2213
2213
|
} = hotkeysManager;
|
|
2214
|
-
const versionNumber = "3.7.0-beta.
|
|
2215
|
-
const commitHash = "
|
|
2214
|
+
const versionNumber = "3.7.0-beta.52";
|
|
2215
|
+
const commitHash = "3c4795d8cbc009b528c038f9ceeb209608c5e3db";
|
|
2216
2216
|
const menuOptions = [{
|
|
2217
2217
|
title: t('Header:About'),
|
|
2218
2218
|
icon: 'info',
|
|
@@ -5758,7 +5758,6 @@ const commandsModule = _ref => {
|
|
|
5758
5758
|
* It is not included in the viewer mode by default.
|
|
5759
5759
|
*/
|
|
5760
5760
|
const hpMN = {
|
|
5761
|
-
hasUpdatedPriorsInformation: false,
|
|
5762
5761
|
id: '@ohif/mnGrid',
|
|
5763
5762
|
description: 'Has various hanging protocol grid layouts',
|
|
5764
5763
|
name: '2x2',
|
|
@@ -5967,15 +5966,182 @@ const hpMN = {
|
|
|
5967
5966
|
numberOfPriorsReferenced: -1
|
|
5968
5967
|
};
|
|
5969
5968
|
/* harmony default export */ const hpMNGrid = (hpMN);
|
|
5969
|
+
;// CONCATENATED MODULE: ../../../extensions/default/src/hpCompare.ts
|
|
5970
|
+
const defaultDisplaySetSelector = {
|
|
5971
|
+
studyMatchingRules: [{
|
|
5972
|
+
// The priorInstance is a study counter that indicates what position this study is in
|
|
5973
|
+
// and the value comes from the options parameter.
|
|
5974
|
+
attribute: 'studyInstanceUIDsIndex',
|
|
5975
|
+
from: 'options',
|
|
5976
|
+
required: true,
|
|
5977
|
+
constraint: {
|
|
5978
|
+
equals: {
|
|
5979
|
+
value: 0
|
|
5980
|
+
}
|
|
5981
|
+
}
|
|
5982
|
+
}],
|
|
5983
|
+
seriesMatchingRules: [{
|
|
5984
|
+
attribute: 'numImageFrames',
|
|
5985
|
+
constraint: {
|
|
5986
|
+
greaterThan: {
|
|
5987
|
+
value: 0
|
|
5988
|
+
}
|
|
5989
|
+
}
|
|
5990
|
+
},
|
|
5991
|
+
// This display set will select the specified items by preference
|
|
5992
|
+
// It has no affect if nothing is specified in the URL.
|
|
5993
|
+
{
|
|
5994
|
+
attribute: 'isDisplaySetFromUrl',
|
|
5995
|
+
weight: 10,
|
|
5996
|
+
constraint: {
|
|
5997
|
+
equals: true
|
|
5998
|
+
}
|
|
5999
|
+
}]
|
|
6000
|
+
};
|
|
6001
|
+
const priorDisplaySetSelector = {
|
|
6002
|
+
studyMatchingRules: [{
|
|
6003
|
+
// The priorInstance is a study counter that indicates what position this study is in
|
|
6004
|
+
// and the value comes from the options parameter.
|
|
6005
|
+
attribute: 'studyInstanceUIDsIndex',
|
|
6006
|
+
from: 'options',
|
|
6007
|
+
required: true,
|
|
6008
|
+
constraint: {
|
|
6009
|
+
equals: {
|
|
6010
|
+
value: 1
|
|
6011
|
+
}
|
|
6012
|
+
}
|
|
6013
|
+
}],
|
|
6014
|
+
seriesMatchingRules: [{
|
|
6015
|
+
attribute: 'numImageFrames',
|
|
6016
|
+
constraint: {
|
|
6017
|
+
greaterThan: {
|
|
6018
|
+
value: 0
|
|
6019
|
+
}
|
|
6020
|
+
}
|
|
6021
|
+
},
|
|
6022
|
+
// This display set will select the specified items by preference
|
|
6023
|
+
// It has no affect if nothing is specified in the URL.
|
|
6024
|
+
{
|
|
6025
|
+
attribute: 'isDisplaySetFromUrl',
|
|
6026
|
+
weight: 10,
|
|
6027
|
+
constraint: {
|
|
6028
|
+
equals: true
|
|
6029
|
+
}
|
|
6030
|
+
}]
|
|
6031
|
+
};
|
|
6032
|
+
const currentDisplaySet = {
|
|
6033
|
+
id: 'defaultDisplaySetId'
|
|
6034
|
+
};
|
|
6035
|
+
const priorDisplaySet = {
|
|
6036
|
+
id: 'priorDisplaySetId'
|
|
6037
|
+
};
|
|
6038
|
+
const currentViewport0 = {
|
|
6039
|
+
viewportOptions: {
|
|
6040
|
+
toolGroupId: 'default',
|
|
6041
|
+
allowUnmatchedView: true
|
|
6042
|
+
},
|
|
6043
|
+
displaySets: [currentDisplaySet]
|
|
6044
|
+
};
|
|
6045
|
+
const currentViewport1 = {
|
|
6046
|
+
...currentViewport0,
|
|
6047
|
+
displaySets: [{
|
|
6048
|
+
...currentDisplaySet,
|
|
6049
|
+
matchedDisplaySetsIndex: 1
|
|
6050
|
+
}]
|
|
6051
|
+
};
|
|
6052
|
+
const priorViewport0 = {
|
|
6053
|
+
...currentViewport0,
|
|
6054
|
+
displaySets: [priorDisplaySet]
|
|
6055
|
+
};
|
|
6056
|
+
const priorViewport1 = {
|
|
6057
|
+
...priorViewport0,
|
|
6058
|
+
displaySets: [{
|
|
6059
|
+
...priorDisplaySet,
|
|
6060
|
+
matchedDisplaySetsIndex: 1
|
|
6061
|
+
}]
|
|
6062
|
+
};
|
|
6063
|
+
|
|
6064
|
+
/**
|
|
6065
|
+
* This hanging protocol can be activated on the primary mode by directly
|
|
6066
|
+
* referencing it in a URL or by directly including it within a mode, e.g.:
|
|
6067
|
+
* `&hangingProtocolId=@ohif/mnGrid` added to the viewer URL
|
|
6068
|
+
* It is not included in the viewer mode by default.
|
|
6069
|
+
*/
|
|
6070
|
+
const hpMNCompare = {
|
|
6071
|
+
id: '@ohif/hpCompare',
|
|
6072
|
+
description: 'Compare two studies in various layouts',
|
|
6073
|
+
name: 'Compare Two Studies',
|
|
6074
|
+
numberOfPriorsReferenced: 1,
|
|
6075
|
+
protocolMatchingRules: [{
|
|
6076
|
+
id: 'Two Studies',
|
|
6077
|
+
weight: 1000,
|
|
6078
|
+
attribute: 'StudyInstanceUID',
|
|
6079
|
+
// The 'from' attribute says where to get the 'attribute' value from. In this case
|
|
6080
|
+
// prior means the second study in the study list.
|
|
6081
|
+
from: 'prior',
|
|
6082
|
+
required: true,
|
|
6083
|
+
constraint: {
|
|
6084
|
+
notNull: true
|
|
6085
|
+
}
|
|
6086
|
+
}],
|
|
6087
|
+
toolGroupIds: ['default'],
|
|
6088
|
+
displaySetSelectors: {
|
|
6089
|
+
defaultDisplaySetId: defaultDisplaySetSelector,
|
|
6090
|
+
priorDisplaySetId: priorDisplaySetSelector
|
|
6091
|
+
},
|
|
6092
|
+
defaultViewport: {
|
|
6093
|
+
viewportOptions: {
|
|
6094
|
+
viewportType: 'stack',
|
|
6095
|
+
toolGroupId: 'default',
|
|
6096
|
+
allowUnmatchedView: true
|
|
6097
|
+
},
|
|
6098
|
+
displaySets: [{
|
|
6099
|
+
id: 'defaultDisplaySetId',
|
|
6100
|
+
matchedDisplaySetsIndex: -1
|
|
6101
|
+
}]
|
|
6102
|
+
},
|
|
6103
|
+
stages: [{
|
|
6104
|
+
name: '2x2',
|
|
6105
|
+
stageActivation: {
|
|
6106
|
+
enabled: {
|
|
6107
|
+
minViewportsMatched: 4
|
|
6108
|
+
}
|
|
6109
|
+
},
|
|
6110
|
+
viewportStructure: {
|
|
6111
|
+
layoutType: 'grid',
|
|
6112
|
+
properties: {
|
|
6113
|
+
rows: 2,
|
|
6114
|
+
columns: 2
|
|
6115
|
+
}
|
|
6116
|
+
},
|
|
6117
|
+
viewports: [currentViewport0, priorViewport0, currentViewport1, priorViewport1]
|
|
6118
|
+
}, {
|
|
6119
|
+
name: '2x1',
|
|
6120
|
+
stageActivation: {
|
|
6121
|
+
enabled: {
|
|
6122
|
+
minViewportsMatched: 2
|
|
6123
|
+
}
|
|
6124
|
+
},
|
|
6125
|
+
viewportStructure: {
|
|
6126
|
+
layoutType: 'grid',
|
|
6127
|
+
properties: {
|
|
6128
|
+
rows: 1,
|
|
6129
|
+
columns: 2
|
|
6130
|
+
}
|
|
6131
|
+
},
|
|
6132
|
+
viewports: [currentViewport0, priorViewport0]
|
|
6133
|
+
}]
|
|
6134
|
+
};
|
|
6135
|
+
/* harmony default export */ const hpCompare = (hpMNCompare);
|
|
5970
6136
|
;// CONCATENATED MODULE: ../../../extensions/default/src/getHangingProtocolModule.js
|
|
5971
6137
|
|
|
6138
|
+
|
|
5972
6139
|
const defaultProtocol = {
|
|
5973
6140
|
id: 'default',
|
|
5974
6141
|
locked: true,
|
|
5975
6142
|
// Don't store this hanging protocol as it applies to the currently active
|
|
5976
6143
|
// display set by default
|
|
5977
6144
|
// cacheId: null,
|
|
5978
|
-
hasUpdatedPriorsInformation: false,
|
|
5979
6145
|
name: 'Default',
|
|
5980
6146
|
createdDate: '2021-02-23T19:22:08.894Z',
|
|
5981
6147
|
modifiedDate: '2023-04-01',
|
|
@@ -6069,6 +6235,11 @@ function getHangingProtocolModule() {
|
|
|
6069
6235
|
{
|
|
6070
6236
|
name: hpMNGrid.id,
|
|
6071
6237
|
protocol: hpMNGrid
|
|
6238
|
+
},
|
|
6239
|
+
// Create a MxN comparison hanging protocol available by default
|
|
6240
|
+
{
|
|
6241
|
+
name: hpCompare.id,
|
|
6242
|
+
protocol: hpCompare
|
|
6072
6243
|
}];
|
|
6073
6244
|
}
|
|
6074
6245
|
/* harmony default export */ const src_getHangingProtocolModule = (getHangingProtocolModule);
|
|
@@ -896,7 +896,8 @@ const promptHydrateStructuredReport_RESPONSE = {
|
|
|
896
896
|
function promptHydrateStructuredReport(_ref, ctx, evt) {
|
|
897
897
|
let {
|
|
898
898
|
servicesManager,
|
|
899
|
-
extensionManager
|
|
899
|
+
extensionManager,
|
|
900
|
+
appConfig
|
|
900
901
|
} = _ref;
|
|
901
902
|
const {
|
|
902
903
|
uiViewportDialogService,
|
|
@@ -916,7 +917,8 @@ function promptHydrateStructuredReport(_ref, ctx, evt) {
|
|
|
916
917
|
console.warn('!! HYDRATING STRUCTURED REPORT');
|
|
917
918
|
const hydrationResult = (0,cornerstone_dicom_sr_src.hydrateStructuredReport)({
|
|
918
919
|
servicesManager,
|
|
919
|
-
extensionManager
|
|
920
|
+
extensionManager,
|
|
921
|
+
appConfig
|
|
920
922
|
}, displaySetInstanceUID);
|
|
921
923
|
StudyInstanceUID = hydrationResult.StudyInstanceUID;
|
|
922
924
|
SeriesInstanceUIDs = hydrationResult.SeriesInstanceUIDs;
|
|
@@ -993,6 +995,8 @@ function hydrateStructuredReport(_ref, ctx, evt) {
|
|
|
993
995
|
});
|
|
994
996
|
}
|
|
995
997
|
/* harmony default export */ const TrackedMeasurementsContext_hydrateStructuredReport = (hydrateStructuredReport);
|
|
998
|
+
// EXTERNAL MODULE: ./state/index.js + 1 modules
|
|
999
|
+
var state = __webpack_require__(62657);
|
|
996
1000
|
;// CONCATENATED MODULE: ../../../extensions/measurement-tracking/src/contexts/TrackedMeasurementsContext/TrackedMeasurementsContext.tsx
|
|
997
1001
|
|
|
998
1002
|
|
|
@@ -1006,6 +1010,7 @@ function hydrateStructuredReport(_ref, ctx, evt) {
|
|
|
1006
1010
|
|
|
1007
1011
|
|
|
1008
1012
|
|
|
1013
|
+
|
|
1009
1014
|
const TrackedMeasurementsContext = /*#__PURE__*/react.createContext();
|
|
1010
1015
|
TrackedMeasurementsContext.displayName = 'TrackedMeasurementsContext';
|
|
1011
1016
|
const useTrackedMeasurements = () => (0,react.useContext)(TrackedMeasurementsContext);
|
|
@@ -1026,6 +1031,7 @@ _ref2 // Component props
|
|
|
1026
1031
|
let {
|
|
1027
1032
|
children
|
|
1028
1033
|
} = _ref2;
|
|
1034
|
+
const [appConfig] = (0,state/* useAppConfig */.M)();
|
|
1029
1035
|
const [viewportGrid, viewportGridService] = (0,src/* useViewportGrid */.O_)();
|
|
1030
1036
|
const {
|
|
1031
1037
|
activeViewportIndex,
|
|
@@ -1101,28 +1107,34 @@ _ref2 // Component props
|
|
|
1101
1107
|
machineOptions.services = Object.assign({}, machineOptions.services, {
|
|
1102
1108
|
promptBeginTracking: TrackedMeasurementsContext_promptBeginTracking.bind(null, {
|
|
1103
1109
|
servicesManager,
|
|
1104
|
-
extensionManager
|
|
1110
|
+
extensionManager,
|
|
1111
|
+
appConfig
|
|
1105
1112
|
}),
|
|
1106
1113
|
promptTrackNewSeries: TrackedMeasurementsContext_promptTrackNewSeries.bind(null, {
|
|
1107
1114
|
servicesManager,
|
|
1108
|
-
extensionManager
|
|
1115
|
+
extensionManager,
|
|
1116
|
+
appConfig
|
|
1109
1117
|
}),
|
|
1110
1118
|
promptTrackNewStudy: TrackedMeasurementsContext_promptTrackNewStudy.bind(null, {
|
|
1111
1119
|
servicesManager,
|
|
1112
|
-
extensionManager
|
|
1120
|
+
extensionManager,
|
|
1121
|
+
appConfig
|
|
1113
1122
|
}),
|
|
1114
1123
|
promptSaveReport: TrackedMeasurementsContext_promptSaveReport.bind(null, {
|
|
1115
1124
|
servicesManager,
|
|
1116
1125
|
commandsManager,
|
|
1117
|
-
extensionManager
|
|
1126
|
+
extensionManager,
|
|
1127
|
+
appConfig
|
|
1118
1128
|
}),
|
|
1119
1129
|
promptHydrateStructuredReport: TrackedMeasurementsContext_promptHydrateStructuredReport.bind(null, {
|
|
1120
1130
|
servicesManager,
|
|
1121
|
-
extensionManager
|
|
1131
|
+
extensionManager,
|
|
1132
|
+
appConfig
|
|
1122
1133
|
}),
|
|
1123
1134
|
hydrateStructuredReport: TrackedMeasurementsContext_hydrateStructuredReport.bind(null, {
|
|
1124
1135
|
servicesManager,
|
|
1125
|
-
extensionManager
|
|
1136
|
+
extensionManager,
|
|
1137
|
+
appConfig
|
|
1126
1138
|
})
|
|
1127
1139
|
});
|
|
1128
1140
|
|
|
@@ -1193,7 +1205,8 @@ TrackedMeasurementsContextProvider.propTypes = {
|
|
|
1193
1205
|
children: prop_types_default().oneOf([(prop_types_default()).func, (prop_types_default()).node]),
|
|
1194
1206
|
servicesManager: (prop_types_default()).object.isRequired,
|
|
1195
1207
|
commandsManager: (prop_types_default()).object.isRequired,
|
|
1196
|
-
extensionManager: (prop_types_default()).object.isRequired
|
|
1208
|
+
extensionManager: (prop_types_default()).object.isRequired,
|
|
1209
|
+
appConfig: (prop_types_default()).object
|
|
1197
1210
|
};
|
|
1198
1211
|
|
|
1199
1212
|
;// CONCATENATED MODULE: ../../../extensions/measurement-tracking/src/contexts/TrackedMeasurementsContext/index.js
|
|
@@ -1018,7 +1018,6 @@ const srProtocol = {
|
|
|
1018
1018
|
// Don't store this hanging protocol as it applies to the currently active
|
|
1019
1019
|
// display set by default
|
|
1020
1020
|
// cacheId: null,
|
|
1021
|
-
hasUpdatedPriorsInformation: false,
|
|
1022
1021
|
name: 'SR Key Images',
|
|
1023
1022
|
// Just apply this one when specifically listed
|
|
1024
1023
|
protocolMatchingRules: [],
|
|
@@ -1623,11 +1622,17 @@ function getLabelFromDCMJSImportedToolData(toolData) {
|
|
|
1623
1622
|
}
|
|
1624
1623
|
// EXTERNAL MODULE: ../../../node_modules/@cornerstonejs/adapters/dist/adapters.es.js
|
|
1625
1624
|
var adapters_es = __webpack_require__(91202);
|
|
1625
|
+
// EXTERNAL MODULE: ../../../node_modules/@cornerstonejs/tools/dist/esm/index.js + 323 modules
|
|
1626
|
+
var dist_esm = __webpack_require__(26925);
|
|
1626
1627
|
;// CONCATENATED MODULE: ../../../extensions/cornerstone-dicom-sr/src/utils/hydrateStructuredReport.js
|
|
1627
1628
|
|
|
1628
1629
|
|
|
1629
1630
|
|
|
1630
1631
|
|
|
1632
|
+
|
|
1633
|
+
const {
|
|
1634
|
+
locking
|
|
1635
|
+
} = dist_esm.annotation;
|
|
1631
1636
|
const {
|
|
1632
1637
|
guid
|
|
1633
1638
|
} = src["default"].utils;
|
|
@@ -1674,8 +1679,11 @@ const convertSites = (codingValues, sites) => {
|
|
|
1674
1679
|
function hydrateStructuredReport(_ref, displaySetInstanceUID) {
|
|
1675
1680
|
let {
|
|
1676
1681
|
servicesManager,
|
|
1677
|
-
extensionManager
|
|
1682
|
+
extensionManager,
|
|
1683
|
+
appConfig
|
|
1678
1684
|
} = _ref;
|
|
1685
|
+
const annotationManager = dist_esm.annotation.state.getAnnotationManager();
|
|
1686
|
+
const disableEditing = appConfig?.disableEditing;
|
|
1679
1687
|
const dataSource = extensionManager.getActiveDataSource()[0];
|
|
1680
1688
|
const {
|
|
1681
1689
|
measurementService,
|
|
@@ -1793,9 +1801,13 @@ function hydrateStructuredReport(_ref, displaySetInstanceUID) {
|
|
|
1793
1801
|
annotation.data.findingSites = convertSites(codingValues, toolData.findingSites);
|
|
1794
1802
|
annotation.data.site = annotation.data.findingSites?.[0];
|
|
1795
1803
|
const matchingMapping = mappings.find(m => m.annotationType === annotationType);
|
|
1796
|
-
measurementService.addRawMeasurement(source, annotationType, {
|
|
1804
|
+
const newAnnotationUID = measurementService.addRawMeasurement(source, annotationType, {
|
|
1797
1805
|
annotation
|
|
1798
1806
|
}, matchingMapping.toMeasurementSchema, dataSource);
|
|
1807
|
+
if (disableEditing) {
|
|
1808
|
+
const addedAnnotation = annotationManager.getAnnotation(newAnnotationUID);
|
|
1809
|
+
locking.setAnnotationLocked(addedAnnotation, true);
|
|
1810
|
+
}
|
|
1799
1811
|
if (!imageIds.includes(imageId)) {
|
|
1800
1812
|
imageIds.push(imageId);
|
|
1801
1813
|
}
|
|
@@ -5254,9 +5254,8 @@ const mpr = {
|
|
|
5254
5254
|
id: 'mpr',
|
|
5255
5255
|
name: 'Multi-Planar Reconstruction',
|
|
5256
5256
|
locked: true,
|
|
5257
|
-
hasUpdatedPriorsInformation: false,
|
|
5258
5257
|
createdDate: '2021-02-23',
|
|
5259
|
-
modifiedDate: '2023-
|
|
5258
|
+
modifiedDate: '2023-08-15',
|
|
5260
5259
|
availableTo: {},
|
|
5261
5260
|
editableBy: {},
|
|
5262
5261
|
// Unknown number of priors referenced - so just match any study
|
|
@@ -5385,7 +5384,6 @@ const mpr = {
|
|
|
5385
5384
|
const mprAnd3DVolumeViewport = {
|
|
5386
5385
|
id: 'mprAnd3DVolumeViewport',
|
|
5387
5386
|
locked: true,
|
|
5388
|
-
hasUpdatedPriorsInformation: false,
|
|
5389
5387
|
name: 'mpr',
|
|
5390
5388
|
createdDate: '2023-03-15T10:29:44.894Z',
|
|
5391
5389
|
modifiedDate: '2023-03-15T10:29:44.894Z',
|
|
@@ -576,7 +576,6 @@ const stage4 = {
|
|
|
576
576
|
const ptCT = {
|
|
577
577
|
id: '@ohif/extension-tmtv.hangingProtocolModule.ptCT',
|
|
578
578
|
locked: true,
|
|
579
|
-
hasUpdatedPriorsInformation: false,
|
|
580
579
|
name: 'Default',
|
|
581
580
|
createdDate: '2021-02-23T19:22:08.894Z',
|
|
582
581
|
modifiedDate: '2022-10-04T19:22:08.894Z',
|
|
@@ -16,6 +16,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
16
16
|
/* harmony import */ var _tools_modules_dicomSRModule__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(64035);
|
|
17
17
|
/* harmony import */ var _ohif_ui__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(60082);
|
|
18
18
|
/* harmony import */ var _utils_hydrateStructuredReport__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(38965);
|
|
19
|
+
/* harmony import */ var _state__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(62657);
|
|
19
20
|
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
20
21
|
|
|
21
22
|
|
|
@@ -24,6 +25,7 @@ function _extends() { _extends = Object.assign ? Object.assign.bind() : function
|
|
|
24
25
|
|
|
25
26
|
|
|
26
27
|
|
|
28
|
+
|
|
27
29
|
const {
|
|
28
30
|
formatDate
|
|
29
31
|
} = _ohif_core__WEBPACK_IMPORTED_MODULE_3__.utils;
|
|
@@ -40,6 +42,7 @@ function OHIFCornerstoneSRViewport(props) {
|
|
|
40
42
|
servicesManager,
|
|
41
43
|
extensionManager
|
|
42
44
|
} = props;
|
|
45
|
+
const [appConfig] = (0,_state__WEBPACK_IMPORTED_MODULE_7__/* .useAppConfig */ .M)();
|
|
43
46
|
const {
|
|
44
47
|
displaySetService,
|
|
45
48
|
cornerstoneViewportService,
|
|
@@ -84,7 +87,8 @@ function OHIFCornerstoneSRViewport(props) {
|
|
|
84
87
|
SeriesInstanceUIDs
|
|
85
88
|
} = (0,_utils_hydrateStructuredReport__WEBPACK_IMPORTED_MODULE_6__/* ["default"] */ .Z)({
|
|
86
89
|
servicesManager,
|
|
87
|
-
extensionManager
|
|
90
|
+
extensionManager,
|
|
91
|
+
appConfig
|
|
88
92
|
}, displaySetInstanceUID);
|
|
89
93
|
const displaySets = displaySetService.getDisplaySetsForSeries(SeriesInstanceUIDs[0]);
|
|
90
94
|
if (displaySets.length) {
|
|
@@ -959,8 +959,8 @@ function WorkList(_ref) {
|
|
|
959
959
|
};
|
|
960
960
|
});
|
|
961
961
|
const hasStudies = numOfStudies > 0;
|
|
962
|
-
const versionNumber = "3.7.0-beta.
|
|
963
|
-
const commitHash = "
|
|
962
|
+
const versionNumber = "3.7.0-beta.52";
|
|
963
|
+
const commitHash = "3c4795d8cbc009b528c038f9ceeb209608c5e3db";
|
|
964
964
|
const menuOptions = [{
|
|
965
965
|
title: t('Header:About'),
|
|
966
966
|
icon: 'info',
|
|
@@ -1901,7 +1901,7 @@ modes.push("@ohif/mode-microscopy");
|
|
|
1901
1901
|
async function loadModule(module) {
|
|
1902
1902
|
if (typeof module !== 'string') return module;
|
|
1903
1903
|
if (module === "@ohif/extension-default") {
|
|
1904
|
-
const imported = await Promise.all(/* import() */[__webpack_require__.e(604), __webpack_require__.e(417), __webpack_require__.e(
|
|
1904
|
+
const imported = await Promise.all(/* import() */[__webpack_require__.e(604), __webpack_require__.e(417), __webpack_require__.e(260), __webpack_require__.e(579)]).then(__webpack_require__.bind(__webpack_require__, 78260));
|
|
1905
1905
|
return imported.default;
|
|
1906
1906
|
}
|
|
1907
1907
|
if (module === "@ohif/extension-cornerstone") {
|
|
@@ -7039,7 +7039,7 @@ const detectionOptions = {
|
|
|
7039
7039
|
}
|
|
7040
7040
|
});
|
|
7041
7041
|
;// CONCATENATED MODULE: ../../i18n/package.json
|
|
7042
|
-
const package_namespaceObject = JSON.parse('{"i8":"3.7.0-beta.
|
|
7042
|
+
const package_namespaceObject = JSON.parse('{"i8":"3.7.0-beta.51"}');
|
|
7043
7043
|
;// CONCATENATED MODULE: ../../i18n/src/utils.js
|
|
7044
7044
|
const languagesMap = {
|
|
7045
7045
|
ar: 'Arabic',
|
|
@@ -28929,6 +28929,7 @@ const SegmentItem = _ref => {
|
|
|
28929
28929
|
isVisible,
|
|
28930
28930
|
color,
|
|
28931
28931
|
showSegmentDelete,
|
|
28932
|
+
disableEditing,
|
|
28932
28933
|
isLocked = false,
|
|
28933
28934
|
onClick,
|
|
28934
28935
|
onEdit,
|
|
@@ -29005,7 +29006,7 @@ const SegmentItem = _ref => {
|
|
|
29005
29006
|
}
|
|
29006
29007
|
})), isHovering && /*#__PURE__*/react.createElement("div", {
|
|
29007
29008
|
className: classnames_default()('flex items-center')
|
|
29008
|
-
}, /*#__PURE__*/react.createElement(Icon/* default */.Z, {
|
|
29009
|
+
}, !disableEditing && /*#__PURE__*/react.createElement(Icon/* default */.Z, {
|
|
29009
29010
|
name: "row-edit",
|
|
29010
29011
|
className: classnames_default()('w-5 h-5', {
|
|
29011
29012
|
'text-white': isLocked,
|
|
@@ -29041,6 +29042,7 @@ SegmentItem.propTypes = {
|
|
|
29041
29042
|
segmentIndex: (prop_types_default()).number.isRequired,
|
|
29042
29043
|
segmentationId: (prop_types_default()).string.isRequired,
|
|
29043
29044
|
label: (prop_types_default()).string,
|
|
29045
|
+
disableEditing: (prop_types_default()).bool,
|
|
29044
29046
|
// color as array
|
|
29045
29047
|
color: (prop_types_default()).array,
|
|
29046
29048
|
isActive: (prop_types_default()).bool.isRequired,
|
|
@@ -29071,11 +29073,12 @@ const AddNewSegmentRow = _ref => {
|
|
|
29071
29073
|
onToggleSegmentationVisibility,
|
|
29072
29074
|
onSegmentAdd,
|
|
29073
29075
|
isVisible,
|
|
29074
|
-
showAddSegment
|
|
29076
|
+
showAddSegment,
|
|
29077
|
+
disableEditing
|
|
29075
29078
|
} = _ref;
|
|
29076
29079
|
return /*#__PURE__*/react.createElement("div", null, /*#__PURE__*/react.createElement("div", {
|
|
29077
29080
|
className: "flex items-center pl-[29px] bg-black text-primary-active hover:opacity-80 cursor-pointer text-[12px] py-1"
|
|
29078
|
-
}, showAddSegment && /*#__PURE__*/react.createElement("div", {
|
|
29081
|
+
}, showAddSegment && !disableEditing && /*#__PURE__*/react.createElement("div", {
|
|
29079
29082
|
className: "flex items-center",
|
|
29080
29083
|
onClick: () => onSegmentAdd()
|
|
29081
29084
|
}, /*#__PURE__*/react.createElement(Icon/* default */.Z, {
|
|
@@ -29108,6 +29111,7 @@ const SegmentGroupHeader = _ref2 => {
|
|
|
29108
29111
|
isActive,
|
|
29109
29112
|
segmentCount,
|
|
29110
29113
|
onSegmentationEdit,
|
|
29114
|
+
disableEditing,
|
|
29111
29115
|
onSegmentationDelete
|
|
29112
29116
|
} = _ref2;
|
|
29113
29117
|
return /*#__PURE__*/react.createElement("div", {
|
|
@@ -29138,7 +29142,7 @@ const SegmentGroupHeader = _ref2 => {
|
|
|
29138
29142
|
onClick: e => {
|
|
29139
29143
|
e.stopPropagation();
|
|
29140
29144
|
}
|
|
29141
|
-
}, /*#__PURE__*/react.createElement(Dropdown_Dropdown, {
|
|
29145
|
+
}, !disableEditing && /*#__PURE__*/react.createElement(Dropdown_Dropdown, {
|
|
29142
29146
|
id: "segmentation-dropdown",
|
|
29143
29147
|
showDropdownIcon: false,
|
|
29144
29148
|
list: [{
|
|
@@ -29172,6 +29176,7 @@ const SegmentationGroup = _ref3 => {
|
|
|
29172
29176
|
onSegmentClick,
|
|
29173
29177
|
isMinimized,
|
|
29174
29178
|
onSegmentColorClick,
|
|
29179
|
+
disableEditing,
|
|
29175
29180
|
showAddSegment,
|
|
29176
29181
|
segments,
|
|
29177
29182
|
activeSegmentIndex,
|
|
@@ -29199,7 +29204,8 @@ const SegmentationGroup = _ref3 => {
|
|
|
29199
29204
|
onSegmentationClick: onSegmentationClick,
|
|
29200
29205
|
segmentCount: segmentCount,
|
|
29201
29206
|
onSegmentationEdit: onSegmentationEdit,
|
|
29202
|
-
onSegmentationDelete: onSegmentationDelete
|
|
29207
|
+
onSegmentationDelete: onSegmentationDelete,
|
|
29208
|
+
disableEditing: disableEditing
|
|
29203
29209
|
}), !isMinimized && /*#__PURE__*/react.createElement("div", {
|
|
29204
29210
|
className: "flex flex-col flex-auto min-h-0"
|
|
29205
29211
|
}, /*#__PURE__*/react.createElement(AddNewSegmentRow, {
|
|
@@ -29208,6 +29214,7 @@ const SegmentationGroup = _ref3 => {
|
|
|
29208
29214
|
isVisible: isVisible,
|
|
29209
29215
|
onToggleSegmentationVisibility: onToggleSegmentationVisibility,
|
|
29210
29216
|
id: id,
|
|
29217
|
+
disableEditing: disableEditing,
|
|
29211
29218
|
showAddSegment: showAddSegment
|
|
29212
29219
|
}), /*#__PURE__*/react.createElement("div", {
|
|
29213
29220
|
className: "flex flex-col min-h-0 ohif-scrollbar overflow-y-hidden"
|
|
@@ -29233,6 +29240,7 @@ const SegmentationGroup = _ref3 => {
|
|
|
29233
29240
|
isActive: activeSegmentIndex === segmentIndex,
|
|
29234
29241
|
isLocked: isLocked,
|
|
29235
29242
|
isVisible: isVisible,
|
|
29243
|
+
disableEditing: disableEditing,
|
|
29236
29244
|
onClick: onSegmentClick,
|
|
29237
29245
|
onEdit: onSegmentEdit,
|
|
29238
29246
|
onDelete: onSegmentDelete,
|
|
@@ -29268,7 +29276,8 @@ SegmentationGroup.propTypes = {
|
|
|
29268
29276
|
onToggleMinimizeSegmentation: (prop_types_default()).func.isRequired,
|
|
29269
29277
|
onSegmentationConfigChange: (prop_types_default()).func.isRequired,
|
|
29270
29278
|
onSegmentationDelete: (prop_types_default()).func.isRequired,
|
|
29271
|
-
onSegmentEdit: (prop_types_default()).func.isRequired
|
|
29279
|
+
onSegmentEdit: (prop_types_default()).func.isRequired,
|
|
29280
|
+
disableEditing: (prop_types_default()).bool
|
|
29272
29281
|
};
|
|
29273
29282
|
SegmentationGroup.defaultProps = {
|
|
29274
29283
|
label: '',
|
|
@@ -29621,6 +29630,7 @@ const SegmentationGroupTable = _ref => {
|
|
|
29621
29630
|
onSegmentClick,
|
|
29622
29631
|
onSegmentAdd,
|
|
29623
29632
|
segmentationConfig,
|
|
29633
|
+
disableEditing,
|
|
29624
29634
|
onSegmentDelete,
|
|
29625
29635
|
onSegmentEdit,
|
|
29626
29636
|
onToggleSegmentationVisibility,
|
|
@@ -29664,6 +29674,7 @@ const SegmentationGroupTable = _ref => {
|
|
|
29664
29674
|
id: id,
|
|
29665
29675
|
key: id,
|
|
29666
29676
|
label: label,
|
|
29677
|
+
disableEditing: disableEditing,
|
|
29667
29678
|
isMinimized: isMinimized[id],
|
|
29668
29679
|
segments: segments,
|
|
29669
29680
|
showAddSegment: showAddSegment,
|
|
@@ -29683,7 +29694,7 @@ const SegmentationGroupTable = _ref => {
|
|
|
29683
29694
|
onSegmentAdd: onSegmentAdd,
|
|
29684
29695
|
showSegmentDelete: false
|
|
29685
29696
|
});
|
|
29686
|
-
})), showAddSegmentation && /*#__PURE__*/react.createElement("div", {
|
|
29697
|
+
})), showAddSegmentation && !disableEditing && /*#__PURE__*/react.createElement("div", {
|
|
29687
29698
|
className: "flex items-center cursor-pointer hover:opacity-80 text-primary-active bg-black text-[12px] pl-1 h-[45px]",
|
|
29688
29699
|
onClick: () => onSegmentationAdd()
|
|
29689
29700
|
}, /*#__PURE__*/react.createElement(Icon/* default */.Z, {
|
|
@@ -29703,7 +29714,8 @@ SegmentationGroupTable.propTypes = {
|
|
|
29703
29714
|
onToggleLocked: (prop_types_default()).func,
|
|
29704
29715
|
onToggleVisibility: (prop_types_default()).func.isRequired,
|
|
29705
29716
|
onToggleVisibilityAll: (prop_types_default()).func.isRequired,
|
|
29706
|
-
segmentationConfig: (prop_types_default()).object
|
|
29717
|
+
segmentationConfig: (prop_types_default()).object,
|
|
29718
|
+
disableEditing: (prop_types_default()).bool
|
|
29707
29719
|
};
|
|
29708
29720
|
SegmentationGroupTable.defaultProps = {
|
|
29709
29721
|
title: '',
|
|
@@ -46444,6 +46456,7 @@ const ViewportActionBar = _ref => {
|
|
|
46444
46456
|
}, label), /*#__PURE__*/react.createElement("div", {
|
|
46445
46457
|
className: separatorClasses
|
|
46446
46458
|
}), /*#__PURE__*/react.createElement("span", {
|
|
46459
|
+
"data-cy": "studyDate",
|
|
46447
46460
|
ref: studyDateElemRef,
|
|
46448
46461
|
className: studyDateClasses()
|
|
46449
46462
|
}, studyDate), showSeriesDesc && /*#__PURE__*/react.createElement(react.Fragment, null, /*#__PURE__*/react.createElement("div", {
|
|
@@ -47387,7 +47400,7 @@ class MeasurementService extends PubSubService {
|
|
|
47387
47400
|
dataSource
|
|
47388
47401
|
});
|
|
47389
47402
|
}
|
|
47390
|
-
return newMeasurement.
|
|
47403
|
+
return newMeasurement.uid;
|
|
47391
47404
|
}
|
|
47392
47405
|
|
|
47393
47406
|
/**
|
|
@@ -51913,6 +51926,9 @@ class HangingProtocolService extends PubSubService {
|
|
|
51913
51926
|
this.studies = [];
|
|
51914
51927
|
this.viewportMatchDetails = new Map();
|
|
51915
51928
|
this.displaySetMatchDetails = new Map();
|
|
51929
|
+
this.protocol = undefined;
|
|
51930
|
+
this.stageIndex = undefined;
|
|
51931
|
+
this.protocolEngine = undefined;
|
|
51916
51932
|
}
|
|
51917
51933
|
|
|
51918
51934
|
/** Leave the hanging protocol in the initialized state */
|
|
@@ -52953,7 +52969,7 @@ class HangingProtocolService extends PubSubService {
|
|
|
52953
52969
|
let highestSeriesMatchingScore = 0;
|
|
52954
52970
|
console.log('ProtocolEngine::matchImages', studyMatchingRules, seriesMatchingRules);
|
|
52955
52971
|
const matchActiveOnly = this.protocol.numberOfPriorsReferenced === -1;
|
|
52956
|
-
this.studies.forEach(study => {
|
|
52972
|
+
this.studies.forEach((study, studyInstanceUIDsIndex) => {
|
|
52957
52973
|
// Skip non-active if active only
|
|
52958
52974
|
if (matchActiveOnly && this.activeStudy !== study) {
|
|
52959
52975
|
return;
|
|
@@ -52963,7 +52979,8 @@ class HangingProtocolService extends PubSubService {
|
|
|
52963
52979
|
studies: this.studies,
|
|
52964
52980
|
displaySets: studyDisplaySets,
|
|
52965
52981
|
allDisplaySets: this.displaySets,
|
|
52966
|
-
displaySetMatchDetails: this.displaySetMatchDetails
|
|
52982
|
+
displaySetMatchDetails: this.displaySetMatchDetails,
|
|
52983
|
+
studyInstanceUIDsIndex
|
|
52967
52984
|
});
|
|
52968
52985
|
|
|
52969
52986
|
// Prevent bestMatch from being updated if the matchDetails' required attribute check has failed
|
|
@@ -153636,7 +153653,7 @@ var selectOrdinal = function selectOrdinal() {
|
|
|
153636
153653
|
/******/ // This function allow to reference async chunks
|
|
153637
153654
|
/******/ __webpack_require__.u = (chunkId) => {
|
|
153638
153655
|
/******/ // return url for filenames based on template
|
|
153639
|
-
/******/ return "" + (chunkId === 18 ? "dicom-microscopy-viewer" : chunkId) + ".bundle." + {"12":"
|
|
153656
|
+
/******/ return "" + (chunkId === 18 ? "dicom-microscopy-viewer" : chunkId) + ".bundle." + {"12":"5e2ecb206aa004a7727b","18":"44f7fedc03a58d5911d1","23":"e008ad788170f2ed5569","30":"4d42b94a5606b0b00631","125":"1ae4c6313c31cd0502cc","128":"21a267ee74c0f3072548","150":"66686c9295f7e8ab288e","181":"1705c0775d72e671dede","202":"ac1e5e25d4daf54581b1","220":"f7e1c96c94245e70f2be","236":"b6aa7e71a3145a5d1d7a","250":"a523e899f4fb640949f9","260":"9413ba0b5ee0fad0e3c9","281":"f68807e7555a728c5942","348":"0e407df6dee83f5fd683","359":"4db0416ec3ee9f844bc9","378":"1cbca4404c56723075ba","410":"28bd638e80e6c7fc8d16","417":"720dc8f3a6e99f378aa9","451":"9941d9134fcf747d452a","471":"c9e618aeda78362776aa","506":"75ae18b1d034ed58fa90","579":"8fc434a0c13d3f662d42","604":"a51f83e64004bca5f497","663":"35887d52ec913e3d18fc","677":"ec5f2b4707db33bd4d8e","678":"88da61209fcabca1a8bb","686":"70565410179f1e7d22e6","754":"8a16fc8ad21fe00c2e15","774":"8ba82ee206266eb2da5e","775":"2285e7e0e67878948c0d","782":"4b27ab6392855d736c3d","814":"feaef3dfc549e4a732f0","822":"34b2c7e2f175dc797380","886":"09fc0e8c8aa227b70351","925":"22f021ff05c44ae74f24"}[chunkId] + ".js";
|
|
153640
153657
|
/******/ };
|
|
153641
153658
|
/******/ })();
|
|
153642
153659
|
/******/
|
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.97b19ae6b73425b79352.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.5e2ecb206aa004a7727b.js'},{'revision':null,'url':'/125.bundle.1ae4c6313c31cd0502cc.js'},{'revision':null,'url':'/128.bundle.21a267ee74c0f3072548.js'},{'revision':null,'url':'/150.bundle.66686c9295f7e8ab288e.js'},{'revision':null,'url':'/181.bundle.1705c0775d72e671dede.js'},{'revision':'8079c6447e119ba0680e8fab5875745d','url':'/181.css'},{'revision':null,'url':'/202.bundle.ac1e5e25d4daf54581b1.js'},{'revision':null,'url':'/220.bundle.f7e1c96c94245e70f2be.js'},{'revision':null,'url':'/23.bundle.e008ad788170f2ed5569.js'},{'revision':null,'url':'/236.bundle.b6aa7e71a3145a5d1d7a.js'},{'revision':null,'url':'/250.bundle.a523e899f4fb640949f9.js'},{'revision':'0afb25509c7f072fbd7eda42c6895dbf','url':'/250.css'},{'revision':null,'url':'/260.bundle.9413ba0b5ee0fad0e3c9.js'},{'revision':null,'url':'/281.bundle.f68807e7555a728c5942.js'},{'revision':null,'url':'/30.bundle.4d42b94a5606b0b00631.js'},{'revision':null,'url':'/348.bundle.0e407df6dee83f5fd683.js'},{'revision':null,'url':'/359.bundle.4db0416ec3ee9f844bc9.js'},{'revision':'c4ea120c6da08aa75348edfa3e57ece9','url':'/36785fbd89b0e17f6099.wasm'},{'revision':null,'url':'/378.bundle.1cbca4404c56723075ba.js'},{'revision':null,'url':'/410.bundle.28bd638e80e6c7fc8d16.js'},{'revision':null,'url':'/417.bundle.720dc8f3a6e99f378aa9.js'},{'revision':null,'url':'/451.bundle.9941d9134fcf747d452a.js'},{'revision':null,'url':'/471.bundle.c9e618aeda78362776aa.js'},{'revision':'c377e1f5fe4a207d270c3f7a8dd3e3ca','url':'/5004fdc02f329ce53b69.wasm'},{'revision':null,'url':'/506.bundle.75ae18b1d034ed58fa90.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.35887d52ec913e3d18fc.js'},{'revision':null,'url':'/677.bundle.ec5f2b4707db33bd4d8e.js'},{'revision':null,'url':'/678.bundle.88da61209fcabca1a8bb.js'},{'revision':'185e5e0a10fa6ab2fc7b3c38e63d550b','url':'/678.css'},{'revision':null,'url':'/686.bundle.70565410179f1e7d22e6.js'},{'revision':null,'url':'/754.bundle.8a16fc8ad21fe00c2e15.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.4b27ab6392855d736c3d.js'},{'revision':null,'url':'/814.bundle.feaef3dfc549e4a732f0.js'},{'revision':null,'url':'/822.bundle.34b2c7e2f175dc797380.js'},{'revision':null,'url':'/886.bundle.09fc0e8c8aa227b70351.js'},{'revision':null,'url':'/925.bundle.22f021ff05c44ae74f24.js'},{'revision':'74c9647440e51f149ad12923d6ead952','url':'/945.min.worker.js'},{'revision':'cdf6f0457d4af2cef04fc41816241bc1','url':'/945.min.worker.js.map'},{'revision':'d1895aa7a4595dc279c382e5a31ef9f4','url':'/_headers'},{'revision':'6839a719b6810111d8097998b11293a1','url':'/_redirects'},{'revision':'75b0852380bfab6b77ed10924d558d63','url':'/app-config.js'},{'revision':'d5ac5862db6dfbb7eacfc0e74a6602b4','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':'c92fc2d7174c9b592394d71e98b94b6c','url':'/cornerstoneDICOMImageLoader.min.js'},{'revision':'d3b0b8548ddeb0f8fd6daf92866ff249','url':'/cornerstoneDICOMImageLoader.min.js.map'},{'revision':null,'url':'/dicom-microscopy-viewer.bundle.44f7fedc03a58d5911d1.js'},{'revision':'9d8c85b42d04bb117a3b583d654fbb08','url':'/dicomMicroscopyViewer.min.js'},{'revision':'450494c199cf8dd8e8c34d5e98bf5334','url':'/dicomMicroscopyViewer.min.js.LICENSE.txt'},{'revision':'0ca44a1b8719e835645ffa804a9d1395','url':'/es6-shim.min.js'},{'revision':'20a413c13d5bf54b67f399a7657fb54a','url':'/google.js'},{'revision':'a632d4c6dcb9d7162547b0c850cdc8c5','url':'/index.html'},{'revision':'feee2d4ed9d00c64f0e4d6a46608fecf','url':'/index.worker.e62ecca63f1a2e124230.worker.js'},{'revision':'beaf37c564436e46bbcd825f0330cdbf','url':'/index.worker.e62ecca63f1a2e124230.worker.js.map'},{'revision':'71cec55513e051f0778ad89be760c11a','url':'/index.worker.min.worker.js'},{'revision':'fd1116add443fee52a935df926396e0f','url':'/index.worker.min.worker.js.map'},{'revision':'c4c4be134438c4cc55613210f3913526','url':'/init-service-worker.js'},{'revision':'74fc9658b62903be2048c1f82a22b4d4','url':'/manifest.json'},{'revision':'3fa71aa0af3e34b4ebd9a71eee0f4bdd','url':'/ohif-logo-light.svg'},{'revision':'7e81da785c63e75650101db6c5d7560e','url':'/ohif-logo.svg'},{'revision':'754d698a7b334af57c00f29723fd9751','url':'/oidc-client.min.js'},{'revision':'d05a380d50b74e629738ae6f62fb7e78','url':'/polyfill.min.js'},{'revision':'f528b6861c82ee4415fce0821fd695c1','url':'/silent-refresh.html'}]);
|
|
55
55
|
|
|
56
56
|
// TODO: Cache API
|
|
57
57
|
// https://developers.google.com/web/fundamentals/instant-and-offline/web-storage/cache-api
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ohif/app",
|
|
3
|
-
"version": "3.7.0-beta.
|
|
3
|
+
"version": "3.7.0-beta.52",
|
|
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.9.3",
|
|
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.52",
|
|
55
|
+
"@ohif/extension-cornerstone": "3.7.0-beta.52",
|
|
56
|
+
"@ohif/extension-cornerstone-dicom-rt": "3.7.0-beta.52",
|
|
57
|
+
"@ohif/extension-cornerstone-dicom-seg": "3.7.0-beta.52",
|
|
58
|
+
"@ohif/extension-cornerstone-dicom-sr": "3.7.0-beta.52",
|
|
59
|
+
"@ohif/extension-default": "3.7.0-beta.52",
|
|
60
|
+
"@ohif/extension-dicom-microscopy": "3.7.0-beta.52",
|
|
61
|
+
"@ohif/extension-dicom-pdf": "3.7.0-beta.52",
|
|
62
|
+
"@ohif/extension-dicom-video": "3.7.0-beta.52",
|
|
63
|
+
"@ohif/extension-test": "3.7.0-beta.52",
|
|
64
|
+
"@ohif/i18n": "3.7.0-beta.52",
|
|
65
|
+
"@ohif/mode-basic-dev-mode": "3.7.0-beta.52",
|
|
66
|
+
"@ohif/mode-longitudinal": "3.7.0-beta.52",
|
|
67
|
+
"@ohif/mode-microscopy": "3.7.0-beta.52",
|
|
68
|
+
"@ohif/mode-test": "3.7.0-beta.52",
|
|
69
|
+
"@ohif/ui": "3.7.0-beta.52",
|
|
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": "2c891dae60a646245c7c41cc19f593f38e2c5124"
|
|
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
|