@syncfusion/ej2-image-editor 21.2.6 → 22.1.34
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 +6 -24
- 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 +19186 -12390
- package/dist/es6/ej2-image-editor.es2015.js.map +1 -1
- package/dist/es6/ej2-image-editor.es5.js +19217 -12390
- 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 +35 -0
- package/src/image-editor/action/crop.js +818 -0
- package/src/image-editor/action/draw.d.ts +122 -0
- package/src/image-editor/action/draw.js +3253 -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 +140 -0
- package/src/image-editor/action/selection.js +4689 -0
- package/src/image-editor/action/shape.d.ts +93 -0
- package/src/image-editor/action/shape.js +2657 -0
- package/src/image-editor/action/transform.d.ts +67 -0
- package/src/image-editor/action/transform.js +1670 -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} +131 -43
- package/src/image-editor/{image-editor.d.ts → base/image-editor.d.ts} +425 -1108
- package/src/image-editor/base/image-editor.js +2458 -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 +1120 -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 +3019 -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 +69 -3
- package/styles/highcontrast.css +69 -7
- 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 +9 -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 +69 -3
- package/styles/image-editor/highcontrast.css +69 -7
- 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 -14784
|
@@ -104,6 +104,126 @@
|
|
|
104
104
|
}
|
|
105
105
|
}
|
|
106
106
|
}
|
|
107
|
+
|
|
108
|
+
& .e-custom {
|
|
109
|
+
&::before {
|
|
110
|
+
content: '\e8a9';
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
& .e-circle {
|
|
115
|
+
&::before {
|
|
116
|
+
content: '\e7ca';
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
& .e-square{
|
|
121
|
+
&::before {
|
|
122
|
+
content: '\e8aa';
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
& .e-custom-a {
|
|
127
|
+
&::before {
|
|
128
|
+
content: '\e8ab';
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
& .e-custom-b {
|
|
133
|
+
&::before {
|
|
134
|
+
content: '\e8ac';
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
& .e-custom-c {
|
|
139
|
+
&::before {
|
|
140
|
+
content: '\e8ad';
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
& .e-custom-d {
|
|
145
|
+
&::before {
|
|
146
|
+
content: '\e8ae';
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
& .e-custom-e {
|
|
151
|
+
&::before {
|
|
152
|
+
content: '\e8af';
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
& .e-horizontal-flip {
|
|
157
|
+
&::before {
|
|
158
|
+
content: '\e8a3';
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
& .e-vertical-flip {
|
|
163
|
+
&::before {
|
|
164
|
+
content: '\e8a4';
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
& .e-clock-wise {
|
|
169
|
+
&::before {
|
|
170
|
+
content: '\e8a6';
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
& .e-anti-clock-wise {
|
|
175
|
+
&::before {
|
|
176
|
+
content: '\e8a5';
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
& .e-rectangle {
|
|
181
|
+
&::before {
|
|
182
|
+
content: '\e723';
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
& .e-circle {
|
|
187
|
+
&::before {
|
|
188
|
+
content: '\e7ca';
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
& .e-triangle {
|
|
193
|
+
&::before {
|
|
194
|
+
content: '\e89c';
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
& .e-line {
|
|
199
|
+
&::before {
|
|
200
|
+
content: '\e819';
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
& .e-add-text {
|
|
205
|
+
&::before {
|
|
206
|
+
content: '\e82e';
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
& .e-free-pen {
|
|
211
|
+
&::before {
|
|
212
|
+
content: '\e7db';
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
& .e-arrow {
|
|
217
|
+
&::before {
|
|
218
|
+
content: '\e669';
|
|
219
|
+
}
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
& .e-path {
|
|
223
|
+
&::before {
|
|
224
|
+
content: '\e931';
|
|
225
|
+
}
|
|
226
|
+
}
|
|
107
227
|
}
|
|
108
228
|
}
|
|
109
229
|
|
|
@@ -221,4 +341,16 @@
|
|
|
221
341
|
content: '\e82e';
|
|
222
342
|
}
|
|
223
343
|
}
|
|
344
|
+
|
|
345
|
+
& .e-arrow {
|
|
346
|
+
&::before {
|
|
347
|
+
content: '\e669';
|
|
348
|
+
}
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
& .e-path {
|
|
352
|
+
&::before {
|
|
353
|
+
content: '\e931';
|
|
354
|
+
}
|
|
355
|
+
}
|
|
224
356
|
}
|
|
@@ -104,6 +104,126 @@
|
|
|
104
104
|
}
|
|
105
105
|
}
|
|
106
106
|
}
|
|
107
|
+
|
|
108
|
+
& .e-custom {
|
|
109
|
+
&::before {
|
|
110
|
+
content: '\e8a9';
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
& .e-circle {
|
|
115
|
+
&::before {
|
|
116
|
+
content: '\e7ca';
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
& .e-square{
|
|
121
|
+
&::before {
|
|
122
|
+
content: '\e8aa';
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
& .e-custom-a {
|
|
127
|
+
&::before {
|
|
128
|
+
content: '\e8ab';
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
& .e-custom-b {
|
|
133
|
+
&::before {
|
|
134
|
+
content: '\e8ac';
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
& .e-custom-c {
|
|
139
|
+
&::before {
|
|
140
|
+
content: '\e8ad';
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
& .e-custom-d {
|
|
145
|
+
&::before {
|
|
146
|
+
content: '\e8ae';
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
& .e-custom-e {
|
|
151
|
+
&::before {
|
|
152
|
+
content: '\e8af';
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
& .e-horizontal-flip {
|
|
157
|
+
&::before {
|
|
158
|
+
content: '\e8a3';
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
& .e-vertical-flip {
|
|
163
|
+
&::before {
|
|
164
|
+
content: '\e8a4';
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
& .e-clock-wise {
|
|
169
|
+
&::before {
|
|
170
|
+
content: '\e8a6';
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
& .e-anti-clock-wise {
|
|
175
|
+
&::before {
|
|
176
|
+
content: '\e8a5';
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
& .e-rectangle {
|
|
181
|
+
&::before {
|
|
182
|
+
content: '\e723';
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
& .e-circle {
|
|
187
|
+
&::before {
|
|
188
|
+
content: '\e7ca';
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
& .e-triangle {
|
|
193
|
+
&::before {
|
|
194
|
+
content: '\e89c';
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
& .e-line {
|
|
199
|
+
&::before {
|
|
200
|
+
content: '\e819';
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
& .e-add-text {
|
|
205
|
+
&::before {
|
|
206
|
+
content: '\e82e';
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
& .e-free-pen {
|
|
211
|
+
&::before {
|
|
212
|
+
content: '\e7db';
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
& .e-arrow {
|
|
217
|
+
&::before {
|
|
218
|
+
content: '\e669';
|
|
219
|
+
}
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
& .e-path {
|
|
223
|
+
&::before {
|
|
224
|
+
content: '\e931';
|
|
225
|
+
}
|
|
226
|
+
}
|
|
107
227
|
}
|
|
108
228
|
}
|
|
109
229
|
|
|
@@ -221,4 +341,16 @@
|
|
|
221
341
|
content: '\e82e';
|
|
222
342
|
}
|
|
223
343
|
}
|
|
344
|
+
|
|
345
|
+
& .e-arrow {
|
|
346
|
+
&::before {
|
|
347
|
+
content: '\e669';
|
|
348
|
+
}
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
& .e-path {
|
|
352
|
+
&::before {
|
|
353
|
+
content: '\e931';
|
|
354
|
+
}
|
|
355
|
+
}
|
|
224
356
|
}
|
|
@@ -104,6 +104,126 @@
|
|
|
104
104
|
}
|
|
105
105
|
}
|
|
106
106
|
}
|
|
107
|
+
|
|
108
|
+
& .e-custom {
|
|
109
|
+
&::before {
|
|
110
|
+
content: '\e959';
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
& .e-circle {
|
|
115
|
+
&::before {
|
|
116
|
+
content: '\e671';
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
& .e-square{
|
|
121
|
+
&::before {
|
|
122
|
+
content: '\e95a';
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
& .e-custom-a {
|
|
127
|
+
&::before {
|
|
128
|
+
content: '\e95b';
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
& .e-custom-b {
|
|
133
|
+
&::before {
|
|
134
|
+
content: '\e95c';
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
& .e-custom-c {
|
|
139
|
+
&::before {
|
|
140
|
+
content: '\e95d';
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
& .e-custom-d {
|
|
145
|
+
&::before {
|
|
146
|
+
content: '\e95e';
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
& .e-custom-e {
|
|
151
|
+
&::before {
|
|
152
|
+
content: '\e960';
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
& .e-horizontal-flip {
|
|
157
|
+
&::before {
|
|
158
|
+
content: '\e951';
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
& .e-vertical-flip {
|
|
163
|
+
&::before {
|
|
164
|
+
content: '\e952';
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
& .e-clock-wise {
|
|
169
|
+
&::before {
|
|
170
|
+
content: '\e956';
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
& .e-anti-clock-wise {
|
|
175
|
+
&::before {
|
|
176
|
+
content: '\e955';
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
& .e-rectangle {
|
|
181
|
+
&::before {
|
|
182
|
+
content: '\e670';
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
& .e-circle {
|
|
187
|
+
&::before {
|
|
188
|
+
content: '\e671';
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
& .e-triangle {
|
|
193
|
+
&::before {
|
|
194
|
+
content: '\e949';
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
& .e-line {
|
|
199
|
+
&::before {
|
|
200
|
+
content: '\e668';
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
& .e-add-text {
|
|
205
|
+
&::before {
|
|
206
|
+
content: '\e35b';
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
& .e-free-pen {
|
|
211
|
+
&::before {
|
|
212
|
+
content: '\e739';
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
& .e-arrow {
|
|
217
|
+
&::before {
|
|
218
|
+
content: '\e669';
|
|
219
|
+
}
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
& .e-path {
|
|
223
|
+
&::before {
|
|
224
|
+
content: '\e931';
|
|
225
|
+
}
|
|
226
|
+
}
|
|
107
227
|
}
|
|
108
228
|
}
|
|
109
229
|
|
|
@@ -215,4 +335,16 @@
|
|
|
215
335
|
content: '\e952';
|
|
216
336
|
}
|
|
217
337
|
}
|
|
338
|
+
|
|
339
|
+
& .e-arrow {
|
|
340
|
+
&::before {
|
|
341
|
+
content: '\e669';
|
|
342
|
+
}
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
& .e-path {
|
|
346
|
+
&::before {
|
|
347
|
+
content: '\e931';
|
|
348
|
+
}
|
|
349
|
+
}
|
|
218
350
|
}
|
|
@@ -104,6 +104,126 @@
|
|
|
104
104
|
}
|
|
105
105
|
}
|
|
106
106
|
}
|
|
107
|
+
|
|
108
|
+
& .e-custom {
|
|
109
|
+
&::before {
|
|
110
|
+
content: '\e959';
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
& .e-circle {
|
|
115
|
+
&::before {
|
|
116
|
+
content: '\e671';
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
& .e-square{
|
|
121
|
+
&::before {
|
|
122
|
+
content: '\e95a';
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
& .e-custom-a {
|
|
127
|
+
&::before {
|
|
128
|
+
content: '\e95b';
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
& .e-custom-b {
|
|
133
|
+
&::before {
|
|
134
|
+
content: '\e95c';
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
& .e-custom-c {
|
|
139
|
+
&::before {
|
|
140
|
+
content: '\e95d';
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
& .e-custom-d {
|
|
145
|
+
&::before {
|
|
146
|
+
content: '\e95e';
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
& .e-custom-e {
|
|
151
|
+
&::before {
|
|
152
|
+
content: '\e960';
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
& .e-horizontal-flip {
|
|
157
|
+
&::before {
|
|
158
|
+
content: '\e951';
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
& .e-vertical-flip {
|
|
163
|
+
&::before {
|
|
164
|
+
content: '\e952';
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
& .e-clock-wise {
|
|
169
|
+
&::before {
|
|
170
|
+
content: '\e956';
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
& .e-anti-clock-wise {
|
|
175
|
+
&::before {
|
|
176
|
+
content: '\e955';
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
& .e-rectangle {
|
|
181
|
+
&::before {
|
|
182
|
+
content: '\e670';
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
& .e-circle {
|
|
187
|
+
&::before {
|
|
188
|
+
content: '\e671';
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
& .e-triangle {
|
|
193
|
+
&::before {
|
|
194
|
+
content: '\e949';
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
& .e-line {
|
|
199
|
+
&::before {
|
|
200
|
+
content: '\e668';
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
& .e-add-text {
|
|
205
|
+
&::before {
|
|
206
|
+
content: '\e35b';
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
& .e-free-pen {
|
|
211
|
+
&::before {
|
|
212
|
+
content: '\e739';
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
& .e-arrow {
|
|
217
|
+
&::before {
|
|
218
|
+
content: '\e669';
|
|
219
|
+
}
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
& .e-path {
|
|
223
|
+
&::before {
|
|
224
|
+
content: '\e931';
|
|
225
|
+
}
|
|
226
|
+
}
|
|
107
227
|
}
|
|
108
228
|
}
|
|
109
229
|
|
|
@@ -215,4 +335,16 @@
|
|
|
215
335
|
content: '\e952';
|
|
216
336
|
}
|
|
217
337
|
}
|
|
338
|
+
|
|
339
|
+
& .e-arrow {
|
|
340
|
+
&::before {
|
|
341
|
+
content: '\e669';
|
|
342
|
+
}
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
& .e-path {
|
|
346
|
+
&::before {
|
|
347
|
+
content: '\e931';
|
|
348
|
+
}
|
|
349
|
+
}
|
|
218
350
|
}
|
|
@@ -104,6 +104,126 @@
|
|
|
104
104
|
}
|
|
105
105
|
}
|
|
106
106
|
}
|
|
107
|
+
|
|
108
|
+
& .e-custom {
|
|
109
|
+
&::before {
|
|
110
|
+
content: '\e964';
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
& .e-circle {
|
|
115
|
+
&::before {
|
|
116
|
+
content: '\e671';
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
& .e-square{
|
|
121
|
+
&::before {
|
|
122
|
+
content: '\e965';
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
& .e-custom-a {
|
|
127
|
+
&::before {
|
|
128
|
+
content: '\e966';
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
& .e-custom-b {
|
|
133
|
+
&::before {
|
|
134
|
+
content: '\e967';
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
& .e-custom-c {
|
|
139
|
+
&::before {
|
|
140
|
+
content: '\e968';
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
& .e-custom-d {
|
|
145
|
+
&::before {
|
|
146
|
+
content: '\e96a';
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
& .e-custom-e {
|
|
151
|
+
&::before {
|
|
152
|
+
content: '\e96b';
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
& .e-horizontal-flip {
|
|
157
|
+
&::before {
|
|
158
|
+
content: '\e95c';
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
& .e-vertical-flip {
|
|
163
|
+
&::before {
|
|
164
|
+
content: '\e95d';
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
& .e-clock-wise {
|
|
169
|
+
&::before {
|
|
170
|
+
content: '\e960';
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
& .e-anti-clock-wise {
|
|
175
|
+
&::before {
|
|
176
|
+
content: '\e95f';
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
& .e-rectangle {
|
|
181
|
+
&::before {
|
|
182
|
+
content: '\e670';
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
& .e-circle {
|
|
187
|
+
&::before {
|
|
188
|
+
content: '\e671';
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
& .e-triangle {
|
|
193
|
+
&::before {
|
|
194
|
+
content: '\e954';
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
& .e-line {
|
|
199
|
+
&::before {
|
|
200
|
+
content: '\e668';
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
& .e-add-text {
|
|
205
|
+
&::before {
|
|
206
|
+
content: '\e35b';
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
& .e-free-pen {
|
|
211
|
+
&::before {
|
|
212
|
+
content: '\e737';
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
& .e-arrow {
|
|
217
|
+
&::before {
|
|
218
|
+
content: '\e669';
|
|
219
|
+
}
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
& .e-path {
|
|
223
|
+
&::before {
|
|
224
|
+
content: '\e931';
|
|
225
|
+
}
|
|
226
|
+
}
|
|
107
227
|
}
|
|
108
228
|
}
|
|
109
229
|
|
|
@@ -215,4 +335,16 @@
|
|
|
215
335
|
content: '\e95d';
|
|
216
336
|
}
|
|
217
337
|
}
|
|
338
|
+
|
|
339
|
+
& .e-arrow {
|
|
340
|
+
&::before {
|
|
341
|
+
content: '\e669';
|
|
342
|
+
}
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
& .e-path {
|
|
346
|
+
&::before {
|
|
347
|
+
content: '\e931';
|
|
348
|
+
}
|
|
349
|
+
}
|
|
218
350
|
}
|