@syncfusion/ej2-image-editor 26.2.10 → 26.2.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.
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: index.d.ts
3
- * version : 26.2.10
3
+ * version : 26.2.14
4
4
  * Copyright Syncfusion Inc. 2001 - 2023. All rights reserved.
5
5
  * Use of this code is subject to the terms of our license.
6
6
  * A copy of the current license can be obtained at any time by e-mailing
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "_from": "@syncfusion/ej2-image-editor@*",
3
- "_id": "@syncfusion/ej2-image-editor@26.2.8",
3
+ "_id": "@syncfusion/ej2-image-editor@26.2.10",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-rMtjggthbe8FQ3smsn4GBIqTHdLGzQKSmwE82hBc9URl2rdsm7pXZRVQ141bARrmMUL0JbU+niF/OZISz+cG/A==",
5
+ "_integrity": "sha512-UW8NVzHY9xGD75CgCQnKc5EEjQMtfD20TX/m7MV1iux8zmWDHznto0uQ/0vTQ++ka78CbBWPIdRjLrvNDuMhJA==",
6
6
  "_location": "/@syncfusion/ej2-image-editor",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
@@ -23,8 +23,8 @@
23
23
  "/@syncfusion/ej2-react-image-editor",
24
24
  "/@syncfusion/ej2-vue-image-editor"
25
25
  ],
26
- "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-image-editor/-/ej2-image-editor-26.2.8.tgz",
27
- "_shasum": "ef7283f2cee45e8ef9bca50f901dcaef2042db58",
26
+ "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-image-editor/-/ej2-image-editor-26.2.10.tgz",
27
+ "_shasum": "47ce1dcf54e03b977708de39999b99d14705dd07",
28
28
  "_spec": "@syncfusion/ej2-image-editor@*",
29
29
  "_where": "/jenkins/workspace/elease-automation_release_26.1.1/packages/included",
30
30
  "author": {
@@ -34,10 +34,10 @@
34
34
  "dependencies": {
35
35
  "@syncfusion/ej2-base": "~26.2.10",
36
36
  "@syncfusion/ej2-buttons": "~26.2.10",
37
- "@syncfusion/ej2-dropdowns": "~26.2.10",
38
- "@syncfusion/ej2-inputs": "~26.2.10",
39
- "@syncfusion/ej2-navigations": "~26.2.10",
40
- "@syncfusion/ej2-popups": "~26.2.10",
37
+ "@syncfusion/ej2-dropdowns": "~26.2.13",
38
+ "@syncfusion/ej2-inputs": "~26.2.14",
39
+ "@syncfusion/ej2-navigations": "~26.2.12",
40
+ "@syncfusion/ej2-popups": "~26.2.11",
41
41
  "@syncfusion/ej2-splitbuttons": "~26.2.10"
42
42
  },
43
43
  "deprecated": false,
@@ -68,7 +68,7 @@
68
68
  "url": "https://github.com/syncfusion/ej2-javascript-ui-controls/tree/master/controls/imageeditor"
69
69
  },
70
70
  "typings": "index.d.ts",
71
- "version": "26.2.10",
71
+ "version": "26.2.14",
72
72
  "sideEffects": false,
73
73
  "homepage": "https://www.syncfusion.com/javascript-ui-controls"
74
74
  }
@@ -3816,7 +3816,7 @@ var Selection = /** @class */ (function () {
3816
3816
  parent.objColl.splice(index, 1);
3817
3817
  }
3818
3818
  }
3819
- else if (!isShape && activeObj.shape && (activeObj.activePoint.width !== 0 || activeObj.activePoint.height != 0)) {
3819
+ else if (!isShape && activeObj.shape && (activeObj.activePoint.width !== 0 || activeObj.activePoint.height !== 0)) {
3820
3820
  parent.activeObj = activeObj;
3821
3821
  var index = this.getCurrentIndex();
3822
3822
  if (!isCropSelection) {
@@ -2248,7 +2248,12 @@ var ImageEditor = /** @class */ (function (_super) {
2248
2248
  shapeSettings.type = ShapeType.FreehandDraw;
2249
2249
  }
2250
2250
  var shapeChangedArgs = { action: 'apply', currentShapeSettings: extend({}, shapeSettings, {}, true) };
2251
- this.trigger('shapeChange', shapeChangedArgs);
2251
+ if (isFinalApply || this.isShapeDrawing) {
2252
+ if (this.isShapeDrawing) {
2253
+ shapeChangedArgs.action = 'draw-end';
2254
+ }
2255
+ this.trigger('shapeChange', shapeChangedArgs);
2256
+ }
2252
2257
  }
2253
2258
  if (aspectIcon || nonAspectIcon) {
2254
2259
  var obj_2 = { width: null, height: null };
@@ -1 +0,0 @@
1
- hotfix/26.1.35_Vol2