canvas-editor-engine 2.3.46 → 2.3.47

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 +2 -0
  2. package/package.json +1 -1
package/dist/index.mjs CHANGED
@@ -2837,10 +2837,12 @@ var DrawAccumulatorService = function() {
2837
2837
  DrawAccumulatorService.prototype.changeLayerOrder = function(layerId, options) {
2838
2838
  var _this = this;
2839
2839
  this.drawLayersService.changeLayerOrder(layerId, options).then((function(res) {
2840
+ console.log("res", res);
2840
2841
  if (res.status === "success") {
2841
2842
  _this.update();
2842
2843
  }
2843
2844
  })).catch((function(ex) {
2845
+ console.log("ex", ex);
2844
2846
  if (ex.status === "error") {
2845
2847
  console.warn(ex.message);
2846
2848
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "canvas-editor-engine",
3
- "version": "2.3.46",
3
+ "version": "2.3.47",
4
4
  "description": "CanvasEditorEngine library, use: [typescript] [canvas]",
5
5
  "main": "dist/index.mjs",
6
6
  "types": "dist/index.d.ts",