hellfire 0.30.5 → 0.30.6

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/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ## [0.30.6](http://10.16.100.57/diffusion/115/paladin/compare/v0.30.5...v0.30.6) (2025-08-01)
6
+
7
+
8
+
5
9
  ## [0.30.5](http://10.16.100.57/diffusion/115/paladin/compare/v0.30.4...v0.30.5) (2025-07-29)
6
10
 
7
11
 
package/dist/index.js CHANGED
@@ -46792,6 +46792,8 @@ var mergeProps$h = function mergeProps(propsFromState, propsFromDispatch, ownPro
46792
46792
  var maxIndex = currentSeries && currentSeries.imageIds.length - 1;
46793
46793
  return _objectSpread$G(_objectSpread$G(_objectSpread$G({}, ownProps), propsFromState), {}, {
46794
46794
  onRowClick: function onRowClick(key) {
46795
+ changePriorityBySeries(currentSeries.seriesInstanceUID);
46796
+
46795
46797
  switch (key) {
46796
46798
  case 'prev':
46797
46799
  var prevIndex = currentImageIndex - 1;
@@ -55385,6 +55387,7 @@ var DicomViewport = /*#__PURE__*/function (_Component) {
55385
55387
  this.element.addEventListener(cornerstoneTools.EVENTS.MPR_REFERENCE_LINE, this.onMPRProcessed);
55386
55388
  } else {
55387
55389
  this.element.addEventListener('mouseup', this.onMouseUp);
55390
+ this.element.addEventListener('touchend', this.onMouseDown);
55388
55391
  }
55389
55392
 
55390
55393
  this.element.addEventListener('mousedown', this.onMouseDown);
@@ -55406,6 +55409,7 @@ var DicomViewport = /*#__PURE__*/function (_Component) {
55406
55409
  this.element.removeEventListener(cornerstoneTools.EVENTS.MPR_REFERENCE_LINE, this.onMPRProcessed);
55407
55410
  } else {
55408
55411
  this.element.removeEventListener('mouseup', this.onMouseUp);
55412
+ this.element.removeEventListener('touchend', this.onMouseDown);
55409
55413
  }
55410
55414
 
55411
55415
  this.element.removeEventListener(cornerstoneTools.EVENTS.STACK_SCROLL, this.onStackScroll);