hellfire 0.28.9 → 0.28.11

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/index.js CHANGED
@@ -28257,6 +28257,139 @@ defineProperty(TextMarkerTool, "setConfiguration", function (_getTextCallback, _
28257
28257
  };
28258
28258
  });
28259
28259
 
28260
+ function _createSuper$J(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$J(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
28261
+
28262
+ function _isNativeReflectConstruct$J() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
28263
+ var BaseTool$c = cornerstoneTools.importInternal('base/BaseTool');
28264
+ var fillOutsideRect = cornerstoneTools.importInternal('drawing/fillOutsideRect');
28265
+ var getNewContext$i = cornerstoneTools.importInternal('drawing/getNewContext');
28266
+ var external$t = cornerstoneTools.external;
28267
+ /**
28268
+ * 工具:遮罩
28269
+ */
28270
+
28271
+ var ShutterShapeTool = /*#__PURE__*/function (_BaseTool) {
28272
+ inherits(ShutterShapeTool, _BaseTool);
28273
+
28274
+ var _super = _createSuper$J(ShutterShapeTool);
28275
+
28276
+ function ShutterShapeTool() {
28277
+ var props = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
28278
+
28279
+ classCallCheck(this, ShutterShapeTool);
28280
+
28281
+ var defaultProps = {
28282
+ name: 'ShutterShape',
28283
+ mixins: ['enabledOrDisabledBinaryTool']
28284
+ };
28285
+ return _super.call(this, props, defaultProps);
28286
+ }
28287
+
28288
+ createClass(ShutterShapeTool, [{
28289
+ key: "enabledCallback",
28290
+ value: function enabledCallback(element) {
28291
+ this.forceImageUpdate(element);
28292
+ }
28293
+ }, {
28294
+ key: "disabledCallback",
28295
+ value: function disabledCallback(element) {
28296
+ this.forceImageUpdate(element);
28297
+ }
28298
+ }, {
28299
+ key: "forceImageUpdate",
28300
+ value: function forceImageUpdate(element) {
28301
+ var enabledElement = external$t.cornerstone.getEnabledElement(element);
28302
+
28303
+ if (enabledElement.image) {
28304
+ external$t.cornerstone.updateImage(element);
28305
+ }
28306
+ }
28307
+ }, {
28308
+ key: "drawShape",
28309
+ value: function drawShape(canvas, rowHeightInCanvas, rulerSpace) {}
28310
+ }, {
28311
+ key: "renderToolData",
28312
+ value: function () {
28313
+ var _renderToolData = asyncToGenerator( /*#__PURE__*/regenerator.mark(function _callee(evt) {
28314
+ var eventData, canvas, image, element, context, imagePlane, ShutterLeftVerticalEdge, ShutterRightVerticalEdge, ShutterUpperHorizontalEdge, ShutterLowerHorizontalEdge, _ShutterLeftVerticalEdge, _ShutterRightVerticalEdge, _ShutterUpperHorizontalEdge, _ShutterLowerHorizontalEdge, start, end;
28315
+
28316
+ return regenerator.wrap(function _callee$(_context) {
28317
+ while (1) {
28318
+ switch (_context.prev = _context.next) {
28319
+ case 0:
28320
+ eventData = evt.detail;
28321
+ canvas = eventData.canvasContext.canvas;
28322
+ image = eventData.image, element = eventData.element;
28323
+ context = getNewContext$i(canvas);
28324
+ imagePlane = external$t.cornerstone.metaData.get('imagePlaneModule', image.imageId);
28325
+
28326
+ if (!(!imagePlane || !imagePlane.shutterShape || imagePlane.shutterShape !== 'RECTANGULAR')) {
28327
+ _context.next = 7;
28328
+ break;
28329
+ }
28330
+
28331
+ return _context.abrupt("return");
28332
+
28333
+ case 7:
28334
+ ShutterLeftVerticalEdge = imagePlane.shutterLeftVerticalEdge;
28335
+ ShutterRightVerticalEdge = imagePlane.shutterRightVerticalEdge;
28336
+ ShutterUpperHorizontalEdge = imagePlane.shutterUpperHorizontalEdge;
28337
+ ShutterLowerHorizontalEdge = imagePlane.shutterLowerHorizontalEdge;
28338
+
28339
+ if (!(!ShutterLeftVerticalEdge || !ShutterRightVerticalEdge || !ShutterUpperHorizontalEdge || !ShutterLowerHorizontalEdge)) {
28340
+ _context.next = 13;
28341
+ break;
28342
+ }
28343
+
28344
+ return _context.abrupt("return");
28345
+
28346
+ case 13:
28347
+ _ShutterLeftVerticalEdge = lodash$1.toNumber(ShutterLeftVerticalEdge);
28348
+ _ShutterRightVerticalEdge = lodash$1.toNumber(ShutterRightVerticalEdge);
28349
+ _ShutterUpperHorizontalEdge = lodash$1.toNumber(ShutterUpperHorizontalEdge);
28350
+ _ShutterLowerHorizontalEdge = lodash$1.toNumber(ShutterLowerHorizontalEdge);
28351
+
28352
+ if (!(lodash$1.isNaN(_ShutterLeftVerticalEdge) || lodash$1.isNaN(_ShutterRightVerticalEdge) || lodash$1.isNaN(_ShutterUpperHorizontalEdge) || lodash$1.isNaN(_ShutterLowerHorizontalEdge))) {
28353
+ _context.next = 19;
28354
+ break;
28355
+ }
28356
+
28357
+ return _context.abrupt("return");
28358
+
28359
+ case 19:
28360
+ start = {
28361
+ x: _ShutterLeftVerticalEdge,
28362
+ y: _ShutterUpperHorizontalEdge
28363
+ };
28364
+ end = {
28365
+ x: _ShutterRightVerticalEdge,
28366
+ y: _ShutterLowerHorizontalEdge
28367
+ };
28368
+ fillOutsideRect(context, element, start, end, {
28369
+ color: '#000',
28370
+ fillStyle: '#000'
28371
+ });
28372
+ return _context.abrupt("return");
28373
+
28374
+ case 23:
28375
+ case "end":
28376
+ return _context.stop();
28377
+ }
28378
+ }
28379
+ }, _callee);
28380
+ }));
28381
+
28382
+ function renderToolData(_x) {
28383
+ return _renderToolData.apply(this, arguments);
28384
+ }
28385
+
28386
+ return renderToolData;
28387
+ }()
28388
+ }]);
28389
+
28390
+ return ShutterShapeTool;
28391
+ }(BaseTool$c); //
28392
+
28260
28393
  var getToolState$g = cornerstoneTools.getToolState;
28261
28394
  function getImagesLength (element) {
28262
28395
  var toolData = getToolState$g(element, 'stack');
@@ -28318,7 +28451,7 @@ var autoCine = {
28318
28451
  stopAutoCine: stopAutoCine
28319
28452
  };
28320
28453
 
28321
- var external$t = cornerstoneTools.external;
28454
+ var external$u = cornerstoneTools.external;
28322
28455
  function linkSynchronizer (synchronizer, sourceElement, targetElement, eventData) {
28323
28456
  if (targetElement === sourceElement) {
28324
28457
  return;
@@ -28346,7 +28479,7 @@ function linkSynchronizer (synchronizer, sourceElement, targetElement, eventData
28346
28479
  */
28347
28480
 
28348
28481
 
28349
- var cornerstone = external$t.cornerstone;
28482
+ var cornerstone = external$u.cornerstone;
28350
28483
  var sourceViewport = cornerstone.getViewport(sourceElement);
28351
28484
  var targetViewport = cornerstone.getViewport(targetElement);
28352
28485
 
@@ -28580,7 +28713,7 @@ function linkSynchronizer (synchronizer, sourceElement, targetElement, eventData
28580
28713
  }
28581
28714
  }
28582
28715
 
28583
- var external$u = cornerstoneTools.external;
28716
+ var external$v = cornerstoneTools.external;
28584
28717
  function linkImageModeSynchronizer (synchronizer, sourceElement, targetElement, eventData) {
28585
28718
  if (targetElement === sourceElement) {
28586
28719
  return;
@@ -28593,7 +28726,7 @@ function linkImageModeSynchronizer (synchronizer, sourceElement, targetElement,
28593
28726
  return;
28594
28727
  }
28595
28728
 
28596
- var cornerstone = external$u.cornerstone;
28729
+ var cornerstone = external$v.cornerstone;
28597
28730
  var sourceViewport = cornerstone.getViewport(sourceElement);
28598
28731
  var targetViewport = cornerstone.getViewport(targetElement);
28599
28732
 
@@ -28760,7 +28893,7 @@ function stackScrollSynchronizer (synchronizer, sourceElement, targetElement, ev
28760
28893
  });
28761
28894
  }
28762
28895
 
28763
- var external$v = cornerstoneTools.external;
28896
+ var external$w = cornerstoneTools.external;
28764
28897
  function mprSynchronizer (synchronizer, sourceElement, targetElement, eventData) {
28765
28898
  if (targetElement === sourceElement) {
28766
28899
  return;
@@ -28776,7 +28909,7 @@ function mprSynchronizer (synchronizer, sourceElement, targetElement, eventData)
28776
28909
  */
28777
28910
 
28778
28911
 
28779
- var cornerstone = external$v.cornerstone;
28912
+ var cornerstone = external$w.cornerstone;
28780
28913
  var sourceViewport = cornerstone.getViewport(sourceElement);
28781
28914
  var targetViewport = cornerstone.getViewport(targetElement);
28782
28915
 
@@ -28843,7 +28976,8 @@ cornerstoneTools.stackScrollSynchronizer = stackScrollSynchronizer;
28843
28976
  cornerstoneTools.AIAnalysisOverlayTool = AIAnalysisOverlayTool;
28844
28977
  cornerstoneTools.ReferencePositionTool = ReferencePositionTool;
28845
28978
  cornerstoneTools.PolygonTool = PolygonTool;
28846
- cornerstoneTools.TextMarkerTool = TextMarkerTool; //自定义
28979
+ cornerstoneTools.TextMarkerTool = TextMarkerTool;
28980
+ cornerstoneTools.ShutterShapeTool = ShutterShapeTool; //自定义
28847
28981
 
28848
28982
  cornerstoneTools.linkSynchronizer = linkSynchronizer;
28849
28983
  cornerstoneTools.linkImageModeSynchronizer = linkImageModeSynchronizer;
@@ -29775,7 +29909,12 @@ function wadoUriMetaDataProvider(type, imageId) {
29775
29909
  sliceLocation: dataSet.floatString('x00201041'),
29776
29910
  pixelSpacing: pixelSpacing,
29777
29911
  rowPixelSpacing: rowPixelSpacing,
29778
- columnPixelSpacing: columnPixelSpacing
29912
+ columnPixelSpacing: columnPixelSpacing,
29913
+ shutterShape: dataSet.string('x00181600'),
29914
+ shutterLeftVerticalEdge: dataSet.string('x00181602'),
29915
+ shutterRightVerticalEdge: dataSet.string('x00181604'),
29916
+ shutterUpperHorizontalEdge: dataSet.string('x00181606'),
29917
+ shutterLowerHorizontalEdge: dataSet.string('x00181608')
29779
29918
  };
29780
29919
  }
29781
29920
  }
@@ -31392,14 +31531,14 @@ function styleInject$1(css, ref) {
31392
31531
  var css_248z = ".popover-template .popover-template-header {\n padding: 12px 20px 3px;\n font-size: 12px;\n color: #777;\n border-top: 1px solid #e5e5e5;\n margin-top: 9px;\n}\n.popover-template .popover-template-header:first-child {\n border-top: none;\n padding: 3px 20px;\n margin-top: 0;\n}\n.popover-template .popover-template-icon {\n display: inline-block;\n width: 1.28571em;\n height: 1em;\n margin-right: 2px;\n}\n.popover-template .popover-template-icon svg {\n vertical-align: middle;\n}\n.popover-template .popover-template-row,\n.popover-template .popover-template-row-no-hover,\n.popover-template .popover-template-row-match {\n padding: 3px 20px;\n font-size: 14px;\n color: #53585f;\n cursor: pointer;\n white-space: nowrap;\n}\n.popover-template .popover-template-row-match {\n color: #fff;\n background: #7f8592;\n}\n.popover-template .popover-template-row:hover {\n color: #fff;\n background: #777777;\n}\n";
31393
31532
  styleInject$1(css_248z);
31394
31533
 
31395
- function _createSuper$J(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$J(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
31534
+ function _createSuper$K(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$K(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
31396
31535
 
31397
- function _isNativeReflectConstruct$J() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
31536
+ function _isNativeReflectConstruct$K() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
31398
31537
 
31399
31538
  var ToolPopoverTemplate = /*#__PURE__*/function (_Component) {
31400
31539
  inherits(ToolPopoverTemplate, _Component);
31401
31540
 
31402
- var _super = _createSuper$J(ToolPopoverTemplate);
31541
+ var _super = _createSuper$K(ToolPopoverTemplate);
31403
31542
 
31404
31543
  function ToolPopoverTemplate(props) {
31405
31544
  classCallCheck(this, ToolPopoverTemplate);
@@ -31456,14 +31595,14 @@ defineProperty(ToolPopoverTemplate, "propTypes", {
31456
31595
  onClose: PropTypes$1.func
31457
31596
  });
31458
31597
 
31459
- function _createSuper$K(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$K(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
31598
+ function _createSuper$L(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$L(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
31460
31599
 
31461
- function _isNativeReflectConstruct$K() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
31600
+ function _isNativeReflectConstruct$L() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
31462
31601
 
31463
31602
  var Layout = /*#__PURE__*/function (_Component) {
31464
31603
  inherits(Layout, _Component);
31465
31604
 
31466
- var _super = _createSuper$K(Layout);
31605
+ var _super = _createSuper$L(Layout);
31467
31606
 
31468
31607
  function Layout(props) {
31469
31608
  classCallCheck(this, Layout);
@@ -31640,14 +31779,14 @@ const SvgCog = props => /*#__PURE__*/React__default.createElement("svg", _extend
31640
31779
  var css_248z$2 = ".paladin-ipt {\n box-sizing: border-box;\n width: 100%;\n height: 34px;\n padding: 6px 12px;\n background-color: transparent;\n background-image: none;\n border: 1px solid #ccc;\n border-radius: 8px;\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n display: block;\n font-size: 14px;\n line-height: 1.42857;\n color: #555;\n}\n.paladin-ipt:focus {\n outline: none;\n}\n";
31641
31780
  styleInject$1(css_248z$2);
31642
31781
 
31643
- function _createSuper$L(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$L(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
31782
+ function _createSuper$M(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$M(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
31644
31783
 
31645
- function _isNativeReflectConstruct$L() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
31784
+ function _isNativeReflectConstruct$M() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
31646
31785
 
31647
31786
  var Input$1 = /*#__PURE__*/function (_Component) {
31648
31787
  inherits(Input, _Component);
31649
31788
 
31650
- var _super = _createSuper$L(Input);
31789
+ var _super = _createSuper$M(Input);
31651
31790
 
31652
31791
  function Input(props) {
31653
31792
  var _this;
@@ -31716,14 +31855,14 @@ defineProperty(Input$1, "propTypes", {
31716
31855
  var css_248z$3 = ".paladin-row {\n display: flex;\n box-sizing: border-box;\n flex-direction: row;\n flex-wrap: wrap;\n flex: 0 1 auto;\n}\n";
31717
31856
  styleInject$1(css_248z$3);
31718
31857
 
31719
- function _createSuper$M(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$M(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
31858
+ function _createSuper$N(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$N(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
31720
31859
 
31721
- function _isNativeReflectConstruct$M() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
31860
+ function _isNativeReflectConstruct$N() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
31722
31861
 
31723
31862
  var Row = /*#__PURE__*/function (_Component) {
31724
31863
  inherits(Row, _Component);
31725
31864
 
31726
- var _super = _createSuper$M(Row);
31865
+ var _super = _createSuper$N(Row);
31727
31866
 
31728
31867
  function Row() {
31729
31868
  classCallCheck(this, Row);
@@ -31759,14 +31898,14 @@ defineProperty(Row, "propTypes", {});
31759
31898
  var css_248z$4 = ".paladin-col {\n display: flex;\n flex-direction: column;\n box-sizing: border-box;\n flex: 0 0 auto;\n}\n.paladin-col-1 {\n flex-basis: 8.333333%;\n max-width: 8.3333333%;\n}\n.paladin-col-2 {\n flex-basis: 16.666666%;\n max-width: 16.666666%;\n}\n.paladin-col-3 {\n flex-basis: 25%;\n max-width: 25%;\n}\n.paladin-col-4 {\n flex-basis: 33.333333%;\n max-width: 33.333333%;\n}\n.paladin-col-5 {\n flex-basis: 41.666666%;\n max-width: 41.666666%;\n}\n.paladin-col-6 {\n flex-basis: 50%;\n max-width: 50%;\n}\n.paladin-col-7 {\n flex-basis: 58.333333%;\n max-width: 58.333333%;\n}\n.paladin-col-8 {\n flex-basis: 66.666666%;\n max-width: 66.666666%;\n}\n.paladin-col-9 {\n flex-basis: 75%;\n max-width: 75%;\n}\n.paladin-col-10 {\n flex-basis: 83.333333%;\n max-width: 83.333333%;\n}\n.paladin-col-11 {\n flex-basis: 91.666666%;\n max-width: 91.666666%;\n}\n.paladin-col-12 {\n flex-basis: 100%;\n max-width: 100%;\n}\n.paladin-col-xs-1 {\n flex-basis: 8.333333%;\n max-width: 8.3333333%;\n}\n.paladin-col-xs-2 {\n flex-basis: 16.666666%;\n max-width: 16.666666%;\n}\n.paladin-col-xs-3 {\n flex-basis: 25%;\n max-width: 25%;\n}\n.paladin-col-xs-4 {\n flex-basis: 33.333333%;\n max-width: 33.333333%;\n}\n.paladin-col-xs-5 {\n flex-basis: 41.666666%;\n max-width: 41.666666%;\n}\n.paladin-col-xs-6 {\n flex-basis: 50%;\n max-width: 50%;\n}\n.paladin-col-xs-7 {\n flex-basis: 58.333333%;\n max-width: 58.333333%;\n}\n.paladin-col-xs-8 {\n flex-basis: 66.666666%;\n max-width: 66.666666%;\n}\n.paladin-col-xs-9 {\n flex-basis: 75%;\n max-width: 75%;\n}\n.paladin-col-xs-10 {\n flex-basis: 83.333333%;\n max-width: 83.333333%;\n}\n.paladin-col-xs-11 {\n flex-basis: 91.666666%;\n max-width: 91.666666%;\n}\n.paladin-col-xs-12 {\n flex-basis: 100%;\n max-width: 100%;\n}\n@media only screen and (min-width: 576px) {\n .paladin-col-sm-1 {\n flex-basis: 8.333333%;\n max-width: 8.3333333%;\n }\n .paladin-col-sm-2 {\n flex-basis: 16.666666%;\n max-width: 16.666666%;\n }\n .paladin-col-sm-3 {\n flex-basis: 25%;\n max-width: 25%;\n }\n .paladin-col-sm-4 {\n flex-basis: 33.333333%;\n max-width: 33.333333%;\n }\n .paladin-col-sm-5 {\n flex-basis: 41.666666%;\n max-width: 41.666666%;\n }\n .paladin-col-sm-6 {\n flex-basis: 50%;\n max-width: 50%;\n }\n .paladin-col-sm-7 {\n flex-basis: 58.333333%;\n max-width: 58.333333%;\n }\n .paladin-col-sm-8 {\n flex-basis: 66.666666%;\n max-width: 66.666666%;\n }\n .paladin-col-sm-9 {\n flex-basis: 75%;\n max-width: 75%;\n }\n .paladin-col-sm-10 {\n flex-basis: 83.333333%;\n max-width: 83.333333%;\n }\n .paladin-col-sm-11 {\n flex-basis: 91.666666%;\n max-width: 91.666666%;\n }\n .paladin-col-sm-12 {\n flex-basis: 100%;\n max-width: 100%;\n }\n}\n";
31760
31899
  styleInject$1(css_248z$4);
31761
31900
 
31762
- function _createSuper$N(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$N(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
31901
+ function _createSuper$O(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$O(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
31763
31902
 
31764
- function _isNativeReflectConstruct$N() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
31903
+ function _isNativeReflectConstruct$O() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
31765
31904
 
31766
31905
  var Col = /*#__PURE__*/function (_Component) {
31767
31906
  inherits(Col, _Component);
31768
31907
 
31769
- var _super = _createSuper$N(Col);
31908
+ var _super = _createSuper$O(Col);
31770
31909
 
31771
31910
  function Col() {
31772
31911
  classCallCheck(this, Col);
@@ -31819,9 +31958,9 @@ styleInject$1(css_248z$5);
31819
31958
  var css_248z$6 = ".paladin-btn {\n margin: 0;\n display: inline-block;\n font-weight: 400;\n text-align: center;\n vertical-align: middle;\n touch-action: manipulation;\n cursor: pointer;\n background-image: none;\n border: 1px solid transparent;\n white-space: nowrap;\n font-size: 14px;\n line-height: 1.42857;\n border-radius: 4px;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n}\n.paladin-btn-size-md {\n padding: 6px 12px;\n}\n.paladin-btn-size-xs {\n padding: 3px 6px;\n}\n.paladin-btn-active {\n box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n}\n.paladin-primary {\n color: #fff;\n background-color: #337ab7;\n border-color: #2e6da4;\n}\n.paladin-success {\n color: #fff;\n background-color: #008b8b;\n border-color: #007272;\n}\n.paladin-default {\n color: #333;\n background-color: #fff;\n border-color: #ccc;\n}\n.paladin-default.paladin-btn-active {\n color: #333;\n background-color: #e6e6e6;\n border-color: #adadad;\n}\n.paladin-info {\n color: #fff;\n background-color: #659bd2;\n border-color: #518ecc;\n}\n.paladin-warning {\n color: #fff;\n background-color: #f0ad4e;\n border-color: #eea236;\n}\n.paladin-danger {\n color: #fff;\n background-color: #d9534f;\n border-color: #d43f3a;\n}\n";
31820
31959
  styleInject$1(css_248z$6);
31821
31960
 
31822
- function _createSuper$O(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$O(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
31961
+ function _createSuper$P(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$P(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
31823
31962
 
31824
- function _isNativeReflectConstruct$O() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
31963
+ function _isNativeReflectConstruct$P() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
31825
31964
  /**
31826
31965
  * default
31827
31966
  * primary
@@ -31834,7 +31973,7 @@ function _isNativeReflectConstruct$O() { if (typeof Reflect === "undefined" || !
31834
31973
  var Button = /*#__PURE__*/function (_Component) {
31835
31974
  inherits(Button, _Component);
31836
31975
 
31837
- var _super = _createSuper$O(Button);
31976
+ var _super = _createSuper$P(Button);
31838
31977
 
31839
31978
  function Button() {
31840
31979
  classCallCheck(this, Button);
@@ -31881,14 +32020,14 @@ const SvgRemove = props => /*#__PURE__*/React__default.createElement("svg", _ext
31881
32020
  fill: "currentColor"
31882
32021
  }, props), _ref$N);
31883
32022
 
31884
- function _createSuper$P(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$P(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
32023
+ function _createSuper$Q(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$Q(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
31885
32024
 
31886
- function _isNativeReflectConstruct$P() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
32025
+ function _isNativeReflectConstruct$Q() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
31887
32026
 
31888
32027
  var Modal = /*#__PURE__*/function (_Component) {
31889
32028
  inherits(Modal, _Component);
31890
32029
 
31891
- var _super = _createSuper$P(Modal);
32030
+ var _super = _createSuper$Q(Modal);
31892
32031
 
31893
32032
  /**
31894
32033
  visible: 对话框是否可见
@@ -32214,14 +32353,14 @@ var saveWwwcCustomDic = function saveWwwcCustomDic(data) {
32214
32353
  wwwcCustomDic = data;
32215
32354
  };
32216
32355
 
32217
- function _createSuper$Q(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$Q(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
32356
+ function _createSuper$R(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$R(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
32218
32357
 
32219
- function _isNativeReflectConstruct$Q() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
32358
+ function _isNativeReflectConstruct$R() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
32220
32359
 
32221
32360
  var WwwcCustomSettingModal = /*#__PURE__*/function (_Component) {
32222
32361
  inherits(WwwcCustomSettingModal, _Component);
32223
32362
 
32224
- var _super = _createSuper$Q(WwwcCustomSettingModal);
32363
+ var _super = _createSuper$R(WwwcCustomSettingModal);
32225
32364
 
32226
32365
  function WwwcCustomSettingModal(props) {
32227
32366
  var _this;
@@ -32507,14 +32646,14 @@ var WwwcCustomSettingModal = /*#__PURE__*/function (_Component) {
32507
32646
 
32508
32647
  defineProperty(WwwcCustomSettingModal, "propTypes", {});
32509
32648
 
32510
- function _createSuper$R(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$R(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
32649
+ function _createSuper$S(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$S(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
32511
32650
 
32512
- function _isNativeReflectConstruct$R() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
32651
+ function _isNativeReflectConstruct$S() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
32513
32652
 
32514
32653
  var Wwwc = /*#__PURE__*/function (_Component) {
32515
32654
  inherits(Wwwc, _Component);
32516
32655
 
32517
- var _super = _createSuper$R(Wwwc);
32656
+ var _super = _createSuper$S(Wwwc);
32518
32657
 
32519
32658
  function Wwwc(props) {
32520
32659
  var _this;
@@ -32846,14 +32985,14 @@ const SvgSearch = props => /*#__PURE__*/React__default.createElement("svg", _ext
32846
32985
  fill: "currentColor"
32847
32986
  }, props), _ref$T);
32848
32987
 
32849
- function _createSuper$S(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$S(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
32988
+ function _createSuper$T(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$T(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
32850
32989
 
32851
- function _isNativeReflectConstruct$S() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
32990
+ function _isNativeReflectConstruct$T() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
32852
32991
 
32853
32992
  var Zoom = /*#__PURE__*/function (_Component) {
32854
32993
  inherits(Zoom, _Component);
32855
32994
 
32856
- var _super = _createSuper$S(Zoom);
32995
+ var _super = _createSuper$T(Zoom);
32857
32996
 
32858
32997
  function Zoom(props) {
32859
32998
  classCallCheck(this, Zoom);
@@ -33049,14 +33188,14 @@ const SvgFlipVertical = props => /*#__PURE__*/React__default.createElement("svg"
33049
33188
  fill: "currentColor"
33050
33189
  }, props), _ref$W, _ref2$c);
33051
33190
 
33052
- function _createSuper$T(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$T(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
33191
+ function _createSuper$U(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$U(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
33053
33192
 
33054
- function _isNativeReflectConstruct$T() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
33193
+ function _isNativeReflectConstruct$U() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
33055
33194
 
33056
33195
  var Rotate = /*#__PURE__*/function (_Component) {
33057
33196
  inherits(Rotate, _Component);
33058
33197
 
33059
- var _super = _createSuper$T(Rotate);
33198
+ var _super = _createSuper$U(Rotate);
33060
33199
 
33061
33200
  function Rotate(props) {
33062
33201
  classCallCheck(this, Rotate);
@@ -33223,14 +33362,14 @@ const SvgBanCircle = props => /*#__PURE__*/React__default.createElement("svg", _
33223
33362
  var css_248z$7 = ".paladin-btn-group .paladin-btn:first-child:not(:last-child) {\n border-bottom-right-radius: 0;\n border-top-right-radius: 0;\n}\n.paladin-btn-group .paladin-btn:last-child:not(:first-child) {\n border-bottom-left-radius: 0;\n border-top-left-radius: 0;\n}\n";
33224
33363
  styleInject$1(css_248z$7);
33225
33364
 
33226
- function _createSuper$U(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$U(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
33365
+ function _createSuper$V(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$V(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
33227
33366
 
33228
- function _isNativeReflectConstruct$U() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
33367
+ function _isNativeReflectConstruct$V() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
33229
33368
 
33230
33369
  var ButtonGroup = /*#__PURE__*/function (_Component) {
33231
33370
  inherits(ButtonGroup, _Component);
33232
33371
 
33233
- var _super = _createSuper$U(ButtonGroup);
33372
+ var _super = _createSuper$V(ButtonGroup);
33234
33373
 
33235
33374
  function ButtonGroup() {
33236
33375
  classCallCheck(this, ButtonGroup);
@@ -33322,14 +33461,14 @@ var formatDicom = function formatDicom(dicom) {
33322
33461
  var css_248z$8 = ".allow-select * {\n -webkit-user-select: text !important;\n -moz-user-select: text !important;\n -ms-user-select: text !important;\n user-select: text !important;\n}\n.paladin-table {\n margin-top: 10px;\n font-size: 14px;\n color: #727882;\n font-family: lucida console, monospace;\n word-break: break-all;\n}\n.paladin-table .paladin-table-th {\n background: #698b69;\n color: #fff;\n padding: 5px;\n}\n.paladin-table .paladin-tbody-row {\n border-bottom: 1px solid lightgrey;\n}\n.paladin-table .paladin-tbody-row:hover .td {\n background: #ddd;\n color: inherit;\n}\n.paladin-table .paladin-tbody-row:nth-child(even) {\n background: #eee;\n color: inherit;\n}\n.paladin-table .paladin-tbody-td {\n padding: 5px;\n}\n.paladin-table .paladin-key {\n background-color: #7ac5cd;\n color: white;\n}\n.paladin-table .paladin-childKey {\n background-color: #49898F;\n color: white;\n}\n.paladin-table .paladin-private {\n color: orange;\n}\n.paladin-table .paladin-row-parent-icon {\n display: inline-block;\n background: #fff;\n border-radius: 2px;\n margin-right: 3px;\n color: #00a4fe;\n width: 16px;\n height: 16px;\n position: relative;\n vertical-align: middle;\n}\n.paladin-table .paladin-row-parent-icon span {\n position: absolute;\n left: 50%;\n top: 50%;\n transform: translate(-50%, -51%);\n display: inline-block;\n width: 13px;\n height: 13px;\n line-height: 13px;\n font-size: 13px;\n text-align: center;\n}\n";
33323
33462
  styleInject$1(css_248z$8);
33324
33463
 
33325
- function _createSuper$V(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$V(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
33464
+ function _createSuper$W(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$W(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
33326
33465
 
33327
- function _isNativeReflectConstruct$V() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
33466
+ function _isNativeReflectConstruct$W() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
33328
33467
 
33329
33468
  var DicomTagsRow = /*#__PURE__*/function (_Component) {
33330
33469
  inherits(DicomTagsRow, _Component);
33331
33470
 
33332
- var _super = _createSuper$V(DicomTagsRow);
33471
+ var _super = _createSuper$W(DicomTagsRow);
33333
33472
 
33334
33473
  function DicomTagsRow(props) {
33335
33474
  var _this;
@@ -33413,9 +33552,9 @@ function ownKeys$m(object, enumerableOnly) { var keys = Object.keys(object); if
33413
33552
 
33414
33553
  function _objectSpread$m(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys$m(Object(source), true).forEach(function (key) { defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys$m(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
33415
33554
 
33416
- function _createSuper$W(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$W(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
33555
+ function _createSuper$X(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$X(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
33417
33556
 
33418
- function _isNativeReflectConstruct$W() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
33557
+ function _isNativeReflectConstruct$X() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
33419
33558
  var dicomTagsKeysScan = lodash$1.chain(dicomDataDictionary$1.standardDataElements).pickBy(function (value) {
33420
33559
  return lodash$1.includes(scanDictionary, lodash$1.get(value, ['name']));
33421
33560
  }).keys().sortBy().value();
@@ -33423,7 +33562,7 @@ var dicomTagsKeysScan = lodash$1.chain(dicomDataDictionary$1.standardDataElement
33423
33562
  var DicomInfoModal = /*#__PURE__*/function (_Component) {
33424
33563
  inherits(DicomInfoModal, _Component);
33425
33564
 
33426
- var _super = _createSuper$W(DicomInfoModal);
33565
+ var _super = _createSuper$X(DicomInfoModal);
33427
33566
 
33428
33567
  function DicomInfoModal(props) {
33429
33568
  var _this;
@@ -33603,14 +33742,14 @@ defineProperty(DicomInfoModal, "propTypes", {
33603
33742
  var css_248z$9 = ".paladin-imageTool {\n background: #fff;\n padding: 5px 0;\n min-width: 185px;\n max-width: 280px;\n}\n.paladin-imageTool .paladin-imageTool-header {\n padding: 12px 20px 3px;\n font-size: 12px;\n color: #777;\n border-top: 1px solid #e5e5e5;\n margin-top: 9px;\n clear: both;\n}\n.paladin-imageTool .paladin-imageTool-header:first-child {\n border-top: none;\n padding: 3px 20px;\n margin-top: 0;\n}\n.paladin-imageTool .paladin-imageTool-icon {\n display: inline-block;\n width: 1.28571em;\n height: 1em;\n margin-right: 2px;\n}\n.paladin-imageTool .paladin-imageTool-icon svg {\n vertical-align: middle;\n}\n.paladin-imageTool .paladin-imageTool-row {\n padding: 3px 20px;\n font-size: 14px;\n color: #53585f;\n cursor: pointer;\n white-space: nowrap;\n display: block;\n clear: both;\n overflow: hidden;\n}\n.paladin-imageTool .paladin-imageTool-row:hover {\n color: #fff;\n background: #777777;\n}\n.paladin-imageTool .paladin-imageTool-canvas {\n float: right;\n}\n.paladin-imageTool .paladin-imageTool-text {\n float: left;\n}\n";
33604
33743
  styleInject$1(css_248z$9);
33605
33744
 
33606
- function _createSuper$X(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$X(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
33745
+ function _createSuper$Y(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$Y(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
33607
33746
 
33608
- function _isNativeReflectConstruct$X() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
33747
+ function _isNativeReflectConstruct$Y() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
33609
33748
 
33610
33749
  var ImageTool = /*#__PURE__*/function (_Component) {
33611
33750
  inherits(ImageTool, _Component);
33612
33751
 
33613
- var _super = _createSuper$X(ImageTool);
33752
+ var _super = _createSuper$Y(ImageTool);
33614
33753
 
33615
33754
  function ImageTool(props) {
33616
33755
  var _this;
@@ -33948,14 +34087,14 @@ const Svg433 = props => /*#__PURE__*/React__default.createElement("svg", _extend
33948
34087
  fill: "currentColor"
33949
34088
  }, props), _ref$10);
33950
34089
 
33951
- function _createSuper$Y(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$Y(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
34090
+ function _createSuper$Z(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$Z(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
33952
34091
 
33953
- function _isNativeReflectConstruct$Y() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
34092
+ function _isNativeReflectConstruct$Z() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
33954
34093
 
33955
34094
  var LengthTool$1 = /*#__PURE__*/function (_Component) {
33956
34095
  inherits(LengthTool, _Component);
33957
34096
 
33958
- var _super = _createSuper$Y(LengthTool);
34097
+ var _super = _createSuper$Z(LengthTool);
33959
34098
 
33960
34099
  function LengthTool(props) {
33961
34100
  var _this;
@@ -38525,14 +38664,14 @@ function ownKeys$q(object, enumerableOnly) { var keys = Object.keys(object); if
38525
38664
 
38526
38665
  function _objectSpread$q(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys$q(Object(source), true).forEach(function (key) { defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys$q(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
38527
38666
 
38528
- function _createSuper$Z(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$Z(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
38667
+ function _createSuper$_(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$_(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
38529
38668
 
38530
- function _isNativeReflectConstruct$Z() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
38669
+ function _isNativeReflectConstruct$_() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
38531
38670
 
38532
38671
  var PopperBox = /*#__PURE__*/function (_Component) {
38533
38672
  inherits(PopperBox, _Component);
38534
38673
 
38535
- var _super = _createSuper$Z(PopperBox);
38674
+ var _super = _createSuper$_(PopperBox);
38536
38675
 
38537
38676
  function PopperBox(props) {
38538
38677
  var _this;
@@ -38801,14 +38940,14 @@ const SvgPause = props => /*#__PURE__*/React__default.createElement("svg", _exte
38801
38940
  var css_248z$c = ".paladin-cine-row {\n padding: 3px 20px;\n width: 100%;\n height: 40px;\n}\n.paladin-cine-row .paladin-cine-label {\n font-size: 12px;\n color: #727882;\n justify-content: center;\n white-space: nowrap;\n}\n.paladin-cine-row .paladin-cine-input {\n padding: 0 8px;\n justify-content: center;\n align-items: center;\n}\n.paladin-cine-row .paladin-cine-input input {\n height: 20px;\n padding: 0;\n width: 80%;\n}\n.paladin-cine-row .paladin-cine-svg {\n height: 100%;\n}\n.paladin-cine-row .paladin-cine-svg .paladin-row {\n height: 20px;\n}\n.paladin-cine-row .paladin-cine-svg svg {\n fill: #727882;\n}\n.paladin-cine-svg-play svg {\n width: 12px !important;\n height: 12px !important;\n fill: #727882;\n}\n";
38802
38941
  styleInject$1(css_248z$c);
38803
38942
 
38804
- function _createSuper$_(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$_(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
38943
+ function _createSuper$$(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$$(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
38805
38944
 
38806
- function _isNativeReflectConstruct$_() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
38945
+ function _isNativeReflectConstruct$$() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
38807
38946
 
38808
38947
  var Cine = /*#__PURE__*/function (_Component) {
38809
38948
  inherits(Cine, _Component);
38810
38949
 
38811
- var _super = _createSuper$_(Cine);
38950
+ var _super = _createSuper$$(Cine);
38812
38951
 
38813
38952
  function Cine(props) {
38814
38953
  classCallCheck(this, Cine);
@@ -39032,14 +39171,14 @@ var ConnectedCine = reactRedux.connect(mapStateToProps$6, {
39032
39171
  setCineDireaction: setCineDireaction
39033
39172
  }, mergeProps$6)(Cine);
39034
39173
 
39035
- function _createSuper$$(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$$(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
39174
+ function _createSuper$10(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$10(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
39036
39175
 
39037
- function _isNativeReflectConstruct$$() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
39176
+ function _isNativeReflectConstruct$10() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
39038
39177
 
39039
39178
  var VRDirection = /*#__PURE__*/function (_Component) {
39040
39179
  inherits(VRDirection, _Component);
39041
39180
 
39042
- var _super = _createSuper$$(VRDirection);
39181
+ var _super = _createSuper$10(VRDirection);
39043
39182
 
39044
39183
  function VRDirection(props) {
39045
39184
  var _this;
@@ -39169,14 +39308,14 @@ var mergeProps$7 = function mergeProps(propsFromState, propsFromDispatch, ownPro
39169
39308
 
39170
39309
  var ConnectedVRDirection = reactRedux.connect(mapStateToProps$7, {}, mergeProps$7)(VRDirection);
39171
39310
 
39172
- function _createSuper$10(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$10(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
39311
+ function _createSuper$11(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$11(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
39173
39312
 
39174
- function _isNativeReflectConstruct$10() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
39313
+ function _isNativeReflectConstruct$11() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
39175
39314
 
39176
39315
  var VRPresentColor = /*#__PURE__*/function (_Component) {
39177
39316
  inherits(VRPresentColor, _Component);
39178
39317
 
39179
- var _super = _createSuper$10(VRPresentColor);
39318
+ var _super = _createSuper$11(VRPresentColor);
39180
39319
 
39181
39320
  function VRPresentColor(props) {
39182
39321
  var _this;
@@ -39324,14 +39463,14 @@ var mergeProps$8 = function mergeProps(propsFromState, propsFromDispatch, ownPro
39324
39463
 
39325
39464
  var ConnectedVRPresentColor = reactRedux.connect(mapStateToProps$8, {}, mergeProps$8)(VRPresentColor);
39326
39465
 
39327
- function _createSuper$11(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$11(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
39466
+ function _createSuper$12(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$12(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
39328
39467
 
39329
- function _isNativeReflectConstruct$11() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
39468
+ function _isNativeReflectConstruct$12() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
39330
39469
 
39331
39470
  var Reset = /*#__PURE__*/function (_Component) {
39332
39471
  inherits(Reset, _Component);
39333
39472
 
39334
- var _super = _createSuper$11(Reset);
39473
+ var _super = _createSuper$12(Reset);
39335
39474
 
39336
39475
  function Reset(props) {
39337
39476
  classCallCheck(this, Reset);
@@ -39462,15 +39601,15 @@ var ConnectedReset = reactRedux.connect(mapStateToProps$9, mapDispatchToProps$3,
39462
39601
 
39463
39602
  var _VRModeDict;
39464
39603
 
39465
- function _createSuper$12(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$12(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
39604
+ function _createSuper$13(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$13(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
39466
39605
 
39467
- function _isNativeReflectConstruct$12() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
39606
+ function _isNativeReflectConstruct$13() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
39468
39607
  var VRModeDict = (_VRModeDict = {}, defineProperty(_VRModeDict, OperationMode.Fast, '流畅'), defineProperty(_VRModeDict, OperationMode.Standard, '常规'), defineProperty(_VRModeDict, OperationMode.Advanced, '增强'), _VRModeDict);
39469
39608
 
39470
39609
  var VRMode = /*#__PURE__*/function (_Component) {
39471
39610
  inherits(VRMode, _Component);
39472
39611
 
39473
- var _super = _createSuper$12(VRMode);
39612
+ var _super = _createSuper$13(VRMode);
39474
39613
 
39475
39614
  function VRMode(props) {
39476
39615
  var _this;
@@ -39609,14 +39748,14 @@ var boundsPosition = function boundsPosition(_ref) {
39609
39748
  }];
39610
39749
  };
39611
39750
 
39612
- function _createSuper$13(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$13(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
39751
+ function _createSuper$14(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$14(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
39613
39752
 
39614
- function _isNativeReflectConstruct$13() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
39753
+ function _isNativeReflectConstruct$14() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
39615
39754
 
39616
39755
  var Scrollable = /*#__PURE__*/function (_Component) {
39617
39756
  inherits(Scrollable, _Component);
39618
39757
 
39619
- var _super = _createSuper$13(Scrollable);
39758
+ var _super = _createSuper$14(Scrollable);
39620
39759
 
39621
39760
  function Scrollable(props) {
39622
39761
  var _this;
@@ -41563,9 +41702,9 @@ function sortableElement(WrappedComponent) {
41563
41702
  var css_248z$e = ".paladin-setting-row {\n margin-bottom: 10px;\n}\n.paladin-setting-row div {\n padding: 0 10px;\n box-sizing: border-box;\n height: 33px;\n}\n.paladin-setting-row button {\n width: 100%;\n height: 100%;\n}\n.paladin-sort-container {\n display: inline-block;\n}\n.paladin-sort-item {\n box-sizing: border-box;\n margin: 6px auto;\n position: relative;\n z-index: 1;\n}\n.paladin-sort-item svg {\n width: 100%;\n height: 100%;\n fill: #727882;\n}\n";
41564
41703
  styleInject$1(css_248z$e);
41565
41704
 
41566
- function _createSuper$14(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$14(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
41705
+ function _createSuper$15(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$15(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
41567
41706
 
41568
- function _isNativeReflectConstruct$14() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
41707
+ function _isNativeReflectConstruct$15() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
41569
41708
  var SortableItem = sortableElement(function (_ref) {
41570
41709
  var value = _ref.value,
41571
41710
  size = _ref.size;
@@ -41595,7 +41734,7 @@ var SortableList = sortableContainer(function (_ref2) {
41595
41734
  var SettingModal = /*#__PURE__*/function (_Component) {
41596
41735
  inherits(SettingModal, _Component);
41597
41736
 
41598
- var _super = _createSuper$14(SettingModal);
41737
+ var _super = _createSuper$15(SettingModal);
41599
41738
 
41600
41739
  function SettingModal(props) {
41601
41740
  classCallCheck(this, SettingModal);
@@ -41722,14 +41861,14 @@ const SvgCaretRight = props => /*#__PURE__*/React__default.createElement("svg",
41722
41861
  var css_248z$f = ".lightHoverStyle {\n background-color: #d4d4d4;\n color: #333;\n}\n.darkHoverStyle {\n color: black !important;\n background-color: #a4a4a4;\n border-color: #8c8c8c;\n}\n.paladin-tool-button,\n.paladin-tool-button-nohover {\n text-align: center;\n width: 64px;\n height: 56px;\n color: white;\n line-height: 56px;\n cursor: pointer;\n}\n.paladin-tool-button:active,\n.paladin-tool-button-nohover:active {\n background-color: #d4d4d4;\n color: #333;\n}\n.paladin-show-more-button,\n.paladin-show-more-button-nohover {\n display: flex;\n flex-direction: column;\n width: 20px;\n height: 56px;\n line-height: 56px;\n justify-content: center;\n align-items: center;\n color: white;\n cursor: pointer;\n}\n.paladin-show-more-button:hover,\n.paladin-tool-button:hover,\n.paladin-more-active {\n color: black !important;\n background-color: #a4a4a4;\n border-color: #8c8c8c;\n}\n.paladin-tool-active {\n background-color: #d4d4d4;\n color: #333;\n}\n.paladin-tool-active:hover {\n background-color: #d4d4d4;\n color: #333;\n}\n.paladin-dicomToolItem-text {\n height: 100%;\n display: inline-block;\n}\n";
41723
41862
  styleInject$1(css_248z$f);
41724
41863
 
41725
- function _createSuper$15(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$15(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
41864
+ function _createSuper$16(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$16(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
41726
41865
 
41727
- function _isNativeReflectConstruct$15() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
41866
+ function _isNativeReflectConstruct$16() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
41728
41867
 
41729
41868
  var DicomToolItem = /*#__PURE__*/function (_Component) {
41730
41869
  inherits(DicomToolItem, _Component);
41731
41870
 
41732
- var _super = _createSuper$15(DicomToolItem);
41871
+ var _super = _createSuper$16(DicomToolItem);
41733
41872
 
41734
41873
  function DicomToolItem(props) {
41735
41874
  var _this;
@@ -41943,14 +42082,14 @@ function ownKeys$w(object, enumerableOnly) { var keys = Object.keys(object); if
41943
42082
 
41944
42083
  function _objectSpread$x(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys$w(Object(source), true).forEach(function (key) { defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys$w(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
41945
42084
 
41946
- function _createSuper$16(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$16(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
42085
+ function _createSuper$17(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$17(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
41947
42086
 
41948
- function _isNativeReflectConstruct$16() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
42087
+ function _isNativeReflectConstruct$17() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
41949
42088
 
41950
42089
  var DicomToolLineMode = /*#__PURE__*/function (_Component) {
41951
42090
  inherits(DicomToolLineMode, _Component);
41952
42091
 
41953
- var _super = _createSuper$16(DicomToolLineMode);
42092
+ var _super = _createSuper$17(DicomToolLineMode);
41954
42093
 
41955
42094
  function DicomToolLineMode(props) {
41956
42095
  var _this;
@@ -42195,14 +42334,14 @@ var DicomToolLineMode = /*#__PURE__*/function (_Component) {
42195
42334
  var css_248z$g = ".paladin-tool-item-plus {\n width: 46px;\n cursor: pointer;\n display: flex;\n flex-direction: column;\n border: 1px solid #252525;\n margin: 2px;\n}\n.paladin-tool-item-plus .paladin-tool-item-plus-label {\n display: flex;\n flex-direction: row;\n font-size: 12px;\n white-space: nowrap;\n color: #c0c0c0;\n margin-top: 5px;\n overflow: hidden;\n text-align: center;\n word-break: break-all;\n justify-content: center;\n}\n.paladin-tool-item-plus .paladin-tool-item-plus-icon {\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: center;\n}\n.paladin-tool-item-plus .paladin-tool-item-plus-icon svg {\n width: 22px;\n height: 22px;\n color: #c0c0c0;\n}\n.paladin-tool-item-plus .paladin-tool-item-plus-text {\n color: #fff;\n text-align: center;\n font-size: 14px;\n}\n.paladin-tool-item-plus .paladin-tool-item-plus-more {\n padding: 0 4px 0 3px;\n height: 100%;\n}\n.paladin-tool-item-plus .paladin-tool-item-plus-more svg {\n width: 7px;\n color: #c0c0c0;\n}\n.paladin-tool-item-plus .paladin-tool-item-plus-more:hover {\n background: #0d5075;\n}\n.paladin-tool-item-plus .paladin-tool-item-plus-main {\n height: 100%;\n padding: 6px 0 4px 0;\n}\n.paladin-tool-item-plus .paladin-tool-item-plus-main:hover {\n background: #0d5075;\n}\n.paladin-tool-item-plus .paladin-tool-item-plus-main:hover .paladin-tool-item-plus-label {\n color: #fff;\n}\n.paladin-tool-item-plus .paladin-tool-item-plus-main:hover .paladin-tool-item-plus-icon svg {\n color: #fff;\n}\n.paladin-tool-item-plus .paladin-tool-item-plus-main-active {\n background: #0d5075;\n}\n.paladin-tool-item-plus .paladin-tool-item-plus-main-active .paladin-tool-item-plus-label {\n color: #fff;\n}\n.paladin-tool-item-plus .paladin-tool-item-plus-main-active .paladin-tool-item-plus-icon svg {\n color: #fff;\n}\n";
42196
42335
  styleInject$1(css_248z$g);
42197
42336
 
42198
- function _createSuper$17(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$17(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
42337
+ function _createSuper$18(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$18(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
42199
42338
 
42200
- function _isNativeReflectConstruct$17() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
42339
+ function _isNativeReflectConstruct$18() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
42201
42340
 
42202
42341
  var DicomToolItemPlus = /*#__PURE__*/function (_Component) {
42203
42342
  inherits(DicomToolItemPlus, _Component);
42204
42343
 
42205
- var _super = _createSuper$17(DicomToolItemPlus);
42344
+ var _super = _createSuper$18(DicomToolItemPlus);
42206
42345
 
42207
42346
  function DicomToolItemPlus(props) {
42208
42347
  var _this;
@@ -42374,14 +42513,14 @@ const SvgQuestionSign = props => /*#__PURE__*/React__default.createElement("svg"
42374
42513
  var css_248z$h = ".paladin-vr-cine {\n min-width: 220px;\n font-size: 14px;\n color: #c0c0c0;\n background: #353535;\n padding-bottom: 8px;\n}\n.paladin-vr-cine .paladin-vr-cine-click {\n cursor: pointer;\n}\n.paladin-vr-cine .paladin-vr-cine-active {\n cursor: pointer;\n background: #0d5075;\n color: #fff;\n}\n.paladin-vr-cine .paladin-vr-cine-active svg {\n fill: #fff;\n}\n.paladin-vr-cine svg {\n width: 12px !important;\n height: 12px !important;\n fill: #c0c0c0;\n}\n.paladin-vr-cine .paladin-vr-cine-row {\n padding: 3px 0;\n width: 100%;\n height: 40px;\n}\n.paladin-vr-cine .paladin-vr-cine-speed {\n padding-left: 12px;\n}\n.paladin-vr-cine .paladin-vr-cine-speed .paladin-cine-label {\n font-size: 12px;\n justify-content: center;\n white-space: nowrap;\n}\n.paladin-vr-cine .paladin-vr-cine-speed .paladin-cine-input {\n justify-content: center;\n align-items: center;\n}\n.paladin-vr-cine .paladin-vr-cine-speed .paladin-cine-input input {\n height: 20px;\n padding: 0;\n width: 80%;\n border-color: #c0c0c0;\n color: #c0c0c0;\n}\n.paladin-vr-cine .paladin-vr-cine-angle {\n font-size: 12px;\n padding-left: 12px;\n padding-right: 5px;\n margin: 5px 0;\n}\n.paladin-vr-cine .paladin-vr-cine-angle .paladin-vr-cine-angle-item {\n border: 1px solid #666;\n margin-left: 5px;\n justify-content: center;\n align-items: center;\n}\n.paladin-vr-cine .paladin-vr-cine-angle .paladin-vr-cine-angle-item-active {\n background: #7f7f7f;\n color: #333;\n}\n";
42375
42514
  styleInject$1(css_248z$h);
42376
42515
 
42377
- function _createSuper$18(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$18(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
42516
+ function _createSuper$19(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$19(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
42378
42517
 
42379
- function _isNativeReflectConstruct$18() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
42518
+ function _isNativeReflectConstruct$19() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
42380
42519
 
42381
42520
  var Cine$1 = /*#__PURE__*/function (_Component) {
42382
42521
  inherits(Cine, _Component);
42383
42522
 
42384
- var _super = _createSuper$18(Cine);
42523
+ var _super = _createSuper$19(Cine);
42385
42524
 
42386
42525
  function Cine(props) {
42387
42526
  var _this;
@@ -42701,14 +42840,14 @@ var ConnectedVRCine = reactRedux.connect(mapStateToProps$b, {
42701
42840
  var css_248z$i = ".paladin-ImageProcessTabTool {\n background: #fff;\n border: 1px solid #5b5b5b;\n color: #53585f;\n}\n.paladin-ImageProcessTabTool-item {\n text-align: center;\n padding: 3px 15px;\n border-bottom: 1px solid #5b5b5b;\n font-size: 14px;\n}\n.paladin-ImageProcessTabTool-item:hover {\n background: #5b5b5b;\n color: #e2e2e2;\n}\n.paladin-ImageProcessTabTool-item:last-child {\n border: none;\n}\n.paladin-ImageProcessTabTool-item-active {\n text-align: center;\n padding: 3px 15px;\n border-bottom: 1px solid #5b5b5b;\n font-size: 14px;\n background: #5b5b5b;\n color: #e2e2e2;\n}\n.paladin-ImageProcessTabTool-item-active:hover {\n background: #5b5b5b;\n color: #e2e2e2;\n}\n.paladin-ImageProcessTabTool-item-active:last-child {\n border: none;\n}\n";
42702
42841
  styleInject$1(css_248z$i);
42703
42842
 
42704
- function _createSuper$19(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$19(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
42843
+ function _createSuper$1a(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1a(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
42705
42844
 
42706
- function _isNativeReflectConstruct$19() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
42845
+ function _isNativeReflectConstruct$1a() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
42707
42846
 
42708
42847
  var ImageProcessTabTool = /*#__PURE__*/function (_Component) {
42709
42848
  inherits(ImageProcessTabTool, _Component);
42710
42849
 
42711
- var _super = _createSuper$19(ImageProcessTabTool);
42850
+ var _super = _createSuper$1a(ImageProcessTabTool);
42712
42851
 
42713
42852
  function ImageProcessTabTool(props) {
42714
42853
  classCallCheck(this, ImageProcessTabTool);
@@ -42927,14 +43066,14 @@ var filterRebuildImages = function filterRebuildImages(images) {
42927
43066
  }
42928
43067
  };
42929
43068
 
42930
- function _createSuper$1a(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1a(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
43069
+ function _createSuper$1b(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1b(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
42931
43070
 
42932
- function _isNativeReflectConstruct$1a() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
43071
+ function _isNativeReflectConstruct$1b() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
42933
43072
 
42934
43073
  var ThreeDLoadingModal = /*#__PURE__*/function (_Component) {
42935
43074
  inherits(ThreeDLoadingModal, _Component);
42936
43075
 
42937
- var _super = _createSuper$1a(ThreeDLoadingModal);
43076
+ var _super = _createSuper$1b(ThreeDLoadingModal);
42938
43077
 
42939
43078
  function ThreeDLoadingModal(props) {
42940
43079
  var _this;
@@ -43203,14 +43342,14 @@ var ConnectedImageProcessTabTool = reactRedux.connect(mapStateToProps$c, {
43203
43342
  var css_248z$k = ".paladin-reference-tool {\n display: flex;\n flex-direction: column;\n box-sizing: border-box;\n flex: 1;\n color: #b0b0b0;\n font-size: 12px;\n text-align: center;\n cursor: pointer;\n padding-left: 20px;\n border: 1px solid #5b5b5b;\n border-right: none;\n}\n.paladin-reference-tool:hover {\n color: #fff;\n}\n.paladin-reference-tool-active {\n color: #fff;\n background: #0d5075;\n}\n.paladin-reference-tool-more {\n padding: 0 7px;\n height: 100%;\n}\n.paladin-reference-tool-more svg {\n width: 7px !important;\n color: #c0c0c0;\n}\n.paladin-reference-tool-more:hover {\n background: #53585f;\n}\n.paladin-reference-tool-menu {\n background: #fff;\n}\n.paladin-reference-tool-menu div {\n padding: 3px 25px;\n font-size: 14px;\n color: #53585f;\n cursor: pointer;\n white-space: nowrap;\n}\n.paladin-reference-tool-menu div:hover {\n color: #fff;\n background: #777777;\n}\n.paladin-reference-tool-menu .paladin-reference-tool-menu-match {\n color: #fff;\n background: #7f8592;\n}\n";
43204
43343
  styleInject$1(css_248z$k);
43205
43344
 
43206
- function _createSuper$1b(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1b(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
43345
+ function _createSuper$1c(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1c(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
43207
43346
 
43208
- function _isNativeReflectConstruct$1b() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
43347
+ function _isNativeReflectConstruct$1c() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
43209
43348
 
43210
43349
  var ReferenceLineTool = /*#__PURE__*/function (_Component) {
43211
43350
  inherits(ReferenceLineTool, _Component);
43212
43351
 
43213
- var _super = _createSuper$1b(ReferenceLineTool);
43352
+ var _super = _createSuper$1c(ReferenceLineTool);
43214
43353
 
43215
43354
  function ReferenceLineTool(props) {
43216
43355
  var _this;
@@ -43312,14 +43451,14 @@ var ConnectedReferenceLineTool = reactRedux.connect(mapStateToProps$d, {
43312
43451
  var css_248z$l = ".paladin-print-add-tool {\n display: flex;\n flex-direction: column;\n box-sizing: border-box;\n flex: 2;\n color: #b0b0b0;\n font-size: 12px;\n text-align: center;\n cursor: pointer;\n padding-left: 20px;\n border: 1px solid #5b5b5b;\n border-bottom: none;\n border-right: none;\n align-items: center;\n justify-content: center;\n}\n.paladin-print-add-tool:hover {\n color: #fff;\n}\n.paladin-print-add-tool-active {\n color: #fff;\n background: #0d5075;\n}\n.paladin-print-add-tool-more {\n padding: 0 7px;\n height: 100%;\n}\n.paladin-print-add-tool-more svg {\n width: 7px !important;\n color: #c0c0c0;\n}\n.paladin-print-add-tool-more:hover {\n background: #53585f;\n}\n.paladin-print-add-tool-menu {\n background: #fff;\n}\n.paladin-print-add-tool-menu div {\n padding: 3px 25px;\n font-size: 14px;\n color: #53585f;\n cursor: pointer;\n white-space: nowrap;\n}\n.paladin-print-add-tool-menu div:hover {\n color: #fff;\n background: #777777;\n}\n.paladin-print-add-tool-menu .paladin-print-add-tool-menu-match {\n color: #fff;\n background: #7f8592;\n}\n";
43313
43452
  styleInject$1(css_248z$l);
43314
43453
 
43315
- function _createSuper$1c(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1c(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
43454
+ function _createSuper$1d(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1d(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
43316
43455
 
43317
- function _isNativeReflectConstruct$1c() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
43456
+ function _isNativeReflectConstruct$1d() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
43318
43457
 
43319
43458
  var FilmPrintAddTool = /*#__PURE__*/function (_Component) {
43320
43459
  inherits(FilmPrintAddTool, _Component);
43321
43460
 
43322
- var _super = _createSuper$1c(FilmPrintAddTool);
43461
+ var _super = _createSuper$1d(FilmPrintAddTool);
43323
43462
 
43324
43463
  function FilmPrintAddTool(props) {
43325
43464
  var _this;
@@ -43580,14 +43719,14 @@ var ConnectedFilmPrintAddTool = reactRedux.connect(mapStateToProps$e, {
43580
43719
  addFilm: addFilm
43581
43720
  }, mergeProps$e)(FilmPrintAddTool);
43582
43721
 
43583
- function _createSuper$1d(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1d(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
43722
+ function _createSuper$1e(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1e(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
43584
43723
 
43585
- function _isNativeReflectConstruct$1d() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
43724
+ function _isNativeReflectConstruct$1e() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
43586
43725
 
43587
43726
  var DicomToolFlattenMode = /*#__PURE__*/function (_Component) {
43588
43727
  inherits(DicomToolFlattenMode, _Component);
43589
43728
 
43590
- var _super = _createSuper$1d(DicomToolFlattenMode);
43729
+ var _super = _createSuper$1e(DicomToolFlattenMode);
43591
43730
 
43592
43731
  function DicomToolFlattenMode(props) {
43593
43732
  var _this;
@@ -43904,14 +44043,14 @@ var LargeToolItem = function LargeToolItem(props) {
43904
44043
  }, _props), children);
43905
44044
  };
43906
44045
 
43907
- function _createSuper$1e(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1e(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
44046
+ function _createSuper$1f(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1f(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
43908
44047
 
43909
- function _isNativeReflectConstruct$1e() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
44048
+ function _isNativeReflectConstruct$1f() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
43910
44049
 
43911
44050
  var DicomToolFlattenMode$1 = /*#__PURE__*/function (_Component) {
43912
44051
  inherits(DicomToolFlattenMode, _Component);
43913
44052
 
43914
- var _super = _createSuper$1e(DicomToolFlattenMode);
44053
+ var _super = _createSuper$1f(DicomToolFlattenMode);
43915
44054
 
43916
44055
  function DicomToolFlattenMode(props) {
43917
44056
  var _this;
@@ -44267,14 +44406,14 @@ const SvgMenuUp = props => /*#__PURE__*/React__default.createElement("svg", _ext
44267
44406
  var css_248z$m = ".paladin-mobile-button,\n.paladin-mobile-button-nohover {\n text-align: center;\n width: 100%;\n height: 100%;\n color: #C9C9C9;\n cursor: pointer;\n background: #1D1D1D;\n box-sizing: border-box;\n}\n.paladin-mobile-button svg,\n.paladin-mobile-button-nohover svg {\n height: 20px !important;\n}\n.paladin-mobile-more-button,\n.paladin-mobile-more-button-nohover {\n display: flex;\n flex-direction: row;\n width: 100%;\n height: 20px;\n line-height: 20px;\n justify-content: center;\n align-items: center;\n color: #C9C9C9;\n cursor: pointer;\n background: #1D1D1D;\n}\n.paladin-tool-mobile-active {\n border-bottom: 2px solid #F5F5F5;\n color: #F5F5F5;\n}\n.paladin-mobile-more-active {\n color: #F5F5F5;\n}\n.paladin-dicomToolItem-text {\n height: 100%;\n display: inline-block;\n}\n";
44268
44407
  styleInject$1(css_248z$m);
44269
44408
 
44270
- function _createSuper$1f(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1f(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
44409
+ function _createSuper$1g(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1g(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
44271
44410
 
44272
- function _isNativeReflectConstruct$1f() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
44411
+ function _isNativeReflectConstruct$1g() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
44273
44412
 
44274
44413
  var DicomToolItemMobile = /*#__PURE__*/function (_Component) {
44275
44414
  inherits(DicomToolItemMobile, _Component);
44276
44415
 
44277
- var _super = _createSuper$1f(DicomToolItemMobile);
44416
+ var _super = _createSuper$1g(DicomToolItemMobile);
44278
44417
 
44279
44418
  function DicomToolItemMobile(props) {
44280
44419
  var _this;
@@ -44496,14 +44635,14 @@ const SvgPlay$1 = props => /*#__PURE__*/React__default.createElement("svg", _ext
44496
44635
  fill: "currentColor"
44497
44636
  }, props), _ref$1h);
44498
44637
 
44499
- function _createSuper$1g(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1g(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
44638
+ function _createSuper$1h(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1h(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
44500
44639
 
44501
- function _isNativeReflectConstruct$1g() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
44640
+ function _isNativeReflectConstruct$1h() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
44502
44641
 
44503
44642
  var MobileScrollAndCineTool = /*#__PURE__*/function (_Component) {
44504
44643
  inherits(MobileScrollAndCineTool, _Component);
44505
44644
 
44506
- var _super = _createSuper$1g(MobileScrollAndCineTool);
44645
+ var _super = _createSuper$1h(MobileScrollAndCineTool);
44507
44646
 
44508
44647
  function MobileScrollAndCineTool(props) {
44509
44648
  var _this;
@@ -44862,14 +45001,14 @@ const SvgHozRotate = props => /*#__PURE__*/React__default.createElement("svg", _
44862
45001
  fill: "currentColor"
44863
45002
  }, props), _ref$1m);
44864
45003
 
44865
- function _createSuper$1h(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1h(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
45004
+ function _createSuper$1i(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1i(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
44866
45005
 
44867
- function _isNativeReflectConstruct$1h() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
45006
+ function _isNativeReflectConstruct$1i() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
44868
45007
 
44869
45008
  var MobileMipBottomTool = /*#__PURE__*/function (_Component) {
44870
45009
  inherits(MobileMipBottomTool, _Component);
44871
45010
 
44872
- var _super = _createSuper$1h(MobileMipBottomTool);
45011
+ var _super = _createSuper$1i(MobileMipBottomTool);
44873
45012
 
44874
45013
  function MobileMipBottomTool(props) {
44875
45014
  var _this;
@@ -45123,14 +45262,14 @@ function ownKeys$E(object, enumerableOnly) { var keys = Object.keys(object); if
45123
45262
 
45124
45263
  function _objectSpread$F(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys$E(Object(source), true).forEach(function (key) { defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys$E(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
45125
45264
 
45126
- function _createSuper$1i(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1i(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
45265
+ function _createSuper$1j(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1j(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
45127
45266
 
45128
- function _isNativeReflectConstruct$1i() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
45267
+ function _isNativeReflectConstruct$1j() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
45129
45268
 
45130
45269
  var DicomToolMobileThreeModeBottom = /*#__PURE__*/function (_Component) {
45131
45270
  inherits(DicomToolMobileThreeModeBottom, _Component);
45132
45271
 
45133
- var _super = _createSuper$1i(DicomToolMobileThreeModeBottom);
45272
+ var _super = _createSuper$1j(DicomToolMobileThreeModeBottom);
45134
45273
 
45135
45274
  function DicomToolMobileThreeModeBottom(props) {
45136
45275
  var _this;
@@ -45293,9 +45432,9 @@ function ownKeys$F(object, enumerableOnly) { var keys = Object.keys(object); if
45293
45432
 
45294
45433
  function _objectSpread$G(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys$F(Object(source), true).forEach(function (key) { defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys$F(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
45295
45434
 
45296
- function _createSuper$1j(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1j(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
45435
+ function _createSuper$1k(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1k(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
45297
45436
 
45298
- function _isNativeReflectConstruct$1j() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
45437
+ function _isNativeReflectConstruct$1k() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
45299
45438
  /**
45300
45439
  * 新版手机端
45301
45440
  * mpr vr mip顶部工具栏组件
@@ -45304,7 +45443,7 @@ function _isNativeReflectConstruct$1j() { if (typeof Reflect === "undefined" ||
45304
45443
  var DicomToolMobileThreeModeHead = /*#__PURE__*/function (_Component) {
45305
45444
  inherits(DicomToolMobileThreeModeHead, _Component);
45306
45445
 
45307
- var _super = _createSuper$1j(DicomToolMobileThreeModeHead);
45446
+ var _super = _createSuper$1k(DicomToolMobileThreeModeHead);
45308
45447
 
45309
45448
  function DicomToolMobileThreeModeHead(props) {
45310
45449
  var _this;
@@ -45476,14 +45615,14 @@ var DicomToolMobileThreeModeHead = /*#__PURE__*/function (_Component) {
45476
45615
  return DicomToolMobileThreeModeHead;
45477
45616
  }(React.Component);
45478
45617
 
45479
- function _createSuper$1k(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1k(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
45618
+ function _createSuper$1l(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1l(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
45480
45619
 
45481
- function _isNativeReflectConstruct$1k() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
45620
+ function _isNativeReflectConstruct$1l() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
45482
45621
 
45483
45622
  var VRClip = /*#__PURE__*/function (_Component) {
45484
45623
  inherits(VRClip, _Component);
45485
45624
 
45486
- var _super = _createSuper$1k(VRClip);
45625
+ var _super = _createSuper$1l(VRClip);
45487
45626
 
45488
45627
  function VRClip(props) {
45489
45628
  classCallCheck(this, VRClip);
@@ -45587,14 +45726,14 @@ var ConnectedVRClip = reactRedux.connect(mapStateToProps$h, {}, mergeProps$h)(VR
45587
45726
  var css_248z$q = ".paladin-key-image-box {\n background: #fff;\n border-radius: 3px;\n}\n.paladin-key-image-box .paladin-key-image-header {\n font-size: 15px;\n font-weight: bold;\n color: #000;\n padding: 16px 18px;\n}\n.paladin-key-image-box .paladin-key-image-item {\n min-width: 320px;\n font-size: 13px;\n color: #333;\n padding: 14px 18px;\n}\n.paladin-key-image-box .paladin-key-image-item:nth-child(2n) {\n background: #f9f9f9;\n}\n.paladin-key-image-box .paladin-key-image-item .paladin-key-image-item-action {\n text-align: right;\n}\n.paladin-key-image-box .paladin-key-image-item .paladin-key-image-item-action span {\n display: inline-block;\n color: #2D78C4;\n}\n.paladin-key-image-box .paladin-key-image-item .paladin-key-image-item-action span:first-child {\n margin-right: 20px;\n}\n.paladin-key-image-preview img {\n max-width: 100%;\n}\n";
45588
45727
  styleInject$1(css_248z$q);
45589
45728
 
45590
- function _createSuper$1l(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1l(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
45729
+ function _createSuper$1m(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1m(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
45591
45730
 
45592
- function _isNativeReflectConstruct$1l() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
45731
+ function _isNativeReflectConstruct$1m() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
45593
45732
 
45594
45733
  var KeyImagesTool = /*#__PURE__*/function (_Component) {
45595
45734
  inherits(KeyImagesTool, _Component);
45596
45735
 
45597
- var _super = _createSuper$1l(KeyImagesTool);
45736
+ var _super = _createSuper$1m(KeyImagesTool);
45598
45737
 
45599
45738
  function KeyImagesTool(props) {
45600
45739
  classCallCheck(this, KeyImagesTool);
@@ -45687,14 +45826,14 @@ var ConnectedKeyImagesTool = reactRedux.connect(mapStateToProps$i, {}, mergeProp
45687
45826
  var css_248z$r = ".paladin-reference-tool-menu {\n background: #fff;\n}\n.paladin-reference-tool-menu div {\n padding: 3px 25px;\n font-size: 14px;\n color: #53585f;\n cursor: pointer;\n white-space: nowrap;\n}\n.paladin-reference-tool-menu div:hover {\n color: #fff;\n background: #777777;\n}\n.paladin-reference-tool-menu .paladin-reference-tool-menu-match {\n color: #fff;\n background: #7f8592;\n}\n";
45688
45827
  styleInject$1(css_248z$r);
45689
45828
 
45690
- function _createSuper$1m(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1m(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
45829
+ function _createSuper$1n(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1n(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
45691
45830
 
45692
- function _isNativeReflectConstruct$1m() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
45831
+ function _isNativeReflectConstruct$1n() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
45693
45832
 
45694
45833
  var ReferenceLineTool$1 = /*#__PURE__*/function (_Component) {
45695
45834
  inherits(ReferenceLineTool, _Component);
45696
45835
 
45697
- var _super = _createSuper$1m(ReferenceLineTool);
45836
+ var _super = _createSuper$1n(ReferenceLineTool);
45698
45837
 
45699
45838
  function ReferenceLineTool(props) {
45700
45839
  classCallCheck(this, ReferenceLineTool);
@@ -45766,14 +45905,14 @@ var ConnectedReferenceLineMobileTool = reactRedux.connect(mapStateToProps$j, {
45766
45905
  activeDicomFunction: activeDicomFunction
45767
45906
  }, mergeProps$j)(ReferenceLineTool$1);
45768
45907
 
45769
- function _createSuper$1n(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1n(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
45908
+ function _createSuper$1o(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1o(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
45770
45909
 
45771
- function _isNativeReflectConstruct$1n() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
45910
+ function _isNativeReflectConstruct$1o() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
45772
45911
 
45773
45912
  var DicomTool = /*#__PURE__*/function (_Component) {
45774
45913
  inherits(DicomTool, _Component);
45775
45914
 
45776
- var _super = _createSuper$1n(DicomTool);
45915
+ var _super = _createSuper$1o(DicomTool);
45777
45916
 
45778
45917
  function DicomTool(props) {
45779
45918
  var _this;
@@ -46861,14 +47000,14 @@ function ownKeys$J(object, enumerableOnly) { var keys = Object.keys(object); if
46861
47000
 
46862
47001
  function _objectSpread$K(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys$J(Object(source), true).forEach(function (key) { defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys$J(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
46863
47002
 
46864
- function _createSuper$1o(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1o(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
47003
+ function _createSuper$1p(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1p(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
46865
47004
 
46866
- function _isNativeReflectConstruct$1o() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
47005
+ function _isNativeReflectConstruct$1p() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
46867
47006
 
46868
47007
  var UserSettingModal = /*#__PURE__*/function (_Component) {
46869
47008
  inherits(UserSettingModal, _Component);
46870
47009
 
46871
- var _super = _createSuper$1o(UserSettingModal);
47010
+ var _super = _createSuper$1p(UserSettingModal);
46872
47011
 
46873
47012
  function UserSettingModal(props) {
46874
47013
  var _this;
@@ -48314,14 +48453,14 @@ const SvgRefresh$1 = props => /*#__PURE__*/React__default.createElement("svg", _
48314
48453
  var css_248z$u = ".loadingIndicator {\n position: absolute;\n top: 0;\n background: black;\n opacity: 1;\n width: 100%;\n height: 100%;\n text-align: center;\n z-index: 1;\n display: flex;\n align-items: center;\n justify-content: center;\n}\n.loadingIndicator .lds-ring {\n color: #999;\n position: absolute;\n left: 0;\n right: 0;\n top: 0;\n bottom: 0;\n width: 40px;\n height: 40px;\n margin: auto;\n}\n.loadingIndicator .lds-ring div {\n box-sizing: border-box;\n display: block;\n position: absolute;\n width: 40px;\n height: 40px;\n border: 4px solid silver;\n border-radius: 50%;\n animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;\n border-color: silver transparent transparent transparent;\n}\n.loadingIndicator .lds-ring div:nth-child(1) {\n animation-delay: -0.45s;\n}\n.loadingIndicator .lds-ring div:nth-child(2) {\n animation-delay: -0.3s;\n}\n.loadingIndicator .lds-ring div:nth-child(3) {\n animation-delay: -0.15s;\n}\n@keyframes lds-ring {\n 0% {\n transform: rotate(0deg);\n }\n 100% {\n transform: rotate(360deg);\n }\n}\n.loadingIndicator .loadingIndicator-retry {\n width: 40px;\n color: #999;\n margin: 0 auto;\n font-size: 14px;\n}\n.loadingIndicator .indicatorContents h4 {\n font-size: 18px;\n margin: 0 auto 10px 0;\n}\n.loadingIndicator .indicatorContents h5 {\n font-size: 16px;\n margin: 0 auto 10px 0;\n}\n.loadingIndicator .indicatorContents p {\n margin: 4px auto;\n color: #999;\n font-size: 14px;\n}\n.loadingIndicator .indicatorContents .loadingIndicator-retry {\n width: 40px;\n margin: 20px auto 0 auto;\n}\n.loadingIndicator .indicatorContents-mini h4 {\n color: #fff;\n font-size: 12px;\n margin: 5px 0 5px 0;\n}\n.loadingIndicator .indicatorContents-mini .loadingIndicator-retry {\n width: 20px;\n font-size: 12px;\n}\n";
48315
48454
  styleInject$1(css_248z$u);
48316
48455
 
48317
- function _createSuper$1p(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1p(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
48456
+ function _createSuper$1q(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1q(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
48318
48457
 
48319
- function _isNativeReflectConstruct$1p() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
48458
+ function _isNativeReflectConstruct$1q() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
48320
48459
 
48321
48460
  var LoadingIndicator = /*#__PURE__*/function (_PureComponent) {
48322
48461
  inherits(LoadingIndicator, _PureComponent);
48323
48462
 
48324
- var _super = _createSuper$1p(LoadingIndicator);
48463
+ var _super = _createSuper$1q(LoadingIndicator);
48325
48464
 
48326
48465
  function LoadingIndicator() {
48327
48466
  classCallCheck(this, LoadingIndicator);
@@ -48387,16 +48526,16 @@ defineProperty(LoadingIndicator, "defaultProps", {
48387
48526
  error: null
48388
48527
  });
48389
48528
 
48390
- function _createSuper$1q(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1q(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
48529
+ function _createSuper$1r(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1r(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
48391
48530
 
48392
- function _isNativeReflectConstruct$1q() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
48531
+ function _isNativeReflectConstruct$1r() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
48393
48532
  var loadIndicatorDelay = 300;
48394
48533
  var isMobile$2 = ua.isDeviceTypeMobile();
48395
48534
 
48396
48535
  var ThumbnailViewport = /*#__PURE__*/function (_Component) {
48397
48536
  inherits(ThumbnailViewport, _Component);
48398
48537
 
48399
- var _super = _createSuper$1q(ThumbnailViewport);
48538
+ var _super = _createSuper$1r(ThumbnailViewport);
48400
48539
 
48401
48540
  function ThumbnailViewport(props) {
48402
48541
  var _this;
@@ -48536,9 +48675,9 @@ var ThumbnailViewport = /*#__PURE__*/function (_Component) {
48536
48675
  return ThumbnailViewport;
48537
48676
  }(React.Component);
48538
48677
 
48539
- function _createSuper$1r(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1r(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
48678
+ function _createSuper$1s(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1s(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
48540
48679
 
48541
- function _isNativeReflectConstruct$1r() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
48680
+ function _isNativeReflectConstruct$1s() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
48542
48681
  var isMobile$3 = ua.isDeviceTypeMobile();
48543
48682
 
48544
48683
  var ThumbContent = function ThumbContent(props) {
@@ -48584,7 +48723,7 @@ var ThumbContent = function ThumbContent(props) {
48584
48723
  var DicomThumbnailLayout = /*#__PURE__*/function (_Component) {
48585
48724
  inherits(DicomThumbnailLayout, _Component);
48586
48725
 
48587
- var _super = _createSuper$1r(DicomThumbnailLayout);
48726
+ var _super = _createSuper$1s(DicomThumbnailLayout);
48588
48727
 
48589
48728
  function DicomThumbnailLayout(props) {
48590
48729
  var _this;
@@ -48895,9 +49034,9 @@ function getPixelSpacing$9(imageId) {
48895
49034
  };
48896
49035
  }
48897
49036
 
48898
- function _createSuper$1s(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1s(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
49037
+ function _createSuper$1t(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1t(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
48899
49038
 
48900
- function _isNativeReflectConstruct$1s() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
49039
+ function _isNativeReflectConstruct$1t() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
48901
49040
 
48902
49041
  var getCompression = function getCompression(dicom) {
48903
49042
  var lossyImageCompression = dicom.LossyImageCompression.toString(),
@@ -49021,7 +49160,7 @@ var formatDicomInfo = function formatDicomInfo(label, value) {
49021
49160
  var ViewportOverlay = /*#__PURE__*/function (_PureComponent) {
49022
49161
  inherits(ViewportOverlay, _PureComponent);
49023
49162
 
49024
- var _super = _createSuper$1s(ViewportOverlay);
49163
+ var _super = _createSuper$1t(ViewportOverlay);
49025
49164
 
49026
49165
  function ViewportOverlay(props) {
49027
49166
  var _this;
@@ -49351,14 +49490,14 @@ const SvgChevronDown = props => /*#__PURE__*/React__default.createElement("svg",
49351
49490
  var css_248z$x = ".paladin-aiTips-wrapper {\n width: 100%;\n height: 100%;\n}\n.paladin-aiTips-content {\n width: 1px;\n height: 100%;\n background: #ffff00;\n position: absolute;\n top: 0;\n}\n";
49352
49491
  styleInject$1(css_248z$x);
49353
49492
 
49354
- function _createSuper$1t(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1t(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
49493
+ function _createSuper$1u(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1u(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
49355
49494
 
49356
- function _isNativeReflectConstruct$1t() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
49495
+ function _isNativeReflectConstruct$1u() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
49357
49496
 
49358
49497
  var AITips = /*#__PURE__*/function (_Component) {
49359
49498
  inherits(AITips, _Component);
49360
49499
 
49361
- var _super = _createSuper$1t(AITips);
49500
+ var _super = _createSuper$1u(AITips);
49362
49501
 
49363
49502
  function AITips() {
49364
49503
  classCallCheck(this, AITips);
@@ -49395,14 +49534,14 @@ defineProperty(AITips, "propTypes", {
49395
49534
  data: PropTypes$1.any
49396
49535
  });
49397
49536
 
49398
- function _createSuper$1u(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1u(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
49537
+ function _createSuper$1v(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1v(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
49399
49538
 
49400
- function _isNativeReflectConstruct$1u() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
49539
+ function _isNativeReflectConstruct$1v() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
49401
49540
 
49402
49541
  var CustomScroll = /*#__PURE__*/function (_Component) {
49403
49542
  inherits(CustomScroll, _Component);
49404
49543
 
49405
- var _super = _createSuper$1u(CustomScroll);
49544
+ var _super = _createSuper$1v(CustomScroll);
49406
49545
 
49407
49546
  function CustomScroll(props) {
49408
49547
  var _this;
@@ -49986,7 +50125,7 @@ function _createForOfIteratorHelper$b(o, allowArrayLike) { var it; if (typeof Sy
49986
50125
  function _unsupportedIterableToArray$d(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray$d(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray$d(o, minLen); }
49987
50126
 
49988
50127
  function _arrayLikeToArray$d(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }
49989
- var external$w = cornerstoneTools.external;
50128
+ var external$x = cornerstoneTools.external;
49990
50129
 
49991
50130
  function processCentesisPath(imageId) {
49992
50131
  var _imageId$split = imageId.split(':'),
@@ -50018,7 +50157,7 @@ function processCentesisPath(imageId) {
50018
50157
  try {
50019
50158
  for (_iterator.s(); !(_step = _iterator.n()).done;) {
50020
50159
  var element = _step.value;
50021
- external$w.cornerstone.triggerEvent(element, 'MPR_REFERENCE_LINE', {
50160
+ external$x.cornerstone.triggerEvent(element, 'MPR_REFERENCE_LINE', {
50022
50161
  images: images,
50023
50162
  source: imageOrientationPatient
50024
50163
  });
@@ -50033,14 +50172,14 @@ function processCentesisPath(imageId) {
50033
50172
  var css_248z$z = ".paladin-thickness-container {\n cursor: pointer;\n display: flex;\n justify-content: center;\n align-items: center;\n width: 100px;\n height: 16px;\n background-color: #505050;\n color: #888;\n font-size: 13px;\n}\n.paladin-thickness-selecter {\n padding: 5px 0;\n background-color: #333;\n color: #c8c8c8;\n font-size: 12px;\n}\n.paladin-thickness-selecter .paladin-thickness-select-item {\n padding: 3px 20px;\n cursor: pointer;\n}\n.paladin-thickness-selecter .paladin-thickness-select-item:hover {\n background-color: #fff;\n color: #000;\n}\n.paladin-thickness-selecter .paladin-thickness-select-mpr {\n border-bottom: 1px solid #ffffff;\n padding: 3px 20px 8px 20px;\n}\n";
50034
50173
  styleInject$1(css_248z$z);
50035
50174
 
50036
- function _createSuper$1v(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1v(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
50175
+ function _createSuper$1w(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1w(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
50037
50176
 
50038
- function _isNativeReflectConstruct$1v() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
50177
+ function _isNativeReflectConstruct$1w() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
50039
50178
 
50040
50179
  var ThicknessSelectMain = /*#__PURE__*/function (_Component) {
50041
50180
  inherits(ThicknessSelectMain, _Component);
50042
50181
 
50043
- var _super = _createSuper$1v(ThicknessSelectMain);
50182
+ var _super = _createSuper$1w(ThicknessSelectMain);
50044
50183
 
50045
50184
  function ThicknessSelectMain(props) {
50046
50185
  var _this;
@@ -50127,7 +50266,7 @@ var ThicknessSelectMain = /*#__PURE__*/function (_Component) {
50127
50266
  return ThicknessSelectMain;
50128
50267
  }(React.Component);
50129
50268
 
50130
- var external$x = cornerstoneTools.external;
50269
+ var external$y = cornerstoneTools.external;
50131
50270
 
50132
50271
  function newImageIdSpecificToolStateManager() {
50133
50272
  var toolState = {};
@@ -50151,7 +50290,7 @@ function newImageIdSpecificToolStateManager() {
50151
50290
 
50152
50291
 
50153
50292
  function addElementToolState(element, toolName, data) {
50154
- var enabledElement = external$x.cornerstone.getEnabledElement(element); // If we don't have an image for this element exit early
50293
+ var enabledElement = external$y.cornerstone.getEnabledElement(element); // If we don't have an image for this element exit early
50155
50294
 
50156
50295
  if (!enabledElement.uuid) {
50157
50296
  return;
@@ -50180,7 +50319,7 @@ function newImageIdSpecificToolStateManager() {
50180
50319
  }
50181
50320
 
50182
50321
  function getElementToolState(element, toolName) {
50183
- var enabledElement = external$x.cornerstone.getEnabledElement(element); // If the element does not have an image return undefined.
50322
+ var enabledElement = external$y.cornerstone.getEnabledElement(element); // If the element does not have an image return undefined.
50184
50323
 
50185
50324
  if (!enabledElement.uuid) {
50186
50325
  return;
@@ -50208,7 +50347,7 @@ function newImageIdSpecificToolStateManager() {
50208
50347
 
50209
50348
 
50210
50349
  function setElementToolState(element, toolName, data) {
50211
- var enabledElement = external$x.cornerstone.getEnabledElement(element);
50350
+ var enabledElement = external$y.cornerstone.getEnabledElement(element);
50212
50351
 
50213
50352
  if (!enabledElement.image) {
50214
50353
  return;
@@ -50226,7 +50365,7 @@ function newImageIdSpecificToolStateManager() {
50226
50365
 
50227
50366
 
50228
50367
  function clearElementToolState(element) {
50229
- var enabledElement = external$x.cornerstone.getEnabledElement(element);
50368
+ var enabledElement = external$y.cornerstone.getEnabledElement(element);
50230
50369
 
50231
50370
  if (!enabledElement.image) {
50232
50371
  return;
@@ -50280,7 +50419,8 @@ var dicomToolDefaultProps = {
50280
50419
  }, {
50281
50420
  name: 'Wwwc',
50282
50421
  mouseButtonMasks: [1]
50283
- }, {
50422
+ }, // {name: 'ShutterShape'},
50423
+ {
50284
50424
  name: 'Length',
50285
50425
  mouseButtonMasks: [1]
50286
50426
  }, {
@@ -50418,7 +50558,8 @@ function getCustomAvailableTools(data) {
50418
50558
  }
50419
50559
  },
50420
50560
  mouseButtonMasks: stackScrollMask
50421
- }, {
50561
+ }, // {name: 'ShutterShape'},
50562
+ {
50422
50563
  name: 'Length',
50423
50564
  mouseButtonMasks: [1]
50424
50565
  }, {
@@ -50487,9 +50628,9 @@ function ownKeys$M(object, enumerableOnly) { var keys = Object.keys(object); if
50487
50628
 
50488
50629
  function _objectSpread$N(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys$M(Object(source), true).forEach(function (key) { defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys$M(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
50489
50630
 
50490
- function _createSuper$1w(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1w(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
50631
+ function _createSuper$1x(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1x(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
50491
50632
 
50492
- function _isNativeReflectConstruct$1w() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
50633
+ function _isNativeReflectConstruct$1x() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
50493
50634
  var EVENT_RESIZE = 'resize';
50494
50635
  var loadIndicatorDelay$1 = 300;
50495
50636
  var loadHandlerManager$1 = cornerstoneTools.loadHandlerManager;
@@ -50529,7 +50670,7 @@ function initializeTools(cornerstoneTools, tools, element) {
50529
50670
  var DicomViewport = /*#__PURE__*/function (_Component) {
50530
50671
  inherits(DicomViewport, _Component);
50531
50672
 
50532
- var _super = _createSuper$1w(DicomViewport);
50673
+ var _super = _createSuper$1x(DicomViewport);
50533
50674
 
50534
50675
  function DicomViewport(_props) {
50535
50676
  var _this;
@@ -50960,6 +51101,7 @@ var DicomViewport = /*#__PURE__*/function (_Component) {
50960
51101
 
50961
51102
 
50962
51103
  _this.initSync(); // 开启方位
51104
+ // cornerstoneTools.setToolActiveForElement(this.element, 'ShutterShape');
50963
51105
 
50964
51106
 
50965
51107
  cornerstoneTools.setToolActiveForElement(_this.element, 'OrientationMarkers');
@@ -51068,7 +51210,9 @@ var DicomViewport = /*#__PURE__*/function (_Component) {
51068
51210
  _this.initReferencePosition(); // 处理sync的初始化
51069
51211
 
51070
51212
 
51071
- _this.initSync(); // 开启方位
51213
+ _this.initSync(); // 遮罩
51214
+ // cornerstoneTools.setToolActiveForElement(this.element, 'ShutterShape');
51215
+ // 开启方位
51072
51216
 
51073
51217
 
51074
51218
  cornerstoneTools.setToolActiveForElement(_this.element, 'OrientationMarkers');
@@ -52287,9 +52431,9 @@ function _unsupportedIterableToArray$e(o, minLen) { if (!o) return; if (typeof o
52287
52431
 
52288
52432
  function _arrayLikeToArray$e(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }
52289
52433
 
52290
- function _createSuper$1x(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1x(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
52434
+ function _createSuper$1y(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1y(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
52291
52435
 
52292
- function _isNativeReflectConstruct$1x() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
52436
+ function _isNativeReflectConstruct$1y() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
52293
52437
 
52294
52438
  var EmptyElement = function EmptyElement(_ref) {
52295
52439
  var col = _ref.col;
@@ -52306,7 +52450,7 @@ var isMobile$4 = ua.isDeviceTypeMobile();
52306
52450
  var DicomLayout = /*#__PURE__*/function (_Component) {
52307
52451
  inherits(DicomLayout, _Component);
52308
52452
 
52309
- var _super = _createSuper$1x(DicomLayout);
52453
+ var _super = _createSuper$1y(DicomLayout);
52310
52454
 
52311
52455
  function DicomLayout(props) {
52312
52456
  var _this;
@@ -52370,7 +52514,9 @@ var DicomLayout = /*#__PURE__*/function (_Component) {
52370
52514
 
52371
52515
  defineProperty(assertThisInitialized(_this), "handleViewPortClick", function (e, index) {
52372
52516
  e.persist();
52373
- var series = _this.props.series;
52517
+ var _this$props3 = _this.props,
52518
+ series = _this$props3.series,
52519
+ activeTool = _this$props3.activeTool;
52374
52520
  var $event = e;
52375
52521
 
52376
52522
  if (_this.clickCount === 2) {
@@ -52399,6 +52545,10 @@ var DicomLayout = /*#__PURE__*/function (_Component) {
52399
52545
  if (_this.clickCount === 1) {
52400
52546
  // 单击
52401
52547
  if (!ctrlKey) {
52548
+ if (activeTool && lodash$1.includes(LengthToolsWithMeasure, activeTool)) {
52549
+ return;
52550
+ }
52551
+
52402
52552
  if (_this.checkClickArea(5, _this.mouseDownclientX, _this.mouseDownclientY, clientX, clientY)) {
52403
52553
  _this.props.onViewPortCellClick && _this.props.onViewPortCellClick($event, index, series[index]);
52404
52554
  }
@@ -52495,22 +52645,22 @@ var DicomLayout = /*#__PURE__*/function (_Component) {
52495
52645
  value: function render() {
52496
52646
  var _this2 = this;
52497
52647
 
52498
- var _this$props3 = this.props,
52499
- series = _this$props3.series,
52500
- seriesTotalCount = _this$props3.seriesTotalCount,
52501
- activeIndex = _this$props3.activeIndex,
52502
- row = _this$props3.row,
52503
- col = _this$props3.col,
52504
- currentScrollLine = _this$props3.currentScrollLine,
52505
- linkedIndexArr = _this$props3.linkedIndexArr,
52506
- showVerticalScroll = _this$props3.showVerticalScroll,
52507
- showOverlayText = _this$props3.showOverlayText,
52508
- showCustomScroll = _this$props3.showCustomScroll,
52509
- scrollWidth = _this$props3.scrollWidth,
52510
- scrollType = _this$props3.scrollType,
52511
- handleViewportState = _this$props3.handleViewportState,
52512
- handleCtrlSelect = _this$props3.handleCtrlSelect,
52513
- getCacheViewport = _this$props3.getCacheViewport; // 是否显示viewport上的文字
52648
+ var _this$props4 = this.props,
52649
+ series = _this$props4.series,
52650
+ seriesTotalCount = _this$props4.seriesTotalCount,
52651
+ activeIndex = _this$props4.activeIndex,
52652
+ row = _this$props4.row,
52653
+ col = _this$props4.col,
52654
+ currentScrollLine = _this$props4.currentScrollLine,
52655
+ linkedIndexArr = _this$props4.linkedIndexArr,
52656
+ showVerticalScroll = _this$props4.showVerticalScroll,
52657
+ showOverlayText = _this$props4.showOverlayText,
52658
+ showCustomScroll = _this$props4.showCustomScroll,
52659
+ scrollWidth = _this$props4.scrollWidth,
52660
+ scrollType = _this$props4.scrollType,
52661
+ handleViewportState = _this$props4.handleViewportState,
52662
+ handleCtrlSelect = _this$props4.handleCtrlSelect,
52663
+ getCacheViewport = _this$props4.getCacheViewport; // 是否显示viewport上的文字
52514
52664
 
52515
52665
  var _showOverlayText = row === 4 && col === 4 ? false : showOverlayText;
52516
52666
 
@@ -53206,14 +53356,14 @@ var ConnectedDicomImageModeLayout = reactRedux.connect(mapStateToProps$o, mapDis
53206
53356
  var css_248z$B = ".paladin-dicom-layout {\n display: flex;\n flex-wrap: wrap;\n height: 100%;\n flex: 1;\n}\n.paladin-dicom-layout-warp {\n display: flex;\n flex: 1;\n width: 100%;\n height: 100%;\n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n}\n";
53207
53357
  styleInject$1(css_248z$B);
53208
53358
 
53209
- function _createSuper$1y(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1y(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
53359
+ function _createSuper$1z(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1z(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
53210
53360
 
53211
- function _isNativeReflectConstruct$1y() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
53361
+ function _isNativeReflectConstruct$1z() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
53212
53362
 
53213
53363
  var SurgeryLayout = /*#__PURE__*/function (_Component) {
53214
53364
  inherits(SurgeryLayout, _Component);
53215
53365
 
53216
- var _super = _createSuper$1y(SurgeryLayout);
53366
+ var _super = _createSuper$1z(SurgeryLayout);
53217
53367
 
53218
53368
  function SurgeryLayout(props) {
53219
53369
  var _this;
@@ -53917,14 +54067,14 @@ var ConnectedSurgeryLayout = reactRedux.connect(mapStateToProps$p, {
53917
54067
  var css_248z$C = ".paladin-dicom-layout {\n display: flex;\n flex-wrap: wrap;\n height: 100%;\n flex: 1;\n}\n.paladin-dicom-layout-warp {\n display: flex;\n flex: 1;\n width: 100%;\n height: 100%;\n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n}\n";
53918
54068
  styleInject$1(css_248z$C);
53919
54069
 
53920
- function _createSuper$1z(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1z(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
54070
+ function _createSuper$1A(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1A(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
53921
54071
 
53922
- function _isNativeReflectConstruct$1z() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
54072
+ function _isNativeReflectConstruct$1A() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
53923
54073
 
53924
54074
  var CPRLayout = /*#__PURE__*/function (_Component) {
53925
54075
  inherits(CPRLayout, _Component);
53926
54076
 
53927
- var _super = _createSuper$1z(CPRLayout);
54077
+ var _super = _createSuper$1A(CPRLayout);
53928
54078
 
53929
54079
  function CPRLayout(props) {
53930
54080
  var _this;
@@ -54254,14 +54404,14 @@ styleInject$1(css_248z$D);
54254
54404
  var css_248z$E = ".image-processing-container {\n position: absolute;\n width: 100%;\n height: 100%;\n text-align: center;\n background: black;\n display: flex;\n align-items: center;\n justify-content: space-around;\n flex-direction: column;\n z-index: 999;\n}\n.image-processing-container-content {\n cursor: pointer;\n}\n.image-processing-container-content svg {\n width: 50px;\n height: 50px;\n display: block;\n margin: 15px auto 0 auto;\n color: #999;\n}\n.paladin-three-wrapper {\n width: 100%;\n height: 100%;\n color: white;\n display: flex;\n}\n.paladin-three-horizontal-left {\n width: 66.6%;\n height: 100%;\n}\n.paladin-three-horizontal-right {\n width: 33.4%;\n height: 100%;\n display: flex;\n flex-direction: column;\n}\n.paladin-three-vertical-top {\n width: 100%;\n height: 66.6%;\n flex-direction: row;\n}\n.paladin-three-vertical-bottom {\n width: 100%;\n height: 33.4%;\n display: flex;\n flex-direction: row;\n}\n.paladin-three-height-55 {\n width: 100%;\n height: 55%;\n}\n.paladin-three-height-45 {\n width: 100%;\n height: 45%;\n}\n.paladin-three-height-50 {\n width: 100%;\n height: 50%;\n}\n.paladin-three-width-50 {\n width: 50%;\n height: 100%;\n}\n.paladin-three-height-33 {\n width: 100%;\n height: 33.333%;\n}\n.paladin-three-width-33 {\n height: 100%;\n width: 33.333%;\n}\n.paladin-three-relative {\n position: relative;\n}\n.mip-wwwc {\n position: absolute;\n bottom: 15px;\n left: 15px;\n}\n.mip-wwwc p {\n color: #ffffff;\n margin: 0;\n text-align: right;\n}\n";
54255
54405
  styleInject$1(css_248z$E);
54256
54406
 
54257
- function _createSuper$1A(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1A(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
54407
+ function _createSuper$1B(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1B(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
54258
54408
 
54259
- function _isNativeReflectConstruct$1A() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
54409
+ function _isNativeReflectConstruct$1B() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
54260
54410
 
54261
54411
  var ThreeDLayout = /*#__PURE__*/function (_Component) {
54262
54412
  inherits(ThreeDLayout, _Component);
54263
54413
 
54264
- var _super = _createSuper$1A(ThreeDLayout);
54414
+ var _super = _createSuper$1B(ThreeDLayout);
54265
54415
 
54266
54416
  function ThreeDLayout(props) {
54267
54417
  var _this;
@@ -54569,6 +54719,7 @@ var ThreeDLayout = /*#__PURE__*/function (_Component) {
54569
54719
  onViewPortCellClick(transverseIndex);
54570
54720
  },
54571
54721
  onDoubleClick: function onDoubleClick() {
54722
+ if (VR) return;
54572
54723
  onViewPortCellDoubleClick(ImagePlanDirection.Transverse);
54573
54724
  },
54574
54725
  setViewportState: handleViewportState,
@@ -54588,6 +54739,7 @@ var ThreeDLayout = /*#__PURE__*/function (_Component) {
54588
54739
  onViewPortCellClick(sagittalIndex);
54589
54740
  },
54590
54741
  onDoubleClick: function onDoubleClick() {
54742
+ if (VR) return;
54591
54743
  onViewPortCellDoubleClick(ImagePlanDirection.Sagittal);
54592
54744
  },
54593
54745
  setViewportState: handleViewportState,
@@ -54607,6 +54759,7 @@ var ThreeDLayout = /*#__PURE__*/function (_Component) {
54607
54759
  onViewPortCellClick(coronalIndex);
54608
54760
  },
54609
54761
  onDoubleClick: function onDoubleClick() {
54762
+ if (VR) return;
54610
54763
  onViewPortCellDoubleClick(ImagePlanDirection.Coronal);
54611
54764
  },
54612
54765
  setViewportState: handleViewportState,
@@ -54731,14 +54884,14 @@ function _unsupportedIterableToArray$f(o, minLen) { if (!o) return; if (typeof o
54731
54884
 
54732
54885
  function _arrayLikeToArray$f(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }
54733
54886
 
54734
- function _createSuper$1B(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1B(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
54887
+ function _createSuper$1C(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1C(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
54735
54888
 
54736
- function _isNativeReflectConstruct$1B() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
54889
+ function _isNativeReflectConstruct$1C() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
54737
54890
 
54738
54891
  var ThreeDLayout$1 = /*#__PURE__*/function (_Component) {
54739
54892
  inherits(ThreeDLayout, _Component);
54740
54893
 
54741
- var _super = _createSuper$1B(ThreeDLayout);
54894
+ var _super = _createSuper$1C(ThreeDLayout);
54742
54895
 
54743
54896
  function ThreeDLayout(props) {
54744
54897
  var _this;
@@ -55025,14 +55178,14 @@ var mergeProps$r = function mergeProps(propsFromState, propsFromDispatch, ownPro
55025
55178
 
55026
55179
  var ConnectedVR = reactRedux.connect(mapStateToProps$s, {}, mergeProps$r)(ThreeDLayout$1);
55027
55180
 
55028
- function _createSuper$1C(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1C(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
55181
+ function _createSuper$1D(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1D(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
55029
55182
 
55030
- function _isNativeReflectConstruct$1C() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
55183
+ function _isNativeReflectConstruct$1D() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
55031
55184
 
55032
55185
  var MIPLayout = /*#__PURE__*/function (_Component) {
55033
55186
  inherits(MIPLayout, _Component);
55034
55187
 
55035
- var _super = _createSuper$1C(MIPLayout);
55188
+ var _super = _createSuper$1D(MIPLayout);
55036
55189
 
55037
55190
  function MIPLayout(props) {
55038
55191
  var _this;
@@ -55595,14 +55748,14 @@ const SvgPrintSetting = props => /*#__PURE__*/React__default.createElement("svg"
55595
55748
  fill: "currentColor"
55596
55749
  }, props), _ref$1v, _ref2$g);
55597
55750
 
55598
- function _createSuper$1D(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1D(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
55751
+ function _createSuper$1E(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1E(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
55599
55752
 
55600
- function _isNativeReflectConstruct$1D() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
55753
+ function _isNativeReflectConstruct$1E() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
55601
55754
 
55602
55755
  var Layout$1 = /*#__PURE__*/function (_Component) {
55603
55756
  inherits(Layout, _Component);
55604
55757
 
55605
- var _super = _createSuper$1D(Layout);
55758
+ var _super = _createSuper$1E(Layout);
55606
55759
 
55607
55760
  function Layout(props) {
55608
55761
  classCallCheck(this, Layout);
@@ -60673,20 +60826,20 @@ function _inherits$3(subClass, superClass) { if (typeof superClass !== "function
60673
60826
 
60674
60827
  function _setPrototypeOf$1(o, p) { _setPrototypeOf$1 = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf$1(o, p); }
60675
60828
 
60676
- function _createSuper$1E(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1E(); return function _createSuperInternal() { var Super = _getPrototypeOf$1(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf$1(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn$3(this, result); }; }
60829
+ function _createSuper$1F(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1F(); return function _createSuperInternal() { var Super = _getPrototypeOf$1(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf$1(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn$3(this, result); }; }
60677
60830
 
60678
60831
  function _possibleConstructorReturn$3(self, call) { if (call && (_typeof$3(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized$2(self); }
60679
60832
 
60680
60833
  function _assertThisInitialized$2(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
60681
60834
 
60682
- function _isNativeReflectConstruct$1E() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
60835
+ function _isNativeReflectConstruct$1F() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
60683
60836
 
60684
60837
  function _getPrototypeOf$1(o) { _getPrototypeOf$1 = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf$1(o); }
60685
60838
 
60686
60839
  var ContainerRender = /*#__PURE__*/function (_React$Component) {
60687
60840
  _inherits$3(ContainerRender, _React$Component);
60688
60841
 
60689
- var _super = _createSuper$1E(ContainerRender);
60842
+ var _super = _createSuper$1F(ContainerRender);
60690
60843
 
60691
60844
  function ContainerRender() {
60692
60845
  var _this;
@@ -60795,20 +60948,20 @@ function _inherits$4(subClass, superClass) { if (typeof superClass !== "function
60795
60948
 
60796
60949
  function _setPrototypeOf$2(o, p) { _setPrototypeOf$2 = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf$2(o, p); }
60797
60950
 
60798
- function _createSuper$1F(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1F(); return function _createSuperInternal() { var Super = _getPrototypeOf$2(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf$2(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn$4(this, result); }; }
60951
+ function _createSuper$1G(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1G(); return function _createSuperInternal() { var Super = _getPrototypeOf$2(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf$2(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn$4(this, result); }; }
60799
60952
 
60800
60953
  function _possibleConstructorReturn$4(self, call) { if (call && (_typeof$4(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized$3(self); }
60801
60954
 
60802
60955
  function _assertThisInitialized$3(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
60803
60956
 
60804
- function _isNativeReflectConstruct$1F() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
60957
+ function _isNativeReflectConstruct$1G() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
60805
60958
 
60806
60959
  function _getPrototypeOf$2(o) { _getPrototypeOf$2 = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf$2(o); }
60807
60960
 
60808
60961
  var Portal = /*#__PURE__*/function (_React$Component) {
60809
60962
  _inherits$4(Portal, _React$Component);
60810
60963
 
60811
- var _super = _createSuper$1F(Portal);
60964
+ var _super = _createSuper$1G(Portal);
60812
60965
 
60813
60966
  function Portal() {
60814
60967
  _classCallCheck$4(this, Portal);
@@ -65775,14 +65928,14 @@ var FILM_PAGE_DIC = [{
65775
65928
  var css_248z$G = ".paladin-film-tool-item {\n width: 46px;\n cursor: pointer;\n display: flex;\n flex-direction: column;\n border: 1px solid #252525;\n background: #252525;\n margin: 2px;\n}\n.paladin-film-tool-item .paladin-tool-item-plus-label {\n display: flex;\n flex-direction: row;\n font-size: 12px;\n white-space: nowrap;\n color: #c0c0c0;\n margin-top: 5px;\n overflow: hidden;\n text-align: center;\n word-break: break-all;\n justify-content: center;\n}\n.paladin-film-tool-item .paladin-tool-item-plus-icon {\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: center;\n}\n.paladin-film-tool-item .paladin-tool-item-plus-icon svg {\n width: 22px;\n height: 22px;\n color: #c0c0c0;\n}\n.paladin-film-tool-item .paladin-tool-item-plus-text {\n color: #fff;\n text-align: center;\n font-size: 14px;\n}\n.paladin-film-tool-item .paladin-tool-item-plus-more {\n padding: 0 4px 0 3px;\n height: 100%;\n}\n.paladin-film-tool-item .paladin-tool-item-plus-more svg {\n width: 7px;\n color: #c0c0c0;\n}\n.paladin-film-tool-item .paladin-tool-item-plus-more:hover {\n background: #0d5075;\n}\n.paladin-film-tool-item .paladin-tool-item-plus-main {\n height: 100%;\n}\n.paladin-film-tool-item .paladin-tool-item-plus-main:hover {\n background: #0d5075;\n}\n.paladin-film-tool-item .paladin-tool-item-plus-main:hover .paladin-tool-item-plus-label {\n color: #fff;\n}\n.paladin-film-tool-item .paladin-tool-item-plus-main:hover .paladin-tool-item-plus-icon svg {\n color: #fff;\n}\n.paladin-film-tool-item .paladin-tool-item-plus-main .paladin-tool-item-content {\n padding: 6px;\n}\n.paladin-film-tool-item .paladin-tool-item-plus-main-active {\n background: #0d5075;\n}\n.paladin-film-tool-item .paladin-tool-item-plus-main-active .paladin-tool-item-plus-label {\n color: #fff;\n}\n.paladin-film-tool-item .paladin-tool-item-plus-main-active .paladin-tool-item-plus-icon svg {\n color: #fff;\n}\n";
65776
65929
  styleInject$1(css_248z$G);
65777
65930
 
65778
- function _createSuper$1G(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1G(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
65931
+ function _createSuper$1H(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1H(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
65779
65932
 
65780
- function _isNativeReflectConstruct$1G() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
65933
+ function _isNativeReflectConstruct$1H() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
65781
65934
 
65782
65935
  var FilmDicomToolItem = /*#__PURE__*/function (_Component) {
65783
65936
  inherits(FilmDicomToolItem, _Component);
65784
65937
 
65785
- var _super = _createSuper$1G(FilmDicomToolItem);
65938
+ var _super = _createSuper$1H(FilmDicomToolItem);
65786
65939
 
65787
65940
  function FilmDicomToolItem(props) {
65788
65941
  var _this;
@@ -65874,14 +66027,14 @@ defineProperty(FilmDicomToolItem, "propTypes", {
65874
66027
  data: PropTypes$1.any
65875
66028
  });
65876
66029
 
65877
- function _createSuper$1H(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1H(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
66030
+ function _createSuper$1I(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1I(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
65878
66031
 
65879
- function _isNativeReflectConstruct$1H() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
66032
+ function _isNativeReflectConstruct$1I() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
65880
66033
 
65881
66034
  var FilmToolVerticalMode = /*#__PURE__*/function (_Component) {
65882
66035
  inherits(FilmToolVerticalMode, _Component);
65883
66036
 
65884
- var _super = _createSuper$1H(FilmToolVerticalMode);
66037
+ var _super = _createSuper$1I(FilmToolVerticalMode);
65885
66038
 
65886
66039
  function FilmToolVerticalMode(props) {
65887
66040
  var _this;
@@ -66002,9 +66155,9 @@ function ownKeys$Y(object, enumerableOnly) { var keys = Object.keys(object); if
66002
66155
 
66003
66156
  function _objectSpread$Y(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys$Y(Object(source), true).forEach(function (key) { defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys$Y(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
66004
66157
 
66005
- function _createSuper$1I(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1I(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
66158
+ function _createSuper$1J(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1J(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
66006
66159
 
66007
- function _isNativeReflectConstruct$1I() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
66160
+ function _isNativeReflectConstruct$1J() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
66008
66161
  var initFormData = {
66009
66162
  id: null,
66010
66163
  name: "",
@@ -66017,7 +66170,7 @@ var initFormData = {
66017
66170
  var FilmPrintModal = /*#__PURE__*/function (_Component) {
66018
66171
  inherits(FilmPrintModal, _Component);
66019
66172
 
66020
- var _super = _createSuper$1I(FilmPrintModal);
66173
+ var _super = _createSuper$1J(FilmPrintModal);
66021
66174
 
66022
66175
  function FilmPrintModal(props) {
66023
66176
  var _this;
@@ -66264,14 +66417,14 @@ var FilmPrintModal = /*#__PURE__*/function (_Component) {
66264
66417
  return FilmPrintModal;
66265
66418
  }(React.Component);
66266
66419
 
66267
- function _createSuper$1J(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1J(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
66420
+ function _createSuper$1K(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1K(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
66268
66421
 
66269
- function _isNativeReflectConstruct$1J() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
66422
+ function _isNativeReflectConstruct$1K() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
66270
66423
 
66271
66424
  var FilmTool = /*#__PURE__*/function (_Component) {
66272
66425
  inherits(FilmTool, _Component);
66273
66426
 
66274
- var _super = _createSuper$1J(FilmTool);
66427
+ var _super = _createSuper$1K(FilmTool);
66275
66428
 
66276
66429
  function FilmTool(props) {
66277
66430
  var _this;
@@ -67198,14 +67351,14 @@ function ownKeys$_(object, enumerableOnly) { var keys = Object.keys(object); if
67198
67351
 
67199
67352
  function _objectSpread$_(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys$_(Object(source), true).forEach(function (key) { defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys$_(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
67200
67353
 
67201
- function _createSuper$1K(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1K(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
67354
+ function _createSuper$1L(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1L(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
67202
67355
 
67203
- function _isNativeReflectConstruct$1K() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
67356
+ function _isNativeReflectConstruct$1L() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
67204
67357
 
67205
67358
  var FilmPrintModal$1 = /*#__PURE__*/function (_Component) {
67206
67359
  inherits(FilmPrintModal, _Component);
67207
67360
 
67208
- var _super = _createSuper$1K(FilmPrintModal);
67361
+ var _super = _createSuper$1L(FilmPrintModal);
67209
67362
 
67210
67363
  function FilmPrintModal(props) {
67211
67364
  var _this;
@@ -67802,9 +67955,9 @@ styleInject$1(css_248z$I);
67802
67955
  var css_248z$J = ".paladin-film-viewport-wrapper {\n width: 100%;\n height: 100%;\n color: #fff;\n}\n.cornerstone-canvas-container {\n box-sizing: border-box;\n width: 100%;\n height: 100%;\n position: relative;\n}\n";
67803
67956
  styleInject$1(css_248z$J);
67804
67957
 
67805
- function _createSuper$1L(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1L(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
67958
+ function _createSuper$1M(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1M(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
67806
67959
 
67807
- function _isNativeReflectConstruct$1L() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
67960
+ function _isNativeReflectConstruct$1M() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
67808
67961
  var loadIndicatorDelay$2 = 300;
67809
67962
 
67810
67963
  function capitalizeFirstLetter$1(string) {
@@ -67836,7 +67989,7 @@ function initializeTools$1(cornerstoneTools, tools, element) {
67836
67989
  var FilmViewport = /*#__PURE__*/function (_Component) {
67837
67990
  inherits(FilmViewport, _Component);
67838
67991
 
67839
- var _super = _createSuper$1L(FilmViewport);
67992
+ var _super = _createSuper$1M(FilmViewport);
67840
67993
 
67841
67994
  function FilmViewport(props) {
67842
67995
  var _this;
@@ -68203,14 +68356,14 @@ var ConnectedFilmViewport = reactRedux.connect(mapStateToProps$x, {
68203
68356
  setSeriesCurrentIndex: setSeriesCurrentIndex
68204
68357
  })(FilmViewport);
68205
68358
 
68206
- function _createSuper$1M(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1M(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
68359
+ function _createSuper$1N(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1N(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
68207
68360
 
68208
- function _isNativeReflectConstruct$1M() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
68361
+ function _isNativeReflectConstruct$1N() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
68209
68362
 
68210
68363
  var FilmView = /*#__PURE__*/function (_Component) {
68211
68364
  inherits(FilmView, _Component);
68212
68365
 
68213
- var _super = _createSuper$1M(FilmView);
68366
+ var _super = _createSuper$1N(FilmView);
68214
68367
 
68215
68368
  function FilmView(props) {
68216
68369
  var _this;
@@ -68559,9 +68712,9 @@ function _unsupportedIterableToArray$j(o, minLen) { if (!o) return; if (typeof o
68559
68712
 
68560
68713
  function _arrayLikeToArray$j(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }
68561
68714
 
68562
- function _createSuper$1N(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1N(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
68715
+ function _createSuper$1O(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1O(); return function _createSuperInternal() { var Super = getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
68563
68716
 
68564
- function _isNativeReflectConstruct$1N() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
68717
+ function _isNativeReflectConstruct$1O() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
68565
68718
 
68566
68719
  var DicomLayoutContainerWrap = function DicomLayoutContainerWrap(props) {
68567
68720
  return /*#__PURE__*/React__default.createElement("div", {
@@ -68620,7 +68773,7 @@ index$3.configure({
68620
68773
  var DicomView = /*#__PURE__*/function (_Component) {
68621
68774
  inherits(DicomView, _Component);
68622
68775
 
68623
- var _super = _createSuper$1N(DicomView);
68776
+ var _super = _createSuper$1O(DicomView);
68624
68777
 
68625
68778
  function DicomView(props) {
68626
68779
  var _this;