@syncfusion/ej2-image-editor 24.2.8 → 25.1.37
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 +5 -45
- 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 +958 -1922
- package/dist/es6/ej2-image-editor.es2015.js.map +1 -1
- package/dist/es6/ej2-image-editor.es5.js +993 -1974
- 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 +12 -12
- package/src/image-editor/action/crop.js +9 -45
- package/src/image-editor/action/draw.js +52 -207
- package/src/image-editor/action/export.js +6 -35
- package/src/image-editor/action/freehand-draw.js +26 -80
- package/src/image-editor/action/selection.js +122 -326
- package/src/image-editor/action/shape.js +133 -242
- package/src/image-editor/action/transform.d.ts +0 -1
- package/src/image-editor/action/transform.js +80 -291
- package/src/image-editor/action/undo-redo.d.ts +0 -1
- package/src/image-editor/action/undo-redo.js +32 -127
- package/src/image-editor/base/image-editor-model.d.ts +1 -1
- package/src/image-editor/base/image-editor.d.ts +51 -42
- package/src/image-editor/base/image-editor.js +316 -425
- package/src/image-editor/renderer/toolbar.d.ts +1 -0
- package/src/image-editor/renderer/toolbar.js +228 -207
- package/styles/bootstrap-dark.css +0 -12
- package/styles/bootstrap.css +0 -12
- package/styles/bootstrap4.css +0 -12
- package/styles/bootstrap5-dark.css +0 -12
- package/styles/bootstrap5.css +0 -12
- package/styles/fabric-dark.css +0 -12
- package/styles/fabric.css +0 -12
- package/styles/fluent-dark.css +0 -12
- package/styles/fluent.css +0 -12
- package/styles/highcontrast-light.css +0 -12
- package/styles/highcontrast.css +0 -12
- package/styles/image-editor/_bds-definition.scss +21 -0
- package/styles/image-editor/_bootstrap-dark-definition.scss +0 -1
- package/styles/image-editor/_bootstrap-definition.scss +0 -1
- package/styles/image-editor/_bootstrap4-definition.scss +0 -1
- package/styles/image-editor/_bootstrap5-definition.scss +0 -1
- package/styles/image-editor/_fabric-dark-definition.scss +0 -1
- package/styles/image-editor/_fabric-definition.scss +0 -1
- package/styles/image-editor/_fluent-definition.scss +0 -1
- package/styles/image-editor/_fusionnew-definition.scss +0 -1
- package/styles/image-editor/_highcontrast-definition.scss +0 -1
- package/styles/image-editor/_highcontrast-light-definition.scss +0 -1
- package/styles/image-editor/_layout.scss +5 -32
- package/styles/image-editor/_material-dark-definition.scss +0 -1
- package/styles/image-editor/_material-definition.scss +0 -1
- package/styles/image-editor/_material3-definition.scss +2 -3
- package/styles/image-editor/_tailwind-definition.scss +0 -1
- package/styles/image-editor/bootstrap-dark.css +0 -12
- package/styles/image-editor/bootstrap.css +0 -12
- package/styles/image-editor/bootstrap4.css +0 -12
- package/styles/image-editor/bootstrap5-dark.css +0 -12
- package/styles/image-editor/bootstrap5.css +0 -12
- package/styles/image-editor/fabric-dark.css +0 -12
- package/styles/image-editor/fabric.css +0 -12
- package/styles/image-editor/fluent-dark.css +0 -12
- package/styles/image-editor/fluent.css +0 -12
- package/styles/image-editor/highcontrast-light.css +0 -12
- package/styles/image-editor/highcontrast.css +0 -12
- package/styles/image-editor/icons/_bds.scss +411 -0
- package/styles/image-editor/material-dark.css +0 -12
- package/styles/image-editor/material.css +0 -12
- package/styles/image-editor/material3-dark.css +5 -25
- package/styles/image-editor/material3.css +5 -25
- package/styles/image-editor/tailwind-dark.css +2 -14
- package/styles/image-editor/tailwind.css +2 -14
- package/styles/material-dark.css +0 -12
- package/styles/material.css +0 -12
- package/styles/material3-dark.css +5 -25
- package/styles/material3.css +5 -25
- package/styles/tailwind-dark.css +2 -14
- package/styles/tailwind.css +2 -14
package/CHANGELOG.md
CHANGED
|
@@ -6,67 +6,27 @@
|
|
|
6
6
|
|
|
7
7
|
#### Bug Fixes
|
|
8
8
|
|
|
9
|
-
- `#
|
|
10
|
-
|
|
11
|
-
## 24.2.5 (2024-02-13)
|
|
12
|
-
|
|
13
|
-
### Image Editor
|
|
14
|
-
|
|
15
|
-
#### Bug Fixes
|
|
16
|
-
|
|
17
|
-
- The issue with "Shape Settings not updated properly for annotations" has been resolved.
|
|
18
|
-
|
|
19
|
-
- `#I550096` - The issue with "The Image Editor rendered over a dialog, reloads the page while selecting the browse here content of the image editor" has been resolved.
|
|
20
|
-
|
|
21
|
-
## 24.2.4 (2024-02-06)
|
|
22
|
-
|
|
23
|
-
### Image Editor
|
|
24
|
-
|
|
25
|
-
#### Bug Fixes
|
|
26
|
-
|
|
27
|
-
- The issue with "Undo redo not proper with annotations and frame" has been resolved.
|
|
9
|
+
- `#I565340` - The issue with "Script error thrown when attempting to reopen a base64 URL using a custom toolbar in mobile mode" has been resolved.
|
|
28
10
|
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
- The issue with "Text area is unable to deselect while placing an external text area with Image Editor" has been resolved.
|
|
32
|
-
|
|
33
|
-
- The issue with "Slider mouse up event not proper" has been resolved.
|
|
34
|
-
|
|
35
|
-
## 24.1.46 (2024-01-17)
|
|
36
|
-
|
|
37
|
-
### Image Editor
|
|
38
|
-
|
|
39
|
-
#### Bug Fixes
|
|
40
|
-
|
|
41
|
-
- The issue with "Zoom events not triggered while using Zoom method" has been resolved.
|
|
42
|
-
|
|
43
|
-
- The issue with "Ratio Selection dimension not proper" has been resolved.
|
|
44
|
-
|
|
45
|
-
- The issue with "Get Shape Settings method returns duplicate shape id" has been resolved.
|
|
46
|
-
|
|
47
|
-
## 24.1.45 (2024-01-09)
|
|
11
|
+
## 25.1.35 (2024-03-15)
|
|
48
12
|
|
|
49
13
|
### Image Editor
|
|
50
14
|
|
|
51
15
|
#### Bug Fixes
|
|
52
16
|
|
|
53
|
-
- The issue with "
|
|
54
|
-
|
|
55
|
-
## 24.1.44 (2024-01-03)
|
|
17
|
+
- The issue with "Resizing event argument value not proper while resizing " has been resolved.
|
|
56
18
|
|
|
57
19
|
### Image Editor
|
|
58
20
|
|
|
59
21
|
#### Bug Fixes
|
|
60
22
|
|
|
61
|
-
- The issue with "
|
|
62
|
-
|
|
63
|
-
## 24.1.43 (2023-12-27)
|
|
23
|
+
- `#I555243` - The issue with "Text area not applied while using GetImageData method" has been resolved.
|
|
64
24
|
|
|
65
25
|
### Image Editor
|
|
66
26
|
|
|
67
27
|
#### Bug Fixes
|
|
68
28
|
|
|
69
|
-
-
|
|
29
|
+
- Issue with "Toolbar not refreshing while using select public method" has been resolved.
|
|
70
30
|
|
|
71
31
|
## 24.1.41 (2023-12-18)
|
|
72
32
|
|