canvas-editor-engine 2.1.22 → 2.1.24

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.
package/dist/index.mjs CHANGED
@@ -1922,6 +1922,7 @@ var DrawService = function() {
1922
1922
  y: 0
1923
1923
  };
1924
1924
  var imageData = filter.copy(zeroPosition);
1925
+ console.log(_this);
1925
1926
  _this.appStoreRepository.store.imageState.reduce({
1926
1927
  tempImageData: imageData,
1927
1928
  position: zeroPosition,
@@ -12,8 +12,8 @@ export default class DrawService {
12
12
  drawImage(ctx: CanvasRenderingContext2D, src: string, options: IDrawImageArgs): void;
13
13
  drawProject(ctx: CanvasRenderingContext2D, project: Project): void;
14
14
  drawSmoothImage(useStore: boolean, options: IDrawImageArgs, filterOptions: IFilterOptions): void;
15
- private updateImageStateAfterVague;
16
- private getFilterArgs;
15
+ updateImageStateAfterVague(data: IImageLoggingDataVague): void;
16
+ getFilterArgs(useStore: boolean, options: IDrawImageArgs): IImageOptions;
17
17
  }
18
18
  export declare class SCImage implements IDrawImageProcessor {
19
19
  private appConfig;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "canvas-editor-engine",
3
- "version": "2.1.22",
3
+ "version": "2.1.24",
4
4
  "description": "CanvasEditorEngine library, use: [typescript] [canvas]",
5
5
  "main": "dist/index.mjs",
6
6
  "types": "dist/index.d.ts",