@syncfusion/ej2-image-editor 23.2.7 → 24.1.43
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 +6 -54
- 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 +7227 -4367
- package/dist/es6/ej2-image-editor.es2015.js.map +1 -1
- package/dist/es6/ej2-image-editor.es5.js +7295 -4422
- 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.d.ts +6 -0
- package/src/image-editor/action/crop.js +347 -188
- package/src/image-editor/action/draw.d.ts +35 -2
- package/src/image-editor/action/draw.js +1691 -890
- package/src/image-editor/action/export.js +90 -29
- package/src/image-editor/action/filter.d.ts +3 -1
- package/src/image-editor/action/filter.js +74 -94
- package/src/image-editor/action/freehand-draw.d.ts +4 -0
- package/src/image-editor/action/freehand-draw.js +248 -147
- package/src/image-editor/action/selection.d.ts +6 -1
- package/src/image-editor/action/selection.js +1133 -1091
- package/src/image-editor/action/shape.d.ts +7 -0
- package/src/image-editor/action/shape.js +923 -550
- package/src/image-editor/action/transform.d.ts +2 -0
- package/src/image-editor/action/transform.js +518 -346
- package/src/image-editor/action/undo-redo.d.ts +2 -0
- package/src/image-editor/action/undo-redo.js +137 -36
- package/src/image-editor/base/enum.d.ts +2 -1
- package/src/image-editor/base/enum.js +1 -0
- package/src/image-editor/base/image-editor-model.d.ts +37 -2
- package/src/image-editor/base/image-editor.d.ts +124 -3
- package/src/image-editor/base/image-editor.js +675 -172
- package/src/image-editor/base/interface.d.ts +69 -15
- package/src/image-editor/renderer/toolbar.d.ts +10 -0
- package/src/image-editor/renderer/toolbar.js +1415 -835
- package/styles/bootstrap-dark.css +113 -8
- package/styles/bootstrap.css +112 -7
- package/styles/bootstrap4.css +113 -8
- package/styles/bootstrap5-dark.css +113 -8
- package/styles/bootstrap5.css +113 -8
- package/styles/fabric-dark.css +114 -9
- package/styles/fabric.css +113 -8
- package/styles/fluent-dark.css +118 -9
- package/styles/fluent.css +118 -9
- package/styles/highcontrast-light.css +112 -7
- package/styles/highcontrast.css +116 -7
- package/styles/image-editor/_bootstrap-dark-definition.scss +3 -0
- package/styles/image-editor/_bootstrap-definition.scss +3 -0
- package/styles/image-editor/_bootstrap4-definition.scss +3 -0
- package/styles/image-editor/_bootstrap5-definition.scss +3 -0
- package/styles/image-editor/_fabric-dark-definition.scss +3 -0
- package/styles/image-editor/_fabric-definition.scss +3 -0
- package/styles/image-editor/_fluent-definition.scss +3 -0
- package/styles/image-editor/_fusionnew-definition.scss +3 -0
- package/styles/image-editor/_highcontrast-definition.scss +3 -0
- package/styles/image-editor/_highcontrast-light-definition.scss +3 -0
- package/styles/image-editor/_layout.scss +138 -4
- package/styles/image-editor/_material-dark-definition.scss +3 -0
- package/styles/image-editor/_material-definition.scss +3 -0
- package/styles/image-editor/_material3-definition.scss +3 -0
- package/styles/image-editor/_tailwind-definition.scss +3 -0
- package/styles/image-editor/_theme.scss +2 -4
- package/styles/image-editor/bootstrap-dark.css +113 -8
- package/styles/image-editor/bootstrap.css +112 -7
- package/styles/image-editor/bootstrap4.css +113 -8
- package/styles/image-editor/bootstrap5-dark.css +113 -8
- package/styles/image-editor/bootstrap5.css +113 -8
- package/styles/image-editor/fabric-dark.css +114 -9
- package/styles/image-editor/fabric.css +113 -8
- package/styles/image-editor/fluent-dark.css +118 -9
- package/styles/image-editor/fluent.css +118 -9
- package/styles/image-editor/highcontrast-light.css +112 -7
- package/styles/image-editor/highcontrast.css +116 -7
- package/styles/image-editor/icons/_bootstrap-dark.scss +60 -0
- package/styles/image-editor/icons/_bootstrap.scss +60 -0
- package/styles/image-editor/icons/_bootstrap4.scss +60 -0
- package/styles/image-editor/icons/_bootstrap5.scss +60 -0
- package/styles/image-editor/icons/_fabric-dark.scss +60 -0
- package/styles/image-editor/icons/_fabric.scss +60 -0
- package/styles/image-editor/icons/_fluent.scss +66 -0
- package/styles/image-editor/icons/_highcontrast-light.scss +60 -0
- package/styles/image-editor/icons/_highcontrast.scss +60 -0
- package/styles/image-editor/icons/_material-dark.scss +60 -0
- package/styles/image-editor/icons/_material.scss +60 -0
- package/styles/image-editor/icons/_material3.scss +60 -0
- package/styles/image-editor/icons/_tailwind.scss +60 -0
- package/styles/image-editor/material-dark.css +113 -8
- package/styles/image-editor/material.css +113 -8
- package/styles/image-editor/material3-dark.css +126 -9
- package/styles/image-editor/material3.css +126 -9
- package/styles/image-editor/tailwind-dark.css +114 -9
- package/styles/image-editor/tailwind.css +114 -9
- package/styles/material-dark.css +113 -8
- package/styles/material.css +113 -8
- package/styles/material3-dark.css +126 -9
- package/styles/material3.css +126 -9
- package/styles/tailwind-dark.css +114 -9
- package/styles/tailwind.css +114 -9
package/CHANGELOG.md
CHANGED
|
@@ -2,69 +2,21 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
-
###
|
|
6
|
-
|
|
7
|
-
#### Bug Fixes
|
|
8
|
-
|
|
9
|
-
- `#I518177` - Issue with "Pen stroke color is not updated in the toolbar while changing the color using the shapeChanging event" has been resolved.
|
|
10
|
-
|
|
11
|
-
## 23.2.6 (2023-11-28)
|
|
12
|
-
|
|
13
|
-
### ImageEditor
|
|
14
|
-
|
|
15
|
-
#### Bug Fixes
|
|
16
|
-
|
|
17
|
-
- Issue with "Zoom public method not working properly" has been resolved.
|
|
18
|
-
- Issue with "Resize numeric textbox placeholder value not updated properly in rotated state" has been resolved.
|
|
19
|
-
|
|
20
|
-
## 23.2.5 (2023-11-23)
|
|
21
|
-
|
|
22
|
-
### ImageEditor
|
|
23
|
-
|
|
24
|
-
#### Bug Fixes
|
|
25
|
-
|
|
26
|
-
- Issue with "Resize numeric textbox not updated properly while applying with placeholder value" has been resolved.
|
|
27
|
-
|
|
28
|
-
## 23.1.43 (2023-10-31)
|
|
29
|
-
|
|
30
|
-
### ImageEditor
|
|
31
|
-
|
|
32
|
-
#### Bug Fixes
|
|
33
|
-
|
|
34
|
-
- Resolved the SVG type image not load through uploader toolbar button in image editor.
|
|
35
|
-
|
|
36
|
-
## 23.1.41 (2023-10-17)
|
|
37
|
-
|
|
38
|
-
### ImageEditor
|
|
39
|
-
|
|
40
|
-
#### Bug Fixes
|
|
41
|
-
|
|
42
|
-
- Changed the required parameters in the "drawFrame" method to optional parameters.
|
|
43
|
-
|
|
44
|
-
### ImageEditor
|
|
5
|
+
### Image Editor
|
|
45
6
|
|
|
46
7
|
#### Bug Fixes
|
|
47
8
|
|
|
48
|
-
- `#
|
|
49
|
-
- `#I507638` - Provide the support to hide the uploader toolbar item in the Image Editor.
|
|
9
|
+
- `#I531361` - The issue with "Zoom toolbar button not shown in ImageEditor while using ZoomSettings property in MVC platform" has been resolved.
|
|
50
10
|
|
|
51
|
-
##
|
|
11
|
+
## 24.1.41 (2023-12-18)
|
|
52
12
|
|
|
53
13
|
### ImageEditor
|
|
54
14
|
|
|
55
|
-
####
|
|
56
|
-
|
|
57
|
-
- `#I495933` - Resolved the GetImageData method does not return values properly in blazor image editor.
|
|
58
|
-
- `#I507638` - Resolved the image not opening in ImageEditor while the image file name has two dots.
|
|
59
|
-
|
|
60
|
-
## 23.1.38 (2023-09-26)
|
|
61
|
-
|
|
62
|
-
### ImageEditor
|
|
15
|
+
#### Features
|
|
63
16
|
|
|
64
|
-
|
|
17
|
+
- Provided support for image straightening allows users to adjust an image by rotating it clockwise or counter clockwise. The rotating degree value should be within the range of -45 to +45 degrees for accurate straightening. Positive values indicate clockwise rotation, while negative values indicate counter clockwise rotation.
|
|
65
18
|
|
|
66
|
-
-
|
|
67
|
-
- `#I495011` - Provided the "ShapeChanged" event trigger support for after shapes are changed and applied to canvas.
|
|
19
|
+
- Provided support to add additional font families for text annotation.
|
|
68
20
|
|
|
69
21
|
## 23.1.36 (2023-09-15)
|
|
70
22
|
|