@syncfusion/ej2-inplace-editor 25.2.3 → 26.2.4

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 (79) hide show
  1. package/.eslintrc.json +3 -2
  2. package/dist/ej2-inplace-editor.min.js +2 -2
  3. package/dist/ej2-inplace-editor.umd.min.js +2 -2
  4. package/dist/ej2-inplace-editor.umd.min.js.map +1 -1
  5. package/dist/es6/ej2-inplace-editor.es2015.js +22 -43
  6. package/dist/es6/ej2-inplace-editor.es2015.js.map +1 -1
  7. package/dist/es6/ej2-inplace-editor.es5.js +77 -98
  8. package/dist/es6/ej2-inplace-editor.es5.js.map +1 -1
  9. package/dist/global/ej2-inplace-editor.min.js +2 -2
  10. package/dist/global/ej2-inplace-editor.min.js.map +1 -1
  11. package/dist/global/index.d.ts +1 -1
  12. package/hotfix/26.1.35_Vol2.txt +1 -0
  13. package/package.json +18 -18
  14. package/src/inplace-editor/base/inplace-editor.d.ts +0 -1
  15. package/src/inplace-editor/base/interface.js +0 -1
  16. package/src/inplace-editor/base/models.js +0 -2
  17. package/styles/bootstrap-dark.css +61 -16
  18. package/styles/bootstrap-dark.scss +26 -1
  19. package/styles/bootstrap.css +63 -17
  20. package/styles/bootstrap.scss +26 -1
  21. package/styles/bootstrap4.css +72 -22
  22. package/styles/bootstrap4.scss +26 -1
  23. package/styles/bootstrap5-dark.css +62 -16
  24. package/styles/bootstrap5-dark.scss +26 -1
  25. package/styles/bootstrap5.css +62 -16
  26. package/styles/bootstrap5.scss +26 -1
  27. package/styles/fabric-dark.css +59 -15
  28. package/styles/fabric-dark.scss +26 -1
  29. package/styles/fabric.css +61 -16
  30. package/styles/fabric.scss +26 -1
  31. package/styles/fluent-dark.css +63 -17
  32. package/styles/fluent-dark.scss +26 -1
  33. package/styles/fluent.css +63 -17
  34. package/styles/fluent.scss +26 -1
  35. package/styles/fluent2.css +1994 -0
  36. package/styles/fluent2.scss +26 -0
  37. package/styles/highcontrast-light.css +62 -15
  38. package/styles/highcontrast-light.scss +26 -1
  39. package/styles/highcontrast.css +64 -16
  40. package/styles/highcontrast.scss +26 -1
  41. package/styles/inplace-editor/_bootstrap5.3-definition.scss +69 -0
  42. package/styles/inplace-editor/_fluent2-definition.scss +71 -0
  43. package/styles/inplace-editor/_layout.scss +0 -35
  44. package/styles/inplace-editor/_material3-definition.scss +0 -7
  45. package/styles/inplace-editor/_theme.scss +8 -32
  46. package/styles/inplace-editor/bootstrap-dark.css +61 -16
  47. package/styles/inplace-editor/bootstrap.css +63 -17
  48. package/styles/inplace-editor/bootstrap4.css +72 -22
  49. package/styles/inplace-editor/bootstrap5-dark.css +62 -16
  50. package/styles/inplace-editor/bootstrap5.css +62 -16
  51. package/styles/inplace-editor/fabric-dark.css +59 -15
  52. package/styles/inplace-editor/fabric.css +61 -16
  53. package/styles/inplace-editor/fluent-dark.css +63 -17
  54. package/styles/inplace-editor/fluent.css +63 -17
  55. package/styles/inplace-editor/fluent2.css +1994 -0
  56. package/styles/inplace-editor/fluent2.scss +26 -0
  57. package/styles/inplace-editor/highcontrast-light.css +62 -15
  58. package/styles/inplace-editor/highcontrast.css +64 -16
  59. package/styles/inplace-editor/icons/_bootstrap5.3.scss +19 -0
  60. package/styles/inplace-editor/icons/_fluent2.scss +19 -0
  61. package/styles/inplace-editor/material-dark.css +79 -19
  62. package/styles/inplace-editor/material.css +95 -22
  63. package/styles/inplace-editor/material3-dark.css +100 -23
  64. package/styles/inplace-editor/material3.css +100 -23
  65. package/styles/inplace-editor/tailwind-dark.css +72 -19
  66. package/styles/inplace-editor/tailwind.css +72 -19
  67. package/styles/material-dark.css +79 -19
  68. package/styles/material-dark.scss +26 -1
  69. package/styles/material.css +95 -22
  70. package/styles/material.scss +26 -1
  71. package/styles/material3-dark.css +100 -23
  72. package/styles/material3-dark.scss +26 -1
  73. package/styles/material3.css +100 -23
  74. package/styles/material3.scss +26 -1
  75. package/styles/tailwind-dark.css +72 -19
  76. package/styles/tailwind-dark.scss +26 -1
  77. package/styles/tailwind.css +72 -19
  78. package/styles/tailwind.scss +26 -1
  79. package/CHANGELOG.md +0 -262
@@ -1,14 +1,26 @@
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);
6
14
  }
7
15
  }
8
16
  /* stylelint-disable-line no-empty-source */
9
17
  .e-ddl.e-control-wrapper .e-ddl-icon::before {
10
- transform: rotate(0deg);
18
+ -webkit-transform: rotate(0deg);
19
+ transform: rotate(0deg);
20
+ -webkit-transition: -webkit-transform 300ms ease;
21
+ transition: -webkit-transform 300ms ease;
11
22
  transition: transform 300ms ease;
23
+ transition: transform 300ms ease, -webkit-transform 300ms ease;
12
24
  }
13
25
 
14
26
  .e-popup.e-ddl .e-dropdownbase {
@@ -16,8 +28,12 @@
16
28
  }
17
29
 
18
30
  .e-ddl.e-control-wrapper.e-icon-anim .e-ddl-icon::before {
19
- transform: rotate(180deg);
31
+ -webkit-transform: rotate(180deg);
32
+ transform: rotate(180deg);
33
+ -webkit-transition: -webkit-transform 300ms ease;
34
+ transition: -webkit-transform 300ms ease;
20
35
  transition: transform 300ms ease;
36
+ transition: transform 300ms ease, -webkit-transform 300ms ease;
21
37
  }
22
38
 
23
39
  .e-dropdownbase .e-list-item.e-active.e-hover {
@@ -34,12 +50,14 @@
34
50
  }
35
51
 
36
52
  .e-input-group .e-ddl-icon:not(:active)::after {
37
- animation: none;
53
+ -webkit-animation: none;
54
+ animation: none;
38
55
  }
39
56
 
40
57
  .e-ddl.e-popup {
41
58
  border: 0;
42
- box-shadow: 0 2px 3px 1px rgba(0, 0, 0, 0.21);
59
+ -webkit-box-shadow: 0 2px 3px 1px rgba(0, 0, 0, 0.21);
60
+ box-shadow: 0 2px 3px 1px rgba(0, 0, 0, 0.21);
43
61
  margin-top: 2px;
44
62
  }
45
63
 
@@ -55,7 +73,8 @@
55
73
  .e-bigger .e-ddl-device .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
56
74
  background: #f5f5f5;
57
75
  border-width: 0;
58
- box-shadow: none;
76
+ -webkit-box-shadow: none;
77
+ box-shadow: none;
59
78
  margin-bottom: 0;
60
79
  }
61
80
 
@@ -122,19 +141,43 @@
122
141
  }
123
142
 
124
143
  /* stylelint-disable property-no-vendor-prefix */
144
+ @-webkit-keyframes material-spinner-rotate {
145
+ 0% {
146
+ -webkit-transform: rotate(0deg);
147
+ transform: rotate(0deg);
148
+ }
149
+ 100% {
150
+ -webkit-transform: rotate(360deg);
151
+ transform: rotate(360deg);
152
+ }
153
+ }
125
154
  @keyframes material-spinner-rotate {
126
155
  0% {
156
+ -webkit-transform: rotate(0deg);
157
+ transform: rotate(0deg);
158
+ }
159
+ 100% {
160
+ -webkit-transform: rotate(360deg);
161
+ transform: rotate(360deg);
162
+ }
163
+ }
164
+ @-webkit-keyframes fabric-spinner-rotate {
165
+ 0% {
166
+ -webkit-transform: rotate(0deg);
127
167
  transform: rotate(0deg);
128
168
  }
129
169
  100% {
170
+ -webkit-transform: rotate(360deg);
130
171
  transform: rotate(360deg);
131
172
  }
132
173
  }
133
174
  @keyframes fabric-spinner-rotate {
134
175
  0% {
176
+ -webkit-transform: rotate(0deg);
135
177
  transform: rotate(0deg);
136
178
  }
137
179
  100% {
180
+ -webkit-transform: rotate(360deg);
138
181
  transform: rotate(360deg);
139
182
  }
140
183
  }
@@ -160,7 +203,6 @@
160
203
  content: "\e891";
161
204
  }
162
205
 
163
- /*! inplaceeditor layout */
164
206
  .e-bigger .e-inplaceeditor .e-editable-value-wrapper,
165
207
  .e-inplaceeditor.e-bigger .e-editable-value-wrapper {
166
208
  padding: 8px;
@@ -281,6 +323,7 @@
281
323
  .e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon {
282
324
  bottom: 0;
283
325
  cursor: pointer;
326
+ display: -webkit-inline-box;
284
327
  display: -ms-inline-flexbox;
285
328
  display: inline-flex;
286
329
  height: inherit;
@@ -291,8 +334,10 @@
291
334
  width: 18px;
292
335
  }
293
336
  .e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon::before {
294
- -ms-flex-align: center;
295
- align-items: center;
337
+ -webkit-box-align: center;
338
+ -ms-flex-align: center;
339
+ align-items: center;
340
+ display: -webkit-box;
296
341
  display: -ms-flexbox;
297
342
  display: flex;
298
343
  font-size: 14px;
@@ -302,6 +347,7 @@
302
347
  }
303
348
  .e-inplaceeditor .e-editable-value-wrapper.e-editable-open {
304
349
  -webkit-user-select: none;
350
+ -moz-user-select: none;
305
351
  -ms-user-select: none;
306
352
  user-select: none;
307
353
  }
@@ -334,6 +380,7 @@
334
380
  .e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon {
335
381
  bottom: 0;
336
382
  cursor: pointer;
383
+ display: -webkit-inline-box;
337
384
  display: -ms-inline-flexbox;
338
385
  display: inline-flex;
339
386
  height: inherit;
@@ -344,8 +391,10 @@
344
391
  width: 18px;
345
392
  }
346
393
  .e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon::before {
347
- -ms-flex-align: center;
348
- align-items: center;
394
+ -webkit-box-align: center;
395
+ -ms-flex-align: center;
396
+ align-items: center;
397
+ display: -webkit-box;
349
398
  display: -ms-flexbox;
350
399
  display: flex;
351
400
  font-size: 14px;
@@ -355,6 +404,7 @@
355
404
  }
356
405
  .e-inplaceeditor .e-editable-value-container.e-editable-open {
357
406
  -webkit-user-select: none;
407
+ -moz-user-select: none;
358
408
  -ms-user-select: none;
359
409
  user-select: none;
360
410
  }
@@ -379,6 +429,7 @@
379
429
  }
380
430
  .e-inplaceeditor.e-overlay {
381
431
  -webkit-user-select: none;
432
+ -moz-user-select: none;
382
433
  -ms-user-select: none;
383
434
  user-select: none;
384
435
  }
@@ -444,7 +495,8 @@
444
495
  .e-inplaceeditor-tip .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
445
496
  left: auto;
446
497
  right: 5px;
447
- transform: translateX(-30%) translateY(-50%);
498
+ -webkit-transform: translateX(-30%) translateY(-50%);
499
+ transform: translateX(-30%) translateY(-50%);
448
500
  }
449
501
  .e-inplaceeditor .e-editable-form,
450
502
  .e-inplaceeditor-tip .e-editable-form {
@@ -472,6 +524,7 @@
472
524
  opacity: 0.5;
473
525
  pointer-events: none;
474
526
  -webkit-user-select: none;
527
+ -moz-user-select: none;
475
528
  -ms-user-select: none;
476
529
  user-select: none;
477
530
  visibility: visible;
@@ -508,7 +561,8 @@
508
561
  .e-inplaceeditor-tip.e-rtl .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
509
562
  left: 5px;
510
563
  right: auto;
511
- transform: translateX(30%) translateY(-50%);
564
+ -webkit-transform: translateX(30%) translateY(-50%);
565
+ transform: translateX(30%) translateY(-50%);
512
566
  }
513
567
 
514
568
  .e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content,
@@ -560,19 +614,24 @@
560
614
  .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-title {
561
615
  -ms-flex-line-pack: center;
562
616
  align-content: center;
617
+ display: -webkit-box;
563
618
  display: -ms-flexbox;
564
619
  display: flex;
565
- -ms-flex-direction: column;
566
- flex-direction: column;
620
+ -webkit-box-orient: vertical;
621
+ -webkit-box-direction: normal;
622
+ -ms-flex-direction: column;
623
+ flex-direction: column;
567
624
  font-family: "Roboto", "Segoe UI", "GeezaPro", "DejaVu Serif", "sans-serif", "-apple-system", "BlinkMacSystemFont";
568
625
  font-size: 13px;
569
626
  font-weight: 500;
570
627
  height: 30px;
571
- -ms-flex-pack: center;
572
- justify-content: center;
628
+ -webkit-box-pack: center;
629
+ -ms-flex-pack: center;
630
+ justify-content: center;
573
631
  padding: 0 0 0 10px;
574
632
  }
575
633
  .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-wrapper {
634
+ display: -webkit-box;
576
635
  display: -ms-flexbox;
577
636
  display: flex;
578
637
  padding: 16px;
@@ -585,6 +644,7 @@
585
644
  top: auto;
586
645
  }
587
646
  .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-container {
647
+ display: -webkit-box;
588
648
  display: -ms-flexbox;
589
649
  display: flex;
590
650
  padding: 16px;
@@ -626,7 +686,6 @@
626
686
  min-height: 70px;
627
687
  }
628
688
 
629
- /*! inplaceeditor theme */
630
689
  .e-inplaceeditor .e-editable-value-wrapper .e-editable-value {
631
690
  border-bottom: 1px dashed #fff;
632
691
  color: #fff;
@@ -687,7 +746,8 @@
687
746
  }
688
747
  .e-inplaceeditor-tip.e-tooltip-wrap.e-popup {
689
748
  background: #424242;
690
- box-shadow: none;
749
+ -webkit-box-shadow: none;
750
+ box-shadow: none;
691
751
  }
692
752
  .e-inplaceeditor-tip.e-tooltip-wrap.e-popup .e-tip-content {
693
753
  border-radius: 2px;
@@ -1 +1,26 @@
1
- @import 'inplace-editor/material-dark.scss';
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';
@@ -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 */ /*! calendar material theme variables */
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
  }
@@ -193,7 +249,6 @@
193
249
  content: "\e891";
194
250
  }
195
251
 
196
- /*! inplaceeditor layout */
197
252
  .e-bigger .e-inplaceeditor .e-editable-value-wrapper,
198
253
  .e-inplaceeditor.e-bigger .e-editable-value-wrapper {
199
254
  padding: 8px;
@@ -314,6 +369,7 @@
314
369
  .e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon {
315
370
  bottom: 0;
316
371
  cursor: pointer;
372
+ display: -webkit-inline-box;
317
373
  display: -ms-inline-flexbox;
318
374
  display: inline-flex;
319
375
  height: inherit;
@@ -324,8 +380,10 @@
324
380
  width: 18px;
325
381
  }
326
382
  .e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon::before {
327
- -ms-flex-align: center;
328
- align-items: center;
383
+ -webkit-box-align: center;
384
+ -ms-flex-align: center;
385
+ align-items: center;
386
+ display: -webkit-box;
329
387
  display: -ms-flexbox;
330
388
  display: flex;
331
389
  font-size: 14px;
@@ -335,6 +393,7 @@
335
393
  }
336
394
  .e-inplaceeditor .e-editable-value-wrapper.e-editable-open {
337
395
  -webkit-user-select: none;
396
+ -moz-user-select: none;
338
397
  -ms-user-select: none;
339
398
  user-select: none;
340
399
  }
@@ -367,6 +426,7 @@
367
426
  .e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon {
368
427
  bottom: 0;
369
428
  cursor: pointer;
429
+ display: -webkit-inline-box;
370
430
  display: -ms-inline-flexbox;
371
431
  display: inline-flex;
372
432
  height: inherit;
@@ -377,8 +437,10 @@
377
437
  width: 18px;
378
438
  }
379
439
  .e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon::before {
380
- -ms-flex-align: center;
381
- align-items: center;
440
+ -webkit-box-align: center;
441
+ -ms-flex-align: center;
442
+ align-items: center;
443
+ display: -webkit-box;
382
444
  display: -ms-flexbox;
383
445
  display: flex;
384
446
  font-size: 14px;
@@ -388,6 +450,7 @@
388
450
  }
389
451
  .e-inplaceeditor .e-editable-value-container.e-editable-open {
390
452
  -webkit-user-select: none;
453
+ -moz-user-select: none;
391
454
  -ms-user-select: none;
392
455
  user-select: none;
393
456
  }
@@ -412,6 +475,7 @@
412
475
  }
413
476
  .e-inplaceeditor.e-overlay {
414
477
  -webkit-user-select: none;
478
+ -moz-user-select: none;
415
479
  -ms-user-select: none;
416
480
  user-select: none;
417
481
  }
@@ -491,7 +555,8 @@
491
555
  .e-inplaceeditor-tip .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
492
556
  left: auto;
493
557
  right: 5px;
494
- transform: translateX(-30%) translateY(-50%);
558
+ -webkit-transform: translateX(-30%) translateY(-50%);
559
+ transform: translateX(-30%) translateY(-50%);
495
560
  }
496
561
  .e-inplaceeditor .e-editable-form,
497
562
  .e-inplaceeditor-tip .e-editable-form {
@@ -519,6 +584,7 @@
519
584
  opacity: 0.5;
520
585
  pointer-events: none;
521
586
  -webkit-user-select: none;
587
+ -moz-user-select: none;
522
588
  -ms-user-select: none;
523
589
  user-select: none;
524
590
  visibility: visible;
@@ -555,7 +621,8 @@
555
621
  .e-inplaceeditor-tip.e-rtl .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
556
622
  left: 5px;
557
623
  right: auto;
558
- transform: translateX(30%) translateY(-50%);
624
+ -webkit-transform: translateX(30%) translateY(-50%);
625
+ transform: translateX(30%) translateY(-50%);
559
626
  }
560
627
 
561
628
  .e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content,
@@ -607,19 +674,24 @@
607
674
  .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-title {
608
675
  -ms-flex-line-pack: center;
609
676
  align-content: center;
677
+ display: -webkit-box;
610
678
  display: -ms-flexbox;
611
679
  display: flex;
612
- -ms-flex-direction: column;
613
- flex-direction: column;
680
+ -webkit-box-orient: vertical;
681
+ -webkit-box-direction: normal;
682
+ -ms-flex-direction: column;
683
+ flex-direction: column;
614
684
  font-family: "Roboto", "Segoe UI", "GeezaPro", "DejaVu Serif", "sans-serif", "-apple-system", "BlinkMacSystemFont";
615
685
  font-size: 13px;
616
686
  font-weight: 500;
617
687
  height: 30px;
618
- -ms-flex-pack: center;
619
- justify-content: center;
688
+ -webkit-box-pack: center;
689
+ -ms-flex-pack: center;
690
+ justify-content: center;
620
691
  padding: 0 0 0 10px;
621
692
  }
622
693
  .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-wrapper {
694
+ display: -webkit-box;
623
695
  display: -ms-flexbox;
624
696
  display: flex;
625
697
  padding: 16px;
@@ -632,6 +704,7 @@
632
704
  top: auto;
633
705
  }
634
706
  .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-container {
707
+ display: -webkit-box;
635
708
  display: -ms-flexbox;
636
709
  display: flex;
637
710
  padding: 16px;
@@ -673,7 +746,6 @@
673
746
  min-height: 70px;
674
747
  }
675
748
 
676
- /*! inplaceeditor theme */
677
749
  .e-inplaceeditor .e-editable-value-wrapper .e-editable-value {
678
750
  border-bottom: 1px dashed rgba(0, 0, 0, 0.87);
679
751
  color: rgba(0, 0, 0, 0.87);
@@ -734,7 +806,8 @@
734
806
  }
735
807
  .e-inplaceeditor-tip.e-tooltip-wrap.e-popup {
736
808
  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);
809
+ -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);
810
+ 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
811
  }
739
812
  .e-inplaceeditor-tip.e-tooltip-wrap.e-popup .e-tip-content {
740
813
  border-radius: 2px;
@@ -1 +1,26 @@
1
- @import 'inplace-editor/material.scss';
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';