canvas-editor-engine 2.3.36 → 2.3.37

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
@@ -2599,6 +2599,8 @@ var DrawAccumulatorService = function() {
2599
2599
  deleteProperty: function(target, prop) {
2600
2600
  if (prop in target) {
2601
2601
  delete target[prop];
2602
+ target.length--;
2603
+ console.log("from:", target);
2602
2604
  console.log("property removed: ".concat(prop));
2603
2605
  return true;
2604
2606
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "canvas-editor-engine",
3
- "version": "2.3.36",
3
+ "version": "2.3.37",
4
4
  "description": "CanvasEditorEngine library, use: [typescript] [canvas]",
5
5
  "main": "dist/index.mjs",
6
6
  "types": "dist/index.d.ts",