@syncfusion/ej2-image-editor 21.1.35 → 21.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 +50 -0
- 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 +19332 -12536
- package/dist/es6/ej2-image-editor.es2015.js.map +1 -1
- package/dist/es6/ej2-image-editor.es5.js +19360 -12537
- 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 -41
- package/src/image-editor/{image-editor.d.ts → base/image-editor.d.ts} +413 -1107
- 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 -14729
|
@@ -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
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import './material3.scss';
|
|
@@ -99,7 +99,7 @@
|
|
|
99
99
|
& .e-stroke.e-template,
|
|
100
100
|
& .e-pen-stroke-color.e-template {
|
|
101
101
|
& .e-caret::before {
|
|
102
|
-
content: '\
|
|
102
|
+
content: '\e739';
|
|
103
103
|
}
|
|
104
104
|
}
|
|
105
105
|
|
|
@@ -110,6 +110,126 @@
|
|
|
110
110
|
}
|
|
111
111
|
}
|
|
112
112
|
}
|
|
113
|
+
|
|
114
|
+
& .e-custom {
|
|
115
|
+
&::before {
|
|
116
|
+
content: '\e8a9';
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
& .e-circle {
|
|
121
|
+
&::before {
|
|
122
|
+
content: '\e7ca';
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
& .e-square{
|
|
127
|
+
&::before {
|
|
128
|
+
content: '\e8aa';
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
& .e-custom-a {
|
|
133
|
+
&::before {
|
|
134
|
+
content: '\e8ab';
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
& .e-custom-b {
|
|
139
|
+
&::before {
|
|
140
|
+
content: '\e8ac';
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
& .e-custom-c {
|
|
145
|
+
&::before {
|
|
146
|
+
content: '\e8ad';
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
& .e-custom-d {
|
|
151
|
+
&::before {
|
|
152
|
+
content: '\e8ae';
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
& .e-custom-e {
|
|
157
|
+
&::before {
|
|
158
|
+
content: '\e8af';
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
& .e-horizontal-flip {
|
|
163
|
+
&::before {
|
|
164
|
+
content: '\e8a3';
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
& .e-vertical-flip {
|
|
169
|
+
&::before {
|
|
170
|
+
content: '\e8a4';
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
& .e-clock-wise {
|
|
175
|
+
&::before {
|
|
176
|
+
content: '\e8a6';
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
& .e-anti-clock-wise {
|
|
181
|
+
&::before {
|
|
182
|
+
content: '\e8a5';
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
& .e-rectangle {
|
|
187
|
+
&::before {
|
|
188
|
+
content: '\e723';
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
& .e-circle {
|
|
193
|
+
&::before {
|
|
194
|
+
content: '\e7ca';
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
& .e-triangle {
|
|
199
|
+
&::before {
|
|
200
|
+
content: '\e89c';
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
& .e-line {
|
|
205
|
+
&::before {
|
|
206
|
+
content: '\e819';
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
& .e-add-text {
|
|
211
|
+
&::before {
|
|
212
|
+
content: '\e82e';
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
& .e-free-pen {
|
|
217
|
+
&::before {
|
|
218
|
+
content: '\e7db';
|
|
219
|
+
}
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
& .e-arrow {
|
|
223
|
+
&::before {
|
|
224
|
+
content: '\e669';
|
|
225
|
+
}
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
& .e-path {
|
|
229
|
+
&::before {
|
|
230
|
+
content: '\e931';
|
|
231
|
+
}
|
|
232
|
+
}
|
|
113
233
|
}
|
|
114
234
|
}
|
|
115
235
|
|
|
@@ -227,4 +347,16 @@
|
|
|
227
347
|
content: '\e82e';
|
|
228
348
|
}
|
|
229
349
|
}
|
|
350
|
+
|
|
351
|
+
& .e-arrow {
|
|
352
|
+
&::before {
|
|
353
|
+
content: '\e669';
|
|
354
|
+
}
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
& .e-path {
|
|
358
|
+
&::before {
|
|
359
|
+
content: '\e931';
|
|
360
|
+
}
|
|
361
|
+
}
|
|
230
362
|
}
|
|
@@ -98,6 +98,126 @@
|
|
|
98
98
|
}
|
|
99
99
|
}
|
|
100
100
|
}
|
|
101
|
+
|
|
102
|
+
& .e-custom {
|
|
103
|
+
&::before {
|
|
104
|
+
content: '\e8a9';
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
& .e-circle {
|
|
109
|
+
&::before {
|
|
110
|
+
content: '\e7ca';
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
& .e-square{
|
|
115
|
+
&::before {
|
|
116
|
+
content: '\e8aa';
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
& .e-custom-a {
|
|
121
|
+
&::before {
|
|
122
|
+
content: '\e8ab';
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
& .e-custom-b {
|
|
127
|
+
&::before {
|
|
128
|
+
content: '\e8ac';
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
& .e-custom-c {
|
|
133
|
+
&::before {
|
|
134
|
+
content: '\e8ad';
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
& .e-custom-d {
|
|
139
|
+
&::before {
|
|
140
|
+
content: '\e8ae';
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
& .e-custom-e {
|
|
145
|
+
&::before {
|
|
146
|
+
content: '\e8af';
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
& .e-horizontal-flip {
|
|
151
|
+
&::before {
|
|
152
|
+
content: '\e8a3';
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
& .e-vertical-flip {
|
|
157
|
+
&::before {
|
|
158
|
+
content: '\e8a4';
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
& .e-clock-wise {
|
|
163
|
+
&::before {
|
|
164
|
+
content: '\e8a6';
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
& .e-anti-clock-wise {
|
|
169
|
+
&::before {
|
|
170
|
+
content: '\e8a5';
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
& .e-rectangle {
|
|
175
|
+
&::before {
|
|
176
|
+
content: '\e723';
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
& .e-circle {
|
|
181
|
+
&::before {
|
|
182
|
+
content: '\e7ca';
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
& .e-triangle {
|
|
187
|
+
&::before {
|
|
188
|
+
content: '\e89c';
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
& .e-line {
|
|
193
|
+
&::before {
|
|
194
|
+
content: '\e819';
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
& .e-add-text {
|
|
199
|
+
&::before {
|
|
200
|
+
content: '\e82e';
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
& .e-free-pen {
|
|
205
|
+
&::before {
|
|
206
|
+
content: '\e7db';
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
& .e-arrow {
|
|
211
|
+
&::before {
|
|
212
|
+
content: '\e669';
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
& .e-path {
|
|
217
|
+
&::before {
|
|
218
|
+
content: '\e931';
|
|
219
|
+
}
|
|
220
|
+
}
|
|
101
221
|
}
|
|
102
222
|
}
|
|
103
223
|
|
|
@@ -215,4 +335,16 @@
|
|
|
215
335
|
content: '\e82e';
|
|
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
|
}
|
|
@@ -77,6 +77,66 @@
|
|
|
77
77
|
.e-image-editor .e-fill.e-template .e-caret::before {
|
|
78
78
|
content: "\e35c";
|
|
79
79
|
}
|
|
80
|
+
.e-image-editor .e-custom::before {
|
|
81
|
+
content: "\e964";
|
|
82
|
+
}
|
|
83
|
+
.e-image-editor .e-circle::before {
|
|
84
|
+
content: "\e671";
|
|
85
|
+
}
|
|
86
|
+
.e-image-editor .e-square::before {
|
|
87
|
+
content: "\e965";
|
|
88
|
+
}
|
|
89
|
+
.e-image-editor .e-custom-a::before {
|
|
90
|
+
content: "\e966";
|
|
91
|
+
}
|
|
92
|
+
.e-image-editor .e-custom-b::before {
|
|
93
|
+
content: "\e967";
|
|
94
|
+
}
|
|
95
|
+
.e-image-editor .e-custom-c::before {
|
|
96
|
+
content: "\e968";
|
|
97
|
+
}
|
|
98
|
+
.e-image-editor .e-custom-d::before {
|
|
99
|
+
content: "\e96a";
|
|
100
|
+
}
|
|
101
|
+
.e-image-editor .e-custom-e::before {
|
|
102
|
+
content: "\e96b";
|
|
103
|
+
}
|
|
104
|
+
.e-image-editor .e-horizontal-flip::before {
|
|
105
|
+
content: "\e95c";
|
|
106
|
+
}
|
|
107
|
+
.e-image-editor .e-vertical-flip::before {
|
|
108
|
+
content: "\e95d";
|
|
109
|
+
}
|
|
110
|
+
.e-image-editor .e-clock-wise::before {
|
|
111
|
+
content: "\e960";
|
|
112
|
+
}
|
|
113
|
+
.e-image-editor .e-anti-clock-wise::before {
|
|
114
|
+
content: "\e95f";
|
|
115
|
+
}
|
|
116
|
+
.e-image-editor .e-rectangle::before {
|
|
117
|
+
content: "\e670";
|
|
118
|
+
}
|
|
119
|
+
.e-image-editor .e-circle::before {
|
|
120
|
+
content: "\e671";
|
|
121
|
+
}
|
|
122
|
+
.e-image-editor .e-triangle::before {
|
|
123
|
+
content: "\e954";
|
|
124
|
+
}
|
|
125
|
+
.e-image-editor .e-line::before {
|
|
126
|
+
content: "\e668";
|
|
127
|
+
}
|
|
128
|
+
.e-image-editor .e-add-text::before {
|
|
129
|
+
content: "\e35b";
|
|
130
|
+
}
|
|
131
|
+
.e-image-editor .e-free-pen::before {
|
|
132
|
+
content: "\e737";
|
|
133
|
+
}
|
|
134
|
+
.e-image-editor .e-arrow::before {
|
|
135
|
+
content: "\e669";
|
|
136
|
+
}
|
|
137
|
+
.e-image-editor .e-path::before {
|
|
138
|
+
content: "\e931";
|
|
139
|
+
}
|
|
80
140
|
|
|
81
141
|
.e-dropdown-popup.e-image-popup .e-custom::before {
|
|
82
142
|
content: "\e964";
|
|
@@ -132,6 +192,12 @@
|
|
|
132
192
|
.e-dropdown-popup.e-image-popup .e-vertical-flip::before {
|
|
133
193
|
content: "\e95d";
|
|
134
194
|
}
|
|
195
|
+
.e-dropdown-popup.e-image-popup .e-arrow::before {
|
|
196
|
+
content: "\e669";
|
|
197
|
+
}
|
|
198
|
+
.e-dropdown-popup.e-image-popup .e-path::before {
|
|
199
|
+
content: "\e931";
|
|
200
|
+
}
|
|
135
201
|
|
|
136
202
|
.e-ie-toolbar-upload-div.e-hide,
|
|
137
203
|
.e-ie-toolbar-upload-btn.e-hide {
|
|
@@ -260,11 +326,11 @@
|
|
|
260
326
|
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item {
|
|
261
327
|
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
262
328
|
}
|
|
263
|
-
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filterwrapper {
|
|
329
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filterwrapper, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper {
|
|
264
330
|
border: 2px solid transparent;
|
|
265
331
|
height: 100px;
|
|
266
332
|
}
|
|
267
|
-
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item:hover .filterwrapper, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item.e-selected .filterwrapper {
|
|
333
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item:hover .filterwrapper, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item:hover .filter-wrapper, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item.e-selected .filterwrapper, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item.e-selected .filter-wrapper {
|
|
268
334
|
border-top: 2px solid;
|
|
269
335
|
}
|
|
270
336
|
.e-image-editor .e-contextual-toolbar-wrapper .e-slider-container {
|
|
@@ -280,7 +346,7 @@
|
|
|
280
346
|
border-top: 1px solid #757575;
|
|
281
347
|
border-bottom: 1px solid #757575;
|
|
282
348
|
}
|
|
283
|
-
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item:hover .filterwrapper, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item.e-selected .filterwrapper {
|
|
349
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item:hover .filterwrapper, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item.e-selected .filterwrapper, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item:hover .filter-wrapper, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item.e-selected .filter-wrapper {
|
|
284
350
|
border-color: #7d7d7d;
|
|
285
351
|
}
|
|
286
352
|
.e-image-editor .e-toolbar .e-toolbar-items .e-tbar-btn.e-btn .e-icons {
|
|
@@ -77,6 +77,66 @@
|
|
|
77
77
|
.e-image-editor .e-fill.e-template .e-caret::before {
|
|
78
78
|
content: "\e35c";
|
|
79
79
|
}
|
|
80
|
+
.e-image-editor .e-custom::before {
|
|
81
|
+
content: "\e964";
|
|
82
|
+
}
|
|
83
|
+
.e-image-editor .e-circle::before {
|
|
84
|
+
content: "\e671";
|
|
85
|
+
}
|
|
86
|
+
.e-image-editor .e-square::before {
|
|
87
|
+
content: "\e965";
|
|
88
|
+
}
|
|
89
|
+
.e-image-editor .e-custom-a::before {
|
|
90
|
+
content: "\e966";
|
|
91
|
+
}
|
|
92
|
+
.e-image-editor .e-custom-b::before {
|
|
93
|
+
content: "\e967";
|
|
94
|
+
}
|
|
95
|
+
.e-image-editor .e-custom-c::before {
|
|
96
|
+
content: "\e968";
|
|
97
|
+
}
|
|
98
|
+
.e-image-editor .e-custom-d::before {
|
|
99
|
+
content: "\e96a";
|
|
100
|
+
}
|
|
101
|
+
.e-image-editor .e-custom-e::before {
|
|
102
|
+
content: "\e96b";
|
|
103
|
+
}
|
|
104
|
+
.e-image-editor .e-horizontal-flip::before {
|
|
105
|
+
content: "\e95c";
|
|
106
|
+
}
|
|
107
|
+
.e-image-editor .e-vertical-flip::before {
|
|
108
|
+
content: "\e95d";
|
|
109
|
+
}
|
|
110
|
+
.e-image-editor .e-clock-wise::before {
|
|
111
|
+
content: "\e960";
|
|
112
|
+
}
|
|
113
|
+
.e-image-editor .e-anti-clock-wise::before {
|
|
114
|
+
content: "\e95f";
|
|
115
|
+
}
|
|
116
|
+
.e-image-editor .e-rectangle::before {
|
|
117
|
+
content: "\e670";
|
|
118
|
+
}
|
|
119
|
+
.e-image-editor .e-circle::before {
|
|
120
|
+
content: "\e671";
|
|
121
|
+
}
|
|
122
|
+
.e-image-editor .e-triangle::before {
|
|
123
|
+
content: "\e954";
|
|
124
|
+
}
|
|
125
|
+
.e-image-editor .e-line::before {
|
|
126
|
+
content: "\e668";
|
|
127
|
+
}
|
|
128
|
+
.e-image-editor .e-add-text::before {
|
|
129
|
+
content: "\e35b";
|
|
130
|
+
}
|
|
131
|
+
.e-image-editor .e-free-pen::before {
|
|
132
|
+
content: "\e737";
|
|
133
|
+
}
|
|
134
|
+
.e-image-editor .e-arrow::before {
|
|
135
|
+
content: "\e669";
|
|
136
|
+
}
|
|
137
|
+
.e-image-editor .e-path::before {
|
|
138
|
+
content: "\e931";
|
|
139
|
+
}
|
|
80
140
|
|
|
81
141
|
.e-dropdown-popup.e-image-popup .e-custom::before {
|
|
82
142
|
content: "\e964";
|
|
@@ -132,6 +192,12 @@
|
|
|
132
192
|
.e-dropdown-popup.e-image-popup .e-vertical-flip::before {
|
|
133
193
|
content: "\e95d";
|
|
134
194
|
}
|
|
195
|
+
.e-dropdown-popup.e-image-popup .e-arrow::before {
|
|
196
|
+
content: "\e669";
|
|
197
|
+
}
|
|
198
|
+
.e-dropdown-popup.e-image-popup .e-path::before {
|
|
199
|
+
content: "\e931";
|
|
200
|
+
}
|
|
135
201
|
|
|
136
202
|
.e-ie-toolbar-upload-div.e-hide,
|
|
137
203
|
.e-ie-toolbar-upload-btn.e-hide {
|
|
@@ -265,11 +331,11 @@
|
|
|
265
331
|
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item {
|
|
266
332
|
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
267
333
|
}
|
|
268
|
-
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filterwrapper {
|
|
334
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filterwrapper, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper {
|
|
269
335
|
border: 2px solid transparent;
|
|
270
336
|
height: 100px;
|
|
271
337
|
}
|
|
272
|
-
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item:hover .filterwrapper, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item.e-selected .filterwrapper {
|
|
338
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item:hover .filterwrapper, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item:hover .filter-wrapper, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item.e-selected .filterwrapper, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item.e-selected .filter-wrapper {
|
|
273
339
|
border-top: 2px solid;
|
|
274
340
|
}
|
|
275
341
|
.e-image-editor .e-contextual-toolbar-wrapper .e-slider-container {
|
|
@@ -285,7 +351,7 @@
|
|
|
285
351
|
border-top: 1px solid #bdbdbd;
|
|
286
352
|
border-bottom: 1px solid #bdbdbd;
|
|
287
353
|
}
|
|
288
|
-
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item:hover .filterwrapper, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item.e-selected .filterwrapper {
|
|
354
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item:hover .filterwrapper, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item.e-selected .filterwrapper, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item:hover .filter-wrapper, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item.e-selected .filter-wrapper {
|
|
289
355
|
border-color: rgba(184, 184, 184, 0.9584);
|
|
290
356
|
}
|
|
291
357
|
.e-image-editor .e-toolbar .e-toolbar-items .e-tbar-btn.e-btn .e-icons {
|