@syncfusion/ej2-image-editor 22.2.10 → 22.2.11
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/CHANGELOG.md +8 -0
- package/dist/ej2-image-editor.umd.min.js +2 -2
- package/dist/ej2-image-editor.umd.min.js.map +1 -1
- package/dist/es6/ej2-image-editor.es2015.js +3 -0
- package/dist/es6/ej2-image-editor.es2015.js.map +1 -1
- package/dist/es6/ej2-image-editor.es5.js +3 -0
- package/dist/es6/ej2-image-editor.es5.js.map +1 -1
- package/dist/global/ej2-image-editor.min.js +2 -2
- package/dist/global/ej2-image-editor.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +7 -7
- package/src/image-editor/action/freehand-draw.js +3 -0
- package/styles/image-editor/material.css +1 -1
- package/styles/material.css +1 -1
package/dist/global/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: index.d.ts
|
|
3
|
-
* version : 22.2.
|
|
3
|
+
* version : 22.2.11
|
|
4
4
|
* Copyright Syncfusion Inc. 2001 - 2020. 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@22.2.
|
|
3
|
+
"_id": "@syncfusion/ej2-image-editor@22.2.10",
|
|
4
4
|
"_inBundle": false,
|
|
5
|
-
"_integrity": "sha512-
|
|
5
|
+
"_integrity": "sha512-eBIoOxPFr9uETyfD1UX79OoCSsyIMz1KIWVz7PsIBJfzJCSO5J+pxGOm2FkWt0KJrUeGBVb0xwYW7xhvDA2wJQ==",
|
|
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.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-image-editor/-/ej2-image-editor-22.2.
|
|
27
|
-
"_shasum": "
|
|
26
|
+
"_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-image-editor/-/ej2-image-editor-22.2.10.tgz",
|
|
27
|
+
"_shasum": "dc022c0050e96ec45295004156d94db2a63b0a1b",
|
|
28
28
|
"_spec": "@syncfusion/ej2-image-editor@*",
|
|
29
29
|
"_where": "/jenkins/workspace/elease-automation_release_21.1.1/packages/included",
|
|
30
30
|
"author": {
|
|
@@ -35,8 +35,8 @@
|
|
|
35
35
|
"@syncfusion/ej2-base": "~22.2.10",
|
|
36
36
|
"@syncfusion/ej2-buttons": "~22.2.9",
|
|
37
37
|
"@syncfusion/ej2-inputs": "~22.2.9",
|
|
38
|
-
"@syncfusion/ej2-navigations": "~22.2.
|
|
39
|
-
"@syncfusion/ej2-popups": "~22.2.
|
|
38
|
+
"@syncfusion/ej2-navigations": "~22.2.11",
|
|
39
|
+
"@syncfusion/ej2-popups": "~22.2.11",
|
|
40
40
|
"@syncfusion/ej2-splitbuttons": "~22.2.8"
|
|
41
41
|
},
|
|
42
42
|
"deprecated": false,
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
"url": "https://github.com/syncfusion/ej2-javascript-ui-controls/tree/master/controls/imageeditor"
|
|
68
68
|
},
|
|
69
69
|
"typings": "index.d.ts",
|
|
70
|
-
"version": "22.2.
|
|
70
|
+
"version": "22.2.11",
|
|
71
71
|
"sideEffects": false,
|
|
72
72
|
"homepage": "https://www.syncfusion.com/javascript-ui-controls"
|
|
73
73
|
}
|
|
@@ -260,6 +260,9 @@ var FreehandDrawing = /** @class */ (function () {
|
|
|
260
260
|
if (e.type === 'mouseup') {
|
|
261
261
|
this.processPoint(e.clientX - rect.left, e.clientY - rect.top, true, context);
|
|
262
262
|
}
|
|
263
|
+
else if (e.type === 'touchend' && e.changedTouches) {
|
|
264
|
+
this.processPoint(e.changedTouches[0].clientX - rect.left, e.changedTouches[0].clientY - rect.top, true, context);
|
|
265
|
+
}
|
|
263
266
|
else {
|
|
264
267
|
if (!this.isFreehandPointMoved) {
|
|
265
268
|
this.processPoint(this.freehandDownPoint.x - rect.left, this.freehandDownPoint.y - rect.top, true, context);
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@import url("https://fonts.googleapis.com/css?family=Roboto:400,500");
|
|
1
|
+
@import url("https://fonts.googleapis.com/css?family=Roboto:400,500,700");
|
|
2
2
|
/* stylelint-disable-line no-empty-source */ /*! component's theme wise override definitions and variables */
|
|
3
3
|
@keyframes tbar-popup-shadow {
|
|
4
4
|
0% {
|
package/styles/material.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@import url("https://fonts.googleapis.com/css?family=Roboto:400,500");
|
|
1
|
+
@import url("https://fonts.googleapis.com/css?family=Roboto:400,500,700");
|
|
2
2
|
/* stylelint-disable-line no-empty-source */ /*! component's theme wise override definitions and variables */
|
|
3
3
|
@keyframes tbar-popup-shadow {
|
|
4
4
|
0% {
|