canvas-editor-engine 2.1.13 → 2.1.14

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
@@ -1188,7 +1188,7 @@ var CropService = function() {
1188
1188
  this.appStoreRepository = appStoreRepository;
1189
1189
  this.excretionComponent = excretionComponent;
1190
1190
  }
1191
- CropService.prototype.active = function() {
1191
+ CropService.prototype.activate = function() {
1192
1192
  this.excretionComponent.additionStyle = "crop";
1193
1193
  };
1194
1194
  CropService.prototype.deactivate = function() {
@@ -7,7 +7,7 @@ export default class CropService {
7
7
  private appStoreRepository;
8
8
  private excretionComponent;
9
9
  constructor(appConfig: AppConfig, appStoreRepository: AppStoreRepository, excretionComponent: ExcretionComponent);
10
- active(): void;
10
+ activate(): void;
11
11
  deactivate(): void;
12
12
  crop(ctx: CanvasRenderingContext2D): void;
13
13
  viewCropButton(): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "canvas-editor-engine",
3
- "version": "2.1.13",
3
+ "version": "2.1.14",
4
4
  "description": "CanvasEditorEngine library, use: [typescript] [canvas]",
5
5
  "main": "dist/index.mjs",
6
6
  "types": "dist/index.d.ts",