dcmjs 0.29.3 → 0.29.5

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/README.md CHANGED
@@ -78,7 +78,7 @@ Use the following "Commit Message Format" when drafting commit messages. If you'
78
78
 
79
79
  Note: Be wary of `BREAKING_CHANGE` in commit message descriptions, as this can force a major version bump.
80
80
 
81
- Be sure to use lower case for the first letter of your semantic commit message, so use `fix` not `Fix` or `feat` not `Feat`.
81
+ Be sure to use lower case for the first letter of your semantic commit message, so use `fix` not `Fix` or `feat` not `Feat`, have a space after the : and make the PR github review title follow the SAME rules. It is the PR review title that determins the final commit message and will be used for semantic detection.
82
82
 
83
83
  Note: a new package version will be published only if the commit comes from a PR.
84
84
 
package/build/dcmjs.es.js CHANGED
@@ -16465,6 +16465,19 @@ function nearlyEqual(a, b, epsilon) {
16465
16465
  }
16466
16466
  }
16467
16467
 
16468
+
16469
+
16470
+ var orientation = /*#__PURE__*/Object.freeze({
16471
+ __proto__: null,
16472
+ crossProduct3D: crossProduct3D,
16473
+ flipImageOrientationPatient: flipImageOrientationPatient,
16474
+ rotateDirectionCosinesInPlane: rotateDirectionCosinesInPlane,
16475
+ rotateVectorAroundUnitVector: rotateVectorAroundUnitVector,
16476
+ flipMatrix2D: flipMatrix2D,
16477
+ rotateMatrix902D: rotateMatrix902D,
16478
+ nearlyEqual: nearlyEqual
16479
+ });
16480
+
16468
16481
  var Segmentation$1 = {
16469
16482
  generateSegmentation: generateSegmentation,
16470
16483
  generateToolState: generateToolState
@@ -18419,6 +18432,12 @@ function decodeFrame(rleEncodedFrame, pixelData) {
18419
18432
  }
18420
18433
  }
18421
18434
 
18435
+ var compression = /*#__PURE__*/Object.freeze({
18436
+ __proto__: null,
18437
+ encode: encode,
18438
+ decode: decode
18439
+ });
18440
+
18422
18441
  var lodash_clonedeep = createCommonjsModule(function (module, exports) {
18423
18442
  /**
18424
18443
  * lodash (Custom Build) <https://lodash.com/>
@@ -23552,7 +23571,9 @@ var TID300 = {
23552
23571
  CobbAngle: CobbAngle,
23553
23572
  Bidirectional: Bidirectional,
23554
23573
  Polyline: Polyline,
23555
- Ellipse: Ellipse
23574
+ Polygon: Polygon,
23575
+ Ellipse: Ellipse,
23576
+ Circle: Circle
23556
23577
  };
23557
23578
 
23558
23579
  /**
@@ -23804,7 +23825,9 @@ var utilities = {
23804
23825
  TID1500: TID1500,
23805
23826
  TID300: TID300,
23806
23827
  message: message,
23807
- addAccessors: addAccessors
23828
+ addAccessors: addAccessors,
23829
+ orientation: orientation,
23830
+ compression: compression
23808
23831
  };
23809
23832
 
23810
23833
  var Code = /*#__PURE__*/function () {