@syncfusion/ej2-inplace-editor 25.1.35 → 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 (104) 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/events.d.ts +17 -0
  15. package/dist/ts/inplace-editor/base/index.d.ts +10 -0
  16. package/dist/ts/inplace-editor/base/index.ts +10 -0
  17. package/dist/ts/inplace-editor/base/inplace-editor-model.d.ts +344 -0
  18. package/dist/ts/inplace-editor/base/inplace-editor.d.ts +623 -0
  19. package/dist/ts/inplace-editor/base/inplace-editor.ts +0 -1
  20. package/dist/ts/inplace-editor/base/interface.d.ts +117 -0
  21. package/dist/ts/inplace-editor/base/models-model.d.ts +22 -0
  22. package/dist/ts/inplace-editor/base/models.d.ts +31 -0
  23. package/dist/ts/inplace-editor/base/models.ts +0 -2
  24. package/dist/ts/inplace-editor/base/util.d.ts +28 -0
  25. package/dist/ts/inplace-editor/index.d.ts +5 -0
  26. package/dist/ts/inplace-editor/index.ts +5 -0
  27. package/dist/ts/inplace-editor/modules/auto-complete.d.ts +34 -0
  28. package/dist/ts/inplace-editor/modules/base-module.d.ts +19 -0
  29. package/dist/ts/inplace-editor/modules/color-picker.d.ts +29 -0
  30. package/dist/ts/inplace-editor/modules/combo-box.d.ts +34 -0
  31. package/dist/ts/inplace-editor/modules/date-range-picker.d.ts +29 -0
  32. package/dist/ts/inplace-editor/modules/index.d.ts +12 -0
  33. package/dist/ts/inplace-editor/modules/index.ts +12 -0
  34. package/dist/ts/inplace-editor/modules/multi-select.d.ts +35 -0
  35. package/dist/ts/inplace-editor/modules/rte.d.ts +31 -0
  36. package/dist/ts/inplace-editor/modules/rte.ts +3 -2
  37. package/dist/ts/inplace-editor/modules/slider.d.ts +30 -0
  38. package/dist/ts/inplace-editor/modules/time-picker.d.ts +29 -0
  39. package/package.json +18 -18
  40. package/src/inplace-editor/base/inplace-editor.d.ts +0 -1
  41. package/src/inplace-editor/base/interface.js +0 -1
  42. package/src/inplace-editor/base/models.js +0 -2
  43. package/styles/bootstrap-dark.css +65 -14
  44. package/styles/bootstrap-dark.scss +26 -1
  45. package/styles/bootstrap.css +67 -15
  46. package/styles/bootstrap.scss +26 -1
  47. package/styles/bootstrap4.css +71 -19
  48. package/styles/bootstrap4.scss +26 -1
  49. package/styles/bootstrap5-dark.css +62 -14
  50. package/styles/bootstrap5-dark.scss +26 -1
  51. package/styles/bootstrap5.css +62 -14
  52. package/styles/bootstrap5.scss +26 -1
  53. package/styles/fabric-dark.css +59 -13
  54. package/styles/fabric-dark.scss +26 -1
  55. package/styles/fabric.css +61 -14
  56. package/styles/fabric.scss +26 -1
  57. package/styles/fluent-dark.css +67 -14
  58. package/styles/fluent-dark.scss +26 -1
  59. package/styles/fluent.css +67 -14
  60. package/styles/fluent.scss +26 -1
  61. package/styles/fluent2.css +1996 -0
  62. package/styles/fluent2.scss +26 -0
  63. package/styles/highcontrast-light.css +62 -13
  64. package/styles/highcontrast-light.scss +26 -1
  65. package/styles/highcontrast.css +64 -14
  66. package/styles/highcontrast.scss +26 -1
  67. package/styles/inplace-editor/_bootstrap5.3-definition.scss +69 -0
  68. package/styles/inplace-editor/_fluent2-definition.scss +71 -0
  69. package/styles/inplace-editor/_theme.scss +8 -3
  70. package/styles/inplace-editor/bootstrap-dark.css +65 -14
  71. package/styles/inplace-editor/bootstrap.css +67 -15
  72. package/styles/inplace-editor/bootstrap4.css +71 -19
  73. package/styles/inplace-editor/bootstrap5-dark.css +62 -14
  74. package/styles/inplace-editor/bootstrap5.css +62 -14
  75. package/styles/inplace-editor/fabric-dark.css +59 -13
  76. package/styles/inplace-editor/fabric.css +61 -14
  77. package/styles/inplace-editor/fluent-dark.css +67 -14
  78. package/styles/inplace-editor/fluent.css +67 -14
  79. package/styles/inplace-editor/fluent2.css +1996 -0
  80. package/styles/inplace-editor/fluent2.scss +26 -0
  81. package/styles/inplace-editor/highcontrast-light.css +62 -13
  82. package/styles/inplace-editor/highcontrast.css +64 -14
  83. package/styles/inplace-editor/icons/_bootstrap5.3.scss +19 -0
  84. package/styles/inplace-editor/icons/_fluent2.scss +19 -0
  85. package/styles/inplace-editor/material-dark.css +88 -17
  86. package/styles/inplace-editor/material.css +104 -20
  87. package/styles/inplace-editor/material3-dark.css +101 -21
  88. package/styles/inplace-editor/material3.css +101 -21
  89. package/styles/inplace-editor/tailwind-dark.css +72 -17
  90. package/styles/inplace-editor/tailwind.css +72 -17
  91. package/styles/material-dark.css +88 -17
  92. package/styles/material-dark.scss +26 -1
  93. package/styles/material.css +104 -20
  94. package/styles/material.scss +26 -1
  95. package/styles/material3-dark.css +101 -21
  96. package/styles/material3-dark.scss +26 -1
  97. package/styles/material3.css +101 -21
  98. package/styles/material3.scss +26 -1
  99. package/styles/tailwind-dark.css +72 -17
  100. package/styles/tailwind-dark.scss +26 -1
  101. package/styles/tailwind.css +72 -17
  102. package/styles/tailwind.scss +26 -1
  103. package/CHANGELOG.md +0 -262
  104. package/dist/ej2-inplace-editor.min.js +0 -10
@@ -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 #000000, 0 0 0 3px #ffffff;
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 */ /*! calendar material3 theme variables */
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
- -ms-flex-align: center;
377
- align-items: center;
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
- -ms-flex-align: center;
430
- align-items: center;
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
- -ms-flex-direction: column;
648
- flex-direction: column;
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
- -ms-flex-pack: center;
654
- justify-content: center;
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));
@@ -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));