canvas-editor-engine 2.1.15 → 2.1.17

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.
Files changed (2) hide show
  1. package/dist/index.mjs +1 -6
  2. package/package.json +1 -1
package/dist/index.mjs CHANGED
@@ -401,7 +401,6 @@ var ExcretionsComponent = function(_super) {
401
401
  }
402
402
  };
403
403
  ExcretionsComponent.prototype.clearExcretionsCoords = function() {
404
- console.log("clear!");
405
404
  this._excretions.forEach((function(excretion) {
406
405
  return excretion.remove();
407
406
  }));
@@ -419,7 +418,6 @@ var ExcretionsComponent = function(_super) {
419
418
  var coords = this.getTempCoords();
420
419
  this.excretionsCoords.push(coords);
421
420
  this._excretionActivity = "end";
422
- console.log("this.excretionsCoords", this.excretionsCoords);
423
421
  };
424
422
  ExcretionsComponent.prototype.emmit = function() {
425
423
  var _this = this;
@@ -674,7 +672,6 @@ var PipetteComponent = function(_super) {
674
672
  this.canvasComponent.subscribe("click", (function(event, cursorPosition) {
675
673
  var state = _this._pipetteState;
676
674
  if (state === "taken" || state === "selected-color") {
677
- console.log("pipetteState", state);
678
675
  if (state === "taken") {
679
676
  _this.setColorFromChoosenPixel(cursorPosition);
680
677
  _this.setState("selected-color");
@@ -1063,7 +1060,6 @@ var Filter = function() {
1063
1060
  clearedBuff.forEach((function(_, i) {
1064
1061
  return tempImageData.data[i] = clearedBuff[i];
1065
1062
  }));
1066
- console.log("cleared", cleared);
1067
1063
  return {
1068
1064
  imageData: tempImageData,
1069
1065
  size: tempSize
@@ -1765,13 +1761,11 @@ var VagueFilter = function(_super) {
1765
1761
  };
1766
1762
  VagueFilter.prototype.pixel = function(imageData, filterOptions) {
1767
1763
  var quality = filterOptions.quality;
1768
- console.log("quality", quality);
1769
1764
  var processedImageData = this.getQualityProcessedRemainder(imageData, +quality);
1770
1765
  var imageSize = {
1771
1766
  width: processedImageData.width,
1772
1767
  height: processedImageData.height
1773
1768
  };
1774
- console.log("imageSize", imageSize);
1775
1769
  this.setImageSize(imageSize);
1776
1770
  var _a = this.getBuffCollection(processedImageData), rowRGBABuff = _a.rowRGBABuff, buff = _a.buff;
1777
1771
  var _b = this.getQualityBuff(buff, +quality), qualityBuff = _b.qualityBuff, rangeCommit = _b.rangeCommit;
@@ -2174,6 +2168,7 @@ var WebComponent = function(_super) {
2174
2168
  this.throughHistoryService = new ThroughHistoryService(this.appConfig, this.appStoreRepository);
2175
2169
  this.appStore = new AppStore(this.throughHistoryService, this.appStoreRepository);
2176
2170
  this.pullProjectService = new PullProjectService(this.throughHistoryService, this.appStoreRepository);
2171
+ console.log("this.appStoreRepository", this.appStoreRepository);
2177
2172
  this.drawService = new DrawService(this.appConfig, this.appStoreRepository, this.eventService);
2178
2173
  this.downloadService = new DownloadService(this.canvasComponent);
2179
2174
  var _a = this.canvasComponent.getComponent(), canvasTemplate = _a.canvasTemplate, canvasStyle = _a.canvasStyle;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "canvas-editor-engine",
3
- "version": "2.1.15",
3
+ "version": "2.1.17",
4
4
  "description": "CanvasEditorEngine library, use: [typescript] [canvas]",
5
5
  "main": "dist/index.mjs",
6
6
  "types": "dist/index.d.ts",