@ohif/app 3.8.0-beta.52 → 3.8.0-beta.53
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/{738.bundle.aacfaf2a4751cfeaeb0f.js → 738.bundle.a82a4d4d9f917a2961a5.js} +40 -17
- package/dist/{app.bundle.547c17a76be33d8a4de9.js → app.bundle.db3a4b9e3e9a9169200b.js} +4 -4
- package/dist/index.html +1 -1
- package/dist/sw.js +1 -1
- package/package.json +17 -17
- /package/dist/{12.bundle.949a607677f50dc7145f.js → 12.bundle.f620665da5ed13b3e015.js} +0 -0
- /package/dist/{170.bundle.05b673483eedc2732b48.js → 170.bundle.5d2c9436559a23e5dbee.js} +0 -0
- /package/dist/{185.bundle.49d3beb2930794b4a452.js → 185.bundle.65dfcd19fcdd2aad3ea6.js} +0 -0
- /package/dist/{19.bundle.f59658c2ce8fec75f5e5.js → 19.bundle.96d32f49277b19b2dff6.js} +0 -0
- /package/dist/{199.bundle.36ac1951d90e22dc1884.js → 199.bundle.d85920889bb66d8a1098.js} +0 -0
- /package/dist/{281.bundle.69c9bb8f0b0dea990ba8.js → 281.bundle.0a4249ca51e44ac8912f.js} +0 -0
- /package/dist/{290.bundle.9ecef9f8f198716563e4.js → 290.bundle.7dedf462349c0bc03037.js} +0 -0
- /package/dist/{359.bundle.4e30460cac66b4a82516.js → 359.bundle.2376cffe4225c0ba02b3.js} +0 -0
- /package/dist/{410.bundle.983ba060b60b021f01c2.js → 410.bundle.56642de2df55878a1853.js} +0 -0
- /package/dist/{466.bundle.c14fb6beb6be50fc5895.js → 466.bundle.b9a71a0e831fe4834c94.js} +0 -0
- /package/dist/{483.bundle.c143963c1fdb5c24a1f3.js → 483.bundle.560f95b85cbf8abb8d72.js} +0 -0
- /package/dist/{506.bundle.4f365071f7cb524fd3a7.js → 506.bundle.4f9d7c5385f3529f0eab.js} +0 -0
- /package/dist/{613.bundle.968d692ee5ab58f5122d.js → 613.bundle.f651f6498eca367893bc.js} +0 -0
- /package/dist/{687.bundle.83735059494aaf17828c.js → 687.bundle.3e0af85fe7f39e8e10cc.js} +0 -0
- /package/dist/{814.bundle.e80536bc54b9eccab988.js → 814.bundle.fa36ecb2cc7acf96aa61.js} +0 -0
- /package/dist/{965.bundle.8d54b59e9cfbf2d6e8ac.js → 965.bundle.2fb2086fa4b6d3e2f4cc.js} +0 -0
|
@@ -2199,6 +2199,7 @@ const mergeMap = {
|
|
|
2199
2199
|
* @param {unknown[]} options.args - The arguments to be passed to the function.
|
|
2200
2200
|
* @param {ExtensionManager} options.extensionManager - The extension manager.
|
|
2201
2201
|
* @param {string[]} options.dataSourceNames - The names of the data sources to be called.
|
|
2202
|
+
* @param {string} options.defaultDataSourceName - The name of the default data source.
|
|
2202
2203
|
* @returns {Promise<unknown[]>} - A promise that resolves to the merged data from all data sources.
|
|
2203
2204
|
*/
|
|
2204
2205
|
const callForAllDataSourcesAsync = async ({
|
|
@@ -2206,7 +2207,8 @@ const callForAllDataSourcesAsync = async ({
|
|
|
2206
2207
|
path,
|
|
2207
2208
|
args,
|
|
2208
2209
|
extensionManager,
|
|
2209
|
-
dataSourceNames
|
|
2210
|
+
dataSourceNames,
|
|
2211
|
+
defaultDataSourceName
|
|
2210
2212
|
}) => {
|
|
2211
2213
|
const {
|
|
2212
2214
|
mergeKey,
|
|
@@ -2214,9 +2216,14 @@ const callForAllDataSourcesAsync = async ({
|
|
|
2214
2216
|
} = mergeMap[path] || {
|
|
2215
2217
|
tagFunc: x => x
|
|
2216
2218
|
};
|
|
2217
|
-
|
|
2219
|
+
|
|
2220
|
+
/** Sort by default data source */
|
|
2221
|
+
const defs = Object.values(extensionManager.dataSourceDefs);
|
|
2222
|
+
const defaultDataSourceDef = defs.find(def => def.sourceName === defaultDataSourceName);
|
|
2223
|
+
const dataSourceDefs = defs.filter(def => def.sourceName !== defaultDataSourceName);
|
|
2224
|
+
dataSourceDefs.unshift(defaultDataSourceDef);
|
|
2218
2225
|
const promises = [];
|
|
2219
|
-
const
|
|
2226
|
+
const sourceNames = [];
|
|
2220
2227
|
for (const dataSourceDef of dataSourceDefs) {
|
|
2221
2228
|
const {
|
|
2222
2229
|
configuration,
|
|
@@ -2226,10 +2233,12 @@ const callForAllDataSourcesAsync = async ({
|
|
|
2226
2233
|
const [dataSource] = extensionManager.getDataSources(sourceName);
|
|
2227
2234
|
const func = (0,lodash.get)(dataSource, path);
|
|
2228
2235
|
const promise = func.apply(dataSource, args);
|
|
2229
|
-
promises.push(promise
|
|
2236
|
+
promises.push(promise);
|
|
2237
|
+
sourceNames.push(sourceName);
|
|
2230
2238
|
}
|
|
2231
2239
|
}
|
|
2232
|
-
await Promise.allSettled(promises);
|
|
2240
|
+
const data = await Promise.allSettled(promises);
|
|
2241
|
+
const mergedData = data.map((data, i) => tagFunc(data.value, sourceNames[i]));
|
|
2233
2242
|
let results = [];
|
|
2234
2243
|
if (mergeKey) {
|
|
2235
2244
|
results = (0,lodash.uniqBy)(mergedData.flat(), obj => (0,lodash.get)(obj, mergeKey));
|
|
@@ -2246,15 +2255,21 @@ const callForAllDataSourcesAsync = async ({
|
|
|
2246
2255
|
* @param options.args - The arguments to be passed to the function.
|
|
2247
2256
|
* @param options.extensionManager - The extension manager instance.
|
|
2248
2257
|
* @param options.dataSourceNames - The names of the data sources to be called.
|
|
2258
|
+
* @param options.defaultDataSourceName - The name of the default data source.
|
|
2249
2259
|
* @returns The merged data from all the matching data sources.
|
|
2250
2260
|
*/
|
|
2251
2261
|
const callForAllDataSources = ({
|
|
2252
2262
|
path,
|
|
2253
2263
|
args,
|
|
2254
2264
|
extensionManager,
|
|
2255
|
-
dataSourceNames
|
|
2265
|
+
dataSourceNames,
|
|
2266
|
+
defaultDataSourceName
|
|
2256
2267
|
}) => {
|
|
2257
|
-
|
|
2268
|
+
/** Sort by default data source */
|
|
2269
|
+
const defs = Object.values(extensionManager.dataSourceDefs);
|
|
2270
|
+
const defaultDataSourceDef = defs.find(def => def.sourceName === defaultDataSourceName);
|
|
2271
|
+
const dataSourceDefs = defs.filter(def => def.sourceName !== defaultDataSourceName);
|
|
2272
|
+
dataSourceDefs.unshift(defaultDataSourceDef);
|
|
2258
2273
|
const mergedData = [];
|
|
2259
2274
|
for (const dataSourceDef of dataSourceDefs) {
|
|
2260
2275
|
const {
|
|
@@ -2323,7 +2338,8 @@ function createMergeDataSourceApi(mergeConfig, servicesManager, extensionManager
|
|
|
2323
2338
|
path: 'initialize',
|
|
2324
2339
|
args,
|
|
2325
2340
|
extensionManager,
|
|
2326
|
-
dataSourceNames
|
|
2341
|
+
dataSourceNames,
|
|
2342
|
+
defaultDataSourceName
|
|
2327
2343
|
}),
|
|
2328
2344
|
query: {
|
|
2329
2345
|
studies: {
|
|
@@ -2332,7 +2348,8 @@ function createMergeDataSourceApi(mergeConfig, servicesManager, extensionManager
|
|
|
2332
2348
|
path: 'query.studies.search',
|
|
2333
2349
|
args,
|
|
2334
2350
|
extensionManager,
|
|
2335
|
-
dataSourceNames
|
|
2351
|
+
dataSourceNames,
|
|
2352
|
+
defaultDataSourceName
|
|
2336
2353
|
})
|
|
2337
2354
|
},
|
|
2338
2355
|
series: {
|
|
@@ -2341,7 +2358,8 @@ function createMergeDataSourceApi(mergeConfig, servicesManager, extensionManager
|
|
|
2341
2358
|
path: 'query.series.search',
|
|
2342
2359
|
args,
|
|
2343
2360
|
extensionManager,
|
|
2344
|
-
dataSourceNames
|
|
2361
|
+
dataSourceNames,
|
|
2362
|
+
defaultDataSourceName
|
|
2345
2363
|
})
|
|
2346
2364
|
},
|
|
2347
2365
|
instances: {
|
|
@@ -2350,7 +2368,8 @@ function createMergeDataSourceApi(mergeConfig, servicesManager, extensionManager
|
|
|
2350
2368
|
path: 'query.instances.search',
|
|
2351
2369
|
args,
|
|
2352
2370
|
extensionManager,
|
|
2353
|
-
dataSourceNames
|
|
2371
|
+
dataSourceNames,
|
|
2372
|
+
defaultDataSourceName
|
|
2354
2373
|
})
|
|
2355
2374
|
}
|
|
2356
2375
|
},
|
|
@@ -2360,7 +2379,8 @@ function createMergeDataSourceApi(mergeConfig, servicesManager, extensionManager
|
|
|
2360
2379
|
path: 'retrieve.bulkDataURI',
|
|
2361
2380
|
args,
|
|
2362
2381
|
extensionManager,
|
|
2363
|
-
dataSourceNames
|
|
2382
|
+
dataSourceNames,
|
|
2383
|
+
defaultDataSourceName
|
|
2364
2384
|
}),
|
|
2365
2385
|
directURL: (...args) => callForDefaultDataSource({
|
|
2366
2386
|
path: 'retrieve.directURL',
|
|
@@ -2374,7 +2394,8 @@ function createMergeDataSourceApi(mergeConfig, servicesManager, extensionManager
|
|
|
2374
2394
|
path: 'retrieve.series.metadata',
|
|
2375
2395
|
args,
|
|
2376
2396
|
extensionManager,
|
|
2377
|
-
dataSourceNames
|
|
2397
|
+
dataSourceNames,
|
|
2398
|
+
defaultDataSourceName
|
|
2378
2399
|
})
|
|
2379
2400
|
}
|
|
2380
2401
|
},
|
|
@@ -2390,7 +2411,8 @@ function createMergeDataSourceApi(mergeConfig, servicesManager, extensionManager
|
|
|
2390
2411
|
path: 'deleteStudyMetadataPromise',
|
|
2391
2412
|
args,
|
|
2392
2413
|
extensionManager,
|
|
2393
|
-
dataSourceNames
|
|
2414
|
+
dataSourceNames,
|
|
2415
|
+
defaultDataSourceName
|
|
2394
2416
|
}),
|
|
2395
2417
|
getImageIdsForDisplaySet: (...args) => callByRetrieveAETitle({
|
|
2396
2418
|
path: 'getImageIdsForDisplaySet',
|
|
@@ -2408,7 +2430,8 @@ function createMergeDataSourceApi(mergeConfig, servicesManager, extensionManager
|
|
|
2408
2430
|
path: 'getStudyInstanceUIDs',
|
|
2409
2431
|
args,
|
|
2410
2432
|
extensionManager,
|
|
2411
|
-
dataSourceNames
|
|
2433
|
+
dataSourceNames,
|
|
2434
|
+
defaultDataSourceName
|
|
2412
2435
|
})
|
|
2413
2436
|
};
|
|
2414
2437
|
return src/* IWebApiDataSource */.Is.create(implementation);
|
|
@@ -2576,8 +2599,8 @@ function ViewerHeader({
|
|
|
2576
2599
|
hotkeyDefinitions,
|
|
2577
2600
|
hotkeyDefaults
|
|
2578
2601
|
} = hotkeysManager;
|
|
2579
|
-
const versionNumber = "3.8.0-beta.
|
|
2580
|
-
const commitHash = "
|
|
2602
|
+
const versionNumber = "3.8.0-beta.53";
|
|
2603
|
+
const commitHash = "5bba98ed848bdf46b5ba4fc4708527cced3308b5";
|
|
2581
2604
|
const menuOptions = [{
|
|
2582
2605
|
title: t('Header:About'),
|
|
2583
2606
|
icon: 'info',
|
|
@@ -987,8 +987,8 @@ function WorkList({
|
|
|
987
987
|
};
|
|
988
988
|
});
|
|
989
989
|
const hasStudies = numOfStudies > 0;
|
|
990
|
-
const versionNumber = "3.8.0-beta.
|
|
991
|
-
const commitHash = "
|
|
990
|
+
const versionNumber = "3.8.0-beta.53";
|
|
991
|
+
const commitHash = "5bba98ed848bdf46b5ba4fc4708527cced3308b5";
|
|
992
992
|
const menuOptions = [{
|
|
993
993
|
title: t('Header:About'),
|
|
994
994
|
icon: 'info',
|
|
@@ -6457,7 +6457,7 @@ const detectionOptions = {
|
|
|
6457
6457
|
}
|
|
6458
6458
|
});
|
|
6459
6459
|
;// CONCATENATED MODULE: ../../i18n/package.json
|
|
6460
|
-
const package_namespaceObject = JSON.parse('{"i8":"3.8.0-beta.
|
|
6460
|
+
const package_namespaceObject = JSON.parse('{"i8":"3.8.0-beta.52"}');
|
|
6461
6461
|
;// CONCATENATED MODULE: ../../i18n/src/utils.js
|
|
6462
6462
|
const languagesMap = {
|
|
6463
6463
|
ar: 'Arabic',
|
|
@@ -283548,7 +283548,7 @@ var selectOrdinal = function selectOrdinal() {
|
|
|
283548
283548
|
/******/ // This function allow to reference async chunks
|
|
283549
283549
|
/******/ __webpack_require__.u = (chunkId) => {
|
|
283550
283550
|
/******/ // return url for filenames based on template
|
|
283551
|
-
/******/ return "" + (chunkId === 18 ? "dicom-microscopy-viewer" : chunkId) + ".bundle." + {"12":"
|
|
283551
|
+
/******/ return "" + (chunkId === 18 ? "dicom-microscopy-viewer" : chunkId) + ".bundle." + {"12":"f620665da5ed13b3e015","18":"a7d5060eead13771e784","19":"96d32f49277b19b2dff6","23":"9d989522a6e4fdcb9c72","95":"2236101be3cc36b322e8","125":"df666cb677e5a8982157","170":"5d2c9436559a23e5dbee","181":"aff453c348111303ceac","185":"65dfcd19fcdd2aad3ea6","199":"d85920889bb66d8a1098","202":"495cba6bbee744cf8f72","223":"d4ac6ef2cfe47a9c4afc","250":"577da106dd763c7bf9d0","281":"0a4249ca51e44ac8912f","290":"7dedf462349c0bc03037","359":"2376cffe4225c0ba02b3","410":"56642de2df55878a1853","417":"5c66801d23d0e98c00e6","451":"311cd3be9916e08450e9","466":"b9a71a0e831fe4834c94","471":"eeb78105b59e688832a6","483":"560f95b85cbf8abb8d72","506":"4f9d7c5385f3529f0eab","530":"f904325ef4195d69ac0e","579":"8c45043bf461a6808b54","613":"f651f6498eca367893bc","661":"949c984fe2f9f753b65c","686":"62c827fe4f0d054c164e","687":"3e0af85fe7f39e8e10cc","738":"a82a4d4d9f917a2961a5","814":"fa36ecb2cc7acf96aa61","822":"8b745e28bc9eb9afbc61","831":"127a3064e8844d6d2c82","886":"94a4536167d0f8cae1ae","965":"2fb2086fa4b6d3e2f4cc"}[chunkId] + ".js";
|
|
283552
283552
|
/******/ };
|
|
283553
283553
|
/******/ })();
|
|
283554
283554
|
/******/
|
package/dist/index.html
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
<!doctype html><html lang="en"><head><meta charset="UTF-8"/><meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"/><meta name="theme-color" content="#000000"/><meta name="mobile-web-app-capable" content="yes"/><meta name="application-name" content="OHIF Viewer"/><meta name="apple-mobile-web-app-capable" content="yes"/><meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"/><meta name="apple-mobile-web-app-title" content="@ohif/app"/><meta name="msapplication-TileColor" content="#fff"/><meta name="msapplication-TileImage" content="/assets/mstile-144x144.png"/><meta name="msapplication-config" content="/assets/browserconfig.xml"/><script>console.time('scriptToView');
|
|
2
|
-
window.PUBLIC_URL = '/';</script><link rel="manifest" href="/manifest.json"/><link rel="shortcut icon" href="/assets/favicon.ico"/><link rel="icon" type="image/png" sizes="16x16" href="/assets/favicon-16x16.png"/><link rel="icon" type="image/png" sizes="32x32" href="/assets/favicon-32x32.png"/><link rel="apple-touch-icon" sizes="57x57" href="/assets/apple-touch-icon-57x57.png"/><link rel="apple-touch-icon" sizes="60x60" href="/assets/apple-touch-icon-60x60.png"/><link rel="apple-touch-icon" sizes="72x72" href="/assets/apple-touch-icon-72x72.png"/><link rel="apple-touch-icon" sizes="76x76" href="/assets/apple-touch-icon-76x76.png"/><link rel="apple-touch-icon" sizes="114x114" href="/assets/apple-touch-icon-114x114.png"/><link rel="apple-touch-icon" sizes="120x120" href="/assets/apple-touch-icon-120x120.png"/><link rel="apple-touch-icon" sizes="144x144" href="/assets/apple-touch-icon-144x144.png"/><link rel="apple-touch-icon" sizes="152x152" href="/assets/apple-touch-icon-152x152.png"/><link rel="apple-touch-icon" sizes="167x167" href="/assets/apple-touch-icon-167x167.png"/><link rel="apple-touch-icon" sizes="180x180" href="/assets/apple-touch-icon-180x180.png"/><link rel="apple-touch-icon" sizes="1024x1024" href="/assets/apple-touch-icon-1024x1024.png"/><link rel="apple-touch-startup-image" media="(device-width: 320px) and (device-height: 480px) and (-webkit-device-pixel-ratio: 1)" href="/assets/apple-touch-startup-image-320x460.png"/><link rel="apple-touch-startup-image" media="(device-width: 320px) and (device-height: 480px) and (-webkit-device-pixel-ratio: 2)" href="/assets/apple-touch-startup-image-640x920.png"/><link rel="apple-touch-startup-image" media="(device-width: 320px) and (device-height: 568px) and (-webkit-device-pixel-ratio: 2)" href="/assets/apple-touch-startup-image-640x1096.png"/><link rel="apple-touch-startup-image" media="(device-width: 375px) and (device-height: 667px) and (-webkit-device-pixel-ratio: 2)" href="/assets/apple-touch-startup-image-750x1294.png"/><link rel="apple-touch-startup-image" media="(device-width: 414px) and (device-height: 736px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3)" href="/assets/apple-touch-startup-image-1182x2208.png"/><link rel="apple-touch-startup-image" media="(device-width: 414px) and (device-height: 736px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3)" href="/assets/apple-touch-startup-image-1242x2148.png"/><link rel="apple-touch-startup-image" media="(device-width: 768px) and (device-height: 1024px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 1)" href="/assets/apple-touch-startup-image-748x1024.png"/><link rel="apple-touch-startup-image" media="(device-width: 768px) and (device-height: 1024px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 1)" href="/assets/apple-touch-startup-image-768x1004.png"/><link rel="apple-touch-startup-image" media="(device-width: 768px) and (device-height: 1024px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2)" href="/assets/apple-touch-startup-image-1496x2048.png"/><link rel="apple-touch-startup-image" media="(device-width: 768px) and (device-height: 1024px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2)" href="/assets/apple-touch-startup-image-1536x2008.png"/><link rel="icon" type="image/png" sizes="228x228" href="/assets/coast-228x228.png"/><link rel="yandex-tableau-widget" href="/assets/yandex-browser-manifest.json"/><script rel="preload" as="script" src="/app-config.js"></script><script rel="preload" as="script" type="module" src="/init-service-worker.js"></script><title>OHIF Viewer</title><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin/><link href="https://fonts.googleapis.com/css?family=Inter:100,300,400,500,700&display=swap" rel="stylesheet" rel="preload" as="style"/><script defer="defer" src="/app.bundle.
|
|
2
|
+
window.PUBLIC_URL = '/';</script><link rel="manifest" href="/manifest.json"/><link rel="shortcut icon" href="/assets/favicon.ico"/><link rel="icon" type="image/png" sizes="16x16" href="/assets/favicon-16x16.png"/><link rel="icon" type="image/png" sizes="32x32" href="/assets/favicon-32x32.png"/><link rel="apple-touch-icon" sizes="57x57" href="/assets/apple-touch-icon-57x57.png"/><link rel="apple-touch-icon" sizes="60x60" href="/assets/apple-touch-icon-60x60.png"/><link rel="apple-touch-icon" sizes="72x72" href="/assets/apple-touch-icon-72x72.png"/><link rel="apple-touch-icon" sizes="76x76" href="/assets/apple-touch-icon-76x76.png"/><link rel="apple-touch-icon" sizes="114x114" href="/assets/apple-touch-icon-114x114.png"/><link rel="apple-touch-icon" sizes="120x120" href="/assets/apple-touch-icon-120x120.png"/><link rel="apple-touch-icon" sizes="144x144" href="/assets/apple-touch-icon-144x144.png"/><link rel="apple-touch-icon" sizes="152x152" href="/assets/apple-touch-icon-152x152.png"/><link rel="apple-touch-icon" sizes="167x167" href="/assets/apple-touch-icon-167x167.png"/><link rel="apple-touch-icon" sizes="180x180" href="/assets/apple-touch-icon-180x180.png"/><link rel="apple-touch-icon" sizes="1024x1024" href="/assets/apple-touch-icon-1024x1024.png"/><link rel="apple-touch-startup-image" media="(device-width: 320px) and (device-height: 480px) and (-webkit-device-pixel-ratio: 1)" href="/assets/apple-touch-startup-image-320x460.png"/><link rel="apple-touch-startup-image" media="(device-width: 320px) and (device-height: 480px) and (-webkit-device-pixel-ratio: 2)" href="/assets/apple-touch-startup-image-640x920.png"/><link rel="apple-touch-startup-image" media="(device-width: 320px) and (device-height: 568px) and (-webkit-device-pixel-ratio: 2)" href="/assets/apple-touch-startup-image-640x1096.png"/><link rel="apple-touch-startup-image" media="(device-width: 375px) and (device-height: 667px) and (-webkit-device-pixel-ratio: 2)" href="/assets/apple-touch-startup-image-750x1294.png"/><link rel="apple-touch-startup-image" media="(device-width: 414px) and (device-height: 736px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3)" href="/assets/apple-touch-startup-image-1182x2208.png"/><link rel="apple-touch-startup-image" media="(device-width: 414px) and (device-height: 736px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3)" href="/assets/apple-touch-startup-image-1242x2148.png"/><link rel="apple-touch-startup-image" media="(device-width: 768px) and (device-height: 1024px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 1)" href="/assets/apple-touch-startup-image-748x1024.png"/><link rel="apple-touch-startup-image" media="(device-width: 768px) and (device-height: 1024px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 1)" href="/assets/apple-touch-startup-image-768x1004.png"/><link rel="apple-touch-startup-image" media="(device-width: 768px) and (device-height: 1024px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2)" href="/assets/apple-touch-startup-image-1496x2048.png"/><link rel="apple-touch-startup-image" media="(device-width: 768px) and (device-height: 1024px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2)" href="/assets/apple-touch-startup-image-1536x2008.png"/><link rel="icon" type="image/png" sizes="228x228" href="/assets/coast-228x228.png"/><link rel="yandex-tableau-widget" href="/assets/yandex-browser-manifest.json"/><script rel="preload" as="script" src="/app-config.js"></script><script rel="preload" as="script" type="module" src="/init-service-worker.js"></script><title>OHIF Viewer</title><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin/><link href="https://fonts.googleapis.com/css?family=Inter:100,300,400,500,700&display=swap" rel="stylesheet" rel="preload" as="style"/><script defer="defer" src="/app.bundle.db3a4b9e3e9a9169200b.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.f620665da5ed13b3e015.js'},{'revision':null,'url':'/125.bundle.df666cb677e5a8982157.js'},{'revision':null,'url':'/170.bundle.5d2c9436559a23e5dbee.js'},{'revision':null,'url':'/181.bundle.aff453c348111303ceac.js'},{'revision':'a04a2f233dc569826f5f6e21b65bc87b','url':'/181.css'},{'revision':null,'url':'/185.bundle.65dfcd19fcdd2aad3ea6.js'},{'revision':null,'url':'/19.bundle.96d32f49277b19b2dff6.js'},{'revision':'51b8ed55f5b8d448837222f03bdd6de8','url':'/19.css'},{'revision':null,'url':'/199.bundle.d85920889bb66d8a1098.js'},{'revision':null,'url':'/202.bundle.495cba6bbee744cf8f72.js'},{'revision':'d32549aa3716d55d525e59e31e2f6591','url':'/20fc4c659b85ccd2a9c0.wasm'},{'revision':null,'url':'/223.bundle.d4ac6ef2cfe47a9c4afc.js'},{'revision':null,'url':'/23.bundle.9d989522a6e4fdcb9c72.js'},{'revision':null,'url':'/250.bundle.577da106dd763c7bf9d0.js'},{'revision':'0afb25509c7f072fbd7eda42c6895dbf','url':'/250.css'},{'revision':null,'url':'/281.bundle.0a4249ca51e44ac8912f.js'},{'revision':null,'url':'/290.bundle.7dedf462349c0bc03037.js'},{'revision':'185e5e0a10fa6ab2fc7b3c38e63d550b','url':'/290.css'},{'revision':null,'url':'/359.bundle.2376cffe4225c0ba02b3.js'},{'revision':'c4ea120c6da08aa75348edfa3e57ece9','url':'/36785fbd89b0e17f6099.wasm'},{'revision':null,'url':'/410.bundle.56642de2df55878a1853.js'},{'revision':null,'url':'/417.bundle.5c66801d23d0e98c00e6.js'},{'revision':null,'url':'/451.bundle.311cd3be9916e08450e9.js'},{'revision':null,'url':'/466.bundle.b9a71a0e831fe4834c94.js'},{'revision':'aa1d1f3e32367e42fe90399144d94577','url':'/466.css'},{'revision':null,'url':'/471.bundle.eeb78105b59e688832a6.js'},{'revision':null,'url':'/483.bundle.560f95b85cbf8abb8d72.js'},{'revision':'c377e1f5fe4a207d270c3f7a8dd3e3ca','url':'/5004fdc02f329ce53b69.wasm'},{'revision':null,'url':'/506.bundle.4f9d7c5385f3529f0eab.js'},{'revision':null,'url':'/530.bundle.f904325ef4195d69ac0e.js'},{'revision':'51b8ed55f5b8d448837222f03bdd6de8','url':'/579.css'},{'revision':'62b4ae8445d191d5aab5503ce475724d','url':'/610.min.worker.js'},{'revision':'3c2206525c18cd87dd28082949a4e43e','url':'/610.min.worker.js.map'},{'revision':null,'url':'/613.bundle.f651f6498eca367893bc.js'},{'revision':'5800265b6831396572fb5d32c6bd8eef','url':'/62ab5d58a2bea7b5a1dc.wasm'},{'revision':'ce10eced3ce34e663d86569b27f5bffb','url':'/65916ef3def695744bda.wasm'},{'revision':null,'url':'/661.bundle.949c984fe2f9f753b65c.js'},{'revision':null,'url':'/686.bundle.62c827fe4f0d054c164e.js'},{'revision':null,'url':'/687.bundle.3e0af85fe7f39e8e10cc.js'},{'revision':null,'url':'/738.bundle.a82a4d4d9f917a2961a5.js'},{'revision':'cc4a3a4da4ac1b863a714f93c66c6ef2','url':'/75a0c2dfe07b824c7d21.wasm'},{'revision':null,'url':'/814.bundle.fa36ecb2cc7acf96aa61.js'},{'revision':null,'url':'/822.bundle.8b745e28bc9eb9afbc61.js'},{'revision':null,'url':'/831.bundle.127a3064e8844d6d2c82.js'},{'revision':null,'url':'/886.bundle.94a4536167d0f8cae1ae.js'},{'revision':'74c9647440e51f149ad12923d6ead952','url':'/945.min.worker.js'},{'revision':'cdf6f0457d4af2cef04fc41816241bc1','url':'/945.min.worker.js.map'},{'revision':null,'url':'/95.bundle.2236101be3cc36b322e8.js'},{'revision':null,'url':'/965.bundle.2fb2086fa4b6d3e2f4cc.js'},{'revision':'d1895aa7a4595dc279c382e5a31ef9f4','url':'/_headers'},{'revision':'e3bf0f3e9c34f51ad59836ae8e8eaf43','url':'/_redirects'},{'revision':'41bb4b36a914c2db5c383a627162b3da','url':'/app-config.js'},{'revision':'768881741792bf8d96b04e00da8ad850','url':'/app.bundle.css'},{'revision':null,'url':'/app.bundle.db3a4b9e3e9a9169200b.js'},{'revision':'cb4f64534cdf8dd88f1d7219d44490db','url':'/assets/android-chrome-144x144.png'},{'revision':'5cde390de8a619ebe55a669d2ac3effd','url':'/assets/android-chrome-192x192.png'},{'revision':'e7466a67e90471de05401e53b8fe20be','url':'/assets/android-chrome-256x256.png'},{'revision':'9bbe9b80156e930d19a4e1725aa9ddae','url':'/assets/android-chrome-36x36.png'},{'revision':'5698b2ac0c82fe06d84521fc5482df04','url':'/assets/android-chrome-384x384.png'},{'revision':'56bef3fceec344d9747f8abe9c0bba27','url':'/assets/android-chrome-48x48.png'},{'revision':'3e8b8a01290992e82c242557417b0596','url':'/assets/android-chrome-512x512.png'},{'revision':'517925e91e2ce724432d296b687d25e2','url':'/assets/android-chrome-72x72.png'},{'revision':'4c3289bc690f8519012686888e08da71','url':'/assets/android-chrome-96x96.png'},{'revision':'cf464289183184df09292f581df0fb4f','url':'/assets/apple-touch-icon-1024x1024.png'},{'revision':'0857c5282c594e4900e8b31e3bade912','url':'/assets/apple-touch-icon-114x114.png'},{'revision':'4208f41a28130a67e9392a9dfcee6011','url':'/assets/apple-touch-icon-120x120.png'},{'revision':'cb4f64534cdf8dd88f1d7219d44490db','url':'/assets/apple-touch-icon-144x144.png'},{'revision':'977d293982af7e9064ba20806b45cf35','url':'/assets/apple-touch-icon-152x152.png'},{'revision':'6de91b4d2a30600b410758405cb567b4','url':'/assets/apple-touch-icon-167x167.png'},{'revision':'87bff140e3773bd7479a620501c4aa5c','url':'/assets/apple-touch-icon-180x180.png'},{'revision':'647386c34e75f1213830ea9a38913525','url':'/assets/apple-touch-icon-57x57.png'},{'revision':'0c200fe83953738b330ea431083e7a86','url':'/assets/apple-touch-icon-60x60.png'},{'revision':'517925e91e2ce724432d296b687d25e2','url':'/assets/apple-touch-icon-72x72.png'},{'revision':'c9989a807bb18633f6dcf254b5b56124','url':'/assets/apple-touch-icon-76x76.png'},{'revision':'87bff140e3773bd7479a620501c4aa5c','url':'/assets/apple-touch-icon-precomposed.png'},{'revision':'87bff140e3773bd7479a620501c4aa5c','url':'/assets/apple-touch-icon.png'},{'revision':'05fa74ea9c1c0c3931ba96467999081d','url':'/assets/apple-touch-startup-image-1182x2208.png'},{'revision':'9e2cd03e1e6fd0520eea6846f4278018','url':'/assets/apple-touch-startup-image-1242x2148.png'},{'revision':'5591e3a1822cbc8439b99c1a40d53425','url':'/assets/apple-touch-startup-image-1496x2048.png'},{'revision':'337de578c5ca04bd7d2be19d24d83821','url':'/assets/apple-touch-startup-image-1536x2008.png'},{'revision':'cafb4ab4eafe6ef946bd229a1d88e7de','url':'/assets/apple-touch-startup-image-320x460.png'},{'revision':'d9bb9e558d729eeac5efb8be8d6111cc','url':'/assets/apple-touch-startup-image-640x1096.png'},{'revision':'038b5b02bac8b82444bf9a87602ac216','url':'/assets/apple-touch-startup-image-640x920.png'},{'revision':'2177076eb07b1d64d663d7c03268be00','url':'/assets/apple-touch-startup-image-748x1024.png'},{'revision':'4fc097443815fe92503584c4bd73c630','url':'/assets/apple-touch-startup-image-750x1294.png'},{'revision':'2e29914062dce5c5141ab47eea2fc5d9','url':'/assets/apple-touch-startup-image-768x1004.png'},{'revision':'f692ec286b3a332c17985f4ed38b1076','url':'/assets/browserconfig.xml'},{'revision':'f3d9a3b647853c45b0e132e4acd0cc4a','url':'/assets/coast-228x228.png'},{'revision':'ad6e1def5c66193d649a31474bbfe45d','url':'/assets/favicon-16x16.png'},{'revision':'84d1dcdb6cdfa55e2f46be0c80fa5698','url':'/assets/favicon-32x32.png'},{'revision':'95fb44c4998a46109e49d724c060db24','url':'/assets/favicon.ico'},{'revision':'5df2a5b0cee399ac0bc40af74ba3c2cb','url':'/assets/firefox_app_128x128.png'},{'revision':'11fd9098c4b07c8a07e1d2a1e309e046','url':'/assets/firefox_app_512x512.png'},{'revision':'27cddfc922dca3bfa27b4a00fc2f5e36','url':'/assets/firefox_app_60x60.png'},{'revision':'2017d95fae79dcf34b5a5b52586d4763','url':'/assets/manifest.webapp'},{'revision':'cb4f64534cdf8dd88f1d7219d44490db','url':'/assets/mstile-144x144.png'},{'revision':'334895225e16a7777e45d81964725a97','url':'/assets/mstile-150x150.png'},{'revision':'e295cca4af6ed0365cf7b014d91b0e9d','url':'/assets/mstile-310x150.png'},{'revision':'cbefa8c42250e5f2443819fe2c69d91e','url':'/assets/mstile-310x310.png'},{'revision':'aa411a69df2b33a1362fa38d1257fa9d','url':'/assets/mstile-70x70.png'},{'revision':'5609af4f69e40e33471aee770ea1d802','url':'/assets/yandex-browser-50x50.png'},{'revision':'dd001f21b3970d5a7f3e245cc10d21df','url':'/assets/yandex-browser-manifest.json'},{'revision':'52b9a07fe0541fe8c313d9788550bf51','url':'/b6b803111e2d06a825bd.wasm'},{'revision':'7edb59d2be7c993050cb31ded36afa31','url':'/c22b37c3488e1d6c3aa4.wasm'},{'revision':'8717988809369502ff19a3b8daa7f4a8','url':'/cornerstoneDICOMImageLoader.min.js'},{'revision':'2bbe6b9d0180e7c0c55e67f995aa0dd3','url':'/cornerstoneDICOMImageLoader.min.js.map'},{'revision':null,'url':'/dicom-microscopy-viewer.bundle.a7d5060eead13771e784.js'},{'revision':'9d8c85b42d04bb117a3b583d654fbb08','url':'/dicomMicroscopyViewer.min.js'},{'revision':'450494c199cf8dd8e8c34d5e98bf5334','url':'/dicomMicroscopyViewer.min.js.LICENSE.txt'},{'revision':'4acdd19a35d759ec2669f1ba9490937d','url':'/es6-shim.min.js'},{'revision':'791565db341e8852807303918f5f9939','url':'/google.js'},{'revision':'556ba5a40d2a571c00b131b828dcbe4d','url':'/index.html'},{'revision':'df70845c6ce2109b2bc2c1bf14bd65a0','url':'/index.worker.64c896c4316fcd506666.worker.js'},{'revision':'143490b997e10b23c1debfa35afeb9e4','url':'/index.worker.64c896c4316fcd506666.worker.js.map'},{'revision':'71cec55513e051f0778ad89be760c11a','url':'/index.worker.min.worker.js'},{'revision':'fd1116add443fee52a935df926396e0f','url':'/index.worker.min.worker.js.map'},{'revision':'31c0367ca4160b2c6373e905739c5719','url':'/init-service-worker.js'},{'revision':'74fc9658b62903be2048c1f82a22b4d4','url':'/manifest.json'},{'revision':'3fa71aa0af3e34b4ebd9a71eee0f4bdd','url':'/ohif-logo-light.svg'},{'revision':'7e81da785c63e75650101db6c5d7560e','url':'/ohif-logo.svg'},{'revision':'eadf8bf1d85032a029e2c0df4b8938b0','url':'/oidc-client.min.js'},{'revision':'a1aef5311245f5864315443d12246c37','url':'/polyfill.min.js'},{'revision':'af9346d3e597071ba9ee8cd32f8cc0ea','url':'/serve.json'},{'revision':'b1e488d9955b62bd2858874df11d5223','url':'/silent-refresh.html'}]);
|
|
55
55
|
|
|
56
56
|
// TODO: Cache API
|
|
57
57
|
// https://developers.google.com/web/fundamentals/instant-and-offline/web-storage/cache-api
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ohif/app",
|
|
3
|
-
"version": "3.8.0-beta.
|
|
3
|
+
"version": "3.8.0-beta.53",
|
|
4
4
|
"productVersion": "3.4.0",
|
|
5
5
|
"description": "OHIF Viewer",
|
|
6
6
|
"author": "OHIF Contributors",
|
|
@@ -52,22 +52,22 @@
|
|
|
52
52
|
"@cornerstonejs/codec-openjpeg": "^1.2.2",
|
|
53
53
|
"@cornerstonejs/codec-openjph": "^2.4.5",
|
|
54
54
|
"@cornerstonejs/dicom-image-loader": "^1.44.1",
|
|
55
|
-
"@ohif/core": "3.8.0-beta.
|
|
56
|
-
"@ohif/extension-cornerstone": "3.8.0-beta.
|
|
57
|
-
"@ohif/extension-cornerstone-dicom-rt": "3.8.0-beta.
|
|
58
|
-
"@ohif/extension-cornerstone-dicom-seg": "3.8.0-beta.
|
|
59
|
-
"@ohif/extension-cornerstone-dicom-sr": "3.8.0-beta.
|
|
60
|
-
"@ohif/extension-default": "3.8.0-beta.
|
|
61
|
-
"@ohif/extension-dicom-microscopy": "3.8.0-beta.
|
|
62
|
-
"@ohif/extension-dicom-pdf": "3.8.0-beta.
|
|
63
|
-
"@ohif/extension-dicom-video": "3.8.0-beta.
|
|
64
|
-
"@ohif/extension-test": "3.8.0-beta.
|
|
65
|
-
"@ohif/i18n": "3.8.0-beta.
|
|
66
|
-
"@ohif/mode-basic-dev-mode": "3.8.0-beta.
|
|
67
|
-
"@ohif/mode-longitudinal": "3.8.0-beta.
|
|
68
|
-
"@ohif/mode-microscopy": "3.8.0-beta.
|
|
69
|
-
"@ohif/mode-test": "3.8.0-beta.
|
|
70
|
-
"@ohif/ui": "3.8.0-beta.
|
|
55
|
+
"@ohif/core": "3.8.0-beta.53",
|
|
56
|
+
"@ohif/extension-cornerstone": "3.8.0-beta.53",
|
|
57
|
+
"@ohif/extension-cornerstone-dicom-rt": "3.8.0-beta.53",
|
|
58
|
+
"@ohif/extension-cornerstone-dicom-seg": "3.8.0-beta.53",
|
|
59
|
+
"@ohif/extension-cornerstone-dicom-sr": "3.8.0-beta.53",
|
|
60
|
+
"@ohif/extension-default": "3.8.0-beta.53",
|
|
61
|
+
"@ohif/extension-dicom-microscopy": "3.8.0-beta.53",
|
|
62
|
+
"@ohif/extension-dicom-pdf": "3.8.0-beta.53",
|
|
63
|
+
"@ohif/extension-dicom-video": "3.8.0-beta.53",
|
|
64
|
+
"@ohif/extension-test": "3.8.0-beta.53",
|
|
65
|
+
"@ohif/i18n": "3.8.0-beta.53",
|
|
66
|
+
"@ohif/mode-basic-dev-mode": "3.8.0-beta.53",
|
|
67
|
+
"@ohif/mode-longitudinal": "3.8.0-beta.53",
|
|
68
|
+
"@ohif/mode-microscopy": "3.8.0-beta.53",
|
|
69
|
+
"@ohif/mode-test": "3.8.0-beta.53",
|
|
70
|
+
"@ohif/ui": "3.8.0-beta.53",
|
|
71
71
|
"@types/react": "^17.0.38",
|
|
72
72
|
"classnames": "^2.3.2",
|
|
73
73
|
"core-js": "^3.16.1",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|