@syncfusion/ej2-image-editor 25.2.3 → 26.1.35

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.
Files changed (128) hide show
  1. package/.eslintrc.json +3 -2
  2. package/dist/ej2-image-editor.umd.min.js +2 -2
  3. package/dist/ej2-image-editor.umd.min.js.map +1 -1
  4. package/dist/es6/ej2-image-editor.es2015.js +2679 -829
  5. package/dist/es6/ej2-image-editor.es2015.js.map +1 -1
  6. package/dist/es6/ej2-image-editor.es5.js +2762 -872
  7. package/dist/es6/ej2-image-editor.es5.js.map +1 -1
  8. package/dist/global/ej2-image-editor.min.js +2 -2
  9. package/dist/global/ej2-image-editor.min.js.map +1 -1
  10. package/dist/global/index.d.ts +1 -1
  11. package/package.json +13 -12
  12. package/src/image-editor/action/crop.d.ts +0 -1
  13. package/src/image-editor/action/crop.js +35 -77
  14. package/src/image-editor/action/draw.d.ts +3 -0
  15. package/src/image-editor/action/draw.js +190 -81
  16. package/src/image-editor/action/export.d.ts +3 -0
  17. package/src/image-editor/action/export.js +99 -40
  18. package/src/image-editor/action/filter.d.ts +0 -1
  19. package/src/image-editor/action/filter.js +4 -24
  20. package/src/image-editor/action/freehand-draw.js +30 -8
  21. package/src/image-editor/action/selection.d.ts +10 -0
  22. package/src/image-editor/action/selection.js +444 -99
  23. package/src/image-editor/action/shape.d.ts +11 -1
  24. package/src/image-editor/action/shape.js +520 -127
  25. package/src/image-editor/action/transform.d.ts +0 -1
  26. package/src/image-editor/action/transform.js +53 -69
  27. package/src/image-editor/action/undo-redo.d.ts +2 -0
  28. package/src/image-editor/action/undo-redo.js +114 -29
  29. package/src/image-editor/base/enum.d.ts +5 -1
  30. package/src/image-editor/base/enum.js +4 -0
  31. package/src/image-editor/base/image-editor-model.d.ts +8 -6
  32. package/src/image-editor/base/image-editor.d.ts +116 -7
  33. package/src/image-editor/base/image-editor.js +378 -52
  34. package/src/image-editor/base/interface.d.ts +17 -0
  35. package/src/image-editor/base/interface.js +0 -1
  36. package/src/image-editor/renderer/toolbar.d.ts +14 -1
  37. package/src/image-editor/renderer/toolbar.js +831 -191
  38. package/styles/bootstrap-dark.css +279 -97
  39. package/styles/bootstrap-dark.scss +13 -1
  40. package/styles/bootstrap.css +282 -98
  41. package/styles/bootstrap.scss +13 -1
  42. package/styles/bootstrap4.css +280 -97
  43. package/styles/bootstrap4.scss +13 -1
  44. package/styles/bootstrap5-dark.css +280 -101
  45. package/styles/bootstrap5-dark.scss +13 -1
  46. package/styles/bootstrap5.css +280 -101
  47. package/styles/bootstrap5.scss +13 -1
  48. package/styles/fabric-dark.css +281 -97
  49. package/styles/fabric-dark.scss +13 -1
  50. package/styles/fabric.css +284 -97
  51. package/styles/fabric.scss +13 -1
  52. package/styles/fluent-dark.css +287 -101
  53. package/styles/fluent-dark.scss +13 -1
  54. package/styles/fluent.css +287 -101
  55. package/styles/fluent.scss +13 -1
  56. package/styles/fluent2.css +1851 -0
  57. package/styles/fluent2.scss +13 -0
  58. package/styles/highcontrast-light.css +279 -97
  59. package/styles/highcontrast-light.scss +13 -1
  60. package/styles/highcontrast.css +284 -97
  61. package/styles/highcontrast.scss +13 -1
  62. package/styles/image-editor/_bds-definition.scss +5 -0
  63. package/styles/image-editor/_bootstrap-dark-definition.scss +5 -0
  64. package/styles/image-editor/_bootstrap-definition.scss +5 -0
  65. package/styles/image-editor/_bootstrap4-definition.scss +5 -0
  66. package/styles/image-editor/_bootstrap5-definition.scss +5 -0
  67. package/styles/image-editor/_bootstrap5.3-definition.scss +26 -0
  68. package/styles/image-editor/_fabric-dark-definition.scss +5 -0
  69. package/styles/image-editor/_fabric-definition.scss +5 -0
  70. package/styles/image-editor/_fluent-definition.scss +5 -0
  71. package/styles/image-editor/_fluent2-definition.scss +26 -0
  72. package/styles/image-editor/_fusionnew-definition.scss +5 -0
  73. package/styles/image-editor/_highcontrast-definition.scss +5 -0
  74. package/styles/image-editor/_highcontrast-light-definition.scss +5 -0
  75. package/styles/image-editor/_layout.scss +352 -13
  76. package/styles/image-editor/_material-dark-definition.scss +5 -0
  77. package/styles/image-editor/_material-definition.scss +5 -0
  78. package/styles/image-editor/_material3-definition.scss +5 -0
  79. package/styles/image-editor/_tailwind-definition.scss +5 -0
  80. package/styles/image-editor/bootstrap-dark.css +279 -97
  81. package/styles/image-editor/bootstrap.css +282 -98
  82. package/styles/image-editor/bootstrap4.css +280 -97
  83. package/styles/image-editor/bootstrap5-dark.css +280 -101
  84. package/styles/image-editor/bootstrap5.css +280 -101
  85. package/styles/image-editor/fabric-dark.css +281 -97
  86. package/styles/image-editor/fabric.css +284 -97
  87. package/styles/image-editor/fluent-dark.css +287 -101
  88. package/styles/image-editor/fluent.css +287 -101
  89. package/styles/image-editor/fluent2.css +1851 -0
  90. package/styles/image-editor/fluent2.scss +13 -0
  91. package/styles/image-editor/highcontrast-light.css +279 -97
  92. package/styles/image-editor/highcontrast.css +284 -97
  93. package/styles/image-editor/icons/_bds.scss +1 -162
  94. package/styles/image-editor/icons/_bootstrap-dark.scss +1 -162
  95. package/styles/image-editor/icons/_bootstrap.scss +1 -162
  96. package/styles/image-editor/icons/_bootstrap4.scss +1 -162
  97. package/styles/image-editor/icons/_bootstrap5.3.scss +250 -0
  98. package/styles/image-editor/icons/_bootstrap5.scss +1 -168
  99. package/styles/image-editor/icons/_fabric-dark.scss +1 -162
  100. package/styles/image-editor/icons/_fabric.scss +1 -162
  101. package/styles/image-editor/icons/_fluent.scss +1 -168
  102. package/styles/image-editor/icons/_fluent2.scss +256 -0
  103. package/styles/image-editor/icons/_fusionnew.scss +1 -138
  104. package/styles/image-editor/icons/_highcontrast-light.scss +1 -162
  105. package/styles/image-editor/icons/_highcontrast.scss +1 -162
  106. package/styles/image-editor/icons/_material-dark.scss +2 -163
  107. package/styles/image-editor/icons/_material.scss +1 -162
  108. package/styles/image-editor/icons/_material3.scss +2 -169
  109. package/styles/image-editor/icons/_tailwind.scss +1 -162
  110. package/styles/image-editor/material-dark.css +299 -100
  111. package/styles/image-editor/material.css +302 -100
  112. package/styles/image-editor/material3-dark.css +314 -103
  113. package/styles/image-editor/material3.css +314 -103
  114. package/styles/image-editor/tailwind-dark.css +284 -97
  115. package/styles/image-editor/tailwind.css +284 -97
  116. package/styles/material-dark.css +299 -100
  117. package/styles/material-dark.scss +13 -1
  118. package/styles/material.css +302 -100
  119. package/styles/material.scss +13 -1
  120. package/styles/material3-dark.css +314 -103
  121. package/styles/material3-dark.scss +13 -1
  122. package/styles/material3.css +314 -103
  123. package/styles/material3.scss +13 -1
  124. package/styles/tailwind-dark.css +284 -97
  125. package/styles/tailwind-dark.scss +13 -1
  126. package/styles/tailwind.css +284 -97
  127. package/styles/tailwind.scss +13 -1
  128. package/CHANGELOG.md +0 -281
@@ -100,7 +100,7 @@
100
100
  --color-sf-on-warning: 99, 52, 0;
101
101
  --color-sf-on-warning-container: 255, 220, 193;
102
102
  --color-sf-spreadsheet-gridline: 231, 224, 236;
103
- --color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
103
+ --color-sf-shadow-focus-ring1: 0 0 0 1px #000, 0 0 0 3px #fff;
104
104
  --color-sf-success-text: 0, 0, 0;
105
105
  --color-sf-warning-text: 0, 0, 0;
106
106
  --color-sf-info-text: 0, 0, 0;
@@ -109,22 +109,46 @@
109
109
  --color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
110
110
  }
111
111
 
112
- /* stylelint-disable-line no-empty-source */ /*! Toolbar's material3 theme wise override definitions and variables */
112
+ /* stylelint-disable-line no-empty-source */
113
113
  /* stylelint-disable */
114
114
  /* stylelint-disable property-no-vendor-prefix */
115
+ @-webkit-keyframes material-spinner-rotate {
116
+ 0% {
117
+ -webkit-transform: rotate(0deg);
118
+ transform: rotate(0deg);
119
+ }
120
+ 100% {
121
+ -webkit-transform: rotate(360deg);
122
+ transform: rotate(360deg);
123
+ }
124
+ }
115
125
  @keyframes material-spinner-rotate {
116
126
  0% {
127
+ -webkit-transform: rotate(0deg);
128
+ transform: rotate(0deg);
129
+ }
130
+ 100% {
131
+ -webkit-transform: rotate(360deg);
132
+ transform: rotate(360deg);
133
+ }
134
+ }
135
+ @-webkit-keyframes fabric-spinner-rotate {
136
+ 0% {
137
+ -webkit-transform: rotate(0deg);
117
138
  transform: rotate(0deg);
118
139
  }
119
140
  100% {
141
+ -webkit-transform: rotate(360deg);
120
142
  transform: rotate(360deg);
121
143
  }
122
144
  }
123
145
  @keyframes fabric-spinner-rotate {
124
146
  0% {
147
+ -webkit-transform: rotate(0deg);
125
148
  transform: rotate(0deg);
126
149
  }
127
150
  100% {
151
+ -webkit-transform: rotate(360deg);
128
152
  transform: rotate(360deg);
129
153
  }
130
154
  }
@@ -162,10 +186,7 @@
162
186
  content: "\e772";
163
187
  }
164
188
  .e-image-editor .e-btn-save::before {
165
- content: "\e735";
166
- }
167
- .e-image-editor .e-custom::before {
168
- content: "\e8a9";
189
+ content: "\e7c8";
169
190
  }
170
191
  .e-image-editor .e-close::before {
171
192
  content: "\e7e7";
@@ -182,163 +203,108 @@
182
203
  .e-image-editor .e-fill.e-template .e-caret::before {
183
204
  content: "\e783";
184
205
  }
185
- .e-image-editor .e-custom::before {
186
- content: "\e8a9";
187
- }
188
- .e-image-editor .e-circle::before {
189
- content: "\e7ca";
190
- }
191
- .e-image-editor .e-square::before {
192
- content: "\e8aa";
193
- }
194
- .e-image-editor .e-custom-a::before {
195
- content: "\e8ab";
196
- }
197
- .e-image-editor .e-custom-b::before {
198
- content: "\e8ac";
199
- }
200
- .e-image-editor .e-custom-c::before {
201
- content: "\e8ad";
202
- }
203
- .e-image-editor .e-custom-d::before {
204
- content: "\e8ae";
205
- }
206
- .e-image-editor .e-custom-e::before {
207
- content: "\e8af";
208
- }
209
- .e-image-editor .e-custom-f::before {
210
- content: "\e8dd";
211
- }
212
- .e-image-editor .e-custom-g::before {
213
- content: "\e8de";
214
- }
215
- .e-image-editor .e-custom-h::before {
216
- content: "\e8df";
217
- }
218
- .e-image-editor .e-custom-i::before {
219
- content: "\e8e0";
220
- }
221
- .e-image-editor .e-custom-j::before {
222
- content: "\e8e1";
223
- }
224
- .e-image-editor .e-horizontal-flip::before {
225
- content: "\e8a3";
226
- }
227
- .e-image-editor .e-vertical-flip::before {
228
- content: "\e8a4";
229
- }
230
- .e-image-editor .e-clock-wise::before {
231
- content: "\e8a6";
232
- }
233
- .e-image-editor .e-anti-clock-wise::before {
234
- content: "\e8a5";
235
- }
236
- .e-image-editor .e-rectangle::before {
237
- content: "\e723";
238
- }
239
- .e-image-editor .e-circle::before {
240
- content: "\e7ca";
241
- }
242
- .e-image-editor .e-triangle::before {
243
- content: "\e89c";
244
- }
245
- .e-image-editor .e-line::before {
246
- content: "\e819";
247
- }
248
- .e-image-editor .e-add-text::before {
249
- content: "\e82e";
250
- }
251
- .e-image-editor .e-free-pen::before {
252
- content: "\e7db";
253
- }
254
- .e-image-editor .e-arrow::before {
255
- content: "\e669";
256
- }
257
- .e-image-editor .e-path::before {
258
- content: "\e931";
259
- }
260
206
 
207
+ .e-image-editor .e-custom::before,
261
208
  .e-dropdown-popup.e-image-popup .e-custom::before {
262
209
  content: "\e8a9";
263
210
  }
211
+ .e-image-editor .e-circle::before,
264
212
  .e-dropdown-popup.e-image-popup .e-circle::before {
265
213
  content: "\e7ca";
266
214
  }
215
+ .e-image-editor .e-square::before,
267
216
  .e-dropdown-popup.e-image-popup .e-square::before {
268
217
  content: "\e8aa";
269
218
  }
219
+ .e-image-editor .e-custom-a::before,
270
220
  .e-dropdown-popup.e-image-popup .e-custom-a::before {
271
221
  content: "\e8ab";
272
222
  }
223
+ .e-image-editor .e-custom-b::before,
273
224
  .e-dropdown-popup.e-image-popup .e-custom-b::before {
274
225
  content: "\e8ac";
275
226
  }
227
+ .e-image-editor .e-custom-c::before,
276
228
  .e-dropdown-popup.e-image-popup .e-custom-c::before {
277
229
  content: "\e8ad";
278
230
  }
231
+ .e-image-editor .e-custom-d::before,
279
232
  .e-dropdown-popup.e-image-popup .e-custom-d::before {
280
233
  content: "\e8ae";
281
234
  }
235
+ .e-image-editor .e-custom-e::before,
282
236
  .e-dropdown-popup.e-image-popup .e-custom-e::before {
283
237
  content: "\e8af";
284
238
  }
239
+ .e-image-editor .e-custom-f::before,
285
240
  .e-dropdown-popup.e-image-popup .e-custom-f::before {
286
241
  content: "\e8dd";
287
242
  }
243
+ .e-image-editor .e-custom-g::before,
288
244
  .e-dropdown-popup.e-image-popup .e-custom-g::before {
289
245
  content: "\e8de";
290
246
  }
247
+ .e-image-editor .e-custom-h::before,
291
248
  .e-dropdown-popup.e-image-popup .e-custom-h::before {
292
249
  content: "\e8df";
293
250
  }
251
+ .e-image-editor .e-custom-i::before,
294
252
  .e-dropdown-popup.e-image-popup .e-custom-i::before {
295
253
  content: "\e8e0";
296
254
  }
255
+ .e-image-editor .e-custom-j::before,
297
256
  .e-dropdown-popup.e-image-popup .e-custom-j::before {
298
257
  content: "\e8e1";
299
258
  }
259
+ .e-image-editor .e-rectangle::before,
300
260
  .e-dropdown-popup.e-image-popup .e-rectangle::before {
301
261
  content: "\e723";
302
262
  }
303
- .e-dropdown-popup.e-image-popup .e-circle::before {
304
- content: "\e7ca";
305
- }
263
+ .e-image-editor .e-triangle::before,
306
264
  .e-dropdown-popup.e-image-popup .e-triangle::before {
307
265
  content: "\e89c";
308
266
  }
267
+ .e-image-editor .e-line::before,
309
268
  .e-dropdown-popup.e-image-popup .e-line::before {
310
269
  content: "\e819";
311
270
  }
271
+ .e-image-editor .e-free-pen::before,
312
272
  .e-dropdown-popup.e-image-popup .e-free-pen::before {
313
273
  content: "\e7db";
314
274
  }
275
+ .e-image-editor .e-horizontal-flip::before,
315
276
  .e-dropdown-popup.e-image-popup .e-horizontal-flip::before {
316
277
  content: "\e8a3";
317
278
  }
279
+ .e-image-editor .e-vertical-flip::before,
318
280
  .e-dropdown-popup.e-image-popup .e-vertical-flip::before {
319
281
  content: "\e8a4";
320
282
  }
321
- .e-dropdown-popup.e-image-popup .e-custom::before {
322
- content: "\e8a9";
323
- }
283
+ .e-image-editor .e-clock-wise::before,
324
284
  .e-dropdown-popup.e-image-popup .e-clock-wise::before {
325
285
  content: "\e8a6";
326
286
  }
287
+ .e-image-editor .e-anti-clock-wise::before,
327
288
  .e-dropdown-popup.e-image-popup .e-anti-clock-wise::before {
328
289
  content: "\e8a5";
329
290
  }
291
+ .e-image-editor .e-add-text::before,
330
292
  .e-dropdown-popup.e-image-popup .e-add-text::before {
331
293
  content: "\e82e";
332
294
  }
295
+ .e-image-editor .e-arrow::before,
333
296
  .e-dropdown-popup.e-image-popup .e-arrow::before {
334
297
  content: "\e669";
335
298
  }
299
+ .e-image-editor .e-path::before,
336
300
  .e-dropdown-popup.e-image-popup .e-path::before {
337
301
  content: "\e931";
338
302
  }
339
303
 
340
304
  .e-ie-toolbar-upload-div.e-hide,
341
- .e-ie-toolbar-upload-btn.e-hide {
305
+ .e-ie-toolbar-upload-btn.e-hide,
306
+ .e-ie-img-quality-slider,
307
+ .e-ie-img-quality-name .e-hide {
342
308
  display: none;
343
309
  }
344
310
 
@@ -355,15 +321,12 @@
355
321
  .e-device.e-image-editor .e-ie-straighten-value-span {
356
322
  margin-left: 15px !important; /* stylelint-disable-line declaration-no-important */
357
323
  }
358
- .e-device.e-image-editor .e-hscroll .e-scroll-nav.e-scroll-right-nav {
324
+ .e-device.e-image-editor .e-hscroll .e-scroll-nav.e-scroll-right-nav, .e-device.e-image-editor .e-scroll-right-overlay {
359
325
  display: none !important; /* stylelint-disable-line declaration-no-important */
360
326
  }
361
327
  .e-device.e-image-editor .e-hscroll.e-scroll-device {
362
328
  padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
363
329
  }
364
- .e-device.e-image-editor .e-scroll-right-overlay {
365
- display: none !important; /* stylelint-disable-line declaration-no-important */
366
- }
367
330
  .e-device.e-image-editor .e-contextual-toolbar-wrapper {
368
331
  border-top: 1px solid rgba(var(--color-sf-outline-variant));
369
332
  border-bottom: none !important; /* stylelint-disable-line declaration-no-important */
@@ -377,6 +340,16 @@
377
340
  .e-device.e-image-editor .e-bottom-toolbar .e-toolbar, .e-device.e-image-editor .e-bottom-toolbar-area .e-toolbar {
378
341
  border-bottom: none;
379
342
  }
343
+ .e-device.e-image-editor .e-ie-img-save-name {
344
+ width: calc(65% - 13px) !important; /* stylelint-disable-line declaration-no-important */
345
+ }
346
+ .e-device.e-image-editor .e-ie-img-size-value-span {
347
+ margin-left: calc(100% - 145px) !important; /* stylelint-disable-line declaration-no-important */
348
+ }
349
+ .e-device.e-image-editor .e-ie-quality-option-container .e-slider-container {
350
+ margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
351
+ height: auto !important; /* stylelint-disable-line declaration-no-important */
352
+ }
380
353
 
381
354
  .e-bigger .e-image-editor .e-contextual-toolbar-wrapper .e-slider-container .e-slider .e-handle,
382
355
  .e-image-editor.e-bigger .e-contextual-toolbar-wrapper .e-slider-container .e-slider .e-handle {
@@ -387,11 +360,8 @@
387
360
  height: 56px !important; /* stylelint-disable-line declaration-no-important */
388
361
  min-height: 56px !important; /* stylelint-disable-line declaration-no-important */
389
362
  }
390
- .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-toolbar-item.e-ie-resize-height span,
391
- .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item.e-ie-resize-height span {
392
- font-size: 16px;
393
- }
394
- .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-toolbar-item.e-ie-resize-width span,
363
+ .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-toolbar-item.e-ie-resize-height span, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-toolbar-item.e-ie-resize-width span,
364
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item.e-ie-resize-height span,
395
365
  .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item.e-ie-resize-width span {
396
366
  font-size: 16px;
397
367
  }
@@ -449,6 +419,10 @@
449
419
  .e-image-editor.e-bigger .e-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-left {
450
420
  line-height: 1;
451
421
  }
422
+ .e-bigger .e-image-editor .e-ie-save-dialog .e-ie-img-save-dlg .e-btn,
423
+ .e-image-editor.e-bigger .e-ie-save-dialog .e-ie-img-save-dlg .e-btn {
424
+ margin-top: 5px !important; /* stylelint-disable-line declaration-no-important */
425
+ }
452
426
 
453
427
  .e-image-editor {
454
428
  border: 1px solid rgba(var(--color-sf-outline-variant));
@@ -571,7 +545,6 @@
571
545
  height: inherit !important; /* stylelint-disable-line declaration-no-important */
572
546
  }
573
547
  .e-image-editor .e-contextual-toolbar-wrapper .e-frame-wrapper .e-toolbar-item {
574
- display: -ms-inline-grid;
575
548
  display: inline-grid;
576
549
  }
577
550
  .e-image-editor .e-contextual-toolbar-wrapper .e-frame-wrapper .e-toolbar-item > span {
@@ -581,13 +554,14 @@
581
554
  }
582
555
  .e-image-editor .e-contextual-toolbar-wrapper .e-frame-wrapper .e-dropdown-btn {
583
556
  margin: 0 auto;
557
+ width: -webkit-max-content;
558
+ width: -moz-max-content;
584
559
  width: max-content;
585
560
  }
586
561
  .e-image-editor .e-contextual-toolbar-wrapper.e-frame-wrapper .e-toolbar {
587
562
  height: inherit !important; /* stylelint-disable-line declaration-no-important */
588
563
  }
589
564
  .e-image-editor .e-contextual-toolbar-wrapper.e-frame-wrapper .e-toolbar-item:not(.e-hidden) {
590
- display: -ms-inline-grid;
591
565
  display: inline-grid;
592
566
  }
593
567
  .e-image-editor .e-contextual-toolbar-wrapper.e-frame-wrapper .e-toolbar-item > span {
@@ -597,6 +571,8 @@
597
571
  }
598
572
  .e-image-editor .e-contextual-toolbar-wrapper.e-frame-wrapper .e-dropdown-btn {
599
573
  margin: 0 auto;
574
+ width: -webkit-max-content;
575
+ width: -moz-max-content;
600
576
  width: max-content;
601
577
  }
602
578
  .e-image-editor .e-contextual-toolbar-wrapper.e-hide {
@@ -622,6 +598,16 @@
622
598
  width: 16px !important; /* stylelint-disable-line declaration-no-important */
623
599
  }
624
600
 
601
+ .e-ie-img-save-dlg .e-btn {
602
+ background: transparent;
603
+ -webkit-box-shadow: none;
604
+ box-shadow: none;
605
+ border: none;
606
+ border-bottom: 1px solid;
607
+ border-radius: 0;
608
+ border-color: rgba(var(--color-sf-outline));
609
+ }
610
+
625
611
  .e-ie-straighten-value-span,
626
612
  .e-ie-straighten-span,
627
613
  .e-ie-toolbar-straighten {
@@ -691,10 +677,226 @@
691
677
  margin-left: calc(50% - 80px) !important; /* stylelint-disable-line declaration-no-important */
692
678
  }
693
679
 
680
+ .e-ie-quality-slider.e-control-wrapper.e-slider-container.e-horizontal,
681
+ .e-ie-quality-option-container .e-slider-container.e-horizontal {
682
+ height: 28px;
683
+ }
684
+
685
+ .e-ie-quality-slider.e-control-wrapper.e-slider-container.e-horizontal .e-slider {
686
+ top: calc(50% - 14px) !important; /* stylelint-disable-line declaration-no-important */
687
+ }
688
+
689
+ .e-ie-quality-slider.e-slider-container + .e-ie-img-icon-button,
690
+ .e-ie-quality-option-container .e-slider-container.e-horizontal + .e-ie-img-icon-button {
691
+ margin-left: 20px !important; /* stylelint-disable-line declaration-no-important */
692
+ }
693
+
694
+ .e-ie-img-size {
695
+ margin: 10px 10px 0;
696
+ }
697
+
698
+ .e-ie-dlg-img-content {
699
+ width: 40%;
700
+ height: 100%;
701
+ margin-right: 5%;
702
+ display: -webkit-box;
703
+ display: -ms-flexbox;
704
+ display: flex;
705
+ -webkit-box-orient: vertical;
706
+ -webkit-box-direction: normal;
707
+ -ms-flex-direction: column;
708
+ flex-direction: column;
709
+ -webkit-box-pack: center;
710
+ -ms-flex-pack: center;
711
+ justify-content: center;
712
+ -webkit-box-align: center;
713
+ -ms-flex-align: center;
714
+ align-items: center;
715
+ }
716
+
717
+ .e-ie-img-input {
718
+ width: 90% !important; /* stylelint-disable-line declaration-no-important */
719
+ }
720
+
721
+ .e-ie-img-dlg-canvas {
722
+ width: 100%;
723
+ height: 100%;
724
+ }
725
+
726
+ .e-ie-img-size {
727
+ font-size: 14px;
728
+ display: -webkit-box;
729
+ display: -ms-flexbox;
730
+ display: flex;
731
+ -webkit-box-orient: vertical;
732
+ -webkit-box-direction: normal;
733
+ -ms-flex-direction: column;
734
+ flex-direction: column;
735
+ -webkit-box-pack: start;
736
+ -ms-flex-pack: start;
737
+ justify-content: flex-start;
738
+ }
739
+
740
+ .e-ie-dlg-right-content {
741
+ width: 60%;
742
+ }
743
+
744
+ .e-ie-img-save-name {
745
+ display: inline-block;
746
+ margin-right: 10px;
747
+ width: calc(71% - 13px);
748
+ }
749
+
750
+ .e-ie-img-save-dlg {
751
+ display: inline-block;
752
+ width: 90px;
753
+ }
754
+
755
+ .e-ie-img-save-dlg .e-btn {
756
+ width: 100%;
757
+ }
758
+
759
+ .e-ie-img-label-name {
760
+ margin-bottom: 5px;
761
+ display: block;
762
+ }
763
+
764
+ .e-ie-img-quality-name {
765
+ position: relative;
766
+ width: 100% !important; /* stylelint-disable-line declaration-no-important */
767
+ }
768
+
769
+ .e-ie-quality-info {
770
+ margin-bottom: 0;
771
+ margin-top: 0;
772
+ }
773
+
774
+ .e-ie-quality-span {
775
+ margin-left: 5px;
776
+ display: -webkit-inline-box;
777
+ display: -ms-inline-flexbox;
778
+ display: inline-flex;
779
+ }
780
+
781
+ .e-ie-img-quality-label {
782
+ margin-bottom: 3%;
783
+ margin-top: 5%;
784
+ display: -webkit-inline-box;
785
+ display: -ms-inline-flexbox;
786
+ display: inline-flex;
787
+ }
788
+
789
+ .e-ie-img-quality-size {
790
+ margin-top: 5%;
791
+ display: block;
792
+ }
793
+
794
+ .e-ie-img-size-value-span {
795
+ width: 8%;
796
+ text-transform: capitalize;
797
+ margin-left: calc(100% - 194px);
798
+ margin-top: 4px;
799
+ margin-left: calc(100% - 185px);
800
+ }
801
+
802
+ .e-device.e-ie-save-dialog .e-ie-img-size-value-span {
803
+ margin-left: calc(100% - 145px) !important; /* stylelint-disable-line declaration-no-important */
804
+ }
805
+
806
+ .e-bigger .e-ie-save-dialog .e-ie-img-save-name {
807
+ width: calc(71% - 30px) !important; /* stylelint-disable-line declaration-no-important */
808
+ }
809
+
810
+ .e-device.e-ie-save-dialog .e-ie-img-save-name {
811
+ width: calc(71% - 30px) !important; /* stylelint-disable-line declaration-no-important */
812
+ }
813
+
814
+ .e-ie-img-icon-button {
815
+ margin-left: 10px;
816
+ width: -webkit-max-content;
817
+ width: -moz-max-content;
818
+ width: max-content;
819
+ margin-bottom: 3px;
820
+ }
821
+
822
+ .e-bigger .e-image-editor .e-dlg-container .e-dialog,
823
+ .e-bigger.e-image-editor .e-dlg-container .e-dialog {
824
+ width: 656px;
825
+ }
826
+
827
+ .e-bigger .e-ie-img-save-dlg {
828
+ width: 106px;
829
+ }
830
+
831
+ .e-bigger .e-image-editor .e-control-wrapper.e-slider-container.e-horizontal,
832
+ .e-bigger.e-image-editor .e-control-wrapper.e-slider-container.e-horizontal {
833
+ width: 217px;
834
+ }
835
+
836
+ .e-ie-quality-option-container .e-btn-group .e-btn {
837
+ padding-left: 13px;
838
+ padding-right: 13px;
839
+ }
840
+
841
+ .e-bigger .e-dialog.e-blr-ie-save-dialog:not(.e-device) {
842
+ width: 620px !important; /* stylelint-disable-line declaration-no-important */
843
+ }
844
+ .e-bigger .e-dialog.e-blr-ie-save-dialog:not(.e-device) .e-ie-img-icon-button {
845
+ padding: 8px 11px;
846
+ }
847
+ .e-blr-ie-save-dialog .e-ie-img-save-name {
848
+ width: calc(67% - 13px);
849
+ }
850
+ .e-blr-ie-save-dialog .e-ie-quality-custom {
851
+ width: calc(65% - 13px);
852
+ }
853
+ .e-blr-ie-save-dialog .e-ie-quality-option-container .e-ie-img-icon-button {
854
+ margin-left: 20px;
855
+ }
856
+ .e-blr-ie-save-dialog .e-ie-quality-option-container .e-slider-container.e-horizontal {
857
+ margin-top: 5px;
858
+ }
859
+ .e-blr-ie-save-dialog .e-ie-img-size-value-span {
860
+ vertical-align: middle;
861
+ margin-left: calc(50% - 55px);
862
+ }
863
+ .e-blr-ie-save-dialog .e-btn-group .e-btn {
864
+ padding: 8px 10.5px;
865
+ }
866
+ .e-blr-ie-save-dialog.e-device .e-ie-img-save-name {
867
+ width: calc(64% - 15px) !important; /* stylelint-disable-line declaration-no-important */
868
+ }
869
+ .e-blr-ie-save-dialog.e-device .e-ie-quality-custom {
870
+ width: 75% !important; /* stylelint-disable-line declaration-no-important */
871
+ }
872
+ .e-blr-ie-save-dialog.e-device .e-ie-quality-option-container .e-ie-img-icon-button {
873
+ margin-left: 0;
874
+ }
875
+ .e-blr-ie-save-dialog.e-device .e-slider-container {
876
+ margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
877
+ height: 28px !important; /* stylelint-disable-line declaration-no-important */
878
+ }
879
+ .e-blr-ie-save-dialog.e-device .e-ie-img-size-value-span {
880
+ margin-left: calc(75% - 100px) !important; /* stylelint-disable-line declaration-no-important */
881
+ }
882
+ .e-blr-ie-save-dialog.e-device .e-btn-group .e-btn {
883
+ padding: 11px 12px;
884
+ }
885
+ .e-bigger .e-ie-save-dialog .e-ie-img-save-name {
886
+ width: calc(71% - 30px) !important; /* stylelint-disable-line declaration-no-important */
887
+ }
888
+
889
+ .e-ie-save-dialog .e-ie-quality-slider.e-slider-container + .e-ie-img-icon-button,
890
+ .e-ie-save-dialog .e-ie-quality-option-container .e-slider-container.e-horizontal + .e-ie-img-icon-button {
891
+ margin-left: 30px !important; /* stylelint-disable-line declaration-no-important */
892
+ }
893
+
694
894
  .e-image-editor {
895
+ background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-primary), 0.14)), to(rgba(var(--color-sf-primary), 0.14))), rgba(var(--color-sf-surface));
695
896
  background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.14), rgba(var(--color-sf-primary), 0.14)), rgba(var(--color-sf-surface));
696
897
  }
697
898
  .e-image-editor .e-contextual-toolbar-wrapper {
899
+ background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-primary), 0.08)), to(rgba(var(--color-sf-primary), 0.08))), rgba(var(--color-sf-surface));
698
900
  background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.08), rgba(var(--color-sf-primary), 0.08)), rgba(var(--color-sf-surface));
699
901
  }
700
902
  .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 {
@@ -704,32 +906,40 @@
704
906
  color: rgba(var(--color-sf-on-surface-variant));
705
907
  }
706
908
  .e-image-editor .e-toolbar .e-toolbar-items .e-tbar-btn.e-btn.e-selected-btn {
909
+ background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-primary), 0.16)), to(rgba(var(--color-sf-primary), 0.16))), rgba(var(--color-sf-surface)) !important;
707
910
  background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.16), rgba(var(--color-sf-primary), 0.16)), rgba(var(--color-sf-surface)) !important; /* stylelint-disable-line declaration-no-important */
708
911
  }
709
912
  .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn {
710
913
  background: inherit;
711
914
  border: none;
712
915
  margin-top: 0;
916
+ background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-primary), 0.08)), to(rgba(var(--color-sf-primary), 0.08))), rgba(var(--color-sf-surface));
713
917
  background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.08), rgba(var(--color-sf-primary), 0.08)), rgba(var(--color-sf-surface));
714
918
  color: rgba(var(--color-sf-on-surface-variant));
715
- box-shadow: none;
919
+ -webkit-box-shadow: none;
920
+ box-shadow: none;
716
921
  }
717
922
  .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn .e-caret-hide {
718
923
  display: none !important; /* stylelint-disable-line declaration-no-important */
719
924
  }
720
925
  .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:hover {
721
926
  background: rgba(var(--color-sf-on-surface), 0.05);
722
- box-shadow: none;
927
+ -webkit-box-shadow: none;
928
+ box-shadow: none;
723
929
  color: rgba(var(--color-sf-on-surface-variant));
724
930
  }
725
931
  .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:focus {
932
+ background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-on-surface), 0.08)), to(rgba(var(--color-sf-on-surface), 0.08))), rgba(var(--color-sf-surface));
726
933
  background: linear-gradient(0deg, rgba(var(--color-sf-on-surface), 0.08), rgba(var(--color-sf-on-surface), 0.08)), rgba(var(--color-sf-surface));
727
- box-shadow: none;
934
+ -webkit-box-shadow: none;
935
+ box-shadow: none;
728
936
  color: rgba(var(--color-sf-on-surface));
729
937
  }
730
938
  .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:active {
939
+ background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-on-surface), 0.12)), to(rgba(var(--color-sf-on-surface), 0.12))), rgba(var(--color-sf-surface));
731
940
  background: linear-gradient(0deg, rgba(var(--color-sf-on-surface), 0.12), rgba(var(--color-sf-on-surface), 0.12)), rgba(var(--color-sf-surface));
732
- box-shadow: none;
941
+ -webkit-box-shadow: none;
942
+ box-shadow: none;
733
943
  color: rgba(var(--color-sf-on-surface));
734
944
  }
735
945
  .e-image-editor .e-toolbar .e-toolbar-items .e-colorpicker-wrapper.e-shape-fill-color .e-split-btn-wrapper .e-split-btn .e-selected-color, .e-image-editor .e-toolbar .e-toolbar-items .e-colorpicker-wrapper.e-shape-stroke-color .e-split-btn-wrapper .e-split-btn .e-selected-color, .e-image-editor .e-toolbar .e-toolbar-items .e-colorpicker-wrapper.e-text-stroke-color .e-split-btn-wrapper .e-split-btn .e-selected-color, .e-image-editor .e-toolbar .e-toolbar-items .e-colorpicker-wrapper.e-pen-stroke-color .e-split-btn-wrapper .e-split-btn .e-selected-color {
@@ -749,5 +959,6 @@
749
959
  }
750
960
 
751
961
  .e-dropdown-popup .e-selected-btn {
962
+ background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-primary), 0.16)), to(rgba(var(--color-sf-primary), 0.16))), rgba(var(--color-sf-surface)) !important;
752
963
  background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.16), rgba(var(--color-sf-primary), 0.16)), rgba(var(--color-sf-surface)) !important; /* stylelint-disable-line declaration-no-important */
753
964
  }
@@ -1,3 +1,15 @@
1
1
 
2
2
 
3
- @import 'image-editor/material3.scss';
3
+
4
+ @import 'ej2-buttons/styles/button/material3-definition.scss';
5
+ @import 'ej2-splitbuttons/styles/drop-down-button/material3-definition.scss';
6
+ @import 'ej2-inputs/styles/numerictextbox/material3-definition.scss';
7
+ @import 'ej2-inputs/styles/textbox/material3-definition.scss';
8
+ @import 'ej2-inputs/styles/uploader/material3-definition.scss';
9
+ @import 'ej2-popups/styles/tooltip/material3-definition.scss';
10
+ @import 'ej2-inputs/styles/color-picker/material3-definition.scss';
11
+ @import 'ej2-navigations/styles/toolbar/material3-definition.scss';
12
+ @import 'ej2-popups/styles/spinner/material3-definition.scss';
13
+ @import 'image-editor/material3-definition.scss';
14
+ @import 'image-editor/icons/material3.scss';
15
+ @import 'image-editor/all.scss';