@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
@@ -2,7 +2,8 @@
2
2
  /* stylelint-disable-line no-empty-source */
3
3
  .e-popup.e-ddl {
4
4
  border-radius: 4px;
5
- box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
5
+ -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
6
+ box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
6
7
  margin-top: 3px;
7
8
  }
8
9
  .e-popup.e-ddl .e-input-group {
@@ -17,6 +18,7 @@
17
18
  }
18
19
 
19
20
  .e-popup.e-ddl .e-filter-parent .e-input-group {
21
+ display: -webkit-box;
20
22
  display: -ms-flexbox;
21
23
  display: flex;
22
24
  width: auto;
@@ -75,7 +77,8 @@
75
77
  .e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-input-group-icon:active,
76
78
  .e-ddl.e-popup .e-input-group:not(.e-disabled) .e-back-icon:active,
77
79
  .e-ddl.e-popup .e-input-group:not(.e-disabled) .e-clear-icon:active {
78
- box-shadow: none;
80
+ -webkit-box-shadow: none;
81
+ box-shadow: none;
79
82
  }
80
83
 
81
84
  .e-ddl.e-popup .e-filter-parent {
@@ -143,19 +146,43 @@
143
146
  }
144
147
 
145
148
  /* stylelint-disable property-no-vendor-prefix */
149
+ @-webkit-keyframes material-spinner-rotate {
150
+ 0% {
151
+ -webkit-transform: rotate(0);
152
+ transform: rotate(0);
153
+ }
154
+ 100% {
155
+ -webkit-transform: rotate(360deg);
156
+ transform: rotate(360deg);
157
+ }
158
+ }
146
159
  @keyframes material-spinner-rotate {
147
160
  0% {
161
+ -webkit-transform: rotate(0);
162
+ transform: rotate(0);
163
+ }
164
+ 100% {
165
+ -webkit-transform: rotate(360deg);
166
+ transform: rotate(360deg);
167
+ }
168
+ }
169
+ @-webkit-keyframes fabric-spinner-rotate {
170
+ 0% {
171
+ -webkit-transform: rotate(0);
148
172
  transform: rotate(0);
149
173
  }
150
174
  100% {
175
+ -webkit-transform: rotate(360deg);
151
176
  transform: rotate(360deg);
152
177
  }
153
178
  }
154
179
  @keyframes fabric-spinner-rotate {
155
180
  0% {
181
+ -webkit-transform: rotate(0);
156
182
  transform: rotate(0);
157
183
  }
158
184
  100% {
185
+ -webkit-transform: rotate(360deg);
159
186
  transform: rotate(360deg);
160
187
  }
161
188
  }
@@ -313,6 +340,7 @@
313
340
  .e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon {
314
341
  bottom: 0;
315
342
  cursor: pointer;
343
+ display: -webkit-inline-box;
316
344
  display: -ms-inline-flexbox;
317
345
  display: inline-flex;
318
346
  height: inherit;
@@ -323,8 +351,10 @@
323
351
  width: 18px;
324
352
  }
325
353
  .e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon::before {
326
- -ms-flex-align: center;
327
- align-items: center;
354
+ -webkit-box-align: center;
355
+ -ms-flex-align: center;
356
+ align-items: center;
357
+ display: -webkit-box;
328
358
  display: -ms-flexbox;
329
359
  display: flex;
330
360
  font-size: 14px;
@@ -334,6 +364,7 @@
334
364
  }
335
365
  .e-inplaceeditor .e-editable-value-wrapper.e-editable-open {
336
366
  -webkit-user-select: none;
367
+ -moz-user-select: none;
337
368
  -ms-user-select: none;
338
369
  user-select: none;
339
370
  }
@@ -366,6 +397,7 @@
366
397
  .e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon {
367
398
  bottom: 0;
368
399
  cursor: pointer;
400
+ display: -webkit-inline-box;
369
401
  display: -ms-inline-flexbox;
370
402
  display: inline-flex;
371
403
  height: inherit;
@@ -376,8 +408,10 @@
376
408
  width: 18px;
377
409
  }
378
410
  .e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon::before {
379
- -ms-flex-align: center;
380
- align-items: center;
411
+ -webkit-box-align: center;
412
+ -ms-flex-align: center;
413
+ align-items: center;
414
+ display: -webkit-box;
381
415
  display: -ms-flexbox;
382
416
  display: flex;
383
417
  font-size: 14px;
@@ -387,6 +421,7 @@
387
421
  }
388
422
  .e-inplaceeditor .e-editable-value-container.e-editable-open {
389
423
  -webkit-user-select: none;
424
+ -moz-user-select: none;
390
425
  -ms-user-select: none;
391
426
  user-select: none;
392
427
  }
@@ -411,6 +446,7 @@
411
446
  }
412
447
  .e-inplaceeditor.e-overlay {
413
448
  -webkit-user-select: none;
449
+ -moz-user-select: none;
414
450
  -ms-user-select: none;
415
451
  user-select: none;
416
452
  }
@@ -476,7 +512,8 @@
476
512
  .e-inplaceeditor-tip .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
477
513
  left: auto;
478
514
  right: 5px;
479
- transform: translateX(-30%) translateY(-50%);
515
+ -webkit-transform: translateX(-30%) translateY(-50%);
516
+ transform: translateX(-30%) translateY(-50%);
480
517
  }
481
518
  .e-inplaceeditor .e-editable-form,
482
519
  .e-inplaceeditor-tip .e-editable-form {
@@ -504,6 +541,7 @@
504
541
  opacity: 0.5;
505
542
  pointer-events: none;
506
543
  -webkit-user-select: none;
544
+ -moz-user-select: none;
507
545
  -ms-user-select: none;
508
546
  user-select: none;
509
547
  visibility: visible;
@@ -540,7 +578,8 @@
540
578
  .e-inplaceeditor-tip.e-rtl .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
541
579
  left: 5px;
542
580
  right: auto;
543
- transform: translateX(30%) translateY(-50%);
581
+ -webkit-transform: translateX(30%) translateY(-50%);
582
+ transform: translateX(30%) translateY(-50%);
544
583
  }
545
584
 
546
585
  .e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content,
@@ -592,19 +631,24 @@
592
631
  .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-title {
593
632
  -ms-flex-line-pack: center;
594
633
  align-content: center;
634
+ display: -webkit-box;
595
635
  display: -ms-flexbox;
596
636
  display: flex;
597
- -ms-flex-direction: column;
598
- flex-direction: column;
637
+ -webkit-box-orient: vertical;
638
+ -webkit-box-direction: normal;
639
+ -ms-flex-direction: column;
640
+ flex-direction: column;
599
641
  font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif, "-apple-system", "BlinkMacSystemFont";
600
642
  font-size: 14px;
601
643
  font-weight: 700;
602
644
  height: 30px;
603
- -ms-flex-pack: center;
604
- justify-content: center;
645
+ -webkit-box-pack: center;
646
+ -ms-flex-pack: center;
647
+ justify-content: center;
605
648
  padding: 0 0 0 12px;
606
649
  }
607
650
  .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-wrapper {
651
+ display: -webkit-box;
608
652
  display: -ms-flexbox;
609
653
  display: flex;
610
654
  padding: 12px;
@@ -617,6 +661,7 @@
617
661
  top: auto;
618
662
  }
619
663
  .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-container {
664
+ display: -webkit-box;
620
665
  display: -ms-flexbox;
621
666
  display: flex;
622
667
  padding: 12px;
@@ -715,7 +760,8 @@
715
760
  .e-inplaceeditor .e-editable-action-buttons .e-btn-cancel.e-icon-btn,
716
761
  .e-inplaceeditor-tip .e-editable-action-buttons .e-btn-save.e-icon-btn,
717
762
  .e-inplaceeditor-tip .e-editable-action-buttons .e-btn-cancel.e-icon-btn {
718
- box-shadow: none;
763
+ -webkit-box-shadow: none;
764
+ box-shadow: none;
719
765
  }
720
766
  .e-inplaceeditor .e-editable-action-buttons .e-btn-save.e-icon-btn .e-btn-icon.e-icons,
721
767
  .e-inplaceeditor .e-editable-action-buttons .e-btn-cancel.e-icon-btn .e-btn-icon.e-icons,
@@ -725,7 +771,8 @@
725
771
  }
726
772
  .e-inplaceeditor-tip.e-tooltip-wrap.e-popup {
727
773
  background: #2a2a2a;
728
- box-shadow: none;
774
+ -webkit-box-shadow: none;
775
+ box-shadow: none;
729
776
  }
730
777
  .e-inplaceeditor-tip.e-tooltip-wrap.e-popup .e-tip-content {
731
778
  border-radius: 4px;
@@ -1,8 +1,10 @@
1
1
  /* stylelint-disable property-no-vendor-prefix */
2
- /* stylelint-disable-line no-empty-source */ /*! calendar bootstrap theme variables */
2
+ /* stylelint-disable-line no-empty-source */
3
+ /*! calendar bootstrap theme variables */
3
4
  .e-popup.e-ddl {
4
5
  border-radius: 4px;
5
- box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
6
+ -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
7
+ box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
6
8
  margin-top: 3px;
7
9
  }
8
10
  .e-popup.e-ddl .e-input-group {
@@ -17,6 +19,7 @@
17
19
  }
18
20
 
19
21
  .e-popup.e-ddl .e-filter-parent .e-input-group {
22
+ display: -webkit-box;
20
23
  display: -ms-flexbox;
21
24
  display: flex;
22
25
  width: auto;
@@ -75,7 +78,8 @@
75
78
  .e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-input-group-icon:active,
76
79
  .e-ddl.e-popup .e-input-group:not(.e-disabled) .e-back-icon:active,
77
80
  .e-ddl.e-popup .e-input-group:not(.e-disabled) .e-clear-icon:active {
78
- box-shadow: none;
81
+ -webkit-box-shadow: none;
82
+ box-shadow: none;
79
83
  }
80
84
 
81
85
  .e-ddl.e-popup .e-filter-parent {
@@ -136,19 +140,43 @@
136
140
  }
137
141
 
138
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
+ }
139
153
  @keyframes material-spinner-rotate {
140
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);
141
166
  transform: rotate(0);
142
167
  }
143
168
  100% {
169
+ -webkit-transform: rotate(360deg);
144
170
  transform: rotate(360deg);
145
171
  }
146
172
  }
147
173
  @keyframes fabric-spinner-rotate {
148
174
  0% {
175
+ -webkit-transform: rotate(0);
149
176
  transform: rotate(0);
150
177
  }
151
178
  100% {
179
+ -webkit-transform: rotate(360deg);
152
180
  transform: rotate(360deg);
153
181
  }
154
182
  }
@@ -447,6 +475,7 @@
447
475
  .e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon {
448
476
  bottom: 0;
449
477
  cursor: pointer;
478
+ display: -webkit-inline-box;
450
479
  display: -ms-inline-flexbox;
451
480
  display: inline-flex;
452
481
  height: inherit;
@@ -457,8 +486,10 @@
457
486
  width: 18px;
458
487
  }
459
488
  .e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon::before {
460
- -ms-flex-align: center;
461
- align-items: center;
489
+ -webkit-box-align: center;
490
+ -ms-flex-align: center;
491
+ align-items: center;
492
+ display: -webkit-box;
462
493
  display: -ms-flexbox;
463
494
  display: flex;
464
495
  font-size: 14px;
@@ -468,6 +499,7 @@
468
499
  }
469
500
  .e-inplaceeditor .e-editable-value-wrapper.e-editable-open {
470
501
  -webkit-user-select: none;
502
+ -moz-user-select: none;
471
503
  -ms-user-select: none;
472
504
  user-select: none;
473
505
  }
@@ -500,6 +532,7 @@
500
532
  .e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon {
501
533
  bottom: 0;
502
534
  cursor: pointer;
535
+ display: -webkit-inline-box;
503
536
  display: -ms-inline-flexbox;
504
537
  display: inline-flex;
505
538
  height: inherit;
@@ -510,8 +543,10 @@
510
543
  width: 18px;
511
544
  }
512
545
  .e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon::before {
513
- -ms-flex-align: center;
514
- align-items: center;
546
+ -webkit-box-align: center;
547
+ -ms-flex-align: center;
548
+ align-items: center;
549
+ display: -webkit-box;
515
550
  display: -ms-flexbox;
516
551
  display: flex;
517
552
  font-size: 14px;
@@ -521,6 +556,7 @@
521
556
  }
522
557
  .e-inplaceeditor .e-editable-value-container.e-editable-open {
523
558
  -webkit-user-select: none;
559
+ -moz-user-select: none;
524
560
  -ms-user-select: none;
525
561
  user-select: none;
526
562
  }
@@ -545,6 +581,7 @@
545
581
  }
546
582
  .e-inplaceeditor.e-overlay {
547
583
  -webkit-user-select: none;
584
+ -moz-user-select: none;
548
585
  -ms-user-select: none;
549
586
  user-select: none;
550
587
  }
@@ -610,7 +647,8 @@
610
647
  .e-inplaceeditor-tip .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
611
648
  left: auto;
612
649
  right: 5px;
613
- transform: translateX(-30%) translateY(-50%);
650
+ -webkit-transform: translateX(-30%) translateY(-50%);
651
+ transform: translateX(-30%) translateY(-50%);
614
652
  }
615
653
  .e-inplaceeditor .e-editable-form,
616
654
  .e-inplaceeditor-tip .e-editable-form {
@@ -638,6 +676,7 @@
638
676
  opacity: 0.5;
639
677
  pointer-events: none;
640
678
  -webkit-user-select: none;
679
+ -moz-user-select: none;
641
680
  -ms-user-select: none;
642
681
  user-select: none;
643
682
  visibility: visible;
@@ -674,7 +713,8 @@
674
713
  .e-inplaceeditor-tip.e-rtl .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
675
714
  left: 5px;
676
715
  right: auto;
677
- transform: translateX(30%) translateY(-50%);
716
+ -webkit-transform: translateX(30%) translateY(-50%);
717
+ transform: translateX(30%) translateY(-50%);
678
718
  }
679
719
 
680
720
  .e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content,
@@ -726,19 +766,24 @@
726
766
  .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-title {
727
767
  -ms-flex-line-pack: center;
728
768
  align-content: center;
769
+ display: -webkit-box;
729
770
  display: -ms-flexbox;
730
771
  display: flex;
731
- -ms-flex-direction: column;
732
- flex-direction: column;
772
+ -webkit-box-orient: vertical;
773
+ -webkit-box-direction: normal;
774
+ -ms-flex-direction: column;
775
+ flex-direction: column;
733
776
  font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif, "-apple-system", "BlinkMacSystemFont";
734
777
  font-size: 14px;
735
778
  font-weight: 700;
736
779
  height: 30px;
737
- -ms-flex-pack: center;
738
- justify-content: center;
780
+ -webkit-box-pack: center;
781
+ -ms-flex-pack: center;
782
+ justify-content: center;
739
783
  padding: 0 0 0 12px;
740
784
  }
741
785
  .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-wrapper {
786
+ display: -webkit-box;
742
787
  display: -ms-flexbox;
743
788
  display: flex;
744
789
  padding: 12px;
@@ -751,6 +796,7 @@
751
796
  top: auto;
752
797
  }
753
798
  .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-container {
799
+ display: -webkit-box;
754
800
  display: -ms-flexbox;
755
801
  display: flex;
756
802
  padding: 12px;
@@ -849,7 +895,8 @@
849
895
  .e-inplaceeditor .e-editable-action-buttons .e-btn-cancel.e-icon-btn,
850
896
  .e-inplaceeditor-tip .e-editable-action-buttons .e-btn-save.e-icon-btn,
851
897
  .e-inplaceeditor-tip .e-editable-action-buttons .e-btn-cancel.e-icon-btn {
852
- box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.25);
898
+ -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.25);
899
+ box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.25);
853
900
  }
854
901
  .e-inplaceeditor .e-editable-action-buttons .e-btn-save.e-icon-btn .e-btn-icon.e-icons,
855
902
  .e-inplaceeditor .e-editable-action-buttons .e-btn-cancel.e-icon-btn .e-btn-icon.e-icons,
@@ -859,7 +906,8 @@
859
906
  }
860
907
  .e-inplaceeditor-tip.e-tooltip-wrap.e-popup {
861
908
  background: #fff;
862
- box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.26);
909
+ -webkit-box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.26);
910
+ box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.26);
863
911
  }
864
912
  .e-inplaceeditor-tip.e-tooltip-wrap.e-popup .e-tip-content {
865
913
  border-radius: 4px;
@@ -1,5 +1,6 @@
1
1
  /* stylelint-disable property-no-vendor-prefix */
2
- /* stylelint-disable-line no-empty-source */ /*! calendar bootstrap theme variables */
2
+ /* stylelint-disable-line no-empty-source */
3
+ /*! calendar bootstrap theme variables */
3
4
  .e-input-group.e-ddl .e-control.e-autocomplete ~ .e-ddl-icon {
4
5
  font-size: 8px;
5
6
  }
@@ -18,7 +19,8 @@
18
19
 
19
20
  .e-popup.e-ddl {
20
21
  border-radius: 4px;
21
- box-shadow: none;
22
+ -webkit-box-shadow: none;
23
+ box-shadow: none;
22
24
  margin-top: 3px;
23
25
  }
24
26
  .e-popup.e-ddl .e-input-group {
@@ -33,6 +35,7 @@
33
35
  }
34
36
 
35
37
  .e-popup.e-ddl .e-filter-parent .e-input-group {
38
+ display: -webkit-box;
36
39
  display: -ms-flexbox;
37
40
  display: flex;
38
41
  width: auto;
@@ -109,11 +112,13 @@
109
112
  .e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-input-group-icon:active,
110
113
  .e-ddl.e-popup .e-input-group:not(.e-disabled) .e-back-icon:active,
111
114
  .e-ddl.e-popup .e-input-group:not(.e-disabled) .e-clear-icon:active {
112
- box-shadow: none;
115
+ -webkit-box-shadow: none;
116
+ box-shadow: none;
113
117
  }
114
118
 
115
119
  .e-ddl.e-popup .e-input-group:not(.e-disabled) .e-clear-icon {
116
120
  background: transparent;
121
+ display: -webkit-box;
117
122
  display: -ms-flexbox;
118
123
  display: flex;
119
124
  position: relative;
@@ -211,10 +216,12 @@
211
216
  }
212
217
 
213
218
  .e-popup.e-multi-select-list-wrapper .e-list-item.e-active.e-item-focus.e-hover {
214
- box-shadow: none;
219
+ -webkit-box-shadow: none;
220
+ box-shadow: none;
215
221
  }
216
222
 
217
223
  .e-bigger .e-ddl.e-popup .e-filter-parent .e-clear-icon {
224
+ display: -webkit-box;
218
225
  display: -ms-flexbox;
219
226
  display: flex;
220
227
  }
@@ -258,19 +265,43 @@
258
265
  }
259
266
 
260
267
  /* stylelint-disable property-no-vendor-prefix */
268
+ @-webkit-keyframes material-spinner-rotate {
269
+ 0% {
270
+ -webkit-transform: rotate(0);
271
+ transform: rotate(0);
272
+ }
273
+ 100% {
274
+ -webkit-transform: rotate(360deg);
275
+ transform: rotate(360deg);
276
+ }
277
+ }
261
278
  @keyframes material-spinner-rotate {
262
279
  0% {
280
+ -webkit-transform: rotate(0);
281
+ transform: rotate(0);
282
+ }
283
+ 100% {
284
+ -webkit-transform: rotate(360deg);
285
+ transform: rotate(360deg);
286
+ }
287
+ }
288
+ @-webkit-keyframes fabric-spinner-rotate {
289
+ 0% {
290
+ -webkit-transform: rotate(0);
263
291
  transform: rotate(0);
264
292
  }
265
293
  100% {
294
+ -webkit-transform: rotate(360deg);
266
295
  transform: rotate(360deg);
267
296
  }
268
297
  }
269
298
  @keyframes fabric-spinner-rotate {
270
299
  0% {
300
+ -webkit-transform: rotate(0);
271
301
  transform: rotate(0);
272
302
  }
273
303
  100% {
304
+ -webkit-transform: rotate(360deg);
274
305
  transform: rotate(360deg);
275
306
  }
276
307
  }
@@ -491,8 +522,8 @@
491
522
  .e-rte-toolbar.e-extended-toolbar .e-toolbar-extended .e-rte-bulletformatlist-dropdown.e-tbar-btn.e-btn:hover,
492
523
  .e-rte-toolbar.e-extended-toolbar .e-toolbar-extended .e-rte-bulletformatlist-dropdown.e-tbar-btn.e-btn.e-active,
493
524
  .e-rte-toolbar.e-extended-toolbar .e-toolbar-extended .e-rte-bulletformatlist-dropdown.e-tbar-btn.e-btn.e-active:hover {
494
- padding-bottom: 0;
495
- padding-top: 0;
525
+ padding-bottom: 1px;
526
+ padding-top: 1px;
496
527
  }
497
528
  .e-rte-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown.e-active,
498
529
  .e-rte-toolbar .e-toolbar-items .e-rte-fontcolor-dropdown.e-active,
@@ -665,6 +696,7 @@
665
696
  .e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon {
666
697
  bottom: 0;
667
698
  cursor: pointer;
699
+ display: -webkit-inline-box;
668
700
  display: -ms-inline-flexbox;
669
701
  display: inline-flex;
670
702
  height: inherit;
@@ -675,8 +707,10 @@
675
707
  width: 18px;
676
708
  }
677
709
  .e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon::before {
678
- -ms-flex-align: center;
679
- align-items: center;
710
+ -webkit-box-align: center;
711
+ -ms-flex-align: center;
712
+ align-items: center;
713
+ display: -webkit-box;
680
714
  display: -ms-flexbox;
681
715
  display: flex;
682
716
  font-size: 14px;
@@ -686,6 +720,7 @@
686
720
  }
687
721
  .e-inplaceeditor .e-editable-value-wrapper.e-editable-open {
688
722
  -webkit-user-select: none;
723
+ -moz-user-select: none;
689
724
  -ms-user-select: none;
690
725
  user-select: none;
691
726
  }
@@ -719,6 +754,7 @@
719
754
  .e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon {
720
755
  bottom: 0;
721
756
  cursor: pointer;
757
+ display: -webkit-inline-box;
722
758
  display: -ms-inline-flexbox;
723
759
  display: inline-flex;
724
760
  height: inherit;
@@ -729,8 +765,10 @@
729
765
  width: 18px;
730
766
  }
731
767
  .e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon::before {
732
- -ms-flex-align: center;
733
- align-items: center;
768
+ -webkit-box-align: center;
769
+ -ms-flex-align: center;
770
+ align-items: center;
771
+ display: -webkit-box;
734
772
  display: -ms-flexbox;
735
773
  display: flex;
736
774
  font-size: 14px;
@@ -740,6 +778,7 @@
740
778
  }
741
779
  .e-inplaceeditor .e-editable-value-container.e-editable-open {
742
780
  -webkit-user-select: none;
781
+ -moz-user-select: none;
743
782
  -ms-user-select: none;
744
783
  user-select: none;
745
784
  }
@@ -764,6 +803,7 @@
764
803
  }
765
804
  .e-inplaceeditor.e-overlay {
766
805
  -webkit-user-select: none;
806
+ -moz-user-select: none;
767
807
  -ms-user-select: none;
768
808
  user-select: none;
769
809
  }
@@ -840,7 +880,8 @@
840
880
  .e-inplaceeditor-tip .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
841
881
  left: auto;
842
882
  right: 5px;
843
- transform: translateX(-30%) translateY(-50%);
883
+ -webkit-transform: translateX(-30%) translateY(-50%);
884
+ transform: translateX(-30%) translateY(-50%);
844
885
  }
845
886
  .e-inplaceeditor .e-editable-form,
846
887
  .e-inplaceeditor-tip .e-editable-form {
@@ -868,6 +909,7 @@
868
909
  opacity: 0.5;
869
910
  pointer-events: none;
870
911
  -webkit-user-select: none;
912
+ -moz-user-select: none;
871
913
  -ms-user-select: none;
872
914
  user-select: none;
873
915
  visibility: visible;
@@ -904,7 +946,8 @@
904
946
  .e-inplaceeditor-tip.e-rtl .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
905
947
  left: 5px;
906
948
  right: auto;
907
- transform: translateX(30%) translateY(-50%);
949
+ -webkit-transform: translateX(30%) translateY(-50%);
950
+ transform: translateX(30%) translateY(-50%);
908
951
  }
909
952
 
910
953
  .e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content,
@@ -956,19 +999,24 @@
956
999
  .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-title {
957
1000
  -ms-flex-line-pack: center;
958
1001
  align-content: center;
1002
+ display: -webkit-box;
959
1003
  display: -ms-flexbox;
960
1004
  display: flex;
961
- -ms-flex-direction: column;
962
- flex-direction: column;
1005
+ -webkit-box-orient: vertical;
1006
+ -webkit-box-direction: normal;
1007
+ -ms-flex-direction: column;
1008
+ flex-direction: column;
963
1009
  font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif, "-apple-system", "BlinkMacSystemFont";
964
1010
  font-size: 14px;
965
1011
  font-weight: 700;
966
1012
  height: 31px;
967
- -ms-flex-pack: center;
968
- justify-content: center;
1013
+ -webkit-box-pack: center;
1014
+ -ms-flex-pack: center;
1015
+ justify-content: center;
969
1016
  padding: 0 0 0 14px;
970
1017
  }
971
1018
  .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-wrapper {
1019
+ display: -webkit-box;
972
1020
  display: -ms-flexbox;
973
1021
  display: flex;
974
1022
  padding: 14px;
@@ -981,6 +1029,7 @@
981
1029
  top: auto;
982
1030
  }
983
1031
  .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-container {
1032
+ display: -webkit-box;
984
1033
  display: -ms-flexbox;
985
1034
  display: flex;
986
1035
  padding: 14px;
@@ -1081,7 +1130,8 @@
1081
1130
  .e-inplaceeditor-tip .e-editable-action-buttons .e-btn-cancel.e-icon-btn {
1082
1131
  background-color: #fff;
1083
1132
  border: 1px solid #ced4da;
1084
- box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.25);
1133
+ -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.25);
1134
+ box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.25);
1085
1135
  }
1086
1136
  .e-inplaceeditor .e-editable-action-buttons .e-btn-save.e-icon-btn .e-btn-icon.e-icons,
1087
1137
  .e-inplaceeditor .e-editable-action-buttons .e-btn-cancel.e-icon-btn .e-btn-icon.e-icons,
@@ -1102,7 +1152,8 @@
1102
1152
  .e-inplaceeditor-tip .e-editable-action-buttons .e-btn-cancel.e-icon-btn:disabled {
1103
1153
  background-color: #fff;
1104
1154
  border: 1px solid #ced4da;
1105
- box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.25);
1155
+ -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.25);
1156
+ box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.25);
1106
1157
  }
1107
1158
  .e-inplaceeditor .e-editable-action-buttons .e-btn-save.e-icon-btn:focus,
1108
1159
  .e-inplaceeditor .e-editable-action-buttons .e-btn-cancel.e-icon-btn:focus,
@@ -1136,7 +1187,8 @@
1136
1187
 
1137
1188
  .e-inplaceeditor-tip.e-tooltip-wrap.e-popup {
1138
1189
  background: #fff;
1139
- box-shadow: none;
1190
+ -webkit-box-shadow: none;
1191
+ box-shadow: none;
1140
1192
  }
1141
1193
  .e-inplaceeditor-tip.e-tooltip-wrap.e-popup .e-tip-content {
1142
1194
  border-radius: 4px;