@syncfusion/ej2-image-editor 25.2.4 → 26.1.38

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 +2691 -830
  5. package/dist/es6/ej2-image-editor.es2015.js.map +1 -1
  6. package/dist/es6/ej2-image-editor.es5.js +2788 -887
  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 +198 -83
  16. package/src/image-editor/action/export.d.ts +3 -0
  17. package/src/image-editor/action/export.js +99 -41
  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 +385 -53
  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 +1852 -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 +355 -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 +1852 -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 -289
@@ -5,22 +5,45 @@
5
5
  border-radius: 0 0 6px 6px;
6
6
  }
7
7
 
8
- /*! Toolbar's bootstrap5 theme wise override definitions and variables */
9
8
  /* stylelint-disable */
10
9
  /* stylelint-disable property-no-vendor-prefix */
10
+ @-webkit-keyframes material-spinner-rotate {
11
+ 0% {
12
+ -webkit-transform: rotate(0);
13
+ transform: rotate(0);
14
+ }
15
+ 100% {
16
+ -webkit-transform: rotate(360deg);
17
+ transform: rotate(360deg);
18
+ }
19
+ }
11
20
  @keyframes material-spinner-rotate {
12
21
  0% {
22
+ -webkit-transform: rotate(0);
13
23
  transform: rotate(0);
14
24
  }
15
25
  100% {
26
+ -webkit-transform: rotate(360deg);
27
+ transform: rotate(360deg);
28
+ }
29
+ }
30
+ @-webkit-keyframes fabric-spinner-rotate {
31
+ 0% {
32
+ -webkit-transform: rotate(0);
33
+ transform: rotate(0);
34
+ }
35
+ 100% {
36
+ -webkit-transform: rotate(360deg);
16
37
  transform: rotate(360deg);
17
38
  }
18
39
  }
19
40
  @keyframes fabric-spinner-rotate {
20
41
  0% {
42
+ -webkit-transform: rotate(0);
21
43
  transform: rotate(0);
22
44
  }
23
45
  100% {
46
+ -webkit-transform: rotate(360deg);
24
47
  transform: rotate(360deg);
25
48
  }
26
49
  }
@@ -57,9 +80,6 @@
57
80
  .e-image-editor .e-btn-save::before {
58
81
  content: "\e7c8";
59
82
  }
60
- .e-image-editor .e-custom::before {
61
- content: "\e8a9";
62
- }
63
83
  .e-image-editor .e-close::before {
64
84
  content: "\e7e7";
65
85
  }
@@ -75,163 +95,108 @@
75
95
  .e-image-editor .e-fill.e-template .e-caret::before {
76
96
  content: "\e783";
77
97
  }
78
- .e-image-editor .e-custom::before {
79
- content: "\e8a9";
80
- }
81
- .e-image-editor .e-circle::before {
82
- content: "\e7ca";
83
- }
84
- .e-image-editor .e-square::before {
85
- content: "\e8aa";
86
- }
87
- .e-image-editor .e-custom-a::before {
88
- content: "\e8ab";
89
- }
90
- .e-image-editor .e-custom-b::before {
91
- content: "\e8ac";
92
- }
93
- .e-image-editor .e-custom-c::before {
94
- content: "\e8ad";
95
- }
96
- .e-image-editor .e-custom-d::before {
97
- content: "\e8ae";
98
- }
99
- .e-image-editor .e-custom-e::before {
100
- content: "\e8af";
101
- }
102
- .e-image-editor .e-custom-f::before {
103
- content: "\e8dd";
104
- }
105
- .e-image-editor .e-custom-g::before {
106
- content: "\e8de";
107
- }
108
- .e-image-editor .e-custom-h::before {
109
- content: "\e8df";
110
- }
111
- .e-image-editor .e-custom-i::before {
112
- content: "\e8e0";
113
- }
114
- .e-image-editor .e-custom-j::before {
115
- content: "\e8e1";
116
- }
117
- .e-image-editor .e-horizontal-flip::before {
118
- content: "\e8a3";
119
- }
120
- .e-image-editor .e-vertical-flip::before {
121
- content: "\e8a4";
122
- }
123
- .e-image-editor .e-clock-wise::before {
124
- content: "\e8a6";
125
- }
126
- .e-image-editor .e-anti-clock-wise::before {
127
- content: "\e8a5";
128
- }
129
- .e-image-editor .e-rectangle::before {
130
- content: "\e723";
131
- }
132
- .e-image-editor .e-circle::before {
133
- content: "\e7ca";
134
- }
135
- .e-image-editor .e-triangle::before {
136
- content: "\e89c";
137
- }
138
- .e-image-editor .e-line::before {
139
- content: "\e819";
140
- }
141
- .e-image-editor .e-add-text::before {
142
- content: "\e82e";
143
- }
144
- .e-image-editor .e-free-pen::before {
145
- content: "\e7db";
146
- }
147
- .e-image-editor .e-arrow::before {
148
- content: "\e669";
149
- }
150
- .e-image-editor .e-path::before {
151
- content: "\e931";
152
- }
153
98
 
99
+ .e-image-editor .e-custom::before,
154
100
  .e-dropdown-popup.e-image-popup .e-custom::before {
155
101
  content: "\e8a9";
156
102
  }
103
+ .e-image-editor .e-circle::before,
157
104
  .e-dropdown-popup.e-image-popup .e-circle::before {
158
105
  content: "\e7ca";
159
106
  }
107
+ .e-image-editor .e-square::before,
160
108
  .e-dropdown-popup.e-image-popup .e-square::before {
161
109
  content: "\e8aa";
162
110
  }
111
+ .e-image-editor .e-custom-a::before,
163
112
  .e-dropdown-popup.e-image-popup .e-custom-a::before {
164
113
  content: "\e8ab";
165
114
  }
115
+ .e-image-editor .e-custom-b::before,
166
116
  .e-dropdown-popup.e-image-popup .e-custom-b::before {
167
117
  content: "\e8ac";
168
118
  }
119
+ .e-image-editor .e-custom-c::before,
169
120
  .e-dropdown-popup.e-image-popup .e-custom-c::before {
170
121
  content: "\e8ad";
171
122
  }
123
+ .e-image-editor .e-custom-d::before,
172
124
  .e-dropdown-popup.e-image-popup .e-custom-d::before {
173
125
  content: "\e8ae";
174
126
  }
127
+ .e-image-editor .e-custom-e::before,
175
128
  .e-dropdown-popup.e-image-popup .e-custom-e::before {
176
129
  content: "\e8af";
177
130
  }
131
+ .e-image-editor .e-custom-f::before,
178
132
  .e-dropdown-popup.e-image-popup .e-custom-f::before {
179
133
  content: "\e8dd";
180
134
  }
135
+ .e-image-editor .e-custom-g::before,
181
136
  .e-dropdown-popup.e-image-popup .e-custom-g::before {
182
137
  content: "\e8de";
183
138
  }
139
+ .e-image-editor .e-custom-h::before,
184
140
  .e-dropdown-popup.e-image-popup .e-custom-h::before {
185
141
  content: "\e8df";
186
142
  }
143
+ .e-image-editor .e-custom-i::before,
187
144
  .e-dropdown-popup.e-image-popup .e-custom-i::before {
188
145
  content: "\e8e0";
189
146
  }
147
+ .e-image-editor .e-custom-j::before,
190
148
  .e-dropdown-popup.e-image-popup .e-custom-j::before {
191
149
  content: "\e8e1";
192
150
  }
151
+ .e-image-editor .e-rectangle::before,
193
152
  .e-dropdown-popup.e-image-popup .e-rectangle::before {
194
153
  content: "\e723";
195
154
  }
196
- .e-dropdown-popup.e-image-popup .e-circle::before {
197
- content: "\e7ca";
198
- }
155
+ .e-image-editor .e-triangle::before,
199
156
  .e-dropdown-popup.e-image-popup .e-triangle::before {
200
157
  content: "\e89c";
201
158
  }
159
+ .e-image-editor .e-line::before,
202
160
  .e-dropdown-popup.e-image-popup .e-line::before {
203
161
  content: "\e819";
204
162
  }
163
+ .e-image-editor .e-free-pen::before,
205
164
  .e-dropdown-popup.e-image-popup .e-free-pen::before {
206
165
  content: "\e7db";
207
166
  }
167
+ .e-image-editor .e-horizontal-flip::before,
208
168
  .e-dropdown-popup.e-image-popup .e-horizontal-flip::before {
209
169
  content: "\e8a3";
210
170
  }
171
+ .e-image-editor .e-vertical-flip::before,
211
172
  .e-dropdown-popup.e-image-popup .e-vertical-flip::before {
212
173
  content: "\e8a4";
213
174
  }
214
- .e-dropdown-popup.e-image-popup .e-custom::before {
215
- content: "\e8a9";
216
- }
175
+ .e-image-editor .e-clock-wise::before,
217
176
  .e-dropdown-popup.e-image-popup .e-clock-wise::before {
218
177
  content: "\e8a6";
219
178
  }
179
+ .e-image-editor .e-anti-clock-wise::before,
220
180
  .e-dropdown-popup.e-image-popup .e-anti-clock-wise::before {
221
181
  content: "\e8a5";
222
182
  }
183
+ .e-image-editor .e-add-text::before,
223
184
  .e-dropdown-popup.e-image-popup .e-add-text::before {
224
185
  content: "\e82e";
225
186
  }
187
+ .e-image-editor .e-arrow::before,
226
188
  .e-dropdown-popup.e-image-popup .e-arrow::before {
227
189
  content: "\e669";
228
190
  }
191
+ .e-image-editor .e-path::before,
229
192
  .e-dropdown-popup.e-image-popup .e-path::before {
230
193
  content: "\e931";
231
194
  }
232
195
 
233
196
  .e-ie-toolbar-upload-div.e-hide,
234
- .e-ie-toolbar-upload-btn.e-hide {
197
+ .e-ie-toolbar-upload-btn.e-hide,
198
+ .e-ie-img-quality-slider,
199
+ .e-ie-img-quality-name .e-hide {
235
200
  display: none;
236
201
  }
237
202
 
@@ -248,15 +213,12 @@
248
213
  .e-device.e-image-editor .e-ie-straighten-value-span {
249
214
  margin-left: 15px !important; /* stylelint-disable-line declaration-no-important */
250
215
  }
251
- .e-device.e-image-editor .e-hscroll .e-scroll-nav.e-scroll-right-nav {
216
+ .e-device.e-image-editor .e-hscroll .e-scroll-nav.e-scroll-right-nav, .e-device.e-image-editor .e-scroll-right-overlay {
252
217
  display: none !important; /* stylelint-disable-line declaration-no-important */
253
218
  }
254
219
  .e-device.e-image-editor .e-hscroll.e-scroll-device {
255
220
  padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
256
221
  }
257
- .e-device.e-image-editor .e-scroll-right-overlay {
258
- display: none !important; /* stylelint-disable-line declaration-no-important */
259
- }
260
222
  .e-device.e-image-editor .e-contextual-toolbar-wrapper {
261
223
  border-top: 1px solid #e9ecef;
262
224
  border-bottom: none !important; /* stylelint-disable-line declaration-no-important */
@@ -270,6 +232,16 @@
270
232
  .e-device.e-image-editor .e-bottom-toolbar .e-toolbar, .e-device.e-image-editor .e-bottom-toolbar-area .e-toolbar {
271
233
  border-bottom: none;
272
234
  }
235
+ .e-device.e-image-editor .e-ie-img-save-name {
236
+ width: calc(65% - 13px) !important; /* stylelint-disable-line declaration-no-important */
237
+ }
238
+ .e-device.e-image-editor .e-ie-img-size-value-span {
239
+ margin-left: calc(100% - 145px) !important; /* stylelint-disable-line declaration-no-important */
240
+ }
241
+ .e-device.e-image-editor .e-ie-quality-option-container .e-slider-container {
242
+ margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
243
+ height: auto !important; /* stylelint-disable-line declaration-no-important */
244
+ }
273
245
 
274
246
  .e-bigger .e-image-editor .e-contextual-toolbar-wrapper .e-slider-container .e-slider .e-handle,
275
247
  .e-image-editor.e-bigger .e-contextual-toolbar-wrapper .e-slider-container .e-slider .e-handle {
@@ -280,11 +252,8 @@
280
252
  height: 46px !important; /* stylelint-disable-line declaration-no-important */
281
253
  min-height: 46px !important; /* stylelint-disable-line declaration-no-important */
282
254
  }
283
- .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-toolbar-item.e-ie-resize-height span,
284
- .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item.e-ie-resize-height span {
285
- font-size: 16px;
286
- }
287
- .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-toolbar-item.e-ie-resize-width span,
255
+ .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,
256
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item.e-ie-resize-height span,
288
257
  .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item.e-ie-resize-width span {
289
258
  font-size: 16px;
290
259
  }
@@ -340,7 +309,6 @@
340
309
  .e-image-editor.e-bigger .e-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-left {
341
310
  line-height: 1;
342
311
  }
343
-
344
312
  .e-image-editor {
345
313
  border: 1px solid #e9ecef;
346
314
  position: relative;
@@ -466,7 +434,6 @@
466
434
  height: inherit !important; /* stylelint-disable-line declaration-no-important */
467
435
  }
468
436
  .e-image-editor .e-contextual-toolbar-wrapper .e-frame-wrapper .e-toolbar-item {
469
- display: -ms-inline-grid;
470
437
  display: inline-grid;
471
438
  }
472
439
  .e-image-editor .e-contextual-toolbar-wrapper .e-frame-wrapper .e-toolbar-item > span {
@@ -476,13 +443,14 @@
476
443
  }
477
444
  .e-image-editor .e-contextual-toolbar-wrapper .e-frame-wrapper .e-dropdown-btn {
478
445
  margin: 0 auto;
446
+ width: -webkit-max-content;
447
+ width: -moz-max-content;
479
448
  width: max-content;
480
449
  }
481
450
  .e-image-editor .e-contextual-toolbar-wrapper.e-frame-wrapper .e-toolbar {
482
451
  height: inherit !important; /* stylelint-disable-line declaration-no-important */
483
452
  }
484
453
  .e-image-editor .e-contextual-toolbar-wrapper.e-frame-wrapper .e-toolbar-item:not(.e-hidden) {
485
- display: -ms-inline-grid;
486
454
  display: inline-grid;
487
455
  }
488
456
  .e-image-editor .e-contextual-toolbar-wrapper.e-frame-wrapper .e-toolbar-item > span {
@@ -492,6 +460,8 @@
492
460
  }
493
461
  .e-image-editor .e-contextual-toolbar-wrapper.e-frame-wrapper .e-dropdown-btn {
494
462
  margin: 0 auto;
463
+ width: -webkit-max-content;
464
+ width: -moz-max-content;
495
465
  width: max-content;
496
466
  }
497
467
  .e-image-editor .e-contextual-toolbar-wrapper.e-hide {
@@ -575,6 +545,212 @@
575
545
  margin-left: calc(50% - 80px) !important; /* stylelint-disable-line declaration-no-important */
576
546
  }
577
547
 
548
+ .e-ie-quality-slider.e-control-wrapper.e-slider-container.e-horizontal,
549
+ .e-ie-quality-option-container .e-slider-container.e-horizontal {
550
+ height: 28px;
551
+ }
552
+
553
+ .e-ie-quality-slider.e-control-wrapper.e-slider-container.e-horizontal .e-slider {
554
+ top: calc(50% - 14px) !important; /* stylelint-disable-line declaration-no-important */
555
+ }
556
+
557
+ .e-ie-quality-slider.e-slider-container + .e-ie-img-icon-button,
558
+ .e-ie-quality-option-container .e-slider-container.e-horizontal + .e-ie-img-icon-button {
559
+ margin-left: 20px !important; /* stylelint-disable-line declaration-no-important */
560
+ }
561
+
562
+ .e-ie-img-size {
563
+ margin: 10px 10px 0;
564
+ }
565
+
566
+ .e-ie-dlg-img-content {
567
+ width: 40%;
568
+ height: 100%;
569
+ margin-right: 5%;
570
+ display: -webkit-box;
571
+ display: -ms-flexbox;
572
+ display: flex;
573
+ -webkit-box-orient: vertical;
574
+ -webkit-box-direction: normal;
575
+ -ms-flex-direction: column;
576
+ flex-direction: column;
577
+ -webkit-box-pack: center;
578
+ -ms-flex-pack: center;
579
+ justify-content: center;
580
+ -webkit-box-align: center;
581
+ -ms-flex-align: center;
582
+ align-items: center;
583
+ }
584
+
585
+ .e-ie-img-input {
586
+ width: 90% !important; /* stylelint-disable-line declaration-no-important */
587
+ }
588
+
589
+ .e-ie-img-dlg-canvas {
590
+ width: 100%;
591
+ height: 100%;
592
+ }
593
+
594
+ .e-ie-img-size {
595
+ font-size: 14px;
596
+ display: -webkit-box;
597
+ display: -ms-flexbox;
598
+ display: flex;
599
+ -webkit-box-orient: vertical;
600
+ -webkit-box-direction: normal;
601
+ -ms-flex-direction: column;
602
+ flex-direction: column;
603
+ -webkit-box-pack: start;
604
+ -ms-flex-pack: start;
605
+ justify-content: flex-start;
606
+ }
607
+
608
+ .e-ie-dlg-right-content {
609
+ width: 60%;
610
+ }
611
+
612
+ .e-ie-img-save-name {
613
+ display: inline-block;
614
+ margin-right: 10px;
615
+ width: calc(71% - 13px);
616
+ }
617
+
618
+ .e-ie-img-save-dlg {
619
+ display: inline-block;
620
+ width: 90px;
621
+ }
622
+
623
+ .e-ie-img-save-dlg .e-btn {
624
+ width: 100%;
625
+ }
626
+
627
+ .e-ie-img-label-name {
628
+ margin-bottom: 5px;
629
+ display: block;
630
+ }
631
+
632
+ .e-ie-img-quality-name {
633
+ position: relative;
634
+ width: 100% !important; /* stylelint-disable-line declaration-no-important */
635
+ }
636
+
637
+ .e-ie-quality-info {
638
+ margin-bottom: 0;
639
+ margin-top: 0;
640
+ }
641
+
642
+ .e-ie-quality-span {
643
+ margin-left: 5px;
644
+ display: -webkit-inline-box;
645
+ display: -ms-inline-flexbox;
646
+ display: inline-flex;
647
+ }
648
+
649
+ .e-ie-img-quality-label {
650
+ margin-bottom: 3%;
651
+ margin-top: 5%;
652
+ display: -webkit-inline-box;
653
+ display: -ms-inline-flexbox;
654
+ display: inline-flex;
655
+ }
656
+
657
+ .e-ie-img-quality-size {
658
+ margin-top: 5%;
659
+ display: block;
660
+ }
661
+
662
+ .e-ie-img-size-value-span {
663
+ width: 8%;
664
+ text-transform: capitalize;
665
+ margin-left: calc(100% - 194px);
666
+ margin-top: 4px;
667
+ }
668
+
669
+ .e-device.e-ie-save-dialog .e-ie-img-size-value-span {
670
+ margin-left: calc(100% - 145px) !important; /* stylelint-disable-line declaration-no-important */
671
+ margin-left: calc(100% - 156px) !important; /* stylelint-disable-line declaration-no-important */
672
+ }
673
+
674
+ .e-bigger .e-ie-save-dialog .e-ie-img-save-name {
675
+ width: calc(71% - 30px) !important; /* stylelint-disable-line declaration-no-important */
676
+ }
677
+
678
+ .e-device.e-ie-save-dialog .e-ie-img-save-name {
679
+ width: calc(71% - 30px) !important; /* stylelint-disable-line declaration-no-important */
680
+ }
681
+
682
+ .e-ie-img-icon-button {
683
+ margin-left: 10px;
684
+ width: -webkit-max-content;
685
+ width: -moz-max-content;
686
+ width: max-content;
687
+ margin-bottom: 4px;
688
+ }
689
+
690
+ .e-bigger .e-image-editor .e-dlg-container .e-dialog,
691
+ .e-bigger.e-image-editor .e-dlg-container .e-dialog {
692
+ width: 656px;
693
+ }
694
+
695
+ .e-bigger .e-ie-img-save-dlg {
696
+ width: 106px;
697
+ }
698
+
699
+ .e-bigger .e-image-editor .e-control-wrapper.e-slider-container.e-horizontal,
700
+ .e-bigger.e-image-editor .e-control-wrapper.e-slider-container.e-horizontal {
701
+ width: 217px;
702
+ }
703
+
704
+ .e-ie-quality-option-container .e-btn-group .e-btn {
705
+ padding-left: 15px;
706
+ padding-right: 15px;
707
+ }
708
+
709
+ .e-bigger .e-dialog.e-blr-ie-save-dialog:not(.e-device) {
710
+ width: 620px !important; /* stylelint-disable-line declaration-no-important */
711
+ }
712
+ .e-bigger .e-dialog.e-blr-ie-save-dialog:not(.e-device) .e-ie-img-icon-button {
713
+ padding: 4px 15px;
714
+ }
715
+ .e-blr-ie-save-dialog .e-ie-img-save-name {
716
+ width: calc(67% - 13px);
717
+ }
718
+ .e-blr-ie-save-dialog .e-ie-quality-custom {
719
+ width: calc(65% - 13px);
720
+ }
721
+ .e-blr-ie-save-dialog .e-ie-quality-option-container .e-ie-img-icon-button {
722
+ margin-left: 20px;
723
+ }
724
+ .e-blr-ie-save-dialog .e-ie-img-size-value-span {
725
+ vertical-align: middle;
726
+ margin-left: calc(50% - 55px);
727
+ }
728
+ .e-blr-ie-save-dialog .e-btn-group .e-btn {
729
+ padding: 4px 12px;
730
+ }
731
+ .e-blr-ie-save-dialog.e-device .e-ie-img-save-name {
732
+ width: calc(64% - 15px) !important; /* stylelint-disable-line declaration-no-important */
733
+ }
734
+ .e-blr-ie-save-dialog.e-device .e-ie-quality-custom {
735
+ width: 75% !important; /* stylelint-disable-line declaration-no-important */
736
+ }
737
+ .e-blr-ie-save-dialog.e-device .e-ie-quality-option-container .e-ie-img-icon-button {
738
+ margin-left: 0;
739
+ }
740
+ .e-blr-ie-save-dialog.e-device .e-slider-container {
741
+ margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
742
+ height: 28px !important; /* stylelint-disable-line declaration-no-important */
743
+ }
744
+ .e-blr-ie-save-dialog.e-device .e-ie-img-size-value-span {
745
+ margin-left: calc(70% - 100px) !important; /* stylelint-disable-line declaration-no-important */
746
+ }
747
+ .e-blr-ie-save-dialog.e-device .e-btn-group .e-btn {
748
+ padding: 6px 13px;
749
+ }
750
+ .e-bigger .e-ie-save-dialog .e-ie-img-save-name {
751
+ width: calc(71% - 30px) !important; /* stylelint-disable-line declaration-no-important */
752
+ }
753
+
578
754
  .e-image-editor {
579
755
  background: #dee2e6;
580
756
  }
@@ -602,17 +778,20 @@
602
778
  }
603
779
  .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:hover {
604
780
  background: #5c636a;
605
- box-shadow: none;
781
+ -webkit-box-shadow: none;
782
+ box-shadow: none;
606
783
  color: #6c757d;
607
784
  }
608
785
  .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:focus {
609
786
  background: #5c636a;
610
- box-shadow: none;
787
+ -webkit-box-shadow: none;
788
+ box-shadow: none;
611
789
  color: #fff;
612
790
  }
613
791
  .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:active {
614
792
  background: #565e64;
615
- box-shadow: none;
793
+ -webkit-box-shadow: none;
794
+ box-shadow: none;
616
795
  color: #fff;
617
796
  }
618
797
  .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 {
@@ -1 +1,13 @@
1
- @import 'image-editor/bootstrap5.scss';
1
+ @import 'ej2-base/styles/definition/bootstrap5.scss';
2
+ @import 'ej2-buttons/styles/button/bootstrap5-definition.scss';
3
+ @import 'ej2-splitbuttons/styles/drop-down-button/bootstrap5-definition.scss';
4
+ @import 'ej2-inputs/styles/numerictextbox/bootstrap5-definition.scss';
5
+ @import 'ej2-inputs/styles/textbox/bootstrap5-definition.scss';
6
+ @import 'ej2-inputs/styles/uploader/bootstrap5-definition.scss';
7
+ @import 'ej2-popups/styles/tooltip/bootstrap5-definition.scss';
8
+ @import 'ej2-inputs/styles/color-picker/bootstrap5-definition.scss';
9
+ @import 'ej2-navigations/styles/toolbar/bootstrap5-definition.scss';
10
+ @import 'ej2-popups/styles/spinner/bootstrap5-definition.scss';
11
+ @import 'image-editor/bootstrap5-definition.scss';
12
+ @import 'image-editor/icons/bootstrap5.scss';
13
+ @import 'image-editor/all.scss';