@syncfusion/ej2-image-editor 21.1.35 → 21.1.36

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (107) hide show
  1. package/.eslintrc.json +1 -0
  2. package/CHANGELOG.md +50 -0
  3. package/dist/ej2-image-editor.umd.min.js +2 -2
  4. package/dist/ej2-image-editor.umd.min.js.map +1 -1
  5. package/dist/es6/ej2-image-editor.es2015.js +19332 -12536
  6. package/dist/es6/ej2-image-editor.es2015.js.map +1 -1
  7. package/dist/es6/ej2-image-editor.es5.js +19360 -12537
  8. package/dist/es6/ej2-image-editor.es5.js.map +1 -1
  9. package/dist/global/ej2-image-editor.min.js +2 -2
  10. package/dist/global/ej2-image-editor.min.js.map +1 -1
  11. package/dist/global/index.d.ts +1 -1
  12. package/package.json +11 -11
  13. package/src/image-editor/action/crop.d.ts +36 -0
  14. package/src/image-editor/action/crop.js +829 -0
  15. package/src/image-editor/action/draw.d.ts +125 -0
  16. package/src/image-editor/action/draw.js +3263 -0
  17. package/src/image-editor/action/export.d.ts +23 -0
  18. package/src/image-editor/action/export.js +364 -0
  19. package/src/image-editor/action/filter.d.ts +35 -0
  20. package/src/image-editor/action/filter.js +699 -0
  21. package/src/image-editor/action/freehand-draw.d.ts +61 -0
  22. package/src/image-editor/action/freehand-draw.js +1015 -0
  23. package/src/image-editor/action/index.d.ts +9 -0
  24. package/src/image-editor/action/index.js +9 -0
  25. package/src/image-editor/action/selection.d.ts +139 -0
  26. package/src/image-editor/action/selection.js +4518 -0
  27. package/src/image-editor/action/shape.d.ts +94 -0
  28. package/src/image-editor/action/shape.js +2745 -0
  29. package/src/image-editor/action/transform.d.ts +67 -0
  30. package/src/image-editor/action/transform.js +1859 -0
  31. package/src/image-editor/action/undo-redo.d.ts +43 -0
  32. package/src/image-editor/action/undo-redo.js +800 -0
  33. package/src/image-editor/base/enum.d.ts +189 -0
  34. package/src/image-editor/base/enum.js +198 -0
  35. package/src/image-editor/{image-editor-model.d.ts → base/image-editor-model.d.ts} +130 -41
  36. package/src/image-editor/{image-editor.d.ts → base/image-editor.d.ts} +413 -1107
  37. package/src/image-editor/base/image-editor.js +2270 -0
  38. package/src/image-editor/base/index.d.ts +4 -0
  39. package/src/image-editor/base/index.js +2 -0
  40. package/src/image-editor/base/interface.d.ts +1128 -0
  41. package/src/image-editor/base/interface.js +1 -0
  42. package/src/image-editor/index.d.ts +3 -5
  43. package/src/image-editor/index.js +3 -4
  44. package/src/image-editor/renderer/index.d.ts +1 -0
  45. package/src/image-editor/renderer/index.js +1 -0
  46. package/src/image-editor/renderer/toolbar.d.ts +105 -0
  47. package/src/image-editor/renderer/toolbar.js +3018 -0
  48. package/styles/bootstrap-dark.css +69 -3
  49. package/styles/bootstrap.css +69 -3
  50. package/styles/bootstrap4.css +69 -3
  51. package/styles/bootstrap5-dark.css +69 -3
  52. package/styles/bootstrap5.css +69 -3
  53. package/styles/fabric-dark.css +69 -3
  54. package/styles/fabric.css +69 -3
  55. package/styles/fluent-dark.css +69 -3
  56. package/styles/fluent.css +69 -3
  57. package/styles/highcontrast-light.css +71 -5
  58. package/styles/highcontrast.css +72 -5
  59. package/styles/image-editor/_highcontrast-definition.scss +1 -1
  60. package/styles/image-editor/_highcontrast-light-definition.scss +1 -1
  61. package/styles/image-editor/_layout.scss +21 -7
  62. package/styles/image-editor/_material3-dark-definition.scss +1 -0
  63. package/styles/image-editor/_material3-definition.scss +11 -0
  64. package/styles/image-editor/_theme.scss +7 -2
  65. package/styles/image-editor/bootstrap-dark.css +69 -3
  66. package/styles/image-editor/bootstrap.css +69 -3
  67. package/styles/image-editor/bootstrap4.css +69 -3
  68. package/styles/image-editor/bootstrap5-dark.css +69 -3
  69. package/styles/image-editor/bootstrap5.css +69 -3
  70. package/styles/image-editor/fabric-dark.css +69 -3
  71. package/styles/image-editor/fabric.css +69 -3
  72. package/styles/image-editor/fluent-dark.css +69 -3
  73. package/styles/image-editor/fluent.css +69 -3
  74. package/styles/image-editor/highcontrast-light.css +71 -5
  75. package/styles/image-editor/highcontrast.css +72 -5
  76. package/styles/image-editor/icons/_bootstrap-dark.scss +132 -0
  77. package/styles/image-editor/icons/_bootstrap.scss +132 -0
  78. package/styles/image-editor/icons/_bootstrap4.scss +132 -0
  79. package/styles/image-editor/icons/_bootstrap5.scss +132 -0
  80. package/styles/image-editor/icons/_fabric-dark.scss +132 -0
  81. package/styles/image-editor/icons/_fabric.scss +132 -0
  82. package/styles/image-editor/icons/_fluent.scss +132 -0
  83. package/styles/image-editor/icons/_fusionnew.scss +132 -0
  84. package/styles/image-editor/icons/_highcontrast-light.scss +132 -0
  85. package/styles/image-editor/icons/_highcontrast.scss +132 -0
  86. package/styles/image-editor/icons/_material-dark.scss +132 -0
  87. package/styles/image-editor/icons/_material.scss +132 -0
  88. package/styles/image-editor/icons/_material3-dark.scss +1 -0
  89. package/styles/image-editor/icons/_material3.scss +133 -1
  90. package/styles/image-editor/icons/_tailwind.scss +132 -0
  91. package/styles/image-editor/material-dark.css +69 -3
  92. package/styles/image-editor/material.css +69 -3
  93. package/styles/image-editor/material3-dark.css +453 -0
  94. package/styles/image-editor/material3-dark.scss +14 -0
  95. package/styles/image-editor/material3.css +509 -0
  96. package/styles/image-editor/material3.scss +14 -0
  97. package/styles/image-editor/tailwind-dark.css +69 -3
  98. package/styles/image-editor/tailwind.css +69 -3
  99. package/styles/material-dark.css +69 -3
  100. package/styles/material.css +69 -3
  101. package/styles/material3-dark.css +453 -0
  102. package/styles/material3-dark.scss +3 -0
  103. package/styles/material3.css +509 -0
  104. package/styles/material3.scss +3 -0
  105. package/styles/tailwind-dark.css +69 -3
  106. package/styles/tailwind.css +69 -3
  107. package/src/image-editor/image-editor.js +0 -14729
@@ -0,0 +1,453 @@
1
+ @import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,900&display=swap");
2
+ :root {
3
+ --color-sf-black: 0, 0, 0;
4
+ --color-sf-white: 255, 255, 255;
5
+ --color-sf-primary: 208, 188, 255;
6
+ --color-sf-primary-container: 79, 55, 139;
7
+ --color-sf-secondary: 204, 194, 220;
8
+ --color-sf-secondary-container: 74, 68, 88;
9
+ --color-sf-tertiary: 239, 184, 200;
10
+ --color-sf-tertiary-container: 99, 59, 72;
11
+ --color-sf-surface: 28, 27, 31;
12
+ --color-sf-surface-variant: 73, 69, 79;
13
+ --color-sf-background: var(--color-sf-surface);
14
+ --color-sf-on-primary: 55, 30, 115;
15
+ --color-sf-on-primary-container: 234, 221, 255;
16
+ --color-sf-on-secondary: 51, 45, 65;
17
+ --color-sf-on-secondary-container: 232, 222, 248;
18
+ --color-sf-on-tertiary: 73, 37, 50;
19
+ --color-sf-on-tertiary-containe: 255, 216, 228;
20
+ --color-sf-on-surface: 230, 225, 229;
21
+ --color-sf-on-surface-variant: 202, 196, 208;
22
+ --color-sf-on-background: 230, 225, 229;
23
+ --color-sf-outline: 147, 143, 153;
24
+ --color-sf-outline-variant: 68, 71, 70;
25
+ --color-sf-shadow: 0, 0, 0;
26
+ --color-sf-surface-tint-color: 208, 188, 255;
27
+ --color-sf-inverse-surface: 230, 225, 229;
28
+ --color-sf-inverse-on-surface: 49, 48, 51;
29
+ --color-sf-inverse-primary: 103, 80, 164;
30
+ --color-sf-scrim: 0, 0, 0;
31
+ --color-sf-error: 242, 184, 181;
32
+ --color-sf-error-container: 140, 29, 24;
33
+ --color-sf-on-error: 96, 20, 16;
34
+ --color-sf-on-error-container: 249, 222, 220;
35
+ --color-sf-success: 83, 202, 23;
36
+ --color-sf-success-container: 22, 62, 2;
37
+ --color-sf-on-success: 13, 39, 0;
38
+ --color-sf-on-success-container: 183, 250, 150;
39
+ --color-sf-info: 71, 172, 251;
40
+ --color-sf-info-container: 0, 67, 120;
41
+ --color-sf-on-info: 0, 51, 91;
42
+ --color-sf-on-info-container: 173, 219, 255;
43
+ --color-sf-warning: 245, 180, 130;
44
+ --color-sf-warning-container: 123, 65, 0;
45
+ --color-sf-on-warning: 99, 52, 0;
46
+ --color-sf-on-warning-container: 255, 220, 193;
47
+ --color-sf-spreadsheet-gridline: 231, 224, 236;
48
+ --color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
49
+ --color-sf-success-text: 0, 0, 0;
50
+ --color-sf-warning-text: 0, 0, 0;
51
+ --color-sf-info-text: 0, 0, 0;
52
+ --color-sf-danger-text: 0, 0, 0;
53
+ --color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
54
+ --color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
55
+ }
56
+
57
+ /* stylelint-disable-line no-empty-source */ /*! Toolbar's material3 theme wise override definitions and variables */
58
+ /* stylelint-disable */
59
+ /* stylelint-disable property-no-vendor-prefix */
60
+ @keyframes material-spinner-rotate {
61
+ 0% {
62
+ transform: rotate(0deg);
63
+ }
64
+ 100% {
65
+ transform: rotate(360deg);
66
+ }
67
+ }
68
+ @keyframes fabric-spinner-rotate {
69
+ 0% {
70
+ transform: rotate(0deg);
71
+ }
72
+ 100% {
73
+ transform: rotate(360deg);
74
+ }
75
+ }
76
+ .e-image-editor .e-upload-icon::before {
77
+ content: "\e760";
78
+ }
79
+ .e-image-editor .e-zoom-in::before {
80
+ content: "\e768";
81
+ }
82
+ .e-image-editor .e-zoom-out::before {
83
+ content: "\e81b";
84
+ }
85
+ .e-image-editor .e-pan::before {
86
+ content: "\e7b1";
87
+ }
88
+ .e-image-editor .e-select::before {
89
+ content: "\e896";
90
+ }
91
+ .e-image-editor .e-transform::before {
92
+ content: "\e8b0";
93
+ }
94
+ .e-image-editor .e-annotation::before {
95
+ content: "\e730";
96
+ }
97
+ .e-image-editor .e-shapes::before {
98
+ content: "\e728";
99
+ }
100
+ .e-image-editor .e-vertical-flip::before {
101
+ content: "\e8a4";
102
+ }
103
+ .e-image-editor .e-mouse::before {
104
+ content: "\e767";
105
+ }
106
+ .e-image-editor .e-btn-reset::before {
107
+ content: "\e772";
108
+ }
109
+ .e-image-editor .e-btn-save::before {
110
+ content: "\e735";
111
+ }
112
+ .e-image-editor .e-custom::before {
113
+ content: "\e8a9";
114
+ }
115
+ .e-image-editor .e-close::before {
116
+ content: "\e7e7";
117
+ }
118
+ .e-image-editor .e-check::before {
119
+ content: "\e8b1";
120
+ }
121
+ .e-image-editor .e-text-font-color.e-template .e-caret::before {
122
+ content: "\e76f";
123
+ }
124
+ .e-image-editor .e-stroke.e-template .e-caret::before, .e-image-editor .e-pen-stroke-color.e-template .e-caret::before {
125
+ content: "\e739";
126
+ }
127
+ .e-image-editor .e-fill.e-template .e-caret::before {
128
+ content: "\e783";
129
+ }
130
+ .e-image-editor .e-custom::before {
131
+ content: "\e8a9";
132
+ }
133
+ .e-image-editor .e-circle::before {
134
+ content: "\e7ca";
135
+ }
136
+ .e-image-editor .e-square::before {
137
+ content: "\e8aa";
138
+ }
139
+ .e-image-editor .e-custom-a::before {
140
+ content: "\e8ab";
141
+ }
142
+ .e-image-editor .e-custom-b::before {
143
+ content: "\e8ac";
144
+ }
145
+ .e-image-editor .e-custom-c::before {
146
+ content: "\e8ad";
147
+ }
148
+ .e-image-editor .e-custom-d::before {
149
+ content: "\e8ae";
150
+ }
151
+ .e-image-editor .e-custom-e::before {
152
+ content: "\e8af";
153
+ }
154
+ .e-image-editor .e-horizontal-flip::before {
155
+ content: "\e8a3";
156
+ }
157
+ .e-image-editor .e-vertical-flip::before {
158
+ content: "\e8a4";
159
+ }
160
+ .e-image-editor .e-clock-wise::before {
161
+ content: "\e8a6";
162
+ }
163
+ .e-image-editor .e-anti-clock-wise::before {
164
+ content: "\e8a5";
165
+ }
166
+ .e-image-editor .e-rectangle::before {
167
+ content: "\e723";
168
+ }
169
+ .e-image-editor .e-circle::before {
170
+ content: "\e7ca";
171
+ }
172
+ .e-image-editor .e-triangle::before {
173
+ content: "\e89c";
174
+ }
175
+ .e-image-editor .e-line::before {
176
+ content: "\e819";
177
+ }
178
+ .e-image-editor .e-add-text::before {
179
+ content: "\e82e";
180
+ }
181
+ .e-image-editor .e-free-pen::before {
182
+ content: "\e7db";
183
+ }
184
+ .e-image-editor .e-arrow::before {
185
+ content: "\e669";
186
+ }
187
+ .e-image-editor .e-path::before {
188
+ content: "\e931";
189
+ }
190
+
191
+ .e-dropdown-popup.e-image-popup .e-custom::before {
192
+ content: "\e8a9";
193
+ }
194
+ .e-dropdown-popup.e-image-popup .e-circle::before {
195
+ content: "\e7ca";
196
+ }
197
+ .e-dropdown-popup.e-image-popup .e-square::before {
198
+ content: "\e8aa";
199
+ }
200
+ .e-dropdown-popup.e-image-popup .e-custom-a::before {
201
+ content: "\e8ab";
202
+ }
203
+ .e-dropdown-popup.e-image-popup .e-custom-b::before {
204
+ content: "\e8ac";
205
+ }
206
+ .e-dropdown-popup.e-image-popup .e-custom-c::before {
207
+ content: "\e8ad";
208
+ }
209
+ .e-dropdown-popup.e-image-popup .e-custom-d::before {
210
+ content: "\e8ae";
211
+ }
212
+ .e-dropdown-popup.e-image-popup .e-custom-e::before {
213
+ content: "\e8af";
214
+ }
215
+ .e-dropdown-popup.e-image-popup .e-rectangle::before {
216
+ content: "\e723";
217
+ }
218
+ .e-dropdown-popup.e-image-popup .e-circle::before {
219
+ content: "\e7ca";
220
+ }
221
+ .e-dropdown-popup.e-image-popup .e-triangle::before {
222
+ content: "\e89c";
223
+ }
224
+ .e-dropdown-popup.e-image-popup .e-line::before {
225
+ content: "\e819";
226
+ }
227
+ .e-dropdown-popup.e-image-popup .e-free-pen::before {
228
+ content: "\e7db";
229
+ }
230
+ .e-dropdown-popup.e-image-popup .e-horizontal-flip::before {
231
+ content: "\e8a3";
232
+ }
233
+ .e-dropdown-popup.e-image-popup .e-vertical-flip::before {
234
+ content: "\e8a4";
235
+ }
236
+ .e-dropdown-popup.e-image-popup .e-custom::before {
237
+ content: "\e8a9";
238
+ }
239
+ .e-dropdown-popup.e-image-popup .e-clock-wise::before {
240
+ content: "\e8a6";
241
+ }
242
+ .e-dropdown-popup.e-image-popup .e-anti-clock-wise::before {
243
+ content: "\e8a5";
244
+ }
245
+ .e-dropdown-popup.e-image-popup .e-add-text::before {
246
+ content: "\e82e";
247
+ }
248
+ .e-dropdown-popup.e-image-popup .e-arrow::before {
249
+ content: "\e669";
250
+ }
251
+ .e-dropdown-popup.e-image-popup .e-path::before {
252
+ content: "\e931";
253
+ }
254
+
255
+ .e-ie-toolbar-upload-div.e-hide,
256
+ .e-ie-toolbar-upload-btn.e-hide {
257
+ display: none;
258
+ }
259
+
260
+ .e-device.e-image-editor .e-img-font-style.e-template {
261
+ margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
262
+ }
263
+ .e-device.e-image-editor .e-slider-container {
264
+ margin-left: calc(50% - 50px) !important; /* stylelint-disable-line declaration-no-important */
265
+ height: 54px !important; /* stylelint-disable-line declaration-no-important */
266
+ }
267
+
268
+ .e-bigger .e-image-editor .e-toolbar,
269
+ .e-image-editor.e-bigger .e-toolbar {
270
+ height: 56px !important; /* stylelint-disable-line declaration-no-important */
271
+ min-height: 56px !important; /* stylelint-disable-line declaration-no-important */
272
+ }
273
+ .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon,
274
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon {
275
+ font-size: 18px;
276
+ }
277
+ .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon,
278
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
279
+ font-size: 18px;
280
+ }
281
+ .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-fill.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-stroke.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-pen-stroke-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-save.e-template .e-dropdown-btn .e-icons.e-caret,
282
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-fill.e-template .e-dropdown-btn .e-icons.e-caret,
283
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-stroke.e-template .e-dropdown-btn .e-icons.e-caret,
284
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-pen-stroke-color.e-template .e-dropdown-btn .e-icons.e-caret,
285
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret,
286
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-save.e-template .e-dropdown-btn .e-icons.e-caret {
287
+ font-size: 18px;
288
+ }
289
+ .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret,
290
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret {
291
+ margin-top: -4px;
292
+ }
293
+ .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-transform, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-save,
294
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select,
295
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation,
296
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-transform,
297
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-save {
298
+ font-size: 18px;
299
+ }
300
+ .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-transform .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-save .e-icons.e-caret,
301
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select .e-icons.e-caret,
302
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation .e-icons.e-caret,
303
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-transform .e-icons.e-caret,
304
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-save .e-icons.e-caret {
305
+ font-size: 10px;
306
+ }
307
+ .e-bigger .e-image-editor .e-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-left,
308
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-left {
309
+ line-height: 1;
310
+ }
311
+
312
+ .e-image-editor {
313
+ border: 1px solid rgba(var(--color-sf-outline-variant));
314
+ position: relative;
315
+ display: block;
316
+ }
317
+ .e-image-editor .e-toolbar {
318
+ border: none;
319
+ }
320
+ .e-image-editor .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon {
321
+ font-size: 16px;
322
+ }
323
+ .e-image-editor .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
324
+ font-size: 16px;
325
+ }
326
+ .e-image-editor .e-toolbar .e-toolbar-items .e-upload {
327
+ border: none;
328
+ }
329
+ .e-image-editor .e-toolbar .e-toolbar-items .e-file-select-wrap {
330
+ padding: 0;
331
+ }
332
+ .e-image-editor .e-toolbar .e-toolbar-items .e-image-upload .e-file-select, .e-image-editor .e-toolbar .e-toolbar-items .e-image-upload .e-file-drop, .e-image-editor .e-toolbar .e-toolbar-items .e-image-upload .e-upload-files {
333
+ display: none;
334
+ }
335
+ .e-image-editor .e-toolbar .e-toolbar-items .e-image-upload .e-image-upload .e-upload {
336
+ border: none;
337
+ }
338
+ .e-image-editor .e-toolbar .e-toolbar-items .e-fill.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-stroke.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-pen-stroke-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-save.e-template .e-dropdown-btn .e-icons.e-caret {
339
+ font-size: 16px;
340
+ }
341
+ .e-image-editor .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret {
342
+ margin-top: -4px;
343
+ }
344
+ .e-image-editor .e-toolbar .e-toolbar-items .e-btn-icon.e-dropdownbtn-preview {
345
+ height: 18px;
346
+ width: 18px;
347
+ margin-top: -4px;
348
+ }
349
+ .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select, .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation, .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-transform, .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-save {
350
+ font-size: 16px;
351
+ }
352
+ .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-transform .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-save .e-icons.e-caret {
353
+ font-size: 10px !important; /* stylelint-disable-line declaration-no-important */
354
+ }
355
+ .e-image-editor .e-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-left {
356
+ line-height: 1;
357
+ }
358
+ .e-image-editor .e-toolbar-area + .e-canvas-wrapper {
359
+ border-top: 1px solid rgba(var(--color-sf-outline-variant));
360
+ }
361
+ .e-image-editor .e-toolbar-area + .e-canvas-wrapper .e-textarea {
362
+ line-height: initial !important; /* stylelint-disable-line declaration-no-important */
363
+ }
364
+ .e-image-editor .e-bottom-toolbar {
365
+ border-top: 1px solid rgba(var(--color-sf-outline-variant));
366
+ }
367
+ .e-image-editor .e-contextual-toolbar-wrapper {
368
+ width: 100%;
369
+ z-index: 1;
370
+ }
371
+ .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar {
372
+ height: 140px !important; /* stylelint-disable-line declaration-no-important */
373
+ }
374
+ .e-image-editor .e-contextual-toolbar-wrapper.e-hide {
375
+ display: none;
376
+ }
377
+ .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item {
378
+ height: auto !important; /* stylelint-disable-line declaration-no-important */
379
+ }
380
+ .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filterwrapper, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper {
381
+ border: 2px solid transparent;
382
+ height: 100px;
383
+ }
384
+ .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 {
385
+ border-top: 2px solid;
386
+ }
387
+ .e-image-editor .e-contextual-toolbar-wrapper .e-slider-container {
388
+ margin-left: calc(50% - 137px);
389
+ height: 70px !important; /* stylelint-disable-line declaration-no-important */
390
+ }
391
+
392
+ .e-image-editor {
393
+ background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.14), rgba(var(--color-sf-primary), 0.14)), rgba(var(--color-sf-surface));
394
+ }
395
+ .e-image-editor .e-contextual-toolbar-wrapper {
396
+ background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.08), rgba(var(--color-sf-primary), 0.08)), rgba(var(--color-sf-surface));
397
+ border-top: 1px solid rgba(var(--color-sf-outline-variant));
398
+ border-bottom: 1px solid rgba(var(--color-sf-outline-variant));
399
+ }
400
+ .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 {
401
+ border-color: linear-gradient(0deg, rgba(var(--color-sf-on-surface), 0.12), rgba(var(--color-sf-on-surface), 0.12)), rgba(var(--color-sf-surface));
402
+ }
403
+ .e-image-editor .e-toolbar .e-toolbar-items .e-tbar-btn.e-btn .e-icons {
404
+ color: rgba(var(--color-sf-on-surface-variant));
405
+ }
406
+ .e-image-editor .e-toolbar .e-toolbar-items .e-tbar-btn.e-btn.e-selected-btn {
407
+ background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.08), rgba(var(--color-sf-primary), 0.08)), rgba(var(--color-sf-surface)) !important; /* stylelint-disable-line declaration-no-important */
408
+ }
409
+ .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn {
410
+ background: inherit;
411
+ border: none;
412
+ margin-top: 0;
413
+ background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.08), rgba(var(--color-sf-primary), 0.08)), rgba(var(--color-sf-surface));
414
+ color: rgba(var(--color-sf-on-surface-variant));
415
+ box-shadow: none;
416
+ }
417
+ .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn .e-caret-hide {
418
+ display: none !important; /* stylelint-disable-line declaration-no-important */
419
+ }
420
+ .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:hover {
421
+ 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));
422
+ box-shadow: none;
423
+ color: rgba(var(--color-sf-on-surface));
424
+ }
425
+ .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:focus {
426
+ 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));
427
+ box-shadow: none;
428
+ color: rgba(var(--color-sf-on-surface));
429
+ }
430
+ .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:active {
431
+ 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));
432
+ box-shadow: none;
433
+ color: rgba(var(--color-sf-on-surface));
434
+ }
435
+ .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 {
436
+ background: none;
437
+ border-bottom-style: solid;
438
+ border-bottom-width: 3px;
439
+ width: 14px;
440
+ margin: 0 2px;
441
+ border-bottom-color: rgba(var(--color-sf-black));
442
+ }
443
+ .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-split-preview, .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-split-preview, .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-split-preview, .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 .e-split-preview {
444
+ display: none;
445
+ }
446
+ .e-image-editor .e-toolbar .e-toolbar-items .e-nocolor-item {
447
+ background: transparent url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNnB4IiBoZWlnaHQ9IjZweCIgdmlld0JveD0iMCAwIDYgNiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4KICAgIDwhLS0gR2VuZXJhdG9yOiBTa2V0Y2ggNTAgKDU0OTgzKSAtIGh0dHA6Ly93d3cuYm9oZW1pYW5jb2RpbmcuY29tL3NrZXRjaCAtLT4KICAgIDx0aXRsZT5Hcm91cCA5PC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGRlZnM+PC9kZWZzPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9Ikdyb3VwLTkiPgogICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLTExIiBmaWxsPSIjRTBFMEUwIiB4PSIwIiB5PSIwIiB3aWR0aD0iMyIgaGVpZ2h0PSIzIj48L3JlY3Q+CiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUtMTEtQ29weS0yIiBmaWxsPSIjRkZGRkZGIiB4PSIwIiB5PSIzIiB3aWR0aD0iMyIgaGVpZ2h0PSIzIj48L3JlY3Q+CiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUtMTEtQ29weSIgZmlsbD0iI0ZGRkZGRiIgeD0iMyIgeT0iMCIgd2lkdGg9IjMiIGhlaWdodD0iMyI+PC9yZWN0PgogICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLTExLUNvcHktMyIgZmlsbD0iI0UwRTBFMCIgeD0iMyIgeT0iMyIgd2lkdGg9IjMiIGhlaWdodD0iMyI+PC9yZWN0PgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+") !important; /* stylelint-disable-line declaration-no-important */
448
+ background-size: 8px !important; /* stylelint-disable-line declaration-no-important */
449
+ }
450
+
451
+ .e-dropdown-popup .e-selected-btn {
452
+ background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.08), rgba(var(--color-sf-primary), 0.08)), rgba(var(--color-sf-surface)) !important; /* stylelint-disable-line declaration-no-important */
453
+ }
@@ -0,0 +1,14 @@
1
+ @import 'ej2-base/styles/material3-dark-definition.scss';
2
+
3
+ @import 'ej2-buttons/styles/button/material3-dark-definition.scss';
4
+ @import 'ej2-splitbuttons/styles/drop-down-button/material3-dark-definition.scss';
5
+ @import 'ej2-inputs/styles/numerictextbox/material3-dark-definition.scss';
6
+ @import 'ej2-inputs/styles/textbox/material3-dark-definition.scss';
7
+ @import 'ej2-inputs/styles/uploader/material3-dark-definition.scss';
8
+ @import 'ej2-popups/styles/tooltip/material3-dark-definition.scss';
9
+ @import 'ej2-inputs/styles/color-picker/material3-dark-definition.scss';
10
+ @import 'ej2-navigations/styles/toolbar/material3-dark-definition.scss';
11
+ @import 'ej2-popups/styles/spinner/material3-dark-definition.scss';
12
+ @import 'material3-dark-definition.scss';
13
+ @import 'icons/material3-dark.scss';
14
+ @import 'all.scss';