@syncfusion/ej2-image-editor 21.2.10 → 22.1.36
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/.eslintrc.json +1 -0
- package/CHANGELOG.md +8 -32
- 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 +19320 -12622
- package/dist/es6/ej2-image-editor.es2015.js.map +1 -1
- package/dist/es6/ej2-image-editor.es5.js +19139 -12414
- 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 +11 -11
- package/src/image-editor/action/crop.d.ts +36 -0
- package/src/image-editor/action/crop.js +829 -0
- package/src/image-editor/action/draw.d.ts +125 -0
- package/src/image-editor/action/draw.js +3263 -0
- package/src/image-editor/action/export.d.ts +23 -0
- package/src/image-editor/action/export.js +364 -0
- package/src/image-editor/action/filter.d.ts +35 -0
- package/src/image-editor/action/filter.js +699 -0
- package/src/image-editor/action/freehand-draw.d.ts +61 -0
- package/src/image-editor/action/freehand-draw.js +1015 -0
- package/src/image-editor/action/index.d.ts +9 -0
- package/src/image-editor/action/index.js +9 -0
- package/src/image-editor/action/selection.d.ts +139 -0
- package/src/image-editor/action/selection.js +4518 -0
- package/src/image-editor/action/shape.d.ts +94 -0
- package/src/image-editor/action/shape.js +2745 -0
- package/src/image-editor/action/transform.d.ts +67 -0
- package/src/image-editor/action/transform.js +1859 -0
- package/src/image-editor/action/undo-redo.d.ts +43 -0
- package/src/image-editor/action/undo-redo.js +800 -0
- package/src/image-editor/base/enum.d.ts +189 -0
- package/src/image-editor/base/enum.js +198 -0
- package/src/image-editor/{image-editor-model.d.ts → base/image-editor-model.d.ts} +130 -42
- package/src/image-editor/{image-editor.d.ts → base/image-editor.d.ts} +413 -1111
- package/src/image-editor/base/image-editor.js +2270 -0
- package/src/image-editor/base/index.d.ts +4 -0
- package/src/image-editor/base/index.js +2 -0
- package/src/image-editor/base/interface.d.ts +1128 -0
- package/src/image-editor/base/interface.js +1 -0
- package/src/image-editor/index.d.ts +3 -5
- package/src/image-editor/index.js +3 -4
- package/src/image-editor/renderer/index.d.ts +1 -0
- package/src/image-editor/renderer/index.js +1 -0
- package/src/image-editor/renderer/toolbar.d.ts +105 -0
- package/src/image-editor/renderer/toolbar.js +3018 -0
- package/styles/bootstrap-dark.css +69 -3
- package/styles/bootstrap.css +69 -3
- package/styles/bootstrap4.css +69 -3
- package/styles/bootstrap5-dark.css +69 -3
- package/styles/bootstrap5.css +69 -3
- package/styles/fabric-dark.css +69 -3
- package/styles/fabric.css +69 -3
- package/styles/fluent-dark.css +69 -3
- package/styles/fluent.css +69 -3
- package/styles/highcontrast-light.css +71 -5
- package/styles/highcontrast.css +72 -5
- package/styles/image-editor/_highcontrast-definition.scss +1 -1
- package/styles/image-editor/_highcontrast-light-definition.scss +1 -1
- package/styles/image-editor/_layout.scss +21 -7
- package/styles/image-editor/_material3-dark-definition.scss +1 -0
- package/styles/image-editor/_material3-definition.scss +11 -0
- package/styles/image-editor/_theme.scss +7 -2
- package/styles/image-editor/bootstrap-dark.css +69 -3
- package/styles/image-editor/bootstrap.css +69 -3
- package/styles/image-editor/bootstrap4.css +69 -3
- package/styles/image-editor/bootstrap5-dark.css +69 -3
- package/styles/image-editor/bootstrap5.css +69 -3
- package/styles/image-editor/fabric-dark.css +69 -3
- package/styles/image-editor/fabric.css +69 -3
- package/styles/image-editor/fluent-dark.css +69 -3
- package/styles/image-editor/fluent.css +69 -3
- package/styles/image-editor/highcontrast-light.css +71 -5
- package/styles/image-editor/highcontrast.css +72 -5
- package/styles/image-editor/icons/_bootstrap-dark.scss +132 -0
- package/styles/image-editor/icons/_bootstrap.scss +132 -0
- package/styles/image-editor/icons/_bootstrap4.scss +132 -0
- package/styles/image-editor/icons/_bootstrap5.scss +132 -0
- package/styles/image-editor/icons/_fabric-dark.scss +132 -0
- package/styles/image-editor/icons/_fabric.scss +132 -0
- package/styles/image-editor/icons/_fluent.scss +132 -0
- package/styles/image-editor/icons/_fusionnew.scss +132 -0
- package/styles/image-editor/icons/_highcontrast-light.scss +132 -0
- package/styles/image-editor/icons/_highcontrast.scss +132 -0
- package/styles/image-editor/icons/_material-dark.scss +132 -0
- package/styles/image-editor/icons/_material.scss +132 -0
- package/styles/image-editor/icons/_material3-dark.scss +1 -0
- package/styles/image-editor/icons/_material3.scss +133 -1
- package/styles/image-editor/icons/_tailwind.scss +132 -0
- package/styles/image-editor/material-dark.css +69 -3
- package/styles/image-editor/material.css +69 -3
- package/styles/image-editor/material3-dark.css +453 -0
- package/styles/image-editor/material3-dark.scss +14 -0
- package/styles/image-editor/material3.css +509 -0
- package/styles/image-editor/material3.scss +14 -0
- package/styles/image-editor/tailwind-dark.css +69 -3
- package/styles/image-editor/tailwind.css +69 -3
- package/styles/material-dark.css +69 -3
- package/styles/material.css +69 -3
- package/styles/material3-dark.css +453 -0
- package/styles/material3-dark.scss +3 -0
- package/styles/material3.css +509 -0
- package/styles/material3.scss +3 -0
- package/styles/tailwind-dark.css +69 -3
- package/styles/tailwind.css +69 -3
- package/src/image-editor/image-editor.js +0 -14827
package/.eslintrc.json
CHANGED
|
@@ -37,6 +37,7 @@
|
|
|
37
37
|
"security/detect-possible-timing-attacks":"error",
|
|
38
38
|
"security/detect-pseudoRandomBytes":"error",
|
|
39
39
|
"security/detect-new-buffer":"error",
|
|
40
|
+
"security/detect-bidi-characters":"error",
|
|
40
41
|
"@typescript-eslint/no-inferrable-types": "off",
|
|
41
42
|
"@typescript-eslint/ban-types": ["warn", {
|
|
42
43
|
"types": {
|
package/CHANGELOG.md
CHANGED
|
@@ -6,45 +6,21 @@
|
|
|
6
6
|
|
|
7
7
|
#### Bug Fixes
|
|
8
8
|
|
|
9
|
-
- Issue with "
|
|
9
|
+
- Issue with "Refreshing the Image Editor dimension while resizing" has been resolved.
|
|
10
10
|
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
#### Bug Fixes
|
|
14
|
-
|
|
15
|
-
- Issue with "Script error thrown while performing zooming in profile picture sample" has been resolved.
|
|
16
|
-
|
|
17
|
-
## 21.2.6 (2023-05-23)
|
|
18
|
-
|
|
19
|
-
### Image Editor
|
|
20
|
-
|
|
21
|
-
#### Bug Fixes
|
|
22
|
-
|
|
23
|
-
- Issue with "Circle Selection after cropping" has been resolved.
|
|
24
|
-
|
|
25
|
-
## 21.2.5 (2023-05-16)
|
|
26
|
-
|
|
27
|
-
### Image Editor
|
|
28
|
-
|
|
29
|
-
#### Bug Fixes
|
|
30
|
-
|
|
31
|
-
- Issue with "Blinking while resizing selection in mobile mode" has been resolved.
|
|
32
|
-
|
|
33
|
-
## 21.2.3 (2023-05-03)
|
|
11
|
+
## 22.1.34 (2023-06-21)
|
|
34
12
|
|
|
35
13
|
### Image Editor
|
|
36
14
|
|
|
37
|
-
####
|
|
38
|
-
|
|
39
|
-
- Issue with "Zoom factor value set to null in ASPCORE" has been resolved.
|
|
40
|
-
|
|
41
|
-
### Image Editor
|
|
15
|
+
#### Features
|
|
42
16
|
|
|
43
|
-
|
|
17
|
+
- Provided support for path annotations allowing users to annotate specific paths or routes within a document or graphical representation.
|
|
18
|
+
- Provided support for arrow annotations allowing users to easily indicate direction or flow within their content.
|
|
19
|
+
- Provided quick access toolbar support which improve accessibility when working with shapes. It automatically appears when shapes are selected, providing convenient access to commonly used tools and options.
|
|
44
20
|
|
|
45
|
-
|
|
21
|
+
#### Breaking Changes
|
|
46
22
|
|
|
47
|
-
|
|
23
|
+
- Previously, the "ShapeChanging" event was triggered for both shape modifications and selection customizations. However, a new event called "SelectionChanging" has been introduced specifically for selection customizations.
|
|
48
24
|
|
|
49
25
|
### Image Editor
|
|
50
26
|
|