@syncfusion/ej2-image-editor 20.4.51 → 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 +55 -5
- 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 +20032 -11350
- package/dist/es6/ej2-image-editor.es2015.js.map +1 -1
- package/dist/es6/ej2-image-editor.es5.js +20027 -11313
- 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 +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/base/image-editor-model.d.ts +626 -0
- package/src/image-editor/base/image-editor.d.ts +1300 -0
- 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 +79 -8
- package/styles/bootstrap.css +79 -8
- package/styles/bootstrap4.css +79 -8
- package/styles/bootstrap5-dark.css +81 -11
- package/styles/bootstrap5.css +81 -11
- package/styles/fabric-dark.css +79 -8
- package/styles/fabric.css +79 -8
- package/styles/fluent-dark.css +79 -8
- package/styles/fluent.css +79 -8
- package/styles/highcontrast-light.css +81 -10
- package/styles/highcontrast.css +82 -10
- 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 +28 -18
- package/styles/image-editor/_material3-dark-definition.scss +1 -0
- package/styles/image-editor/_material3-definition.scss +10 -10
- package/styles/image-editor/_theme.scss +11 -6
- package/styles/image-editor/bootstrap-dark.css +79 -8
- package/styles/image-editor/bootstrap.css +79 -8
- package/styles/image-editor/bootstrap4.css +79 -8
- package/styles/image-editor/bootstrap5-dark.css +81 -11
- package/styles/image-editor/bootstrap5.css +81 -11
- package/styles/image-editor/fabric-dark.css +79 -8
- package/styles/image-editor/fabric.css +79 -8
- package/styles/image-editor/fluent-dark.css +79 -8
- package/styles/image-editor/fluent.css +79 -8
- package/styles/image-editor/highcontrast-light.css +81 -10
- package/styles/image-editor/highcontrast.css +82 -10
- 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 +79 -16
- package/styles/image-editor/material.css +79 -11
- 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 +79 -8
- package/styles/image-editor/tailwind.css +79 -8
- package/styles/material-dark.css +79 -16
- package/styles/material.css +79 -11
- 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 +79 -8
- package/styles/tailwind.css +79 -8
- package/GitLeaksReport.json +0 -1
- package/gitleaks-ci/gitleaks +0 -0
- package/gitleaks-ci.tar.gz +0 -0
- package/src/image-editor/image-editor-model.d.ts +0 -331
- package/src/image-editor/image-editor.d.ts +0 -1428
- package/src/image-editor/image-editor.js +0 -12849
package/styles/fluent.css
CHANGED
|
@@ -73,6 +73,66 @@
|
|
|
73
73
|
.e-image-editor .e-fill.e-template .e-caret::before {
|
|
74
74
|
content: "\e783";
|
|
75
75
|
}
|
|
76
|
+
.e-image-editor .e-custom::before {
|
|
77
|
+
content: "\e8a9";
|
|
78
|
+
}
|
|
79
|
+
.e-image-editor .e-circle::before {
|
|
80
|
+
content: "\e7ca";
|
|
81
|
+
}
|
|
82
|
+
.e-image-editor .e-square::before {
|
|
83
|
+
content: "\e8aa";
|
|
84
|
+
}
|
|
85
|
+
.e-image-editor .e-custom-a::before {
|
|
86
|
+
content: "\e8ab";
|
|
87
|
+
}
|
|
88
|
+
.e-image-editor .e-custom-b::before {
|
|
89
|
+
content: "\e8ac";
|
|
90
|
+
}
|
|
91
|
+
.e-image-editor .e-custom-c::before {
|
|
92
|
+
content: "\e8ad";
|
|
93
|
+
}
|
|
94
|
+
.e-image-editor .e-custom-d::before {
|
|
95
|
+
content: "\e8ae";
|
|
96
|
+
}
|
|
97
|
+
.e-image-editor .e-custom-e::before {
|
|
98
|
+
content: "\e8af";
|
|
99
|
+
}
|
|
100
|
+
.e-image-editor .e-horizontal-flip::before {
|
|
101
|
+
content: "\e8a3";
|
|
102
|
+
}
|
|
103
|
+
.e-image-editor .e-vertical-flip::before {
|
|
104
|
+
content: "\e8a4";
|
|
105
|
+
}
|
|
106
|
+
.e-image-editor .e-clock-wise::before {
|
|
107
|
+
content: "\e8a6";
|
|
108
|
+
}
|
|
109
|
+
.e-image-editor .e-anti-clock-wise::before {
|
|
110
|
+
content: "\e8a5";
|
|
111
|
+
}
|
|
112
|
+
.e-image-editor .e-rectangle::before {
|
|
113
|
+
content: "\e723";
|
|
114
|
+
}
|
|
115
|
+
.e-image-editor .e-circle::before {
|
|
116
|
+
content: "\e7ca";
|
|
117
|
+
}
|
|
118
|
+
.e-image-editor .e-triangle::before {
|
|
119
|
+
content: "\e89c";
|
|
120
|
+
}
|
|
121
|
+
.e-image-editor .e-line::before {
|
|
122
|
+
content: "\e819";
|
|
123
|
+
}
|
|
124
|
+
.e-image-editor .e-add-text::before {
|
|
125
|
+
content: "\e82e";
|
|
126
|
+
}
|
|
127
|
+
.e-image-editor .e-free-pen::before {
|
|
128
|
+
content: "\e7db";
|
|
129
|
+
}
|
|
130
|
+
.e-image-editor .e-arrow::before {
|
|
131
|
+
content: "\e669";
|
|
132
|
+
}
|
|
133
|
+
.e-image-editor .e-path::before {
|
|
134
|
+
content: "\e931";
|
|
135
|
+
}
|
|
76
136
|
|
|
77
137
|
.e-dropdown-popup.e-image-popup .e-custom::before {
|
|
78
138
|
content: "\e8a9";
|
|
@@ -131,6 +191,17 @@
|
|
|
131
191
|
.e-dropdown-popup.e-image-popup .e-add-text::before {
|
|
132
192
|
content: "\e82e";
|
|
133
193
|
}
|
|
194
|
+
.e-dropdown-popup.e-image-popup .e-arrow::before {
|
|
195
|
+
content: "\e669";
|
|
196
|
+
}
|
|
197
|
+
.e-dropdown-popup.e-image-popup .e-path::before {
|
|
198
|
+
content: "\e931";
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
.e-ie-toolbar-upload-div.e-hide,
|
|
202
|
+
.e-ie-toolbar-upload-btn.e-hide {
|
|
203
|
+
display: none;
|
|
204
|
+
}
|
|
134
205
|
|
|
135
206
|
.e-device.e-image-editor .e-img-font-style.e-template {
|
|
136
207
|
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
@@ -235,7 +306,7 @@
|
|
|
235
306
|
.e-image-editor .e-toolbar-area + .e-canvas-wrapper {
|
|
236
307
|
border-top: 1px solid #edebe9;
|
|
237
308
|
}
|
|
238
|
-
.e-image-editor .e-canvas-wrapper .e-textarea {
|
|
309
|
+
.e-image-editor .e-toolbar-area + .e-canvas-wrapper .e-textarea {
|
|
239
310
|
line-height: initial !important; /* stylelint-disable-line declaration-no-important */
|
|
240
311
|
}
|
|
241
312
|
.e-image-editor .e-bottom-toolbar {
|
|
@@ -254,11 +325,11 @@
|
|
|
254
325
|
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item {
|
|
255
326
|
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
256
327
|
}
|
|
257
|
-
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filterwrapper {
|
|
328
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filterwrapper, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper {
|
|
258
329
|
border: 2px solid transparent;
|
|
259
330
|
height: 100px;
|
|
260
331
|
}
|
|
261
|
-
.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 {
|
|
332
|
+
.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 {
|
|
262
333
|
border-top: 2px solid;
|
|
263
334
|
}
|
|
264
335
|
.e-image-editor .e-contextual-toolbar-wrapper .e-slider-container {
|
|
@@ -274,7 +345,7 @@
|
|
|
274
345
|
border-top: 1px solid #edebe9;
|
|
275
346
|
border-bottom: 1px solid #edebe9;
|
|
276
347
|
}
|
|
277
|
-
.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 {
|
|
348
|
+
.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 {
|
|
278
349
|
border-color: #edebe9;
|
|
279
350
|
}
|
|
280
351
|
.e-image-editor .e-toolbar .e-toolbar-items .e-tbar-btn.e-btn .e-icons {
|
|
@@ -287,24 +358,24 @@
|
|
|
287
358
|
background: inherit;
|
|
288
359
|
border: none;
|
|
289
360
|
margin-top: 2px;
|
|
290
|
-
background
|
|
361
|
+
background: #f3f2f1;
|
|
291
362
|
color: #605e5c;
|
|
292
363
|
}
|
|
293
364
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn .e-caret-hide {
|
|
294
365
|
display: none !important; /* stylelint-disable-line declaration-no-important */
|
|
295
366
|
}
|
|
296
367
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:hover {
|
|
297
|
-
background
|
|
368
|
+
background: #f3f2f1;
|
|
298
369
|
box-shadow: none;
|
|
299
370
|
color: #323130;
|
|
300
371
|
}
|
|
301
372
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:focus {
|
|
302
|
-
background
|
|
373
|
+
background: #f3f2f1;
|
|
303
374
|
box-shadow: none;
|
|
304
375
|
color: #323130;
|
|
305
376
|
}
|
|
306
377
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:active {
|
|
307
|
-
background
|
|
378
|
+
background: #edebe9;
|
|
308
379
|
box-shadow: none;
|
|
309
380
|
color: #323130;
|
|
310
381
|
}
|
|
@@ -67,6 +67,66 @@
|
|
|
67
67
|
.e-image-editor .e-fill.e-template .e-caret::before {
|
|
68
68
|
content: "\e35c";
|
|
69
69
|
}
|
|
70
|
+
.e-image-editor .e-custom::before {
|
|
71
|
+
content: "\e959";
|
|
72
|
+
}
|
|
73
|
+
.e-image-editor .e-circle::before {
|
|
74
|
+
content: "\e671";
|
|
75
|
+
}
|
|
76
|
+
.e-image-editor .e-square::before {
|
|
77
|
+
content: "\e95a";
|
|
78
|
+
}
|
|
79
|
+
.e-image-editor .e-custom-a::before {
|
|
80
|
+
content: "\e95b";
|
|
81
|
+
}
|
|
82
|
+
.e-image-editor .e-custom-b::before {
|
|
83
|
+
content: "\e95c";
|
|
84
|
+
}
|
|
85
|
+
.e-image-editor .e-custom-c::before {
|
|
86
|
+
content: "\e95d";
|
|
87
|
+
}
|
|
88
|
+
.e-image-editor .e-custom-d::before {
|
|
89
|
+
content: "\e95e";
|
|
90
|
+
}
|
|
91
|
+
.e-image-editor .e-custom-e::before {
|
|
92
|
+
content: "\e960";
|
|
93
|
+
}
|
|
94
|
+
.e-image-editor .e-horizontal-flip::before {
|
|
95
|
+
content: "\e951";
|
|
96
|
+
}
|
|
97
|
+
.e-image-editor .e-vertical-flip::before {
|
|
98
|
+
content: "\e952";
|
|
99
|
+
}
|
|
100
|
+
.e-image-editor .e-clock-wise::before {
|
|
101
|
+
content: "\e956";
|
|
102
|
+
}
|
|
103
|
+
.e-image-editor .e-anti-clock-wise::before {
|
|
104
|
+
content: "\e955";
|
|
105
|
+
}
|
|
106
|
+
.e-image-editor .e-rectangle::before {
|
|
107
|
+
content: "\e670";
|
|
108
|
+
}
|
|
109
|
+
.e-image-editor .e-circle::before {
|
|
110
|
+
content: "\e671";
|
|
111
|
+
}
|
|
112
|
+
.e-image-editor .e-triangle::before {
|
|
113
|
+
content: "\e949";
|
|
114
|
+
}
|
|
115
|
+
.e-image-editor .e-line::before {
|
|
116
|
+
content: "\e668";
|
|
117
|
+
}
|
|
118
|
+
.e-image-editor .e-add-text::before {
|
|
119
|
+
content: "\e35b";
|
|
120
|
+
}
|
|
121
|
+
.e-image-editor .e-free-pen::before {
|
|
122
|
+
content: "\e739";
|
|
123
|
+
}
|
|
124
|
+
.e-image-editor .e-arrow::before {
|
|
125
|
+
content: "\e669";
|
|
126
|
+
}
|
|
127
|
+
.e-image-editor .e-path::before {
|
|
128
|
+
content: "\e931";
|
|
129
|
+
}
|
|
70
130
|
|
|
71
131
|
.e-dropdown-popup.e-image-popup .e-custom::before {
|
|
72
132
|
content: "\e959";
|
|
@@ -122,6 +182,17 @@
|
|
|
122
182
|
.e-dropdown-popup.e-image-popup .e-vertical-flip::before {
|
|
123
183
|
content: "\e952";
|
|
124
184
|
}
|
|
185
|
+
.e-dropdown-popup.e-image-popup .e-arrow::before {
|
|
186
|
+
content: "\e669";
|
|
187
|
+
}
|
|
188
|
+
.e-dropdown-popup.e-image-popup .e-path::before {
|
|
189
|
+
content: "\e931";
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
.e-ie-toolbar-upload-div.e-hide,
|
|
193
|
+
.e-ie-toolbar-upload-btn.e-hide {
|
|
194
|
+
display: none;
|
|
195
|
+
}
|
|
125
196
|
|
|
126
197
|
.e-device.e-image-editor .e-img-font-style.e-template {
|
|
127
198
|
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
@@ -226,7 +297,7 @@
|
|
|
226
297
|
.e-image-editor .e-toolbar-area + .e-canvas-wrapper {
|
|
227
298
|
border-top: 1px solid #000;
|
|
228
299
|
}
|
|
229
|
-
.e-image-editor .e-canvas-wrapper .e-textarea {
|
|
300
|
+
.e-image-editor .e-toolbar-area + .e-canvas-wrapper .e-textarea {
|
|
230
301
|
line-height: initial !important; /* stylelint-disable-line declaration-no-important */
|
|
231
302
|
}
|
|
232
303
|
.e-image-editor .e-bottom-toolbar {
|
|
@@ -245,11 +316,11 @@
|
|
|
245
316
|
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item {
|
|
246
317
|
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
247
318
|
}
|
|
248
|
-
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filterwrapper {
|
|
319
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filterwrapper, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper {
|
|
249
320
|
border: 2px solid transparent;
|
|
250
321
|
height: 100px;
|
|
251
322
|
}
|
|
252
|
-
.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 {
|
|
323
|
+
.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 {
|
|
253
324
|
border-top: 2px solid;
|
|
254
325
|
}
|
|
255
326
|
.e-image-editor .e-contextual-toolbar-wrapper .e-slider-container {
|
|
@@ -265,37 +336,37 @@
|
|
|
265
336
|
border-top: 1px solid #000;
|
|
266
337
|
border-bottom: 1px solid #000;
|
|
267
338
|
}
|
|
268
|
-
.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 {
|
|
339
|
+
.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 {
|
|
269
340
|
border-color: #400074;
|
|
270
341
|
}
|
|
271
342
|
.e-image-editor .e-toolbar .e-toolbar-items .e-tbar-btn.e-btn .e-icons {
|
|
272
343
|
color: #000;
|
|
273
344
|
}
|
|
274
345
|
.e-image-editor .e-toolbar .e-toolbar-items .e-tbar-btn.e-btn.e-selected-btn {
|
|
275
|
-
background: #
|
|
346
|
+
background: #400074 !important; /* stylelint-disable-line declaration-no-important */
|
|
276
347
|
}
|
|
277
348
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn {
|
|
278
349
|
background: inherit;
|
|
279
350
|
border: none;
|
|
280
351
|
margin-top: 0;
|
|
281
|
-
background
|
|
352
|
+
background: #fff;
|
|
282
353
|
color: #000;
|
|
283
354
|
}
|
|
284
355
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn .e-caret-hide {
|
|
285
356
|
display: none !important; /* stylelint-disable-line declaration-no-important */
|
|
286
357
|
}
|
|
287
358
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:hover {
|
|
288
|
-
background
|
|
359
|
+
background: #ecf;
|
|
289
360
|
box-shadow: none;
|
|
290
361
|
color: #000;
|
|
291
362
|
}
|
|
292
363
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:focus {
|
|
293
|
-
background
|
|
364
|
+
background: #fff;
|
|
294
365
|
box-shadow: none;
|
|
295
366
|
color: #000;
|
|
296
367
|
}
|
|
297
368
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:active {
|
|
298
|
-
background
|
|
369
|
+
background: #400074;
|
|
299
370
|
box-shadow: none;
|
|
300
371
|
color: #fff;
|
|
301
372
|
}
|
|
@@ -316,5 +387,5 @@
|
|
|
316
387
|
}
|
|
317
388
|
|
|
318
389
|
.e-dropdown-popup .e-selected-btn {
|
|
319
|
-
background: #
|
|
390
|
+
background: #400074 !important; /* stylelint-disable-line declaration-no-important */
|
|
320
391
|
}
|
package/styles/highcontrast.css
CHANGED
|
@@ -67,6 +67,66 @@
|
|
|
67
67
|
.e-image-editor .e-fill.e-template .e-caret::before {
|
|
68
68
|
content: "\e35c";
|
|
69
69
|
}
|
|
70
|
+
.e-image-editor .e-custom::before {
|
|
71
|
+
content: "\e959";
|
|
72
|
+
}
|
|
73
|
+
.e-image-editor .e-circle::before {
|
|
74
|
+
content: "\e671";
|
|
75
|
+
}
|
|
76
|
+
.e-image-editor .e-square::before {
|
|
77
|
+
content: "\e95a";
|
|
78
|
+
}
|
|
79
|
+
.e-image-editor .e-custom-a::before {
|
|
80
|
+
content: "\e95b";
|
|
81
|
+
}
|
|
82
|
+
.e-image-editor .e-custom-b::before {
|
|
83
|
+
content: "\e95c";
|
|
84
|
+
}
|
|
85
|
+
.e-image-editor .e-custom-c::before {
|
|
86
|
+
content: "\e95d";
|
|
87
|
+
}
|
|
88
|
+
.e-image-editor .e-custom-d::before {
|
|
89
|
+
content: "\e95e";
|
|
90
|
+
}
|
|
91
|
+
.e-image-editor .e-custom-e::before {
|
|
92
|
+
content: "\e960";
|
|
93
|
+
}
|
|
94
|
+
.e-image-editor .e-horizontal-flip::before {
|
|
95
|
+
content: "\e951";
|
|
96
|
+
}
|
|
97
|
+
.e-image-editor .e-vertical-flip::before {
|
|
98
|
+
content: "\e952";
|
|
99
|
+
}
|
|
100
|
+
.e-image-editor .e-clock-wise::before {
|
|
101
|
+
content: "\e956";
|
|
102
|
+
}
|
|
103
|
+
.e-image-editor .e-anti-clock-wise::before {
|
|
104
|
+
content: "\e955";
|
|
105
|
+
}
|
|
106
|
+
.e-image-editor .e-rectangle::before {
|
|
107
|
+
content: "\e670";
|
|
108
|
+
}
|
|
109
|
+
.e-image-editor .e-circle::before {
|
|
110
|
+
content: "\e671";
|
|
111
|
+
}
|
|
112
|
+
.e-image-editor .e-triangle::before {
|
|
113
|
+
content: "\e949";
|
|
114
|
+
}
|
|
115
|
+
.e-image-editor .e-line::before {
|
|
116
|
+
content: "\e668";
|
|
117
|
+
}
|
|
118
|
+
.e-image-editor .e-add-text::before {
|
|
119
|
+
content: "\e35b";
|
|
120
|
+
}
|
|
121
|
+
.e-image-editor .e-free-pen::before {
|
|
122
|
+
content: "\e739";
|
|
123
|
+
}
|
|
124
|
+
.e-image-editor .e-arrow::before {
|
|
125
|
+
content: "\e669";
|
|
126
|
+
}
|
|
127
|
+
.e-image-editor .e-path::before {
|
|
128
|
+
content: "\e931";
|
|
129
|
+
}
|
|
70
130
|
|
|
71
131
|
.e-dropdown-popup.e-image-popup .e-custom::before {
|
|
72
132
|
content: "\e959";
|
|
@@ -122,6 +182,17 @@
|
|
|
122
182
|
.e-dropdown-popup.e-image-popup .e-vertical-flip::before {
|
|
123
183
|
content: "\e952";
|
|
124
184
|
}
|
|
185
|
+
.e-dropdown-popup.e-image-popup .e-arrow::before {
|
|
186
|
+
content: "\e669";
|
|
187
|
+
}
|
|
188
|
+
.e-dropdown-popup.e-image-popup .e-path::before {
|
|
189
|
+
content: "\e931";
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
.e-ie-toolbar-upload-div.e-hide,
|
|
193
|
+
.e-ie-toolbar-upload-btn.e-hide {
|
|
194
|
+
display: none;
|
|
195
|
+
}
|
|
125
196
|
|
|
126
197
|
.e-device.e-image-editor .e-img-font-style.e-template {
|
|
127
198
|
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
@@ -226,7 +297,7 @@
|
|
|
226
297
|
.e-image-editor .e-toolbar-area + .e-canvas-wrapper {
|
|
227
298
|
border-top: 1px solid #fff;
|
|
228
299
|
}
|
|
229
|
-
.e-image-editor .e-canvas-wrapper .e-textarea {
|
|
300
|
+
.e-image-editor .e-toolbar-area + .e-canvas-wrapper .e-textarea {
|
|
230
301
|
line-height: initial !important; /* stylelint-disable-line declaration-no-important */
|
|
231
302
|
}
|
|
232
303
|
.e-image-editor .e-bottom-toolbar {
|
|
@@ -245,11 +316,11 @@
|
|
|
245
316
|
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item {
|
|
246
317
|
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
247
318
|
}
|
|
248
|
-
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filterwrapper {
|
|
319
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filterwrapper, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper {
|
|
249
320
|
border: 2px solid transparent;
|
|
250
321
|
height: 100px;
|
|
251
322
|
}
|
|
252
|
-
.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 {
|
|
323
|
+
.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 {
|
|
253
324
|
border-top: 2px solid;
|
|
254
325
|
}
|
|
255
326
|
.e-image-editor .e-contextual-toolbar-wrapper .e-slider-container {
|
|
@@ -265,37 +336,37 @@
|
|
|
265
336
|
border-top: 1px solid #fff;
|
|
266
337
|
border-bottom: 1px solid #fff;
|
|
267
338
|
}
|
|
268
|
-
.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 {
|
|
339
|
+
.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 {
|
|
269
340
|
border-color: #ffd939;
|
|
270
341
|
}
|
|
271
342
|
.e-image-editor .e-toolbar .e-toolbar-items .e-tbar-btn.e-btn .e-icons {
|
|
272
343
|
color: #fff;
|
|
273
344
|
}
|
|
274
345
|
.e-image-editor .e-toolbar .e-toolbar-items .e-tbar-btn.e-btn.e-selected-btn {
|
|
275
|
-
background: #
|
|
346
|
+
background: #ffd939 !important; /* stylelint-disable-line declaration-no-important */
|
|
276
347
|
}
|
|
277
348
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn {
|
|
278
349
|
background: inherit;
|
|
279
350
|
border: none;
|
|
280
351
|
margin-top: 0;
|
|
281
|
-
background
|
|
352
|
+
background: #000;
|
|
282
353
|
color: #fff;
|
|
283
354
|
}
|
|
284
355
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn .e-caret-hide {
|
|
285
356
|
display: none !important; /* stylelint-disable-line declaration-no-important */
|
|
286
357
|
}
|
|
287
358
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:hover {
|
|
288
|
-
background
|
|
359
|
+
background: #685708;
|
|
289
360
|
box-shadow: none;
|
|
290
361
|
color: #fff;
|
|
291
362
|
}
|
|
292
363
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:focus {
|
|
293
|
-
background
|
|
364
|
+
background: #000;
|
|
294
365
|
box-shadow: none;
|
|
295
366
|
color: #fff;
|
|
296
367
|
}
|
|
297
368
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:active {
|
|
298
|
-
background
|
|
369
|
+
background: #ffd939;
|
|
299
370
|
box-shadow: none;
|
|
300
371
|
color: #000;
|
|
301
372
|
}
|
|
@@ -316,5 +387,6 @@
|
|
|
316
387
|
}
|
|
317
388
|
|
|
318
389
|
.e-dropdown-popup .e-selected-btn {
|
|
319
|
-
background: #
|
|
390
|
+
background: #ffd939 !important; /* stylelint-disable-line declaration-no-important */
|
|
391
|
+
color: #000 !important; /* stylelint-disable-line declaration-no-important */
|
|
320
392
|
}
|
|
@@ -2,7 +2,7 @@ $image-editor-background: $bg-base-0 !default;
|
|
|
2
2
|
$image-editor-border: 1px solid $border-fg !default;
|
|
3
3
|
$image-editor-toolbar-icon-color: $content-font !default;
|
|
4
4
|
$img-editor-cp-preview-border-bottom-color: $selection-font !default;
|
|
5
|
-
$image-editor-icon-sel-bg-color: $
|
|
5
|
+
$image-editor-icon-sel-bg-color: $selection-bg !default;
|
|
6
6
|
$image-editor-ddbtn-margin-top: 0 !default;
|
|
7
7
|
$image-editor-tbar-height: 38px !default;
|
|
8
8
|
$image-editor-bigger-tbar-height: 48px !default;
|
|
@@ -2,7 +2,7 @@ $image-editor-background: $bg-base-0 !default;
|
|
|
2
2
|
$image-editor-border: 1px solid $border-fg !default;
|
|
3
3
|
$image-editor-toolbar-icon-color: $content-font !default;
|
|
4
4
|
$img-editor-cp-preview-border-bottom-color: $border-fg !default;
|
|
5
|
-
$image-editor-icon-sel-bg-color: $
|
|
5
|
+
$image-editor-icon-sel-bg-color: $selection-bg !default;
|
|
6
6
|
$image-editor-ddbtn-margin-top: 0 !default;
|
|
7
7
|
$image-editor-tbar-height: 38px !default;
|
|
8
8
|
$image-editor-bigger-tbar-height: 48px !default;
|
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
@include export-module('image-editor-layout') {
|
|
2
2
|
|
|
3
|
+
.e-ie-toolbar-upload-div.e-hide,
|
|
4
|
+
.e-ie-toolbar-upload-btn.e-hide {
|
|
5
|
+
display: none;
|
|
6
|
+
}
|
|
7
|
+
|
|
3
8
|
.e-device.e-image-editor {
|
|
4
9
|
& .e-img-font-style.e-template{
|
|
5
10
|
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
@@ -40,6 +45,7 @@
|
|
|
40
45
|
font-size: $image-editor-bigger-tbar-btn-fontsize;
|
|
41
46
|
@if $skin-name == 'bootstrap5' or $skin-name == 'bootstrap5-dark' {
|
|
42
47
|
padding-top: 4px;
|
|
48
|
+
padding-bottom: 4px;
|
|
43
49
|
}
|
|
44
50
|
}
|
|
45
51
|
}
|
|
@@ -94,9 +100,10 @@
|
|
|
94
100
|
|
|
95
101
|
& .e-toolbar {
|
|
96
102
|
border: none;
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
103
|
+
@if $skin-name != 'Material3' {
|
|
104
|
+
height: $image-editor-tbar-height !important; /* stylelint-disable-line declaration-no-important */
|
|
105
|
+
min-height: $image-editor-tbar-height !important; /* stylelint-disable-line declaration-no-important */
|
|
106
|
+
}
|
|
100
107
|
& .e-toolbar-items {
|
|
101
108
|
& .e-toolbar-item {
|
|
102
109
|
& .e-tbar-btn.e-btn.e-tbtn-txt {
|
|
@@ -113,6 +120,7 @@
|
|
|
113
120
|
font-size: $image-editor-tbar-btn-fontsize;
|
|
114
121
|
@if $skin-name == 'bootstrap5' or $skin-name == 'bootstrap5-dark' {
|
|
115
122
|
padding-top: 4px;
|
|
123
|
+
padding-bottom: 4px;
|
|
116
124
|
}
|
|
117
125
|
}
|
|
118
126
|
}
|
|
@@ -124,12 +132,6 @@
|
|
|
124
132
|
|
|
125
133
|
& .e-file-select-wrap {
|
|
126
134
|
padding: 0;
|
|
127
|
-
|
|
128
|
-
& .e-btn-icon {
|
|
129
|
-
@if $skin-name == 'bootstrap5' or $skin-name == 'bootstrap5-dark' {
|
|
130
|
-
margin-top: -2px !important; /* stylelint-disable-line declaration-no-important */
|
|
131
|
-
}
|
|
132
|
-
}
|
|
133
135
|
}
|
|
134
136
|
|
|
135
137
|
& .e-image-upload {
|
|
@@ -143,9 +145,6 @@
|
|
|
143
145
|
}
|
|
144
146
|
|
|
145
147
|
& .e-icons.e-upload-icon {
|
|
146
|
-
@if $skin-name == 'material' {
|
|
147
|
-
margin-top: 7px;
|
|
148
|
-
}
|
|
149
148
|
@if $skin-name == 'bootstrap5' or $skin-name == 'bootstrap5-dark' {
|
|
150
149
|
padding-top: 6px;
|
|
151
150
|
}
|
|
@@ -201,9 +200,7 @@
|
|
|
201
200
|
|
|
202
201
|
& .e-toolbar-area + .e-canvas-wrapper {
|
|
203
202
|
border-top: $image-editor-border;
|
|
204
|
-
}
|
|
205
203
|
|
|
206
|
-
& .e-canvas-wrapper {
|
|
207
204
|
& .e-textarea {
|
|
208
205
|
line-height: initial !important; /* stylelint-disable-line declaration-no-important */
|
|
209
206
|
}
|
|
@@ -218,7 +215,12 @@
|
|
|
218
215
|
z-index: 1;
|
|
219
216
|
|
|
220
217
|
& .e-toolbar {
|
|
221
|
-
|
|
218
|
+
@if $skin-name == 'Material3' {
|
|
219
|
+
height: 140px !important; /* stylelint-disable-line declaration-no-important */
|
|
220
|
+
}
|
|
221
|
+
@else {
|
|
222
|
+
height: 130px !important; /* stylelint-disable-line declaration-no-important */
|
|
223
|
+
}
|
|
222
224
|
}
|
|
223
225
|
|
|
224
226
|
&.e-hide {
|
|
@@ -228,20 +230,28 @@
|
|
|
228
230
|
& .e-toolbar-item {
|
|
229
231
|
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
230
232
|
|
|
231
|
-
& .filterwrapper
|
|
233
|
+
& .filterwrapper,
|
|
234
|
+
& .filter-wrapper {
|
|
232
235
|
border: 2px solid transparent;
|
|
233
236
|
height: 100px;
|
|
234
237
|
}
|
|
235
238
|
}
|
|
236
239
|
|
|
237
240
|
& .e-toolbar-item:hover .filterwrapper,
|
|
238
|
-
& .e-toolbar-item.
|
|
241
|
+
& .e-toolbar-item:hover .filter-wrapper,
|
|
242
|
+
& .e-toolbar-item.e-selected .filterwrapper,
|
|
243
|
+
& .e-toolbar-item.e-selected .filter-wrapper {
|
|
239
244
|
border-top: 2px solid;
|
|
240
245
|
}
|
|
241
246
|
|
|
242
247
|
& .e-slider-container {
|
|
243
248
|
margin-left: calc(50% - 137px);
|
|
244
|
-
|
|
249
|
+
@if $skin-name == 'Material3' {
|
|
250
|
+
height: 70px !important; /* stylelint-disable-line declaration-no-important */
|
|
251
|
+
}
|
|
252
|
+
@else {
|
|
253
|
+
height: 54px !important; /* stylelint-disable-line declaration-no-important */
|
|
254
|
+
}
|
|
245
255
|
}
|
|
246
256
|
}
|
|
247
257
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import './material3-definition.scss';
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
$image-editor-border: 1px solid $
|
|
2
|
-
$image-editor-background: $
|
|
3
|
-
$image-editor-toolbar-icon-color: $icon-color;
|
|
4
|
-
$img-editor-cp-preview-border-bottom-color: $black !default;
|
|
5
|
-
$image-editor-icon-sel-bg-color: $
|
|
1
|
+
$image-editor-border: 1px solid rgba($border-light) !default;
|
|
2
|
+
$image-editor-background: $content-bg-color-alt5 !default;
|
|
3
|
+
$image-editor-toolbar-icon-color: rgba($icon-color);
|
|
4
|
+
$img-editor-cp-preview-border-bottom-color: rgba($black) !default;
|
|
5
|
+
$image-editor-icon-sel-bg-color: $content-bg-color-alt2 !default;
|
|
6
6
|
$image-editor-ddbtn-margin-top: 0 !default;
|
|
7
|
-
$image-editor-tbar-height:
|
|
8
|
-
$image-editor-bigger-tbar-height:
|
|
9
|
-
$image-editor-tbar-btn-fontsize:
|
|
10
|
-
$image-editor-bigger-tbar-btn-fontsize:
|
|
11
|
-
$image-editor-contextual-toolbar:
|
|
7
|
+
$image-editor-tbar-height: 40px !default;
|
|
8
|
+
$image-editor-bigger-tbar-height: 56px !default;
|
|
9
|
+
$image-editor-tbar-btn-fontsize: $text-base !default;
|
|
10
|
+
$image-editor-bigger-tbar-btn-fontsize: $text-lg !default;
|
|
11
|
+
$image-editor-contextual-toolbar: $content-bg-color-alt2 !default;
|
|
@@ -8,7 +8,9 @@
|
|
|
8
8
|
border-bottom: $image-editor-border;
|
|
9
9
|
|
|
10
10
|
& .e-toolbar-item:hover .filterwrapper,
|
|
11
|
-
& .e-toolbar-item.e-selected .filterwrapper
|
|
11
|
+
& .e-toolbar-item.e-selected .filterwrapper,
|
|
12
|
+
& .e-toolbar-item:hover .filter-wrapper,
|
|
13
|
+
& .e-toolbar-item.e-selected .filter-wrapper {
|
|
12
14
|
border-color: $btn-active-bgcolor;
|
|
13
15
|
}
|
|
14
16
|
}
|
|
@@ -37,28 +39,31 @@
|
|
|
37
39
|
border: none;
|
|
38
40
|
margin-top: $image-editor-ddbtn-margin-top;
|
|
39
41
|
@if $skin-name == 'bootstrap4' or $skin-name == 'bootstrap5' $skin-name == 'bootstrap5-dark' {
|
|
40
|
-
background
|
|
42
|
+
background: $tbar-default-bg;
|
|
41
43
|
color: $tbar-default-icon-color;
|
|
42
44
|
}
|
|
45
|
+
@if $skin-name == 'Material3' {
|
|
46
|
+
box-shadow: none;
|
|
47
|
+
}
|
|
43
48
|
|
|
44
49
|
& .e-caret-hide {
|
|
45
50
|
display: none !important; /* stylelint-disable-line declaration-no-important */
|
|
46
51
|
}
|
|
47
52
|
|
|
48
53
|
&:hover {
|
|
49
|
-
background
|
|
54
|
+
background: $btn-hover-bgcolor;
|
|
50
55
|
box-shadow: none;
|
|
51
56
|
color: $btn-hover-color;
|
|
52
57
|
}
|
|
53
58
|
|
|
54
59
|
&:focus {
|
|
55
|
-
background
|
|
60
|
+
background: $btn-focus-bgcolor;
|
|
56
61
|
box-shadow: none;
|
|
57
62
|
color: $btn-focus-color;
|
|
58
63
|
}
|
|
59
64
|
|
|
60
65
|
&:active {
|
|
61
|
-
background
|
|
66
|
+
background: $btn-active-bgcolor;
|
|
62
67
|
box-shadow: none;
|
|
63
68
|
color: $btn-active-color;
|
|
64
69
|
}
|
|
@@ -101,7 +106,7 @@
|
|
|
101
106
|
@if $skin-name == 'bootstrap5' or $skin-name == 'bootstrap5-dark' {
|
|
102
107
|
color: $secondary-text-color-focus !important; /* stylelint-disable-line declaration-no-important */
|
|
103
108
|
}
|
|
104
|
-
@if $skin-name == 'bootstrap4' {
|
|
109
|
+
@if $skin-name == 'bootstrap4' or $skin-name == 'highcontrast' {
|
|
105
110
|
color: $drop-down-btn-selected-color !important; /* stylelint-disable-line declaration-no-important */
|
|
106
111
|
}
|
|
107
112
|
}
|