@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.
Files changed (116) hide show
  1. package/.eslintrc.json +3 -2
  2. package/dist/ej2-inplace-editor.umd.min.js +2 -2
  3. package/dist/ej2-inplace-editor.umd.min.js.map +1 -1
  4. package/dist/es6/ej2-inplace-editor.es2015.js +22 -43
  5. package/dist/es6/ej2-inplace-editor.es2015.js.map +1 -1
  6. package/dist/es6/ej2-inplace-editor.es5.js +77 -98
  7. package/dist/es6/ej2-inplace-editor.es5.js.map +1 -1
  8. package/dist/global/ej2-inplace-editor.min.js +2 -2
  9. package/dist/global/ej2-inplace-editor.min.js.map +1 -1
  10. package/dist/global/index.d.ts +1 -1
  11. package/dist/ts/index.d.ts +4 -0
  12. package/dist/ts/index.ts +4 -0
  13. package/dist/ts/inplace-editor/base/classes.d.ts +63 -0
  14. package/dist/ts/inplace-editor/base/classes.ts +63 -0
  15. package/dist/ts/inplace-editor/base/events.d.ts +17 -0
  16. package/dist/ts/inplace-editor/base/events.ts +18 -0
  17. package/dist/ts/inplace-editor/base/index.d.ts +10 -0
  18. package/dist/ts/inplace-editor/base/index.ts +10 -0
  19. package/dist/ts/inplace-editor/base/inplace-editor-model.d.ts +344 -0
  20. package/dist/ts/inplace-editor/base/inplace-editor.d.ts +623 -0
  21. package/dist/ts/inplace-editor/base/inplace-editor.ts +1758 -0
  22. package/dist/ts/inplace-editor/base/interface.d.ts +117 -0
  23. package/dist/ts/inplace-editor/base/interface.ts +127 -0
  24. package/dist/ts/inplace-editor/base/models-model.d.ts +22 -0
  25. package/dist/ts/inplace-editor/base/models.d.ts +31 -0
  26. package/dist/ts/inplace-editor/base/models.ts +45 -0
  27. package/dist/ts/inplace-editor/base/util.d.ts +28 -0
  28. package/dist/ts/inplace-editor/base/util.ts +104 -0
  29. package/dist/ts/inplace-editor/index.d.ts +5 -0
  30. package/dist/ts/inplace-editor/index.ts +5 -0
  31. package/dist/ts/inplace-editor/modules/auto-complete.d.ts +34 -0
  32. package/dist/ts/inplace-editor/modules/auto-complete.ts +65 -0
  33. package/dist/ts/inplace-editor/modules/base-module.d.ts +19 -0
  34. package/dist/ts/inplace-editor/modules/base-module.ts +74 -0
  35. package/dist/ts/inplace-editor/modules/color-picker.d.ts +29 -0
  36. package/dist/ts/inplace-editor/modules/color-picker.ts +55 -0
  37. package/dist/ts/inplace-editor/modules/combo-box.d.ts +34 -0
  38. package/dist/ts/inplace-editor/modules/combo-box.ts +63 -0
  39. package/dist/ts/inplace-editor/modules/date-range-picker.d.ts +29 -0
  40. package/dist/ts/inplace-editor/modules/date-range-picker.ts +55 -0
  41. package/dist/ts/inplace-editor/modules/index.d.ts +12 -0
  42. package/dist/ts/inplace-editor/modules/index.ts +12 -0
  43. package/dist/ts/inplace-editor/modules/multi-select.d.ts +35 -0
  44. package/dist/ts/inplace-editor/modules/multi-select.ts +88 -0
  45. package/dist/ts/inplace-editor/modules/rte.d.ts +31 -0
  46. package/dist/ts/inplace-editor/modules/rte.ts +73 -0
  47. package/dist/ts/inplace-editor/modules/slider.d.ts +30 -0
  48. package/dist/ts/inplace-editor/modules/slider.ts +59 -0
  49. package/dist/ts/inplace-editor/modules/time-picker.d.ts +29 -0
  50. package/dist/ts/inplace-editor/modules/time-picker.ts +54 -0
  51. package/package.json +17 -17
  52. package/src/inplace-editor/base/inplace-editor.d.ts +0 -1
  53. package/src/inplace-editor/base/interface.js +0 -1
  54. package/src/inplace-editor/base/models.js +0 -2
  55. package/styles/bootstrap-dark.css +61 -14
  56. package/styles/bootstrap-dark.scss +26 -1
  57. package/styles/bootstrap.css +63 -15
  58. package/styles/bootstrap.scss +26 -1
  59. package/styles/bootstrap4.css +71 -19
  60. package/styles/bootstrap4.scss +26 -1
  61. package/styles/bootstrap5-dark.css +62 -14
  62. package/styles/bootstrap5-dark.scss +26 -1
  63. package/styles/bootstrap5.css +62 -14
  64. package/styles/bootstrap5.scss +26 -1
  65. package/styles/fabric-dark.css +59 -13
  66. package/styles/fabric-dark.scss +26 -1
  67. package/styles/fabric.css +61 -14
  68. package/styles/fabric.scss +26 -1
  69. package/styles/fluent-dark.css +63 -15
  70. package/styles/fluent-dark.scss +26 -1
  71. package/styles/fluent.css +63 -15
  72. package/styles/fluent.scss +26 -1
  73. package/styles/fluent2.css +1996 -0
  74. package/styles/fluent2.scss +26 -0
  75. package/styles/highcontrast-light.css +62 -13
  76. package/styles/highcontrast-light.scss +26 -1
  77. package/styles/highcontrast.css +64 -14
  78. package/styles/highcontrast.scss +26 -1
  79. package/styles/inplace-editor/_bootstrap5.3-definition.scss +69 -0
  80. package/styles/inplace-editor/_fluent2-definition.scss +71 -0
  81. package/styles/inplace-editor/_theme.scss +8 -3
  82. package/styles/inplace-editor/bootstrap-dark.css +61 -14
  83. package/styles/inplace-editor/bootstrap.css +63 -15
  84. package/styles/inplace-editor/bootstrap4.css +71 -19
  85. package/styles/inplace-editor/bootstrap5-dark.css +62 -14
  86. package/styles/inplace-editor/bootstrap5.css +62 -14
  87. package/styles/inplace-editor/fabric-dark.css +59 -13
  88. package/styles/inplace-editor/fabric.css +61 -14
  89. package/styles/inplace-editor/fluent-dark.css +63 -15
  90. package/styles/inplace-editor/fluent.css +63 -15
  91. package/styles/inplace-editor/fluent2.css +1996 -0
  92. package/styles/inplace-editor/fluent2.scss +26 -0
  93. package/styles/inplace-editor/highcontrast-light.css +62 -13
  94. package/styles/inplace-editor/highcontrast.css +64 -14
  95. package/styles/inplace-editor/icons/_bootstrap5.3.scss +19 -0
  96. package/styles/inplace-editor/icons/_fluent2.scss +19 -0
  97. package/styles/inplace-editor/material-dark.css +79 -17
  98. package/styles/inplace-editor/material.css +95 -20
  99. package/styles/inplace-editor/material3-dark.css +101 -21
  100. package/styles/inplace-editor/material3.css +101 -21
  101. package/styles/inplace-editor/tailwind-dark.css +72 -17
  102. package/styles/inplace-editor/tailwind.css +72 -17
  103. package/styles/material-dark.css +79 -17
  104. package/styles/material-dark.scss +26 -1
  105. package/styles/material.css +95 -20
  106. package/styles/material.scss +26 -1
  107. package/styles/material3-dark.css +101 -21
  108. package/styles/material3-dark.scss +26 -1
  109. package/styles/material3.css +101 -21
  110. package/styles/material3.scss +26 -1
  111. package/styles/tailwind-dark.css +72 -17
  112. package/styles/tailwind-dark.scss +26 -1
  113. package/styles/tailwind.css +72 -17
  114. package/styles/tailwind.scss +26 -1
  115. package/CHANGELOG.md +0 -262
  116. package/dist/ej2-inplace-editor.min.js +0 -10
@@ -100,7 +100,7 @@
100
100
  --color-sf-on-warning: 99, 52, 0;
101
101
  --color-sf-on-warning-container: 255, 220, 193;
102
102
  --color-sf-spreadsheet-gridline: 231, 224, 236;
103
- --color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
103
+ --color-sf-shadow-focus-ring1: 0 0 0 1px #000, 0 0 0 3px #fff;
104
104
  --color-sf-success-text: 0, 0, 0;
105
105
  --color-sf-warning-text: 0, 0, 0;
106
106
  --color-sf-info-text: 0, 0, 0;
@@ -110,29 +110,58 @@
110
110
  }
111
111
 
112
112
  /* stylelint-disable property-no-vendor-prefix */
113
+ @-webkit-keyframes e-input-ripple {
114
+ 100% {
115
+ opacity: 0;
116
+ -webkit-transform: scale(4);
117
+ transform: scale(4);
118
+ }
119
+ }
113
120
  @keyframes e-input-ripple {
114
121
  100% {
115
122
  opacity: 0;
116
- transform: scale(4);
123
+ -webkit-transform: scale(4);
124
+ transform: scale(4);
125
+ }
126
+ }
127
+ @-webkit-keyframes slideTopUp {
128
+ from {
129
+ -webkit-transform: translate3d(0, 0, 0) scale(1);
130
+ transform: translate3d(0, 0, 0) scale(1);
131
+ }
132
+ to {
133
+ -webkit-transform: translate3d(0, 0, 0) scale(1);
134
+ transform: translate3d(0, 0, 0) scale(1);
117
135
  }
118
136
  }
119
137
  @keyframes slideTopUp {
120
138
  from {
121
- transform: translate3d(0, 0, 0) scale(1);
139
+ -webkit-transform: translate3d(0, 0, 0) scale(1);
140
+ transform: translate3d(0, 0, 0) scale(1);
122
141
  }
123
142
  to {
124
- transform: translate3d(0, 0, 0) scale(1);
143
+ -webkit-transform: translate3d(0, 0, 0) scale(1);
144
+ transform: translate3d(0, 0, 0) scale(1);
125
145
  }
126
146
  }
127
- /* stylelint-disable-line no-empty-source */ /*! calendar material3 theme variables */
147
+ /* stylelint-disable-line no-empty-source */
148
+ /*! calendar material3 theme variables */
128
149
  .e-ddl.e-control-wrapper .e-ddl-icon::before {
129
- transform: rotate(0deg);
150
+ -webkit-transform: rotate(0deg);
151
+ transform: rotate(0deg);
152
+ -webkit-transition: -webkit-transform 300ms ease;
153
+ transition: -webkit-transform 300ms ease;
130
154
  transition: transform 300ms ease;
155
+ transition: transform 300ms ease, -webkit-transform 300ms ease;
131
156
  }
132
157
 
133
158
  .e-ddl.e-control-wrapper.e-icon-anim .e-ddl-icon::before {
134
- transform: rotate(180deg);
159
+ -webkit-transform: rotate(180deg);
160
+ transform: rotate(180deg);
161
+ -webkit-transition: -webkit-transform 300ms ease;
162
+ transition: -webkit-transform 300ms ease;
135
163
  transition: transform 300ms ease;
164
+ transition: transform 300ms ease, -webkit-transform 300ms ease;
136
165
  }
137
166
 
138
167
  .e-dropdownbase .e-list-item.e-active.e-hover {
@@ -149,12 +178,14 @@
149
178
  }
150
179
 
151
180
  .e-input-group .e-ddl-icon:not(:active)::after {
152
- animation: none;
181
+ -webkit-animation: none;
182
+ animation: none;
153
183
  }
154
184
 
155
185
  .e-ddl.e-popup {
156
186
  border: 0;
157
- box-shadow: 0 2px 6px 2px rgba(0, 0, 0, 0.15), 0 1px 2px 0 rgba(0, 0, 0, 0.3);
187
+ -webkit-box-shadow: 0 2px 6px 2px rgba(0, 0, 0, 0.15), 0 1px 2px 0 rgba(0, 0, 0, 0.3);
188
+ box-shadow: 0 2px 6px 2px rgba(0, 0, 0, 0.15), 0 1px 2px 0 rgba(0, 0, 0, 0.3);
158
189
  margin-top: 2px;
159
190
  }
160
191
 
@@ -175,7 +206,8 @@
175
206
  .e-bigger .e-ddl-device .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
176
207
  background: rgba(0, 0, 0, 0.0001);
177
208
  border-width: 0;
178
- box-shadow: none;
209
+ -webkit-box-shadow: none;
210
+ box-shadow: none;
179
211
  margin-bottom: 0;
180
212
  }
181
213
 
@@ -268,19 +300,43 @@
268
300
 
269
301
  /* stylelint-disable-line no-empty-source */
270
302
  /* stylelint-disable property-no-vendor-prefix */
303
+ @-webkit-keyframes material-spinner-rotate {
304
+ 0% {
305
+ -webkit-transform: rotate(0deg);
306
+ transform: rotate(0deg);
307
+ }
308
+ 100% {
309
+ -webkit-transform: rotate(360deg);
310
+ transform: rotate(360deg);
311
+ }
312
+ }
271
313
  @keyframes material-spinner-rotate {
272
314
  0% {
315
+ -webkit-transform: rotate(0deg);
316
+ transform: rotate(0deg);
317
+ }
318
+ 100% {
319
+ -webkit-transform: rotate(360deg);
320
+ transform: rotate(360deg);
321
+ }
322
+ }
323
+ @-webkit-keyframes fabric-spinner-rotate {
324
+ 0% {
325
+ -webkit-transform: rotate(0deg);
273
326
  transform: rotate(0deg);
274
327
  }
275
328
  100% {
329
+ -webkit-transform: rotate(360deg);
276
330
  transform: rotate(360deg);
277
331
  }
278
332
  }
279
333
  @keyframes fabric-spinner-rotate {
280
334
  0% {
335
+ -webkit-transform: rotate(0deg);
281
336
  transform: rotate(0deg);
282
337
  }
283
338
  100% {
339
+ -webkit-transform: rotate(360deg);
284
340
  transform: rotate(360deg);
285
341
  }
286
342
  }
@@ -419,6 +475,7 @@
419
475
  .e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon {
420
476
  bottom: 0;
421
477
  cursor: pointer;
478
+ display: -webkit-inline-box;
422
479
  display: -ms-inline-flexbox;
423
480
  display: inline-flex;
424
481
  height: inherit;
@@ -429,8 +486,10 @@
429
486
  width: 20px;
430
487
  }
431
488
  .e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon::before {
432
- -ms-flex-align: center;
433
- align-items: center;
489
+ -webkit-box-align: center;
490
+ -ms-flex-align: center;
491
+ align-items: center;
492
+ display: -webkit-box;
434
493
  display: -ms-flexbox;
435
494
  display: flex;
436
495
  font-size: 14px;
@@ -440,6 +499,7 @@
440
499
  }
441
500
  .e-inplaceeditor .e-editable-value-wrapper.e-editable-open {
442
501
  -webkit-user-select: none;
502
+ -moz-user-select: none;
443
503
  -ms-user-select: none;
444
504
  user-select: none;
445
505
  }
@@ -472,6 +532,7 @@
472
532
  .e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon {
473
533
  bottom: 0;
474
534
  cursor: pointer;
535
+ display: -webkit-inline-box;
475
536
  display: -ms-inline-flexbox;
476
537
  display: inline-flex;
477
538
  height: inherit;
@@ -482,8 +543,10 @@
482
543
  width: 20px;
483
544
  }
484
545
  .e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon::before {
485
- -ms-flex-align: center;
486
- align-items: center;
546
+ -webkit-box-align: center;
547
+ -ms-flex-align: center;
548
+ align-items: center;
549
+ display: -webkit-box;
487
550
  display: -ms-flexbox;
488
551
  display: flex;
489
552
  font-size: 14px;
@@ -493,6 +556,7 @@
493
556
  }
494
557
  .e-inplaceeditor .e-editable-value-container.e-editable-open {
495
558
  -webkit-user-select: none;
559
+ -moz-user-select: none;
496
560
  -ms-user-select: none;
497
561
  user-select: none;
498
562
  }
@@ -517,6 +581,7 @@
517
581
  }
518
582
  .e-inplaceeditor.e-overlay {
519
583
  -webkit-user-select: none;
584
+ -moz-user-select: none;
520
585
  -ms-user-select: none;
521
586
  user-select: none;
522
587
  }
@@ -582,7 +647,8 @@
582
647
  .e-inplaceeditor-tip .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
583
648
  left: auto;
584
649
  right: 5px;
585
- transform: translateX(-30%) translateY(-50%);
650
+ -webkit-transform: translateX(-30%) translateY(-50%);
651
+ transform: translateX(-30%) translateY(-50%);
586
652
  }
587
653
  .e-inplaceeditor .e-editable-form,
588
654
  .e-inplaceeditor-tip .e-editable-form {
@@ -610,6 +676,7 @@
610
676
  opacity: 0.5;
611
677
  pointer-events: none;
612
678
  -webkit-user-select: none;
679
+ -moz-user-select: none;
613
680
  -ms-user-select: none;
614
681
  user-select: none;
615
682
  visibility: visible;
@@ -646,7 +713,8 @@
646
713
  .e-inplaceeditor-tip.e-rtl .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
647
714
  left: 5px;
648
715
  right: auto;
649
- transform: translateX(30%) translateY(-50%);
716
+ -webkit-transform: translateX(30%) translateY(-50%);
717
+ transform: translateX(30%) translateY(-50%);
650
718
  }
651
719
 
652
720
  .e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content,
@@ -698,19 +766,24 @@
698
766
  .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-title {
699
767
  -ms-flex-line-pack: center;
700
768
  align-content: center;
769
+ display: -webkit-box;
701
770
  display: -ms-flexbox;
702
771
  display: flex;
703
- -ms-flex-direction: column;
704
- flex-direction: column;
772
+ -webkit-box-orient: vertical;
773
+ -webkit-box-direction: normal;
774
+ -ms-flex-direction: column;
775
+ flex-direction: column;
705
776
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
706
777
  font-size: 16px;
707
778
  font-weight: 400;
708
779
  height: 24px;
709
- -ms-flex-pack: center;
710
- justify-content: center;
780
+ -webkit-box-pack: center;
781
+ -ms-flex-pack: center;
782
+ justify-content: center;
711
783
  padding: 20px 20px 12px 20px;
712
784
  }
713
785
  .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-wrapper {
786
+ display: -webkit-box;
714
787
  display: -ms-flexbox;
715
788
  display: flex;
716
789
  padding: 20px;
@@ -723,6 +796,7 @@
723
796
  top: auto;
724
797
  }
725
798
  .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-container {
799
+ display: -webkit-box;
726
800
  display: -ms-flexbox;
727
801
  display: flex;
728
802
  padding: 20px;
@@ -776,6 +850,7 @@
776
850
  border-bottom: 0;
777
851
  }
778
852
  .e-inplaceeditor .e-editable-value-wrapper:hover {
853
+ 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));
779
854
  background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.08), rgba(var(--color-sf-primary), 0.08)), rgba(var(--color-sf-surface));
780
855
  border-radius: 4px;
781
856
  }
@@ -793,6 +868,7 @@
793
868
  border-bottom: 0;
794
869
  }
795
870
  .e-inplaceeditor .e-editable-value-container:hover {
871
+ 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));
796
872
  background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.08), rgba(var(--color-sf-primary), 0.08)), rgba(var(--color-sf-surface));
797
873
  border-radius: 4px;
798
874
  }
@@ -824,13 +900,16 @@
824
900
  color: rgba(var(--color-sf-on-surface-variant));
825
901
  }
826
902
  .e-inplaceeditor-tip.e-tooltip-wrap.e-popup {
903
+ background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-surface), 1)), to(rgba(var(--color-sf-surface), 1))), rgba(var(--color-sf-surface));
827
904
  background: linear-gradient(0deg, rgba(var(--color-sf-surface), 1), rgba(var(--color-sf-surface), 1)), rgba(var(--color-sf-surface));
828
- box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3), 0 4px 8px 3px rgba(0, 0, 0, 0.15);
905
+ -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3), 0 4px 8px 3px rgba(0, 0, 0, 0.15);
906
+ box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3), 0 4px 8px 3px rgba(0, 0, 0, 0.15);
829
907
  border-radius: 0;
830
908
  }
831
909
  .e-inplaceeditor-tip.e-tooltip-wrap.e-popup .e-tip-content {
832
910
  border-radius: 20px;
833
911
  color: rgba(var(--color-sf-on-surface));
912
+ background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-surface), 1)), to(rgba(var(--color-sf-surface), 1))), rgba(var(--color-sf-surface));
834
913
  background: linear-gradient(0deg, rgba(var(--color-sf-surface), 1), rgba(var(--color-sf-surface), 1)), rgba(var(--color-sf-surface));
835
914
  }
836
915
  .e-inplaceeditor-tip.e-tooltip-wrap.e-popup .e-arrow-tip-inner {
@@ -847,6 +926,7 @@
847
926
  border-radius: 8px;
848
927
  }
849
928
  .e-inplaceeditor-tip.e-tooltip-wrap.e-popup .e-editable-title {
929
+ background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-surface), 1)), to(rgba(var(--color-sf-surface), 1))), rgba(var(--color-sf-surface));
850
930
  background: linear-gradient(0deg, rgba(var(--color-sf-surface), 1), rgba(var(--color-sf-surface), 1)), rgba(var(--color-sf-surface));
851
931
  border-bottom: 0;
852
932
  color: rgba(var(--color-sf-on-surface));
@@ -1,3 +1,28 @@
1
1
 
2
2
 
3
- @import 'inplace-editor/material3.scss';
3
+
4
+ @import 'ej2-inputs/styles/input/material3-definition.scss';
5
+ @import 'ej2-inputs/styles/color-picker/material3-definition.scss';
6
+ @import 'ej2-inputs/styles/maskedtextbox/material3-definition.scss';
7
+ @import 'ej2-inputs/styles/numerictextbox/material3-definition.scss';
8
+ @import 'ej2-inputs/styles/slider/material3-definition.scss';
9
+ @import 'ej2-inputs/styles/textbox/material3-definition.scss';
10
+ @import 'ej2-buttons/styles/button/material3-definition.scss';
11
+ @import 'ej2-buttons/styles/check-box/material3-definition.scss';
12
+ @import 'ej2-buttons/styles/radio-button/material3-definition.scss';
13
+ @import 'ej2-calendars/styles/calendar/material3-definition.scss';
14
+ @import 'ej2-calendars/styles/datepicker/material3-definition.scss';
15
+ @import 'ej2-calendars/styles/daterangepicker/material3-definition.scss';
16
+ @import 'ej2-calendars/styles/datetimepicker/material3-definition.scss';
17
+ @import 'ej2-calendars/styles/timepicker/material3-definition.scss';
18
+ @import 'ej2-dropdowns/styles/auto-complete/material3-definition.scss';
19
+ @import 'ej2-dropdowns/styles/combo-box/material3-definition.scss';
20
+ @import 'ej2-dropdowns/styles/drop-down-list/material3-definition.scss';
21
+ @import 'ej2-dropdowns/styles/multi-select/material3-definition.scss';
22
+ @import 'ej2-popups/styles/popup/material3-definition.scss';
23
+ @import 'ej2-popups/styles/spinner/material3-definition.scss';
24
+ @import 'ej2-popups/styles/tooltip/material3-definition.scss';
25
+ @import 'ej2-richtexteditor/styles/rich-text-editor/material3-definition.scss';
26
+ @import 'inplace-editor/material3-definition.scss';
27
+ @import 'inplace-editor/icons/material3.scss';
28
+ @import 'inplace-editor/all.scss';
@@ -1,13 +1,22 @@
1
1
  /* stylelint-disable property-no-vendor-prefix */
2
- /* stylelint-disable-line no-empty-source */ /*! calendar tailwind theme variables */
2
+ /* stylelint-disable-line no-empty-source */
3
+ /*! calendar tailwind theme variables */
3
4
  .e-ddl.e-control-wrapper .e-ddl-icon::before {
4
- transform: rotate(0deg);
5
+ -webkit-transform: rotate(0deg);
6
+ transform: rotate(0deg);
7
+ -webkit-transition: -webkit-transform 300ms ease;
8
+ transition: -webkit-transform 300ms ease;
5
9
  transition: transform 300ms ease;
10
+ transition: transform 300ms ease, -webkit-transform 300ms ease;
6
11
  }
7
12
 
8
13
  .e-ddl.e-control-wrapper.e-icon-anim .e-ddl-icon::before {
9
- transform: rotate(180deg);
14
+ -webkit-transform: rotate(180deg);
15
+ transform: rotate(180deg);
16
+ -webkit-transition: -webkit-transform 300ms ease;
17
+ transition: -webkit-transform 300ms ease;
10
18
  transition: transform 300ms ease;
19
+ transition: transform 300ms ease, -webkit-transform 300ms ease;
11
20
  }
12
21
 
13
22
  .e-dropdownbase .e-list-item.e-active.e-hover {
@@ -24,13 +33,15 @@
24
33
  }
25
34
 
26
35
  .e-input-group .e-ddl-icon:not(:active)::after {
27
- animation: none;
36
+ -webkit-animation: none;
37
+ animation: none;
28
38
  }
29
39
 
30
40
  .e-ddl.e-popup {
31
41
  border: 0;
32
42
  border-radius: 4px;
33
- box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
43
+ -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
44
+ box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
34
45
  margin-top: 4px;
35
46
  }
36
47
 
@@ -69,7 +80,8 @@
69
80
  .e-bigger .e-ddl-device .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
70
81
  background: #374151;
71
82
  border-width: 0;
72
- box-shadow: none;
83
+ -webkit-box-shadow: none;
84
+ box-shadow: none;
73
85
  margin-bottom: 0;
74
86
  }
75
87
 
@@ -128,19 +140,43 @@
128
140
 
129
141
  /* stylelint-disable-line no-empty-source */
130
142
  /* stylelint-disable property-no-vendor-prefix */
143
+ @-webkit-keyframes material-spinner-rotate {
144
+ 0% {
145
+ -webkit-transform: rotate(0);
146
+ transform: rotate(0);
147
+ }
148
+ 100% {
149
+ -webkit-transform: rotate(360deg);
150
+ transform: rotate(360deg);
151
+ }
152
+ }
131
153
  @keyframes material-spinner-rotate {
132
154
  0% {
155
+ -webkit-transform: rotate(0);
156
+ transform: rotate(0);
157
+ }
158
+ 100% {
159
+ -webkit-transform: rotate(360deg);
160
+ transform: rotate(360deg);
161
+ }
162
+ }
163
+ @-webkit-keyframes fabric-spinner-rotate {
164
+ 0% {
165
+ -webkit-transform: rotate(0);
133
166
  transform: rotate(0);
134
167
  }
135
168
  100% {
169
+ -webkit-transform: rotate(360deg);
136
170
  transform: rotate(360deg);
137
171
  }
138
172
  }
139
173
  @keyframes fabric-spinner-rotate {
140
174
  0% {
175
+ -webkit-transform: rotate(0);
141
176
  transform: rotate(0);
142
177
  }
143
178
  100% {
179
+ -webkit-transform: rotate(360deg);
144
180
  transform: rotate(360deg);
145
181
  }
146
182
  }
@@ -279,6 +315,7 @@
279
315
  .e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon {
280
316
  bottom: 0;
281
317
  cursor: pointer;
318
+ display: -webkit-inline-box;
282
319
  display: -ms-inline-flexbox;
283
320
  display: inline-flex;
284
321
  height: inherit;
@@ -289,8 +326,10 @@
289
326
  width: 20px;
290
327
  }
291
328
  .e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon::before {
292
- -ms-flex-align: center;
293
- align-items: center;
329
+ -webkit-box-align: center;
330
+ -ms-flex-align: center;
331
+ align-items: center;
332
+ display: -webkit-box;
294
333
  display: -ms-flexbox;
295
334
  display: flex;
296
335
  font-size: 14px;
@@ -300,6 +339,7 @@
300
339
  }
301
340
  .e-inplaceeditor .e-editable-value-wrapper.e-editable-open {
302
341
  -webkit-user-select: none;
342
+ -moz-user-select: none;
303
343
  -ms-user-select: none;
304
344
  user-select: none;
305
345
  }
@@ -332,6 +372,7 @@
332
372
  .e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon {
333
373
  bottom: 0;
334
374
  cursor: pointer;
375
+ display: -webkit-inline-box;
335
376
  display: -ms-inline-flexbox;
336
377
  display: inline-flex;
337
378
  height: inherit;
@@ -342,8 +383,10 @@
342
383
  width: 20px;
343
384
  }
344
385
  .e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon::before {
345
- -ms-flex-align: center;
346
- align-items: center;
386
+ -webkit-box-align: center;
387
+ -ms-flex-align: center;
388
+ align-items: center;
389
+ display: -webkit-box;
347
390
  display: -ms-flexbox;
348
391
  display: flex;
349
392
  font-size: 14px;
@@ -353,6 +396,7 @@
353
396
  }
354
397
  .e-inplaceeditor .e-editable-value-container.e-editable-open {
355
398
  -webkit-user-select: none;
399
+ -moz-user-select: none;
356
400
  -ms-user-select: none;
357
401
  user-select: none;
358
402
  }
@@ -377,6 +421,7 @@
377
421
  }
378
422
  .e-inplaceeditor.e-overlay {
379
423
  -webkit-user-select: none;
424
+ -moz-user-select: none;
380
425
  -ms-user-select: none;
381
426
  user-select: none;
382
427
  }
@@ -442,7 +487,8 @@
442
487
  .e-inplaceeditor-tip .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
443
488
  left: auto;
444
489
  right: 5px;
445
- transform: translateX(-30%) translateY(-50%);
490
+ -webkit-transform: translateX(-30%) translateY(-50%);
491
+ transform: translateX(-30%) translateY(-50%);
446
492
  }
447
493
  .e-inplaceeditor .e-editable-form,
448
494
  .e-inplaceeditor-tip .e-editable-form {
@@ -470,6 +516,7 @@
470
516
  opacity: 0.5;
471
517
  pointer-events: none;
472
518
  -webkit-user-select: none;
519
+ -moz-user-select: none;
473
520
  -ms-user-select: none;
474
521
  user-select: none;
475
522
  visibility: visible;
@@ -506,7 +553,8 @@
506
553
  .e-inplaceeditor-tip.e-rtl .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
507
554
  left: 5px;
508
555
  right: auto;
509
- transform: translateX(30%) translateY(-50%);
556
+ -webkit-transform: translateX(30%) translateY(-50%);
557
+ transform: translateX(30%) translateY(-50%);
510
558
  }
511
559
 
512
560
  .e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content,
@@ -558,19 +606,24 @@
558
606
  .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-title {
559
607
  -ms-flex-line-pack: center;
560
608
  align-content: center;
609
+ display: -webkit-box;
561
610
  display: -ms-flexbox;
562
611
  display: flex;
563
- -ms-flex-direction: column;
564
- flex-direction: column;
612
+ -webkit-box-orient: vertical;
613
+ -webkit-box-direction: normal;
614
+ -ms-flex-direction: column;
615
+ flex-direction: column;
565
616
  font-family: "Inter";
566
617
  font-size: 12px;
567
618
  font-weight: 500;
568
619
  height: 30px;
569
- -ms-flex-pack: center;
570
- justify-content: center;
620
+ -webkit-box-pack: center;
621
+ -ms-flex-pack: center;
622
+ justify-content: center;
571
623
  padding: 6px 12px 6px 12px;
572
624
  }
573
625
  .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-wrapper {
626
+ display: -webkit-box;
574
627
  display: -ms-flexbox;
575
628
  display: flex;
576
629
  padding: 12px;
@@ -583,6 +636,7 @@
583
636
  top: auto;
584
637
  }
585
638
  .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-container {
639
+ display: -webkit-box;
586
640
  display: -ms-flexbox;
587
641
  display: flex;
588
642
  padding: 12px;
@@ -718,7 +772,8 @@
718
772
 
719
773
  .e-inplaceeditor-tip.e-tooltip-wrap.e-popup {
720
774
  background: #374151;
721
- box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
775
+ -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
776
+ box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
722
777
  }
723
778
  .e-inplaceeditor-tip.e-tooltip-wrap.e-popup .e-tip-content {
724
779
  border-radius: 4px;
@@ -1 +1,26 @@
1
- @import 'inplace-editor/tailwind-dark.scss';
1
+ @import 'ej2-base/styles/definition/tailwind-dark.scss';
2
+ @import 'ej2-inputs/styles/input/tailwind-dark-definition.scss';
3
+ @import 'ej2-inputs/styles/color-picker/tailwind-dark-definition.scss';
4
+ @import 'ej2-inputs/styles/maskedtextbox/tailwind-dark-definition.scss';
5
+ @import 'ej2-inputs/styles/numerictextbox/tailwind-dark-definition.scss';
6
+ @import 'ej2-inputs/styles/slider/tailwind-dark-definition.scss';
7
+ @import 'ej2-inputs/styles/textbox/tailwind-dark-definition.scss';
8
+ @import 'ej2-buttons/styles/button/tailwind-dark-definition.scss';
9
+ @import 'ej2-buttons/styles/check-box/tailwind-dark-definition.scss';
10
+ @import 'ej2-buttons/styles/radio-button/tailwind-dark-definition.scss';
11
+ @import 'ej2-calendars/styles/calendar/tailwind-dark-definition.scss';
12
+ @import 'ej2-calendars/styles/datepicker/tailwind-dark-definition.scss';
13
+ @import 'ej2-calendars/styles/daterangepicker/tailwind-dark-definition.scss';
14
+ @import 'ej2-calendars/styles/datetimepicker/tailwind-dark-definition.scss';
15
+ @import 'ej2-calendars/styles/timepicker/tailwind-dark-definition.scss';
16
+ @import 'ej2-dropdowns/styles/auto-complete/tailwind-dark-definition.scss';
17
+ @import 'ej2-dropdowns/styles/combo-box/tailwind-dark-definition.scss';
18
+ @import 'ej2-dropdowns/styles/drop-down-list/tailwind-dark-definition.scss';
19
+ @import 'ej2-dropdowns/styles/multi-select/tailwind-dark-definition.scss';
20
+ @import 'ej2-popups/styles/popup/tailwind-dark-definition.scss';
21
+ @import 'ej2-popups/styles/spinner/tailwind-dark-definition.scss';
22
+ @import 'ej2-popups/styles/tooltip/tailwind-dark-definition.scss';
23
+ @import 'ej2-richtexteditor/styles/rich-text-editor/tailwind-dark-definition.scss';
24
+ @import 'inplace-editor/tailwind-dark-definition.scss';
25
+ @import 'inplace-editor/icons/tailwind-dark.scss';
26
+ @import 'inplace-editor/all.scss';