@syncfusion/ej2-image-editor 25.2.4 → 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 -830
  5. package/dist/es6/ej2-image-editor.es2015.js.map +1 -1
  6. package/dist/es6/ej2-image-editor.es5.js +2762 -873
  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 -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 +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 -289
@@ -1,27 +1,64 @@
1
- /* stylelint-disable-line no-empty-source */ /*! component's theme wise override definitions and variables */
1
+ /* stylelint-disable-line no-empty-source */
2
+ @-webkit-keyframes tbar-popup-shadow {
3
+ 0% {
4
+ border-color: rgba(255, 255, 255, 0.5);
5
+ -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
6
+ box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
7
+ }
8
+ 100% {
9
+ -webkit-box-shadow: 0 0 0 200px rgba(255, 255, 255, 0.12);
10
+ box-shadow: 0 0 0 200px rgba(255, 255, 255, 0.12);
11
+ }
12
+ }
2
13
  @keyframes tbar-popup-shadow {
3
14
  0% {
4
15
  border-color: rgba(255, 255, 255, 0.5);
5
- box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
16
+ -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
17
+ box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
6
18
  }
7
19
  100% {
8
- box-shadow: 0 0 0 200px rgba(255, 255, 255, 0.12);
20
+ -webkit-box-shadow: 0 0 0 200px rgba(255, 255, 255, 0.12);
21
+ box-shadow: 0 0 0 200px rgba(255, 255, 255, 0.12);
9
22
  }
10
23
  }
11
24
  /* stylelint-disable property-no-vendor-prefix */
25
+ @-webkit-keyframes material-spinner-rotate {
26
+ 0% {
27
+ -webkit-transform: rotate(0deg);
28
+ transform: rotate(0deg);
29
+ }
30
+ 100% {
31
+ -webkit-transform: rotate(360deg);
32
+ transform: rotate(360deg);
33
+ }
34
+ }
12
35
  @keyframes material-spinner-rotate {
13
36
  0% {
37
+ -webkit-transform: rotate(0deg);
38
+ transform: rotate(0deg);
39
+ }
40
+ 100% {
41
+ -webkit-transform: rotate(360deg);
42
+ transform: rotate(360deg);
43
+ }
44
+ }
45
+ @-webkit-keyframes fabric-spinner-rotate {
46
+ 0% {
47
+ -webkit-transform: rotate(0deg);
14
48
  transform: rotate(0deg);
15
49
  }
16
50
  100% {
51
+ -webkit-transform: rotate(360deg);
17
52
  transform: rotate(360deg);
18
53
  }
19
54
  }
20
55
  @keyframes fabric-spinner-rotate {
21
56
  0% {
57
+ -webkit-transform: rotate(0deg);
22
58
  transform: rotate(0deg);
23
59
  }
24
60
  100% {
61
+ -webkit-transform: rotate(360deg);
25
62
  transform: rotate(360deg);
26
63
  }
27
64
  }
@@ -58,9 +95,6 @@
58
95
  .e-image-editor .e-btn-save::before {
59
96
  content: "\e98e";
60
97
  }
61
- .e-image-editor .e-custom::before {
62
- content: "\e964";
63
- }
64
98
  .e-image-editor .e-close::before {
65
99
  content: "\eb36";
66
100
  }
@@ -76,160 +110,108 @@
76
110
  .e-image-editor .e-fill.e-template .e-caret::before {
77
111
  content: "\e35c";
78
112
  }
79
- .e-image-editor .e-custom::before {
80
- content: "\e964";
81
- }
82
- .e-image-editor .e-circle::before {
83
- content: "\e671";
84
- }
85
- .e-image-editor .e-square::before {
86
- content: "\e965";
87
- }
88
- .e-image-editor .e-custom-a::before {
89
- content: "\e966";
90
- }
91
- .e-image-editor .e-custom-b::before {
92
- content: "\e967";
93
- }
94
- .e-image-editor .e-custom-c::before {
95
- content: "\e968";
96
- }
97
- .e-image-editor .e-custom-d::before {
98
- content: "\e96a";
99
- }
100
- .e-image-editor .e-custom-e::before {
101
- content: "\e96b";
102
- }
103
- .e-image-editor .e-custom-f::before {
104
- content: "\e9a1";
105
- }
106
- .e-image-editor .e-custom-g::before {
107
- content: "\e9a2";
108
- }
109
- .e-image-editor .e-custom-h::before {
110
- content: "\e9a3";
111
- }
112
- .e-image-editor .e-custom-i::before {
113
- content: "\e9a4";
114
- }
115
- .e-image-editor .e-custom-j::before {
116
- content: "\e9a5";
117
- }
118
- .e-image-editor .e-horizontal-flip::before {
119
- content: "\e95c";
120
- }
121
- .e-image-editor .e-vertical-flip::before {
122
- content: "\e95d";
123
- }
124
- .e-image-editor .e-clock-wise::before {
125
- content: "\e960";
126
- }
127
- .e-image-editor .e-anti-clock-wise::before {
128
- content: "\e95f";
129
- }
130
- .e-image-editor .e-rectangle::before {
131
- content: "\e670";
132
- }
133
- .e-image-editor .e-circle::before {
134
- content: "\e671";
135
- }
136
- .e-image-editor .e-triangle::before {
137
- content: "\e954";
138
- }
139
- .e-image-editor .e-line::before {
140
- content: "\e668";
141
- }
142
- .e-image-editor .e-add-text::before {
143
- content: "\e35b";
144
- }
145
- .e-image-editor .e-free-pen::before {
146
- content: "\e737";
147
- }
148
- .e-image-editor .e-arrow::before {
149
- content: "\e669";
150
- }
151
- .e-image-editor .e-path::before {
152
- content: "\e931";
153
- }
154
113
 
114
+ .e-image-editor .e-custom::before,
155
115
  .e-dropdown-popup.e-image-popup .e-custom::before {
156
116
  content: "\e964";
157
117
  }
118
+ .e-image-editor .e-circle::before,
158
119
  .e-dropdown-popup.e-image-popup .e-circle::before {
159
120
  content: "\e671";
160
121
  }
122
+ .e-image-editor .e-square::before,
161
123
  .e-dropdown-popup.e-image-popup .e-square::before {
162
124
  content: "\e965";
163
125
  }
126
+ .e-image-editor .e-custom-a::before,
164
127
  .e-dropdown-popup.e-image-popup .e-custom-a::before {
165
128
  content: "\e966";
166
129
  }
130
+ .e-image-editor .e-custom-b::before,
167
131
  .e-dropdown-popup.e-image-popup .e-custom-b::before {
168
132
  content: "\e967";
169
133
  }
134
+ .e-image-editor .e-custom-c::before,
170
135
  .e-dropdown-popup.e-image-popup .e-custom-c::before {
171
136
  content: "\e968";
172
137
  }
138
+ .e-image-editor .e-custom-d::before,
173
139
  .e-dropdown-popup.e-image-popup .e-custom-d::before {
174
140
  content: "\e96a";
175
141
  }
142
+ .e-image-editor .e-custom-e::before,
176
143
  .e-dropdown-popup.e-image-popup .e-custom-e::before {
177
144
  content: "\e96b";
178
145
  }
146
+ .e-image-editor .e-custom-f::before,
179
147
  .e-dropdown-popup.e-image-popup .e-custom-f::before {
180
148
  content: "\e9a1";
181
149
  }
150
+ .e-image-editor .e-custom-g::before,
182
151
  .e-dropdown-popup.e-image-popup .e-custom-g::before {
183
152
  content: "\e9a2";
184
153
  }
154
+ .e-image-editor .e-custom-h::before,
185
155
  .e-dropdown-popup.e-image-popup .e-custom-h::before {
186
156
  content: "\e9a3";
187
157
  }
158
+ .e-image-editor .e-custom-i::before,
188
159
  .e-dropdown-popup.e-image-popup .e-custom-i::before {
189
160
  content: "\e9a4";
190
161
  }
162
+ .e-image-editor .e-custom-j::before,
191
163
  .e-dropdown-popup.e-image-popup .e-custom-j::before {
192
164
  content: "\e9a5";
193
165
  }
166
+ .e-image-editor .e-rectangle::before,
194
167
  .e-dropdown-popup.e-image-popup .e-rectangle::before {
195
168
  content: "\e670";
196
169
  }
197
- .e-dropdown-popup.e-image-popup .e-circle::before {
198
- content: "\e671";
199
- }
170
+ .e-image-editor .e-triangle::before,
200
171
  .e-dropdown-popup.e-image-popup .e-triangle::before {
201
172
  content: "\e954";
202
173
  }
174
+ .e-image-editor .e-line::before,
203
175
  .e-dropdown-popup.e-image-popup .e-line::before {
204
176
  content: "\e668";
205
177
  }
178
+ .e-image-editor .e-clock-wise::before,
206
179
  .e-dropdown-popup.e-image-popup .e-clock-wise::before {
207
180
  content: "\e960";
208
181
  }
182
+ .e-image-editor .e-anti-clock-wise::before,
209
183
  .e-dropdown-popup.e-image-popup .e-anti-clock-wise::before {
210
184
  content: "\e95f";
211
185
  }
186
+ .e-image-editor .e-add-text::before,
212
187
  .e-dropdown-popup.e-image-popup .e-add-text::before {
213
188
  content: "\e35b";
214
189
  }
190
+ .e-image-editor .e-free-pen::before,
215
191
  .e-dropdown-popup.e-image-popup .e-free-pen::before {
216
192
  content: "\e737";
217
193
  }
194
+ .e-image-editor .e-horizontal-flip::before,
218
195
  .e-dropdown-popup.e-image-popup .e-horizontal-flip::before {
219
196
  content: "\e95c";
220
197
  }
198
+ .e-image-editor .e-vertical-flip::before,
221
199
  .e-dropdown-popup.e-image-popup .e-vertical-flip::before {
222
200
  content: "\e95d";
223
201
  }
202
+ .e-image-editor .e-arrow::before,
224
203
  .e-dropdown-popup.e-image-popup .e-arrow::before {
225
204
  content: "\e669";
226
205
  }
206
+ .e-image-editor .e-path::before,
227
207
  .e-dropdown-popup.e-image-popup .e-path::before {
228
208
  content: "\e931";
229
209
  }
230
210
 
231
211
  .e-ie-toolbar-upload-div.e-hide,
232
- .e-ie-toolbar-upload-btn.e-hide {
212
+ .e-ie-toolbar-upload-btn.e-hide,
213
+ .e-ie-img-quality-slider,
214
+ .e-ie-img-quality-name .e-hide {
233
215
  display: none;
234
216
  }
235
217
 
@@ -246,15 +228,12 @@
246
228
  .e-device.e-image-editor .e-ie-straighten-value-span {
247
229
  margin-left: 15px !important; /* stylelint-disable-line declaration-no-important */
248
230
  }
249
- .e-device.e-image-editor .e-hscroll .e-scroll-nav.e-scroll-right-nav {
231
+ .e-device.e-image-editor .e-hscroll .e-scroll-nav.e-scroll-right-nav, .e-device.e-image-editor .e-scroll-right-overlay {
250
232
  display: none !important; /* stylelint-disable-line declaration-no-important */
251
233
  }
252
234
  .e-device.e-image-editor .e-hscroll.e-scroll-device {
253
235
  padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
254
236
  }
255
- .e-device.e-image-editor .e-scroll-right-overlay {
256
- display: none !important; /* stylelint-disable-line declaration-no-important */
257
- }
258
237
  .e-device.e-image-editor .e-contextual-toolbar-wrapper {
259
238
  border-top: 1px solid #bdbdbd;
260
239
  border-bottom: none !important; /* stylelint-disable-line declaration-no-important */
@@ -268,6 +247,16 @@
268
247
  .e-device.e-image-editor .e-bottom-toolbar .e-toolbar, .e-device.e-image-editor .e-bottom-toolbar-area .e-toolbar {
269
248
  border-bottom: none;
270
249
  }
250
+ .e-device.e-image-editor .e-ie-img-save-name {
251
+ width: calc(65% - 13px) !important; /* stylelint-disable-line declaration-no-important */
252
+ }
253
+ .e-device.e-image-editor .e-ie-img-size-value-span {
254
+ margin-left: calc(100% - 145px) !important; /* stylelint-disable-line declaration-no-important */
255
+ }
256
+ .e-device.e-image-editor .e-ie-quality-option-container .e-slider-container {
257
+ margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
258
+ height: auto !important; /* stylelint-disable-line declaration-no-important */
259
+ }
271
260
 
272
261
  .e-bigger .e-image-editor .e-contextual-toolbar-wrapper .e-slider-container .e-slider .e-handle,
273
262
  .e-image-editor.e-bigger .e-contextual-toolbar-wrapper .e-slider-container .e-slider .e-handle {
@@ -283,11 +272,8 @@
283
272
  height: 48px !important; /* stylelint-disable-line declaration-no-important */
284
273
  min-height: 48px !important; /* stylelint-disable-line declaration-no-important */
285
274
  }
286
- .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-toolbar-item.e-ie-resize-height span,
287
- .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item.e-ie-resize-height span {
288
- font-size: 16px;
289
- }
290
- .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-toolbar-item.e-ie-resize-width span,
275
+ .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,
276
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item.e-ie-resize-height span,
291
277
  .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item.e-ie-resize-width span {
292
278
  font-size: 16px;
293
279
  }
@@ -341,7 +327,6 @@
341
327
  .e-image-editor.e-bigger .e-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-left {
342
328
  line-height: 1;
343
329
  }
344
-
345
330
  .e-image-editor {
346
331
  border: 1px solid #bdbdbd;
347
332
  position: relative;
@@ -462,7 +447,6 @@
462
447
  height: inherit !important; /* stylelint-disable-line declaration-no-important */
463
448
  }
464
449
  .e-image-editor .e-contextual-toolbar-wrapper .e-frame-wrapper .e-toolbar-item {
465
- display: -ms-inline-grid;
466
450
  display: inline-grid;
467
451
  }
468
452
  .e-image-editor .e-contextual-toolbar-wrapper .e-frame-wrapper .e-toolbar-item > span {
@@ -472,13 +456,14 @@
472
456
  }
473
457
  .e-image-editor .e-contextual-toolbar-wrapper .e-frame-wrapper .e-dropdown-btn {
474
458
  margin: 0 auto;
459
+ width: -webkit-max-content;
460
+ width: -moz-max-content;
475
461
  width: max-content;
476
462
  }
477
463
  .e-image-editor .e-contextual-toolbar-wrapper.e-frame-wrapper .e-toolbar {
478
464
  height: inherit !important; /* stylelint-disable-line declaration-no-important */
479
465
  }
480
466
  .e-image-editor .e-contextual-toolbar-wrapper.e-frame-wrapper .e-toolbar-item:not(.e-hidden) {
481
- display: -ms-inline-grid;
482
467
  display: inline-grid;
483
468
  }
484
469
  .e-image-editor .e-contextual-toolbar-wrapper.e-frame-wrapper .e-toolbar-item > span {
@@ -488,6 +473,8 @@
488
473
  }
489
474
  .e-image-editor .e-contextual-toolbar-wrapper.e-frame-wrapper .e-dropdown-btn {
490
475
  margin: 0 auto;
476
+ width: -webkit-max-content;
477
+ width: -moz-max-content;
491
478
  width: max-content;
492
479
  }
493
480
  .e-image-editor .e-contextual-toolbar-wrapper.e-hide {
@@ -571,6 +558,218 @@
571
558
  margin-left: calc(50% - 80px) !important; /* stylelint-disable-line declaration-no-important */
572
559
  }
573
560
 
561
+ .e-ie-quality-slider.e-control-wrapper.e-slider-container.e-horizontal,
562
+ .e-ie-quality-option-container .e-slider-container.e-horizontal {
563
+ height: 28px;
564
+ }
565
+
566
+ .e-ie-quality-slider.e-control-wrapper.e-slider-container.e-horizontal .e-slider {
567
+ top: calc(50% - 14px) !important; /* stylelint-disable-line declaration-no-important */
568
+ }
569
+
570
+ .e-ie-quality-slider.e-slider-container + .e-ie-img-icon-button,
571
+ .e-ie-quality-option-container .e-slider-container.e-horizontal + .e-ie-img-icon-button {
572
+ margin-left: 20px !important; /* stylelint-disable-line declaration-no-important */
573
+ }
574
+
575
+ .e-ie-img-size {
576
+ margin: 10px 10px 0;
577
+ }
578
+
579
+ .e-ie-dlg-img-content {
580
+ width: 40%;
581
+ height: 100%;
582
+ margin-right: 5%;
583
+ display: -webkit-box;
584
+ display: -ms-flexbox;
585
+ display: flex;
586
+ -webkit-box-orient: vertical;
587
+ -webkit-box-direction: normal;
588
+ -ms-flex-direction: column;
589
+ flex-direction: column;
590
+ -webkit-box-pack: center;
591
+ -ms-flex-pack: center;
592
+ justify-content: center;
593
+ -webkit-box-align: center;
594
+ -ms-flex-align: center;
595
+ align-items: center;
596
+ }
597
+
598
+ .e-ie-img-input {
599
+ width: 90% !important; /* stylelint-disable-line declaration-no-important */
600
+ }
601
+
602
+ .e-ie-img-dlg-canvas {
603
+ width: 100%;
604
+ height: 100%;
605
+ }
606
+
607
+ .e-ie-img-size {
608
+ font-size: 14px;
609
+ display: -webkit-box;
610
+ display: -ms-flexbox;
611
+ display: flex;
612
+ -webkit-box-orient: vertical;
613
+ -webkit-box-direction: normal;
614
+ -ms-flex-direction: column;
615
+ flex-direction: column;
616
+ -webkit-box-pack: start;
617
+ -ms-flex-pack: start;
618
+ justify-content: flex-start;
619
+ }
620
+
621
+ .e-ie-dlg-right-content {
622
+ width: 60%;
623
+ }
624
+
625
+ .e-ie-img-save-name {
626
+ display: inline-block;
627
+ margin-right: 10px;
628
+ width: calc(71% - 13px);
629
+ }
630
+
631
+ .e-ie-img-save-dlg {
632
+ display: inline-block;
633
+ width: 90px;
634
+ }
635
+
636
+ .e-ie-img-save-dlg .e-btn {
637
+ width: 100%;
638
+ }
639
+
640
+ .e-ie-img-label-name {
641
+ margin-bottom: 5px;
642
+ display: block;
643
+ }
644
+
645
+ .e-ie-img-quality-name {
646
+ position: relative;
647
+ width: 100% !important; /* stylelint-disable-line declaration-no-important */
648
+ }
649
+
650
+ .e-ie-quality-info {
651
+ margin-bottom: 0;
652
+ margin-top: 0;
653
+ }
654
+
655
+ .e-ie-quality-span {
656
+ margin-left: 5px;
657
+ display: -webkit-inline-box;
658
+ display: -ms-inline-flexbox;
659
+ display: inline-flex;
660
+ }
661
+
662
+ .e-ie-img-quality-label {
663
+ margin-bottom: 3%;
664
+ margin-top: 5%;
665
+ display: -webkit-inline-box;
666
+ display: -ms-inline-flexbox;
667
+ display: inline-flex;
668
+ }
669
+
670
+ .e-ie-img-quality-size {
671
+ margin-top: 5%;
672
+ display: block;
673
+ }
674
+
675
+ .e-ie-img-size-value-span {
676
+ width: 8%;
677
+ text-transform: capitalize;
678
+ margin-left: calc(100% - 194px);
679
+ margin-top: 4px;
680
+ margin-left: calc(100% - 185px);
681
+ }
682
+
683
+ .e-device.e-ie-save-dialog .e-ie-img-size-value-span {
684
+ margin-left: calc(100% - 145px) !important; /* stylelint-disable-line declaration-no-important */
685
+ margin-left: calc(100% - 130px) !important; /* stylelint-disable-line declaration-no-important */
686
+ }
687
+
688
+ .e-bigger .e-ie-save-dialog .e-ie-img-save-name {
689
+ width: calc(71% - 30px) !important; /* stylelint-disable-line declaration-no-important */
690
+ }
691
+
692
+ .e-device.e-ie-save-dialog .e-ie-img-save-name {
693
+ width: calc(71% - 30px) !important; /* stylelint-disable-line declaration-no-important */
694
+ }
695
+
696
+ .e-ie-img-icon-button {
697
+ margin-left: 10px;
698
+ width: -webkit-max-content;
699
+ width: -moz-max-content;
700
+ width: max-content;
701
+ margin-bottom: 5px;
702
+ }
703
+
704
+ .e-bigger .e-image-editor .e-dlg-container .e-dialog,
705
+ .e-bigger.e-image-editor .e-dlg-container .e-dialog {
706
+ width: 656px;
707
+ }
708
+
709
+ .e-bigger .e-ie-img-save-dlg {
710
+ width: 106px;
711
+ }
712
+
713
+ .e-bigger .e-image-editor .e-control-wrapper.e-slider-container.e-horizontal,
714
+ .e-bigger.e-image-editor .e-control-wrapper.e-slider-container.e-horizontal {
715
+ width: 217px;
716
+ }
717
+
718
+ .e-ie-quality-option-container .e-btn-group .e-btn {
719
+ padding-left: 10px;
720
+ padding-right: 10px;
721
+ }
722
+
723
+ .e-bigger .e-dialog.e-blr-ie-save-dialog:not(.e-device) {
724
+ width: 620px !important; /* stylelint-disable-line declaration-no-important */
725
+ }
726
+ .e-bigger .e-dialog.e-blr-ie-save-dialog:not(.e-device) .e-ie-img-icon-button {
727
+ padding: 4px 11px 2px;
728
+ }
729
+ .e-bigger .e-dialog.e-blr-ie-save-dialog:not(.e-device) .e-btn-group .e-btn {
730
+ padding: 4px 10px 2px;
731
+ }
732
+
733
+ .e-blr-ie-save-dialog .e-ie-img-save-name {
734
+ width: calc(67% - 13px);
735
+ }
736
+ .e-blr-ie-save-dialog .e-ie-quality-custom {
737
+ width: calc(65% - 13px);
738
+ }
739
+ .e-blr-ie-save-dialog .e-ie-quality-option-container .e-ie-img-icon-button {
740
+ margin-left: 20px;
741
+ }
742
+ .e-blr-ie-save-dialog .e-ie-img-size-value-span {
743
+ vertical-align: middle;
744
+ margin-left: calc(50% - 55px);
745
+ }
746
+ .e-blr-ie-save-dialog .e-btn-group .e-btn {
747
+ padding: 6px 7.5px 4px;
748
+ }
749
+ .e-blr-ie-save-dialog.e-device .e-ie-img-save-name {
750
+ width: calc(64% - 15px) !important; /* stylelint-disable-line declaration-no-important */
751
+ }
752
+ .e-blr-ie-save-dialog.e-device .e-ie-quality-custom {
753
+ width: 75% !important; /* stylelint-disable-line declaration-no-important */
754
+ }
755
+ .e-blr-ie-save-dialog.e-device .e-ie-quality-option-container .e-ie-img-icon-button {
756
+ margin-left: 0;
757
+ }
758
+ .e-blr-ie-save-dialog.e-device .e-slider-container {
759
+ margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
760
+ height: 28px !important; /* stylelint-disable-line declaration-no-important */
761
+ }
762
+ .e-blr-ie-save-dialog.e-device .e-ie-img-size-value-span {
763
+ margin-left: calc(75% - 100px) !important; /* stylelint-disable-line declaration-no-important */
764
+ }
765
+ .e-blr-ie-save-dialog.e-device .e-btn-group .e-btn {
766
+ padding: 2px 9.5px;
767
+ }
768
+ .e-bigger .e-ie-save-dialog .e-ie-img-save-name {
769
+ width: calc(71% - 30px) !important; /* stylelint-disable-line declaration-no-important */
770
+ width: calc(65% - 13px) !important; /* stylelint-disable-line declaration-no-important */
771
+ }
772
+
574
773
  .e-image-editor {
575
774
  background: #eee;
576
775
  }
@@ -598,17 +797,20 @@
598
797
  }
599
798
  .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:hover {
600
799
  background: rgba(0, 0, 0, 0.12);
601
- box-shadow: none;
800
+ -webkit-box-shadow: none;
801
+ box-shadow: none;
602
802
  color: rgba(0, 0, 0, 0.87);
603
803
  }
604
804
  .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:focus {
605
805
  background: rgba(0, 0, 0, 0.18);
606
- box-shadow: none;
806
+ -webkit-box-shadow: none;
807
+ box-shadow: none;
607
808
  color: rgba(0, 0, 0, 0.87);
608
809
  }
609
810
  .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:active {
610
811
  background: rgba(184, 184, 184, 0.9584);
611
- box-shadow: none;
812
+ -webkit-box-shadow: none;
813
+ box-shadow: none;
612
814
  color: rgba(0, 0, 0, 0.87);
613
815
  }
614
816
  .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/material.scss';
1
+ @import 'ej2-base/styles/definition/material.scss';
2
+ @import 'ej2-buttons/styles/button/material-definition.scss';
3
+ @import 'ej2-splitbuttons/styles/drop-down-button/material-definition.scss';
4
+ @import 'ej2-inputs/styles/numerictextbox/material-definition.scss';
5
+ @import 'ej2-inputs/styles/textbox/material-definition.scss';
6
+ @import 'ej2-inputs/styles/uploader/material-definition.scss';
7
+ @import 'ej2-popups/styles/tooltip/material-definition.scss';
8
+ @import 'ej2-inputs/styles/color-picker/material-definition.scss';
9
+ @import 'ej2-navigations/styles/toolbar/material-definition.scss';
10
+ @import 'ej2-popups/styles/spinner/material-definition.scss';
11
+ @import 'image-editor/material-definition.scss';
12
+ @import 'image-editor/icons/material.scss';
13
+ @import 'image-editor/all.scss';