customized-fabric 1.5.7 → 1.5.8

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.
@@ -122,7 +122,12 @@ const ImagePlaceholderClass = fabric_1.fabric.util.createClass(fabric_1.fabric.G
122
122
  const canvas = this?.canvas;
123
123
  canvas?.remove(this.uploadedImage);
124
124
  this.uploadedImage = loadedImage;
125
- canvas?.add(this.uploadedImage);
125
+ const index = canvas
126
+ ?.getObjects()
127
+ ?.findIndex((obj) => obj._id == this._id);
128
+ if (index >= 0) {
129
+ canvas.insertAt(loadedImage, index, false);
130
+ }
126
131
  this.fitImage(this.uploadedImage);
127
132
  this.applyImageFilters(this.uploadedImage);
128
133
  canvas?.renderAll();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "customized-fabric",
3
- "version": "1.5.7",
3
+ "version": "1.5.8",
4
4
  "description": "Customized fabric",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",