@syncfusion/ej2-inplace-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.
- package/.eslintrc.json +3 -2
- package/dist/ej2-inplace-editor.umd.min.js +2 -2
- package/dist/ej2-inplace-editor.umd.min.js.map +1 -1
- package/dist/es6/ej2-inplace-editor.es2015.js +22 -43
- package/dist/es6/ej2-inplace-editor.es2015.js.map +1 -1
- package/dist/es6/ej2-inplace-editor.es5.js +77 -98
- package/dist/es6/ej2-inplace-editor.es5.js.map +1 -1
- package/dist/global/ej2-inplace-editor.min.js +2 -2
- package/dist/global/ej2-inplace-editor.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/dist/ts/index.d.ts +4 -0
- package/dist/ts/index.ts +4 -0
- package/dist/ts/inplace-editor/base/classes.d.ts +63 -0
- package/dist/ts/inplace-editor/base/classes.ts +63 -0
- package/dist/ts/inplace-editor/base/events.d.ts +17 -0
- package/dist/ts/inplace-editor/base/events.ts +18 -0
- package/dist/ts/inplace-editor/base/index.d.ts +10 -0
- package/dist/ts/inplace-editor/base/index.ts +10 -0
- package/dist/ts/inplace-editor/base/inplace-editor-model.d.ts +344 -0
- package/dist/ts/inplace-editor/base/inplace-editor.d.ts +623 -0
- package/dist/ts/inplace-editor/base/inplace-editor.ts +1758 -0
- package/dist/ts/inplace-editor/base/interface.d.ts +117 -0
- package/dist/ts/inplace-editor/base/interface.ts +127 -0
- package/dist/ts/inplace-editor/base/models-model.d.ts +22 -0
- package/dist/ts/inplace-editor/base/models.d.ts +31 -0
- package/dist/ts/inplace-editor/base/models.ts +45 -0
- package/dist/ts/inplace-editor/base/util.d.ts +28 -0
- package/dist/ts/inplace-editor/base/util.ts +104 -0
- package/dist/ts/inplace-editor/index.d.ts +5 -0
- package/dist/ts/inplace-editor/index.ts +5 -0
- package/dist/ts/inplace-editor/modules/auto-complete.d.ts +34 -0
- package/dist/ts/inplace-editor/modules/auto-complete.ts +65 -0
- package/dist/ts/inplace-editor/modules/base-module.d.ts +19 -0
- package/dist/ts/inplace-editor/modules/base-module.ts +74 -0
- package/dist/ts/inplace-editor/modules/color-picker.d.ts +29 -0
- package/dist/ts/inplace-editor/modules/color-picker.ts +55 -0
- package/dist/ts/inplace-editor/modules/combo-box.d.ts +34 -0
- package/dist/ts/inplace-editor/modules/combo-box.ts +63 -0
- package/dist/ts/inplace-editor/modules/date-range-picker.d.ts +29 -0
- package/dist/ts/inplace-editor/modules/date-range-picker.ts +55 -0
- package/dist/ts/inplace-editor/modules/index.d.ts +12 -0
- package/dist/ts/inplace-editor/modules/index.ts +12 -0
- package/dist/ts/inplace-editor/modules/multi-select.d.ts +35 -0
- package/dist/ts/inplace-editor/modules/multi-select.ts +88 -0
- package/dist/ts/inplace-editor/modules/rte.d.ts +31 -0
- package/dist/ts/inplace-editor/modules/rte.ts +73 -0
- package/dist/ts/inplace-editor/modules/slider.d.ts +30 -0
- package/dist/ts/inplace-editor/modules/slider.ts +59 -0
- package/dist/ts/inplace-editor/modules/time-picker.d.ts +29 -0
- package/dist/ts/inplace-editor/modules/time-picker.ts +54 -0
- package/package.json +17 -17
- package/src/inplace-editor/base/inplace-editor.d.ts +0 -1
- package/src/inplace-editor/base/interface.js +0 -1
- package/src/inplace-editor/base/models.js +0 -2
- package/styles/bootstrap-dark.css +61 -14
- package/styles/bootstrap-dark.scss +26 -1
- package/styles/bootstrap.css +63 -15
- package/styles/bootstrap.scss +26 -1
- package/styles/bootstrap4.css +71 -19
- package/styles/bootstrap4.scss +26 -1
- package/styles/bootstrap5-dark.css +62 -14
- package/styles/bootstrap5-dark.scss +26 -1
- package/styles/bootstrap5.css +62 -14
- package/styles/bootstrap5.scss +26 -1
- package/styles/fabric-dark.css +59 -13
- package/styles/fabric-dark.scss +26 -1
- package/styles/fabric.css +61 -14
- package/styles/fabric.scss +26 -1
- package/styles/fluent-dark.css +63 -15
- package/styles/fluent-dark.scss +26 -1
- package/styles/fluent.css +63 -15
- package/styles/fluent.scss +26 -1
- package/styles/fluent2.css +1996 -0
- package/styles/fluent2.scss +26 -0
- package/styles/highcontrast-light.css +62 -13
- package/styles/highcontrast-light.scss +26 -1
- package/styles/highcontrast.css +64 -14
- package/styles/highcontrast.scss +26 -1
- package/styles/inplace-editor/_bootstrap5.3-definition.scss +69 -0
- package/styles/inplace-editor/_fluent2-definition.scss +71 -0
- package/styles/inplace-editor/_theme.scss +8 -3
- package/styles/inplace-editor/bootstrap-dark.css +61 -14
- package/styles/inplace-editor/bootstrap.css +63 -15
- package/styles/inplace-editor/bootstrap4.css +71 -19
- package/styles/inplace-editor/bootstrap5-dark.css +62 -14
- package/styles/inplace-editor/bootstrap5.css +62 -14
- package/styles/inplace-editor/fabric-dark.css +59 -13
- package/styles/inplace-editor/fabric.css +61 -14
- package/styles/inplace-editor/fluent-dark.css +63 -15
- package/styles/inplace-editor/fluent.css +63 -15
- package/styles/inplace-editor/fluent2.css +1996 -0
- package/styles/inplace-editor/fluent2.scss +26 -0
- package/styles/inplace-editor/highcontrast-light.css +62 -13
- package/styles/inplace-editor/highcontrast.css +64 -14
- package/styles/inplace-editor/icons/_bootstrap5.3.scss +19 -0
- package/styles/inplace-editor/icons/_fluent2.scss +19 -0
- package/styles/inplace-editor/material-dark.css +79 -17
- package/styles/inplace-editor/material.css +95 -20
- package/styles/inplace-editor/material3-dark.css +101 -21
- package/styles/inplace-editor/material3.css +101 -21
- package/styles/inplace-editor/tailwind-dark.css +72 -17
- package/styles/inplace-editor/tailwind.css +72 -17
- package/styles/material-dark.css +79 -17
- package/styles/material-dark.scss +26 -1
- package/styles/material.css +95 -20
- package/styles/material.scss +26 -1
- package/styles/material3-dark.css +101 -21
- package/styles/material3-dark.scss +26 -1
- package/styles/material3.css +101 -21
- package/styles/material3.scss +26 -1
- package/styles/tailwind-dark.css +72 -17
- package/styles/tailwind-dark.scss +26 -1
- package/styles/tailwind.css +72 -17
- package/styles/tailwind.scss +26 -1
- package/CHANGELOG.md +0 -262
- package/dist/ej2-inplace-editor.min.js +0 -10
|
@@ -1 +1,26 @@
|
|
|
1
|
-
@import '
|
|
1
|
+
@import 'ej2-base/styles/definition/material-dark.scss';
|
|
2
|
+
@import 'ej2-inputs/styles/input/material-dark-definition.scss';
|
|
3
|
+
@import 'ej2-inputs/styles/color-picker/material-dark-definition.scss';
|
|
4
|
+
@import 'ej2-inputs/styles/maskedtextbox/material-dark-definition.scss';
|
|
5
|
+
@import 'ej2-inputs/styles/numerictextbox/material-dark-definition.scss';
|
|
6
|
+
@import 'ej2-inputs/styles/slider/material-dark-definition.scss';
|
|
7
|
+
@import 'ej2-inputs/styles/textbox/material-dark-definition.scss';
|
|
8
|
+
@import 'ej2-buttons/styles/button/material-dark-definition.scss';
|
|
9
|
+
@import 'ej2-buttons/styles/check-box/material-dark-definition.scss';
|
|
10
|
+
@import 'ej2-buttons/styles/radio-button/material-dark-definition.scss';
|
|
11
|
+
@import 'ej2-calendars/styles/calendar/material-dark-definition.scss';
|
|
12
|
+
@import 'ej2-calendars/styles/datepicker/material-dark-definition.scss';
|
|
13
|
+
@import 'ej2-calendars/styles/daterangepicker/material-dark-definition.scss';
|
|
14
|
+
@import 'ej2-calendars/styles/datetimepicker/material-dark-definition.scss';
|
|
15
|
+
@import 'ej2-calendars/styles/timepicker/material-dark-definition.scss';
|
|
16
|
+
@import 'ej2-dropdowns/styles/auto-complete/material-dark-definition.scss';
|
|
17
|
+
@import 'ej2-dropdowns/styles/combo-box/material-dark-definition.scss';
|
|
18
|
+
@import 'ej2-dropdowns/styles/drop-down-list/material-dark-definition.scss';
|
|
19
|
+
@import 'ej2-dropdowns/styles/multi-select/material-dark-definition.scss';
|
|
20
|
+
@import 'ej2-popups/styles/popup/material-dark-definition.scss';
|
|
21
|
+
@import 'ej2-popups/styles/spinner/material-dark-definition.scss';
|
|
22
|
+
@import 'ej2-popups/styles/tooltip/material-dark-definition.scss';
|
|
23
|
+
@import 'ej2-richtexteditor/styles/rich-text-editor/material-dark-definition.scss';
|
|
24
|
+
@import 'inplace-editor/material-dark-definition.scss';
|
|
25
|
+
@import 'inplace-editor/icons/material-dark.scss';
|
|
26
|
+
@import 'inplace-editor/all.scss';
|
package/styles/material.css
CHANGED
|
@@ -1,27 +1,56 @@
|
|
|
1
1
|
/* stylelint-disable property-no-vendor-prefix */
|
|
2
|
+
@-webkit-keyframes e-input-ripple {
|
|
3
|
+
100% {
|
|
4
|
+
opacity: 0;
|
|
5
|
+
-webkit-transform: scale(4);
|
|
6
|
+
transform: scale(4);
|
|
7
|
+
}
|
|
8
|
+
}
|
|
2
9
|
@keyframes e-input-ripple {
|
|
3
10
|
100% {
|
|
4
11
|
opacity: 0;
|
|
5
|
-
transform: scale(4);
|
|
12
|
+
-webkit-transform: scale(4);
|
|
13
|
+
transform: scale(4);
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
@-webkit-keyframes slideTopUp {
|
|
17
|
+
from {
|
|
18
|
+
-webkit-transform: translate3d(0, 0, 0) scale(1);
|
|
19
|
+
transform: translate3d(0, 0, 0) scale(1);
|
|
20
|
+
}
|
|
21
|
+
to {
|
|
22
|
+
-webkit-transform: translate3d(0, 0, 0) scale(1);
|
|
23
|
+
transform: translate3d(0, 0, 0) scale(1);
|
|
6
24
|
}
|
|
7
25
|
}
|
|
8
26
|
@keyframes slideTopUp {
|
|
9
27
|
from {
|
|
10
|
-
transform: translate3d(0, 0, 0) scale(1);
|
|
28
|
+
-webkit-transform: translate3d(0, 0, 0) scale(1);
|
|
29
|
+
transform: translate3d(0, 0, 0) scale(1);
|
|
11
30
|
}
|
|
12
31
|
to {
|
|
13
|
-
transform: translate3d(0, 0, 0) scale(1);
|
|
32
|
+
-webkit-transform: translate3d(0, 0, 0) scale(1);
|
|
33
|
+
transform: translate3d(0, 0, 0) scale(1);
|
|
14
34
|
}
|
|
15
35
|
}
|
|
16
|
-
/* stylelint-disable-line no-empty-source */
|
|
36
|
+
/* stylelint-disable-line no-empty-source */
|
|
37
|
+
/*! calendar material theme variables */
|
|
17
38
|
.e-ddl.e-control-wrapper .e-ddl-icon::before {
|
|
18
|
-
transform: rotate(0deg);
|
|
39
|
+
-webkit-transform: rotate(0deg);
|
|
40
|
+
transform: rotate(0deg);
|
|
41
|
+
-webkit-transition: -webkit-transform 300ms ease;
|
|
42
|
+
transition: -webkit-transform 300ms ease;
|
|
19
43
|
transition: transform 300ms ease;
|
|
44
|
+
transition: transform 300ms ease, -webkit-transform 300ms ease;
|
|
20
45
|
}
|
|
21
46
|
|
|
22
47
|
.e-ddl.e-control-wrapper.e-icon-anim .e-ddl-icon::before {
|
|
23
|
-
transform: rotate(180deg);
|
|
48
|
+
-webkit-transform: rotate(180deg);
|
|
49
|
+
transform: rotate(180deg);
|
|
50
|
+
-webkit-transition: -webkit-transform 300ms ease;
|
|
51
|
+
transition: -webkit-transform 300ms ease;
|
|
24
52
|
transition: transform 300ms ease;
|
|
53
|
+
transition: transform 300ms ease, -webkit-transform 300ms ease;
|
|
25
54
|
}
|
|
26
55
|
|
|
27
56
|
.e-dropdownbase .e-list-item.e-active.e-hover {
|
|
@@ -38,12 +67,14 @@
|
|
|
38
67
|
}
|
|
39
68
|
|
|
40
69
|
.e-input-group .e-ddl-icon:not(:active)::after {
|
|
41
|
-
animation: none;
|
|
70
|
+
-webkit-animation: none;
|
|
71
|
+
animation: none;
|
|
42
72
|
}
|
|
43
73
|
|
|
44
74
|
.e-ddl.e-popup {
|
|
45
75
|
border: 0;
|
|
46
|
-
box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
|
|
76
|
+
-webkit-box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
|
|
77
|
+
box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
|
|
47
78
|
margin-top: 2px;
|
|
48
79
|
}
|
|
49
80
|
|
|
@@ -63,7 +94,8 @@
|
|
|
63
94
|
.e-bigger .e-ddl-device .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
|
|
64
95
|
background: #f5f5f5;
|
|
65
96
|
border-width: 0;
|
|
66
|
-
box-shadow: none;
|
|
97
|
+
-webkit-box-shadow: none;
|
|
98
|
+
box-shadow: none;
|
|
67
99
|
margin-bottom: 0;
|
|
68
100
|
}
|
|
69
101
|
|
|
@@ -155,19 +187,43 @@
|
|
|
155
187
|
}
|
|
156
188
|
|
|
157
189
|
/* stylelint-disable property-no-vendor-prefix */
|
|
190
|
+
@-webkit-keyframes material-spinner-rotate {
|
|
191
|
+
0% {
|
|
192
|
+
-webkit-transform: rotate(0deg);
|
|
193
|
+
transform: rotate(0deg);
|
|
194
|
+
}
|
|
195
|
+
100% {
|
|
196
|
+
-webkit-transform: rotate(360deg);
|
|
197
|
+
transform: rotate(360deg);
|
|
198
|
+
}
|
|
199
|
+
}
|
|
158
200
|
@keyframes material-spinner-rotate {
|
|
159
201
|
0% {
|
|
202
|
+
-webkit-transform: rotate(0deg);
|
|
203
|
+
transform: rotate(0deg);
|
|
204
|
+
}
|
|
205
|
+
100% {
|
|
206
|
+
-webkit-transform: rotate(360deg);
|
|
207
|
+
transform: rotate(360deg);
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
@-webkit-keyframes fabric-spinner-rotate {
|
|
211
|
+
0% {
|
|
212
|
+
-webkit-transform: rotate(0deg);
|
|
160
213
|
transform: rotate(0deg);
|
|
161
214
|
}
|
|
162
215
|
100% {
|
|
216
|
+
-webkit-transform: rotate(360deg);
|
|
163
217
|
transform: rotate(360deg);
|
|
164
218
|
}
|
|
165
219
|
}
|
|
166
220
|
@keyframes fabric-spinner-rotate {
|
|
167
221
|
0% {
|
|
222
|
+
-webkit-transform: rotate(0deg);
|
|
168
223
|
transform: rotate(0deg);
|
|
169
224
|
}
|
|
170
225
|
100% {
|
|
226
|
+
-webkit-transform: rotate(360deg);
|
|
171
227
|
transform: rotate(360deg);
|
|
172
228
|
}
|
|
173
229
|
}
|
|
@@ -314,6 +370,7 @@
|
|
|
314
370
|
.e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon {
|
|
315
371
|
bottom: 0;
|
|
316
372
|
cursor: pointer;
|
|
373
|
+
display: -webkit-inline-box;
|
|
317
374
|
display: -ms-inline-flexbox;
|
|
318
375
|
display: inline-flex;
|
|
319
376
|
height: inherit;
|
|
@@ -324,8 +381,10 @@
|
|
|
324
381
|
width: 18px;
|
|
325
382
|
}
|
|
326
383
|
.e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon::before {
|
|
327
|
-
-
|
|
328
|
-
align
|
|
384
|
+
-webkit-box-align: center;
|
|
385
|
+
-ms-flex-align: center;
|
|
386
|
+
align-items: center;
|
|
387
|
+
display: -webkit-box;
|
|
329
388
|
display: -ms-flexbox;
|
|
330
389
|
display: flex;
|
|
331
390
|
font-size: 14px;
|
|
@@ -335,6 +394,7 @@
|
|
|
335
394
|
}
|
|
336
395
|
.e-inplaceeditor .e-editable-value-wrapper.e-editable-open {
|
|
337
396
|
-webkit-user-select: none;
|
|
397
|
+
-moz-user-select: none;
|
|
338
398
|
-ms-user-select: none;
|
|
339
399
|
user-select: none;
|
|
340
400
|
}
|
|
@@ -367,6 +427,7 @@
|
|
|
367
427
|
.e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon {
|
|
368
428
|
bottom: 0;
|
|
369
429
|
cursor: pointer;
|
|
430
|
+
display: -webkit-inline-box;
|
|
370
431
|
display: -ms-inline-flexbox;
|
|
371
432
|
display: inline-flex;
|
|
372
433
|
height: inherit;
|
|
@@ -377,8 +438,10 @@
|
|
|
377
438
|
width: 18px;
|
|
378
439
|
}
|
|
379
440
|
.e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon::before {
|
|
380
|
-
-
|
|
381
|
-
align
|
|
441
|
+
-webkit-box-align: center;
|
|
442
|
+
-ms-flex-align: center;
|
|
443
|
+
align-items: center;
|
|
444
|
+
display: -webkit-box;
|
|
382
445
|
display: -ms-flexbox;
|
|
383
446
|
display: flex;
|
|
384
447
|
font-size: 14px;
|
|
@@ -388,6 +451,7 @@
|
|
|
388
451
|
}
|
|
389
452
|
.e-inplaceeditor .e-editable-value-container.e-editable-open {
|
|
390
453
|
-webkit-user-select: none;
|
|
454
|
+
-moz-user-select: none;
|
|
391
455
|
-ms-user-select: none;
|
|
392
456
|
user-select: none;
|
|
393
457
|
}
|
|
@@ -412,6 +476,7 @@
|
|
|
412
476
|
}
|
|
413
477
|
.e-inplaceeditor.e-overlay {
|
|
414
478
|
-webkit-user-select: none;
|
|
479
|
+
-moz-user-select: none;
|
|
415
480
|
-ms-user-select: none;
|
|
416
481
|
user-select: none;
|
|
417
482
|
}
|
|
@@ -491,7 +556,8 @@
|
|
|
491
556
|
.e-inplaceeditor-tip .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
|
|
492
557
|
left: auto;
|
|
493
558
|
right: 5px;
|
|
494
|
-
transform: translateX(-30%) translateY(-50%);
|
|
559
|
+
-webkit-transform: translateX(-30%) translateY(-50%);
|
|
560
|
+
transform: translateX(-30%) translateY(-50%);
|
|
495
561
|
}
|
|
496
562
|
.e-inplaceeditor .e-editable-form,
|
|
497
563
|
.e-inplaceeditor-tip .e-editable-form {
|
|
@@ -519,6 +585,7 @@
|
|
|
519
585
|
opacity: 0.5;
|
|
520
586
|
pointer-events: none;
|
|
521
587
|
-webkit-user-select: none;
|
|
588
|
+
-moz-user-select: none;
|
|
522
589
|
-ms-user-select: none;
|
|
523
590
|
user-select: none;
|
|
524
591
|
visibility: visible;
|
|
@@ -555,7 +622,8 @@
|
|
|
555
622
|
.e-inplaceeditor-tip.e-rtl .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
|
|
556
623
|
left: 5px;
|
|
557
624
|
right: auto;
|
|
558
|
-
transform: translateX(30%) translateY(-50%);
|
|
625
|
+
-webkit-transform: translateX(30%) translateY(-50%);
|
|
626
|
+
transform: translateX(30%) translateY(-50%);
|
|
559
627
|
}
|
|
560
628
|
|
|
561
629
|
.e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content,
|
|
@@ -607,19 +675,24 @@
|
|
|
607
675
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-title {
|
|
608
676
|
-ms-flex-line-pack: center;
|
|
609
677
|
align-content: center;
|
|
678
|
+
display: -webkit-box;
|
|
610
679
|
display: -ms-flexbox;
|
|
611
680
|
display: flex;
|
|
612
|
-
-
|
|
613
|
-
|
|
681
|
+
-webkit-box-orient: vertical;
|
|
682
|
+
-webkit-box-direction: normal;
|
|
683
|
+
-ms-flex-direction: column;
|
|
684
|
+
flex-direction: column;
|
|
614
685
|
font-family: "Roboto", "Segoe UI", "GeezaPro", "DejaVu Serif", "sans-serif", "-apple-system", "BlinkMacSystemFont";
|
|
615
686
|
font-size: 13px;
|
|
616
687
|
font-weight: 500;
|
|
617
688
|
height: 30px;
|
|
618
|
-
-
|
|
619
|
-
|
|
689
|
+
-webkit-box-pack: center;
|
|
690
|
+
-ms-flex-pack: center;
|
|
691
|
+
justify-content: center;
|
|
620
692
|
padding: 0 0 0 10px;
|
|
621
693
|
}
|
|
622
694
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-wrapper {
|
|
695
|
+
display: -webkit-box;
|
|
623
696
|
display: -ms-flexbox;
|
|
624
697
|
display: flex;
|
|
625
698
|
padding: 16px;
|
|
@@ -632,6 +705,7 @@
|
|
|
632
705
|
top: auto;
|
|
633
706
|
}
|
|
634
707
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-container {
|
|
708
|
+
display: -webkit-box;
|
|
635
709
|
display: -ms-flexbox;
|
|
636
710
|
display: flex;
|
|
637
711
|
padding: 16px;
|
|
@@ -734,7 +808,8 @@
|
|
|
734
808
|
}
|
|
735
809
|
.e-inplaceeditor-tip.e-tooltip-wrap.e-popup {
|
|
736
810
|
background: #fff;
|
|
737
|
-
box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
|
|
811
|
+
-webkit-box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
|
|
812
|
+
box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
|
|
738
813
|
}
|
|
739
814
|
.e-inplaceeditor-tip.e-tooltip-wrap.e-popup .e-tip-content {
|
|
740
815
|
border-radius: 2px;
|
package/styles/material.scss
CHANGED
|
@@ -1 +1,26 @@
|
|
|
1
|
-
@import '
|
|
1
|
+
@import 'ej2-base/styles/definition/material.scss';
|
|
2
|
+
@import 'ej2-inputs/styles/input/material-definition.scss';
|
|
3
|
+
@import 'ej2-inputs/styles/color-picker/material-definition.scss';
|
|
4
|
+
@import 'ej2-inputs/styles/maskedtextbox/material-definition.scss';
|
|
5
|
+
@import 'ej2-inputs/styles/numerictextbox/material-definition.scss';
|
|
6
|
+
@import 'ej2-inputs/styles/slider/material-definition.scss';
|
|
7
|
+
@import 'ej2-inputs/styles/textbox/material-definition.scss';
|
|
8
|
+
@import 'ej2-buttons/styles/button/material-definition.scss';
|
|
9
|
+
@import 'ej2-buttons/styles/check-box/material-definition.scss';
|
|
10
|
+
@import 'ej2-buttons/styles/radio-button/material-definition.scss';
|
|
11
|
+
@import 'ej2-calendars/styles/calendar/material-definition.scss';
|
|
12
|
+
@import 'ej2-calendars/styles/datepicker/material-definition.scss';
|
|
13
|
+
@import 'ej2-calendars/styles/daterangepicker/material-definition.scss';
|
|
14
|
+
@import 'ej2-calendars/styles/datetimepicker/material-definition.scss';
|
|
15
|
+
@import 'ej2-calendars/styles/timepicker/material-definition.scss';
|
|
16
|
+
@import 'ej2-dropdowns/styles/auto-complete/material-definition.scss';
|
|
17
|
+
@import 'ej2-dropdowns/styles/combo-box/material-definition.scss';
|
|
18
|
+
@import 'ej2-dropdowns/styles/drop-down-list/material-definition.scss';
|
|
19
|
+
@import 'ej2-dropdowns/styles/multi-select/material-definition.scss';
|
|
20
|
+
@import 'ej2-popups/styles/popup/material-definition.scss';
|
|
21
|
+
@import 'ej2-popups/styles/spinner/material-definition.scss';
|
|
22
|
+
@import 'ej2-popups/styles/tooltip/material-definition.scss';
|
|
23
|
+
@import 'ej2-richtexteditor/styles/rich-text-editor/material-definition.scss';
|
|
24
|
+
@import 'inplace-editor/material-definition.scss';
|
|
25
|
+
@import 'inplace-editor/icons/material.scss';
|
|
26
|
+
@import 'inplace-editor/all.scss';
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
--color-sf-on-warning: 99, 52, 0;
|
|
45
45
|
--color-sf-on-warning-container: 255, 220, 193;
|
|
46
46
|
--color-sf-spreadsheet-gridline: 231, 224, 236;
|
|
47
|
-
--color-sf-shadow-focus-ring1: 0 0 0 1px #
|
|
47
|
+
--color-sf-shadow-focus-ring1: 0 0 0 1px #000, 0 0 0 3px #fff;
|
|
48
48
|
--color-sf-success-text: 0, 0, 0;
|
|
49
49
|
--color-sf-warning-text: 0, 0, 0;
|
|
50
50
|
--color-sf-info-text: 0, 0, 0;
|
|
@@ -54,29 +54,58 @@
|
|
|
54
54
|
}
|
|
55
55
|
|
|
56
56
|
/* stylelint-disable property-no-vendor-prefix */
|
|
57
|
+
@-webkit-keyframes e-input-ripple {
|
|
58
|
+
100% {
|
|
59
|
+
opacity: 0;
|
|
60
|
+
-webkit-transform: scale(4);
|
|
61
|
+
transform: scale(4);
|
|
62
|
+
}
|
|
63
|
+
}
|
|
57
64
|
@keyframes e-input-ripple {
|
|
58
65
|
100% {
|
|
59
66
|
opacity: 0;
|
|
60
|
-
transform: scale(4);
|
|
67
|
+
-webkit-transform: scale(4);
|
|
68
|
+
transform: scale(4);
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
@-webkit-keyframes slideTopUp {
|
|
72
|
+
from {
|
|
73
|
+
-webkit-transform: translate3d(0, 0, 0) scale(1);
|
|
74
|
+
transform: translate3d(0, 0, 0) scale(1);
|
|
75
|
+
}
|
|
76
|
+
to {
|
|
77
|
+
-webkit-transform: translate3d(0, 0, 0) scale(1);
|
|
78
|
+
transform: translate3d(0, 0, 0) scale(1);
|
|
61
79
|
}
|
|
62
80
|
}
|
|
63
81
|
@keyframes slideTopUp {
|
|
64
82
|
from {
|
|
65
|
-
transform: translate3d(0, 0, 0) scale(1);
|
|
83
|
+
-webkit-transform: translate3d(0, 0, 0) scale(1);
|
|
84
|
+
transform: translate3d(0, 0, 0) scale(1);
|
|
66
85
|
}
|
|
67
86
|
to {
|
|
68
|
-
transform: translate3d(0, 0, 0) scale(1);
|
|
87
|
+
-webkit-transform: translate3d(0, 0, 0) scale(1);
|
|
88
|
+
transform: translate3d(0, 0, 0) scale(1);
|
|
69
89
|
}
|
|
70
90
|
}
|
|
71
|
-
/* stylelint-disable-line no-empty-source */
|
|
91
|
+
/* stylelint-disable-line no-empty-source */
|
|
92
|
+
/*! calendar material3 theme variables */
|
|
72
93
|
.e-ddl.e-control-wrapper .e-ddl-icon::before {
|
|
73
|
-
transform: rotate(0deg);
|
|
94
|
+
-webkit-transform: rotate(0deg);
|
|
95
|
+
transform: rotate(0deg);
|
|
96
|
+
-webkit-transition: -webkit-transform 300ms ease;
|
|
97
|
+
transition: -webkit-transform 300ms ease;
|
|
74
98
|
transition: transform 300ms ease;
|
|
99
|
+
transition: transform 300ms ease, -webkit-transform 300ms ease;
|
|
75
100
|
}
|
|
76
101
|
|
|
77
102
|
.e-ddl.e-control-wrapper.e-icon-anim .e-ddl-icon::before {
|
|
78
|
-
transform: rotate(180deg);
|
|
103
|
+
-webkit-transform: rotate(180deg);
|
|
104
|
+
transform: rotate(180deg);
|
|
105
|
+
-webkit-transition: -webkit-transform 300ms ease;
|
|
106
|
+
transition: -webkit-transform 300ms ease;
|
|
79
107
|
transition: transform 300ms ease;
|
|
108
|
+
transition: transform 300ms ease, -webkit-transform 300ms ease;
|
|
80
109
|
}
|
|
81
110
|
|
|
82
111
|
.e-dropdownbase .e-list-item.e-active.e-hover {
|
|
@@ -93,12 +122,14 @@
|
|
|
93
122
|
}
|
|
94
123
|
|
|
95
124
|
.e-input-group .e-ddl-icon:not(:active)::after {
|
|
96
|
-
animation: none;
|
|
125
|
+
-webkit-animation: none;
|
|
126
|
+
animation: none;
|
|
97
127
|
}
|
|
98
128
|
|
|
99
129
|
.e-ddl.e-popup {
|
|
100
130
|
border: 0;
|
|
101
|
-
box-shadow: 0 2px 6px 2px rgba(0, 0, 0, 0.15), 0 1px 2px 0 rgba(0, 0, 0, 0.3);
|
|
131
|
+
-webkit-box-shadow: 0 2px 6px 2px rgba(0, 0, 0, 0.15), 0 1px 2px 0 rgba(0, 0, 0, 0.3);
|
|
132
|
+
box-shadow: 0 2px 6px 2px rgba(0, 0, 0, 0.15), 0 1px 2px 0 rgba(0, 0, 0, 0.3);
|
|
102
133
|
margin-top: 2px;
|
|
103
134
|
}
|
|
104
135
|
|
|
@@ -119,7 +150,8 @@
|
|
|
119
150
|
.e-bigger .e-ddl-device .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
|
|
120
151
|
background: rgba(0, 0, 0, 0.0001);
|
|
121
152
|
border-width: 0;
|
|
122
|
-
box-shadow: none;
|
|
153
|
+
-webkit-box-shadow: none;
|
|
154
|
+
box-shadow: none;
|
|
123
155
|
margin-bottom: 0;
|
|
124
156
|
}
|
|
125
157
|
|
|
@@ -212,19 +244,43 @@
|
|
|
212
244
|
|
|
213
245
|
/* stylelint-disable-line no-empty-source */
|
|
214
246
|
/* stylelint-disable property-no-vendor-prefix */
|
|
247
|
+
@-webkit-keyframes material-spinner-rotate {
|
|
248
|
+
0% {
|
|
249
|
+
-webkit-transform: rotate(0deg);
|
|
250
|
+
transform: rotate(0deg);
|
|
251
|
+
}
|
|
252
|
+
100% {
|
|
253
|
+
-webkit-transform: rotate(360deg);
|
|
254
|
+
transform: rotate(360deg);
|
|
255
|
+
}
|
|
256
|
+
}
|
|
215
257
|
@keyframes material-spinner-rotate {
|
|
216
258
|
0% {
|
|
259
|
+
-webkit-transform: rotate(0deg);
|
|
260
|
+
transform: rotate(0deg);
|
|
261
|
+
}
|
|
262
|
+
100% {
|
|
263
|
+
-webkit-transform: rotate(360deg);
|
|
264
|
+
transform: rotate(360deg);
|
|
265
|
+
}
|
|
266
|
+
}
|
|
267
|
+
@-webkit-keyframes fabric-spinner-rotate {
|
|
268
|
+
0% {
|
|
269
|
+
-webkit-transform: rotate(0deg);
|
|
217
270
|
transform: rotate(0deg);
|
|
218
271
|
}
|
|
219
272
|
100% {
|
|
273
|
+
-webkit-transform: rotate(360deg);
|
|
220
274
|
transform: rotate(360deg);
|
|
221
275
|
}
|
|
222
276
|
}
|
|
223
277
|
@keyframes fabric-spinner-rotate {
|
|
224
278
|
0% {
|
|
279
|
+
-webkit-transform: rotate(0deg);
|
|
225
280
|
transform: rotate(0deg);
|
|
226
281
|
}
|
|
227
282
|
100% {
|
|
283
|
+
-webkit-transform: rotate(360deg);
|
|
228
284
|
transform: rotate(360deg);
|
|
229
285
|
}
|
|
230
286
|
}
|
|
@@ -363,6 +419,7 @@
|
|
|
363
419
|
.e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon {
|
|
364
420
|
bottom: 0;
|
|
365
421
|
cursor: pointer;
|
|
422
|
+
display: -webkit-inline-box;
|
|
366
423
|
display: -ms-inline-flexbox;
|
|
367
424
|
display: inline-flex;
|
|
368
425
|
height: inherit;
|
|
@@ -373,8 +430,10 @@
|
|
|
373
430
|
width: 20px;
|
|
374
431
|
}
|
|
375
432
|
.e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon::before {
|
|
376
|
-
-
|
|
377
|
-
align
|
|
433
|
+
-webkit-box-align: center;
|
|
434
|
+
-ms-flex-align: center;
|
|
435
|
+
align-items: center;
|
|
436
|
+
display: -webkit-box;
|
|
378
437
|
display: -ms-flexbox;
|
|
379
438
|
display: flex;
|
|
380
439
|
font-size: 14px;
|
|
@@ -384,6 +443,7 @@
|
|
|
384
443
|
}
|
|
385
444
|
.e-inplaceeditor .e-editable-value-wrapper.e-editable-open {
|
|
386
445
|
-webkit-user-select: none;
|
|
446
|
+
-moz-user-select: none;
|
|
387
447
|
-ms-user-select: none;
|
|
388
448
|
user-select: none;
|
|
389
449
|
}
|
|
@@ -416,6 +476,7 @@
|
|
|
416
476
|
.e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon {
|
|
417
477
|
bottom: 0;
|
|
418
478
|
cursor: pointer;
|
|
479
|
+
display: -webkit-inline-box;
|
|
419
480
|
display: -ms-inline-flexbox;
|
|
420
481
|
display: inline-flex;
|
|
421
482
|
height: inherit;
|
|
@@ -426,8 +487,10 @@
|
|
|
426
487
|
width: 20px;
|
|
427
488
|
}
|
|
428
489
|
.e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon::before {
|
|
429
|
-
-
|
|
430
|
-
align
|
|
490
|
+
-webkit-box-align: center;
|
|
491
|
+
-ms-flex-align: center;
|
|
492
|
+
align-items: center;
|
|
493
|
+
display: -webkit-box;
|
|
431
494
|
display: -ms-flexbox;
|
|
432
495
|
display: flex;
|
|
433
496
|
font-size: 14px;
|
|
@@ -437,6 +500,7 @@
|
|
|
437
500
|
}
|
|
438
501
|
.e-inplaceeditor .e-editable-value-container.e-editable-open {
|
|
439
502
|
-webkit-user-select: none;
|
|
503
|
+
-moz-user-select: none;
|
|
440
504
|
-ms-user-select: none;
|
|
441
505
|
user-select: none;
|
|
442
506
|
}
|
|
@@ -461,6 +525,7 @@
|
|
|
461
525
|
}
|
|
462
526
|
.e-inplaceeditor.e-overlay {
|
|
463
527
|
-webkit-user-select: none;
|
|
528
|
+
-moz-user-select: none;
|
|
464
529
|
-ms-user-select: none;
|
|
465
530
|
user-select: none;
|
|
466
531
|
}
|
|
@@ -526,7 +591,8 @@
|
|
|
526
591
|
.e-inplaceeditor-tip .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
|
|
527
592
|
left: auto;
|
|
528
593
|
right: 5px;
|
|
529
|
-
transform: translateX(-30%) translateY(-50%);
|
|
594
|
+
-webkit-transform: translateX(-30%) translateY(-50%);
|
|
595
|
+
transform: translateX(-30%) translateY(-50%);
|
|
530
596
|
}
|
|
531
597
|
.e-inplaceeditor .e-editable-form,
|
|
532
598
|
.e-inplaceeditor-tip .e-editable-form {
|
|
@@ -554,6 +620,7 @@
|
|
|
554
620
|
opacity: 0.5;
|
|
555
621
|
pointer-events: none;
|
|
556
622
|
-webkit-user-select: none;
|
|
623
|
+
-moz-user-select: none;
|
|
557
624
|
-ms-user-select: none;
|
|
558
625
|
user-select: none;
|
|
559
626
|
visibility: visible;
|
|
@@ -590,7 +657,8 @@
|
|
|
590
657
|
.e-inplaceeditor-tip.e-rtl .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
|
|
591
658
|
left: 5px;
|
|
592
659
|
right: auto;
|
|
593
|
-
transform: translateX(30%) translateY(-50%);
|
|
660
|
+
-webkit-transform: translateX(30%) translateY(-50%);
|
|
661
|
+
transform: translateX(30%) translateY(-50%);
|
|
594
662
|
}
|
|
595
663
|
|
|
596
664
|
.e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content,
|
|
@@ -642,19 +710,24 @@
|
|
|
642
710
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-title {
|
|
643
711
|
-ms-flex-line-pack: center;
|
|
644
712
|
align-content: center;
|
|
713
|
+
display: -webkit-box;
|
|
645
714
|
display: -ms-flexbox;
|
|
646
715
|
display: flex;
|
|
647
|
-
-
|
|
648
|
-
|
|
716
|
+
-webkit-box-orient: vertical;
|
|
717
|
+
-webkit-box-direction: normal;
|
|
718
|
+
-ms-flex-direction: column;
|
|
719
|
+
flex-direction: column;
|
|
649
720
|
font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
|
|
650
721
|
font-size: 16px;
|
|
651
722
|
font-weight: 400;
|
|
652
723
|
height: 24px;
|
|
653
|
-
-
|
|
654
|
-
|
|
724
|
+
-webkit-box-pack: center;
|
|
725
|
+
-ms-flex-pack: center;
|
|
726
|
+
justify-content: center;
|
|
655
727
|
padding: 20px 20px 12px 20px;
|
|
656
728
|
}
|
|
657
729
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-wrapper {
|
|
730
|
+
display: -webkit-box;
|
|
658
731
|
display: -ms-flexbox;
|
|
659
732
|
display: flex;
|
|
660
733
|
padding: 20px;
|
|
@@ -667,6 +740,7 @@
|
|
|
667
740
|
top: auto;
|
|
668
741
|
}
|
|
669
742
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-container {
|
|
743
|
+
display: -webkit-box;
|
|
670
744
|
display: -ms-flexbox;
|
|
671
745
|
display: flex;
|
|
672
746
|
padding: 20px;
|
|
@@ -720,6 +794,7 @@
|
|
|
720
794
|
border-bottom: 0;
|
|
721
795
|
}
|
|
722
796
|
.e-inplaceeditor .e-editable-value-wrapper:hover {
|
|
797
|
+
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));
|
|
723
798
|
background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.08), rgba(var(--color-sf-primary), 0.08)), rgba(var(--color-sf-surface));
|
|
724
799
|
border-radius: 4px;
|
|
725
800
|
}
|
|
@@ -737,6 +812,7 @@
|
|
|
737
812
|
border-bottom: 0;
|
|
738
813
|
}
|
|
739
814
|
.e-inplaceeditor .e-editable-value-container:hover {
|
|
815
|
+
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));
|
|
740
816
|
background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.08), rgba(var(--color-sf-primary), 0.08)), rgba(var(--color-sf-surface));
|
|
741
817
|
border-radius: 4px;
|
|
742
818
|
}
|
|
@@ -768,13 +844,16 @@
|
|
|
768
844
|
color: rgba(var(--color-sf-on-surface-variant));
|
|
769
845
|
}
|
|
770
846
|
.e-inplaceeditor-tip.e-tooltip-wrap.e-popup {
|
|
847
|
+
background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-primary), 0.11)), to(rgba(var(--color-sf-primary), 0.11))), rgba(var(--color-sf-surface));
|
|
771
848
|
background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.11), rgba(var(--color-sf-primary), 0.11)), rgba(var(--color-sf-surface));
|
|
772
|
-
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3), 0 4px 8px 3px rgba(0, 0, 0, 0.15);
|
|
849
|
+
-webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3), 0 4px 8px 3px rgba(0, 0, 0, 0.15);
|
|
850
|
+
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3), 0 4px 8px 3px rgba(0, 0, 0, 0.15);
|
|
773
851
|
border-radius: 0;
|
|
774
852
|
}
|
|
775
853
|
.e-inplaceeditor-tip.e-tooltip-wrap.e-popup .e-tip-content {
|
|
776
854
|
border-radius: 20px;
|
|
777
855
|
color: rgba(var(--color-sf-on-surface));
|
|
856
|
+
background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-primary), 0.11)), to(rgba(var(--color-sf-primary), 0.11))), rgba(var(--color-sf-surface));
|
|
778
857
|
background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.11), rgba(var(--color-sf-primary), 0.11)), rgba(var(--color-sf-surface));
|
|
779
858
|
}
|
|
780
859
|
.e-inplaceeditor-tip.e-tooltip-wrap.e-popup .e-arrow-tip-inner {
|
|
@@ -791,6 +870,7 @@
|
|
|
791
870
|
border-radius: 8px;
|
|
792
871
|
}
|
|
793
872
|
.e-inplaceeditor-tip.e-tooltip-wrap.e-popup .e-editable-title {
|
|
873
|
+
background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-primary), 0.11)), to(rgba(var(--color-sf-primary), 0.11))), rgba(var(--color-sf-surface));
|
|
794
874
|
background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.11), rgba(var(--color-sf-primary), 0.11)), rgba(var(--color-sf-surface));
|
|
795
875
|
border-bottom: 0;
|
|
796
876
|
color: rgba(var(--color-sf-on-surface));
|
|
@@ -1,3 +1,28 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
|
|
4
|
+
@import 'ej2-inputs/styles/input/material3-dark-definition.scss';
|
|
5
|
+
@import 'ej2-inputs/styles/color-picker/material3-dark-definition.scss';
|
|
6
|
+
@import 'ej2-inputs/styles/maskedtextbox/material3-dark-definition.scss';
|
|
7
|
+
@import 'ej2-inputs/styles/numerictextbox/material3-dark-definition.scss';
|
|
8
|
+
@import 'ej2-inputs/styles/slider/material3-dark-definition.scss';
|
|
9
|
+
@import 'ej2-inputs/styles/textbox/material3-dark-definition.scss';
|
|
10
|
+
@import 'ej2-buttons/styles/button/material3-dark-definition.scss';
|
|
11
|
+
@import 'ej2-buttons/styles/check-box/material3-dark-definition.scss';
|
|
12
|
+
@import 'ej2-buttons/styles/radio-button/material3-dark-definition.scss';
|
|
13
|
+
@import 'ej2-calendars/styles/calendar/material3-dark-definition.scss';
|
|
14
|
+
@import 'ej2-calendars/styles/datepicker/material3-dark-definition.scss';
|
|
15
|
+
@import 'ej2-calendars/styles/daterangepicker/material3-dark-definition.scss';
|
|
16
|
+
@import 'ej2-calendars/styles/datetimepicker/material3-dark-definition.scss';
|
|
17
|
+
@import 'ej2-calendars/styles/timepicker/material3-dark-definition.scss';
|
|
18
|
+
@import 'ej2-dropdowns/styles/auto-complete/material3-dark-definition.scss';
|
|
19
|
+
@import 'ej2-dropdowns/styles/combo-box/material3-dark-definition.scss';
|
|
20
|
+
@import 'ej2-dropdowns/styles/drop-down-list/material3-dark-definition.scss';
|
|
21
|
+
@import 'ej2-dropdowns/styles/multi-select/material3-dark-definition.scss';
|
|
22
|
+
@import 'ej2-popups/styles/popup/material3-dark-definition.scss';
|
|
23
|
+
@import 'ej2-popups/styles/spinner/material3-dark-definition.scss';
|
|
24
|
+
@import 'ej2-popups/styles/tooltip/material3-dark-definition.scss';
|
|
25
|
+
@import 'ej2-richtexteditor/styles/rich-text-editor/material3-dark-definition.scss';
|
|
26
|
+
@import 'inplace-editor/material3-dark-definition.scss';
|
|
27
|
+
@import 'inplace-editor/icons/material3-dark.scss';
|
|
28
|
+
@import 'inplace-editor/all.scss';
|