@ohif/app 3.9.0-beta.103 → 3.9.0-beta.105
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/{2392.bundle.232c8f2954f3895d64f0.js → 2392.bundle.0633de55be9880e8f527.js} +27 -6
- package/dist/{8324.bundle.79f78c9f1025cced40d8.js → 8324.bundle.42da2417196087330027.js} +2 -2
- package/dist/{app.bundle.f26d09b95361581a269b.js → app.bundle.6272803881b95cb90981.js} +18 -18
- package/dist/app.bundle.css +2 -2
- package/dist/index.html +1 -1
- package/dist/sw.js +1 -1
- package/package.json +18 -18
- /package/dist/{140.bundle.cfd27600c63f2ee90d9d.js → 140.bundle.a74526f47085ac7b2d22.js} +0 -0
- /package/dist/{1920.bundle.e5de605570c02de57307.js → 1920.bundle.079fa13ca93bf5a099c9.js} +0 -0
- /package/dist/{2211.bundle.707db50f724565eed07e.js → 2211.bundle.1f63aa53a80d47e7136a.js} +0 -0
- /package/dist/{2327.bundle.fd334005e2af1057230a.js → 2327.bundle.5e2a09fa726cd2321e06.js} +0 -0
- /package/dist/{3194.bundle.c96bbc8282e3beec97fa.js → 3194.bundle.42105cf81568fa70213f.js} +0 -0
- /package/dist/{4012.bundle.b9445fb65e1039220f2f.js → 4012.bundle.2895d7fcbfd6aad6700a.js} +0 -0
- /package/dist/{4129.bundle.95c9a496100b2acf7e09.js → 4129.bundle.7c3e6f54f0a89f25a929.js} +0 -0
- /package/dist/{44.bundle.b416af3bc5e8ba946244.js → 44.bundle.0e5c69c92c0aec22cfb3.js} +0 -0
- /package/dist/{4444.bundle.8e57d44506c037234116.js → 4444.bundle.2a8b53a184c6d638e47f.js} +0 -0
- /package/dist/{5350.bundle.c280fc897a134b73af12.js → 5350.bundle.739d1fea7184b732f9e7.js} +0 -0
- /package/dist/{6552.bundle.c503756c3304135338b6.js → 6552.bundle.0b4c8deb56aa2d859d0f.js} +0 -0
- /package/dist/{7370.bundle.43747f846c7069dc7394.js → 7370.bundle.2a65d3f03a08e042464f.js} +0 -0
- /package/dist/{7516.bundle.dcb2d68152930257c272.js → 7516.bundle.266f12131057b1c9d05e.js} +0 -0
- /package/dist/{7853.bundle.67fb861246eefb5cce19.js → 7853.bundle.fd630af40a1776cfcc47.js} +0 -0
- /package/dist/{8218.bundle.5cbbb4d2743edaeaeb3f.js → 8218.bundle.42d94eb225390939d592.js} +0 -0
- /package/dist/{9014.bundle.80c02ce587de602880fe.js → 9014.bundle.fc328a4905f7324d4df1.js} +0 -0
- /package/dist/{9404.bundle.318a0e56aae79ed84f6c.js → 9404.bundle.324ed8f0a8ec1648c99c.js} +0 -0
- /package/dist/{9806.bundle.a3abc2bb5d0b632ef699.js → 9806.bundle.2883f48266cf3932065e.js} +0 -0
|
@@ -12835,6 +12835,9 @@ class CornerstoneCacheService {
|
|
|
12835
12835
|
};
|
|
12836
12836
|
}
|
|
12837
12837
|
async _getStackViewportData(dataSource, displaySets, initialImageIndex, viewportType) {
|
|
12838
|
+
const {
|
|
12839
|
+
uiNotificationService
|
|
12840
|
+
} = this.servicesManager.services;
|
|
12838
12841
|
const overlayDisplaySets = displaySets.filter(ds => ds.isOverlayDisplaySet);
|
|
12839
12842
|
const nonOverlayDisplaySets = displaySets.filter(ds => !ds.isOverlayDisplaySet);
|
|
12840
12843
|
|
|
@@ -12845,9 +12848,18 @@ class CornerstoneCacheService {
|
|
|
12845
12848
|
userAuthenticationService
|
|
12846
12849
|
} = this.servicesManager.services;
|
|
12847
12850
|
const headers = userAuthenticationService.getAuthorizationHeader();
|
|
12848
|
-
|
|
12849
|
-
|
|
12850
|
-
|
|
12851
|
+
try {
|
|
12852
|
+
await overlayDisplaySet.load({
|
|
12853
|
+
headers
|
|
12854
|
+
});
|
|
12855
|
+
} catch (e) {
|
|
12856
|
+
uiNotificationService.show({
|
|
12857
|
+
title: 'Error loading overlayDisplaySet',
|
|
12858
|
+
message: e.message,
|
|
12859
|
+
type: 'error'
|
|
12860
|
+
});
|
|
12861
|
+
console.error(e);
|
|
12862
|
+
}
|
|
12851
12863
|
}
|
|
12852
12864
|
}
|
|
12853
12865
|
const displaySet = nonOverlayDisplaySets[0];
|
|
@@ -12856,9 +12868,18 @@ class CornerstoneCacheService {
|
|
|
12856
12868
|
userAuthenticationService
|
|
12857
12869
|
} = this.servicesManager.services;
|
|
12858
12870
|
const headers = userAuthenticationService.getAuthorizationHeader();
|
|
12859
|
-
|
|
12860
|
-
|
|
12861
|
-
|
|
12871
|
+
try {
|
|
12872
|
+
await displaySet.load({
|
|
12873
|
+
headers
|
|
12874
|
+
});
|
|
12875
|
+
} catch (e) {
|
|
12876
|
+
uiNotificationService.show({
|
|
12877
|
+
title: 'Error loading displaySet',
|
|
12878
|
+
message: e.message,
|
|
12879
|
+
type: 'error'
|
|
12880
|
+
});
|
|
12881
|
+
console.error(e);
|
|
12882
|
+
}
|
|
12862
12883
|
}
|
|
12863
12884
|
let stackImageIds = this.stackImageIds.get(displaySet.displaySetInstanceUID);
|
|
12864
12885
|
if (!stackImageIds) {
|
|
@@ -2902,8 +2902,8 @@ function ViewerHeader({
|
|
|
2902
2902
|
hotkeyDefinitions,
|
|
2903
2903
|
hotkeyDefaults
|
|
2904
2904
|
} = hotkeysManager;
|
|
2905
|
-
const versionNumber = "3.9.0-beta.
|
|
2906
|
-
const commitHash = "
|
|
2905
|
+
const versionNumber = "3.9.0-beta.105";
|
|
2906
|
+
const commitHash = "d9450104affca6ab9fda104b8cc008450de1966f";
|
|
2907
2907
|
const menuOptions = [{
|
|
2908
2908
|
title: t('Header:About'),
|
|
2909
2909
|
icon: 'info',
|
|
@@ -6263,8 +6263,8 @@ function WorkList({
|
|
|
6263
6263
|
};
|
|
6264
6264
|
});
|
|
6265
6265
|
const hasStudies = numOfStudies > 0;
|
|
6266
|
-
const versionNumber = "3.9.0-beta.
|
|
6267
|
-
const commitHash = "
|
|
6266
|
+
const versionNumber = "3.9.0-beta.105";
|
|
6267
|
+
const commitHash = "d9450104affca6ab9fda104b8cc008450de1966f";
|
|
6268
6268
|
const menuOptions = [{
|
|
6269
6269
|
title: t('Header:About'),
|
|
6270
6270
|
icon: 'info',
|
|
@@ -13337,7 +13337,7 @@ const detectionOptions = {
|
|
|
13337
13337
|
}
|
|
13338
13338
|
});
|
|
13339
13339
|
;// CONCATENATED MODULE: ../../i18n/package.json
|
|
13340
|
-
const package_namespaceObject = /*#__PURE__*/JSON.parse('{"rE":"3.9.0-beta.
|
|
13340
|
+
const package_namespaceObject = /*#__PURE__*/JSON.parse('{"rE":"3.9.0-beta.104"}');
|
|
13341
13341
|
;// CONCATENATED MODULE: ../../i18n/src/utils.js
|
|
13342
13342
|
const languagesMap = {
|
|
13343
13343
|
ar: 'Arabic',
|
|
@@ -197783,17 +197783,17 @@ const DisplaySetMessageListTooltip = ({
|
|
|
197783
197783
|
})), /*#__PURE__*/react.createElement(Tooltip_TooltipContent, {
|
|
197784
197784
|
side: "right"
|
|
197785
197785
|
}, /*#__PURE__*/react.createElement("div", {
|
|
197786
|
-
className: "max-w-
|
|
197786
|
+
className: "max-w-68 text-left text-base text-white"
|
|
197787
197787
|
}, /*#__PURE__*/react.createElement("div", {
|
|
197788
|
-
className: "break-normal text-base font-
|
|
197788
|
+
className: "break-normal text-base font-semibold text-blue-300",
|
|
197789
197789
|
style: {
|
|
197790
|
-
marginLeft: '
|
|
197791
|
-
marginTop: '
|
|
197790
|
+
marginLeft: '4px',
|
|
197791
|
+
marginTop: '4px'
|
|
197792
197792
|
}
|
|
197793
197793
|
}, t('Display Set Messages')), /*#__PURE__*/react.createElement("ol", {
|
|
197794
197794
|
style: {
|
|
197795
|
-
marginLeft: '
|
|
197796
|
-
marginRight: '
|
|
197795
|
+
marginLeft: '4px',
|
|
197796
|
+
marginRight: '4px'
|
|
197797
197797
|
}
|
|
197798
197798
|
}, messages.messages.map((message, index) => /*#__PURE__*/react.createElement("li", {
|
|
197799
197799
|
style: {
|
|
@@ -199107,11 +199107,11 @@ const Thumbnail = ({
|
|
|
199107
199107
|
}) : /*#__PURE__*/react.createElement("div", {
|
|
199108
199108
|
className: "bg-background h-[114px] w-[128px] rounded"
|
|
199109
199109
|
}), /*#__PURE__*/react.createElement("div", {
|
|
199110
|
-
className: "bg-muted absolute bottom-0 left-0 flex h-[14px] items-center gap-[4px]
|
|
199110
|
+
className: "bg-muted absolute bottom-0 left-0 flex h-[14px] items-center gap-[4px] rounded-tr pt-[10px] pb-[8px] pr-[6px] pl-[3px]"
|
|
199111
199111
|
}, /*#__PURE__*/react.createElement("div", {
|
|
199112
199112
|
className: classnames_default()('h-[10px] w-[10px] rounded-[2px]', isActive || isHydratedForDerivedDisplaySet ? 'bg-highlight' : 'bg-primary/65', loadingProgress && loadingProgress < 1 && 'bg-primary/25')
|
|
199113
199113
|
}), /*#__PURE__*/react.createElement("div", {
|
|
199114
|
-
className: "text-[11px] text-white"
|
|
199114
|
+
className: "text-[11px] font-semibold text-white"
|
|
199115
199115
|
}, modality)), /*#__PURE__*/react.createElement("div", {
|
|
199116
199116
|
className: "absolute top-0 right-0 flex items-center gap-[4px]"
|
|
199117
199117
|
}, /*#__PURE__*/react.createElement(DisplaySetMessageListTooltip, {
|
|
@@ -199160,13 +199160,13 @@ const Thumbnail = ({
|
|
|
199160
199160
|
}, /*#__PURE__*/react.createElement(Icons_Icons.DicomTagBrowser, null), "Tag Browser")))))), /*#__PURE__*/react.createElement("div", {
|
|
199161
199161
|
className: "flex h-[52px] w-[128px] flex-col"
|
|
199162
199162
|
}, /*#__PURE__*/react.createElement("div", {
|
|
199163
|
-
className: "min-h-[18px] w-[128px] overflow-hidden text-ellipsis text-[12px] text-white"
|
|
199163
|
+
className: "min-h-[18px] w-[128px] overflow-hidden text-ellipsis pb-0.5 pl-1 text-[12px] font-normal leading-4 text-white"
|
|
199164
199164
|
}, description), /*#__PURE__*/react.createElement("div", {
|
|
199165
199165
|
className: "flex h-[12px] items-center gap-[7px] overflow-hidden"
|
|
199166
199166
|
}, /*#__PURE__*/react.createElement("div", {
|
|
199167
|
-
className: "text-muted-foreground text-[
|
|
199167
|
+
className: "text-muted-foreground pl-1 text-[11px]"
|
|
199168
199168
|
}, " S:", seriesNumber), /*#__PURE__*/react.createElement("div", {
|
|
199169
|
-
className: "text-muted-foreground text-[
|
|
199169
|
+
className: "text-muted-foreground text-[11px]"
|
|
199170
199170
|
}, /*#__PURE__*/react.createElement("div", {
|
|
199171
199171
|
className: "flex items-center gap-[4px]"
|
|
199172
199172
|
}, ' ', countIcon ? ( /*#__PURE__*/react.createElement(Icons_Icons[countIcon] || Icons_Icons.MissingIcon, {
|
|
@@ -199187,9 +199187,9 @@ const Thumbnail = ({
|
|
|
199187
199187
|
}, /*#__PURE__*/react.createElement("div", {
|
|
199188
199188
|
className: "flex items-center gap-[7px]"
|
|
199189
199189
|
}, /*#__PURE__*/react.createElement("div", {
|
|
199190
|
-
className: "text-[13px] text-white"
|
|
199190
|
+
className: "text-[13px] font-semibold text-white"
|
|
199191
199191
|
}, modality), /*#__PURE__*/react.createElement("div", {
|
|
199192
|
-
className: "max-w-[160px] overflow-hidden overflow-ellipsis whitespace-nowrap text-[13px] text-white"
|
|
199192
|
+
className: "max-w-[160px] overflow-hidden overflow-ellipsis whitespace-nowrap text-[13px] font-normal text-white"
|
|
199193
199193
|
}, description)), /*#__PURE__*/react.createElement("div", {
|
|
199194
199194
|
className: "flex h-[12px] items-center gap-[7px] overflow-hidden"
|
|
199195
199195
|
}, /*#__PURE__*/react.createElement("div", {
|
|
@@ -199248,7 +199248,7 @@ const Thumbnail = ({
|
|
|
199248
199248
|
}, /*#__PURE__*/react.createElement(Icons_Icons.DicomTagBrowser, null), "Tag Browser")))));
|
|
199249
199249
|
};
|
|
199250
199250
|
return /*#__PURE__*/react.createElement("div", {
|
|
199251
|
-
className: classnames_default()(className, 'bg-muted hover:bg-primary/30 group flex cursor-pointer select-none flex-col outline-none', viewPreset === 'thumbnails' && 'h-[170px] w-[135px]', viewPreset === 'list' && 'col-span-2 h-[40px] w-[275px]'),
|
|
199251
|
+
className: classnames_default()(className, 'bg-muted hover:bg-primary/30 group flex cursor-pointer select-none flex-col rounded outline-none', viewPreset === 'thumbnails' && 'h-[170px] w-[135px]', viewPreset === 'list' && 'col-span-2 h-[40px] w-[275px]'),
|
|
199252
199252
|
id: `thumbnail-${displaySetInstanceUID}`,
|
|
199253
199253
|
"data-cy": thumbnailType === 'thumbnailNoImage' ? 'study-browser-thumbnail-no-image' : 'study-browser-thumbnail',
|
|
199254
199254
|
"data-series": seriesNumber,
|
|
@@ -409760,7 +409760,7 @@ function __disposeResources(env) {
|
|
|
409760
409760
|
/******/ // This function allow to reference async chunks
|
|
409761
409761
|
/******/ __webpack_require__.u = (chunkId) => {
|
|
409762
409762
|
/******/ // return url for filenames based on template
|
|
409763
|
-
/******/ return "" + ({"572":"polySeg","3054":"histogram-worker","3584":"suv-peak-worker"}[chunkId] || chunkId) + ".bundle." + {"44":"
|
|
409763
|
+
/******/ return "" + ({"572":"polySeg","3054":"histogram-worker","3584":"suv-peak-worker"}[chunkId] || chunkId) + ".bundle." + {"44":"0e5c69c92c0aec22cfb3","140":"a74526f47085ac7b2d22","445":"ada0ef1412342d5599cb","572":"e73d9d124f22e40be8a9","612":"07fb99d653db74839730","914":"9372fff6a4624c35d259","1156":"b37b2a8d6dba5d35ef64","1471":"23ed44fce3b02968fa7b","1597":"ad76fdeb3061bcfa1681","1617":"2169d929628279d83b28","1727":"0e5ce8831ef8bb34899c","1836":"0cb6c000321d0863c41d","1920":"079fa13ca93bf5a099c9","2211":"1f63aa53a80d47e7136a","2327":"5e2a09fa726cd2321e06","2392":"0633de55be9880e8f527","3054":"dba1191f438be8396c73","3194":"42105cf81568fa70213f","3236":"5cb72eb058e14d5d266e","3342":"0c3edb9855a615ef6a6e","3404":"c1aea18e16001cf20244","3584":"541fa8cf744041222c7e","3675":"bbe5f470f9c04976b51b","3722":"5e8f70021eefb2fe1508","3726":"1eb58097501c18d23329","4012":"2895d7fcbfd6aad6700a","4129":"7c3e6f54f0a89f25a929","4202":"c8ddc4d76d963bc3176f","4444":"2a8b53a184c6d638e47f","5323":"c1fe781cca10b6ace921","5350":"739d1fea7184b732f9e7","6552":"0b4c8deb56aa2d859d0f","6835":"d3700fdda3df47c5f085","7370":"2a65d3f03a08e042464f","7516":"266f12131057b1c9d05e","7778":"53b95f4c85063cc0353a","7853":"fd630af40a1776cfcc47","8218":"42d94eb225390939d592","8324":"42da2417196087330027","8362":"3e2e255355b2ee1beec7","8560":"929add0d5a4b24d234df","8792":"6ecd3510022078878c4b","9014":"fc328a4905f7324d4df1","9404":"324ed8f0a8ec1648c99c","9455":"4c6698fea09feff95f9f","9806":"2883f48266cf3932065e"}[chunkId] + ".js";
|
|
409764
409764
|
/******/ };
|
|
409765
409765
|
/******/ })();
|
|
409766
409766
|
/******/
|