@syncfusion/ej2-image-editor 31.1.17 → 31.1.21
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/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 +63 -7
- package/dist/es6/ej2-image-editor.es2015.js.map +1 -1
- package/dist/es6/ej2-image-editor.es5.js +63 -7
- 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 +14 -46
- package/src/image-editor/action/export.js +6 -2
- package/src/image-editor/action/freehand-draw.d.ts +1 -0
- package/src/image-editor/action/freehand-draw.js +30 -3
- package/src/image-editor/action/selection.js +14 -2
- package/src/image-editor/action/undo-redo.js +10 -0
- package/src/image-editor/renderer/toolbar.js +3 -0
- package/dist/ts/image-editor/action/crop.d.ts +0 -44
- package/dist/ts/image-editor/action/crop.ts +0 -867
- package/dist/ts/image-editor/action/draw.d.ts +0 -187
- package/dist/ts/image-editor/action/draw.ts +0 -4924
- package/dist/ts/image-editor/action/export.d.ts +0 -29
- package/dist/ts/image-editor/action/export.ts +0 -509
- package/dist/ts/image-editor/action/filter.d.ts +0 -48
- package/dist/ts/image-editor/action/filter.ts +0 -872
- package/dist/ts/image-editor/action/freehand-draw.d.ts +0 -68
- package/dist/ts/image-editor/action/freehand-draw.ts +0 -1135
- package/dist/ts/image-editor/action/index.d.ts +0 -9
- package/dist/ts/image-editor/action/index.ts +0 -9
- package/dist/ts/image-editor/action/selection.d.ts +0 -178
- package/dist/ts/image-editor/action/selection.ts +0 -5241
- package/dist/ts/image-editor/action/shape.d.ts +0 -130
- package/dist/ts/image-editor/action/shape.ts +0 -3917
- package/dist/ts/image-editor/action/transform.d.ts +0 -77
- package/dist/ts/image-editor/action/transform.ts +0 -2008
- package/dist/ts/image-editor/action/undo-redo.d.ts +0 -52
- package/dist/ts/image-editor/action/undo-redo.ts +0 -1169
- package/dist/ts/image-editor/base/enum.d.ts +0 -277
- package/dist/ts/image-editor/base/enum.ts +0 -288
- package/dist/ts/image-editor/base/image-editor-model.d.ts +0 -770
- package/dist/ts/image-editor/base/image-editor.d.ts +0 -1928
- package/dist/ts/image-editor/base/image-editor.ts +0 -5496
- package/dist/ts/image-editor/base/index.d.ts +0 -4
- package/dist/ts/image-editor/base/index.ts +0 -4
- package/dist/ts/image-editor/base/interface.d.ts +0 -1637
- package/dist/ts/image-editor/base/interface.ts +0 -1709
- package/dist/ts/image-editor/index.d.ts +0 -3
- package/dist/ts/image-editor/index.ts +0 -3
- package/dist/ts/image-editor/renderer/index.d.ts +0 -1
- package/dist/ts/image-editor/renderer/index.ts +0 -1
- package/dist/ts/image-editor/renderer/toolbar.d.ts +0 -171
- package/dist/ts/image-editor/renderer/toolbar.ts +0 -6356
- package/dist/ts/index.d.ts +0 -4
- package/dist/ts/index.ts +0 -4
|
@@ -1,68 +0,0 @@
|
|
|
1
|
-
import { ImageEditor } from '../index';
|
|
2
|
-
export declare class FreehandDrawing {
|
|
3
|
-
private parent;
|
|
4
|
-
private lowerContext;
|
|
5
|
-
private upperContext;
|
|
6
|
-
private fhdObj;
|
|
7
|
-
private isFreehandDrawing;
|
|
8
|
-
private freehandDownPoint;
|
|
9
|
-
private isFreehandPointMoved;
|
|
10
|
-
private fhdHovIdx;
|
|
11
|
-
private pointCounter;
|
|
12
|
-
private selPointColl;
|
|
13
|
-
private penStrokeWidth;
|
|
14
|
-
private currFHDIdx;
|
|
15
|
-
private selPoints;
|
|
16
|
-
private dummyPoints;
|
|
17
|
-
private fhdSelID;
|
|
18
|
-
private tempFHDStyles;
|
|
19
|
-
private fhdSelIdx;
|
|
20
|
-
private straightenPoint;
|
|
21
|
-
private prevStraightenObj;
|
|
22
|
-
private straightenPointAngle;
|
|
23
|
-
private isMasking;
|
|
24
|
-
constructor(parent: ImageEditor);
|
|
25
|
-
destroy(): void;
|
|
26
|
-
private addEventListener;
|
|
27
|
-
private removeEventListener;
|
|
28
|
-
private draw;
|
|
29
|
-
private updateFhdPvtVar;
|
|
30
|
-
private reset;
|
|
31
|
-
getModuleName(): string;
|
|
32
|
-
private hoverFhd;
|
|
33
|
-
private freehandDownHandler;
|
|
34
|
-
private freehandUpHandler;
|
|
35
|
-
private freehandMoveHandler;
|
|
36
|
-
private processPoint;
|
|
37
|
-
private calcCurveCP;
|
|
38
|
-
private point;
|
|
39
|
-
private startDraw;
|
|
40
|
-
private pointVelocity;
|
|
41
|
-
private distanceTo;
|
|
42
|
-
private drawCurve;
|
|
43
|
-
private bezierLength;
|
|
44
|
-
private bezierPoint;
|
|
45
|
-
private drawArc;
|
|
46
|
-
private freehandRedraw;
|
|
47
|
-
private getSqPtFD;
|
|
48
|
-
private applyPenDraw;
|
|
49
|
-
private applyFhd;
|
|
50
|
-
private cancelFhd;
|
|
51
|
-
private selectFhd;
|
|
52
|
-
private deleteFhd;
|
|
53
|
-
private zoomX;
|
|
54
|
-
private zoomY;
|
|
55
|
-
private zoomFHDColl;
|
|
56
|
-
private updateFHDCurPts;
|
|
57
|
-
private rotateFhdColl;
|
|
58
|
-
private flipFHDColl;
|
|
59
|
-
private pointsHorizontalFlip;
|
|
60
|
-
private pointsVerticalFlip;
|
|
61
|
-
private updateFHDColl;
|
|
62
|
-
private panFHDColl;
|
|
63
|
-
private freeHandDraw;
|
|
64
|
-
private isFHDIdx;
|
|
65
|
-
private updateCropPtsForSel;
|
|
66
|
-
private triggerShapeChanging;
|
|
67
|
-
private setCenterSelPoints;
|
|
68
|
-
}
|