canvas-editor-engine 2.3.70 → 2.3.71

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 -1
  2. package/package.json +1 -1
package/dist/index.mjs CHANGED
@@ -2629,7 +2629,7 @@ var DrawLayersService = function() {
2629
2629
  }));
2630
2630
  } else {
2631
2631
  _this.layerList = _this.layerList.map((function(item, idx) {
2632
- if (idx > replaceableIdx_1 && idx <= layerIdx_1) {
2632
+ if (idx >= replaceableIdx_1 && idx < layerIdx_1) {
2633
2633
  item.order += 1;
2634
2634
  }
2635
2635
  return item;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "canvas-editor-engine",
3
- "version": "2.3.70",
3
+ "version": "2.3.71",
4
4
  "description": "CanvasEditorEngine library, use: [typescript] [canvas]",
5
5
  "main": "dist/index.mjs",
6
6
  "types": "dist/index.d.ts",