@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
@@ -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 {
@@ -138,20 +141,48 @@
138
141
  color: #fff;
139
142
  }
140
143
 
144
+ .e-bigger.e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon {
145
+ margin-top: -3.2em;
146
+ }
147
+
141
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
+ }
142
159
  @keyframes material-spinner-rotate {
143
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);
144
172
  transform: rotate(0);
145
173
  }
146
174
  100% {
175
+ -webkit-transform: rotate(360deg);
147
176
  transform: rotate(360deg);
148
177
  }
149
178
  }
150
179
  @keyframes fabric-spinner-rotate {
151
180
  0% {
181
+ -webkit-transform: rotate(0);
152
182
  transform: rotate(0);
153
183
  }
154
184
  100% {
185
+ -webkit-transform: rotate(360deg);
155
186
  transform: rotate(360deg);
156
187
  }
157
188
  }
@@ -309,6 +340,7 @@
309
340
  .e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon {
310
341
  bottom: 0;
311
342
  cursor: pointer;
343
+ display: -webkit-inline-box;
312
344
  display: -ms-inline-flexbox;
313
345
  display: inline-flex;
314
346
  height: inherit;
@@ -319,8 +351,10 @@
319
351
  width: 18px;
320
352
  }
321
353
  .e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon::before {
322
- -ms-flex-align: center;
323
- align-items: center;
354
+ -webkit-box-align: center;
355
+ -ms-flex-align: center;
356
+ align-items: center;
357
+ display: -webkit-box;
324
358
  display: -ms-flexbox;
325
359
  display: flex;
326
360
  font-size: 14px;
@@ -330,6 +364,7 @@
330
364
  }
331
365
  .e-inplaceeditor .e-editable-value-wrapper.e-editable-open {
332
366
  -webkit-user-select: none;
367
+ -moz-user-select: none;
333
368
  -ms-user-select: none;
334
369
  user-select: none;
335
370
  }
@@ -362,6 +397,7 @@
362
397
  .e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon {
363
398
  bottom: 0;
364
399
  cursor: pointer;
400
+ display: -webkit-inline-box;
365
401
  display: -ms-inline-flexbox;
366
402
  display: inline-flex;
367
403
  height: inherit;
@@ -372,8 +408,10 @@
372
408
  width: 18px;
373
409
  }
374
410
  .e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon::before {
375
- -ms-flex-align: center;
376
- align-items: center;
411
+ -webkit-box-align: center;
412
+ -ms-flex-align: center;
413
+ align-items: center;
414
+ display: -webkit-box;
377
415
  display: -ms-flexbox;
378
416
  display: flex;
379
417
  font-size: 14px;
@@ -383,6 +421,7 @@
383
421
  }
384
422
  .e-inplaceeditor .e-editable-value-container.e-editable-open {
385
423
  -webkit-user-select: none;
424
+ -moz-user-select: none;
386
425
  -ms-user-select: none;
387
426
  user-select: none;
388
427
  }
@@ -407,6 +446,7 @@
407
446
  }
408
447
  .e-inplaceeditor.e-overlay {
409
448
  -webkit-user-select: none;
449
+ -moz-user-select: none;
410
450
  -ms-user-select: none;
411
451
  user-select: none;
412
452
  }
@@ -472,7 +512,8 @@
472
512
  .e-inplaceeditor-tip .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
473
513
  left: auto;
474
514
  right: 5px;
475
- transform: translateX(-30%) translateY(-50%);
515
+ -webkit-transform: translateX(-30%) translateY(-50%);
516
+ transform: translateX(-30%) translateY(-50%);
476
517
  }
477
518
  .e-inplaceeditor .e-editable-form,
478
519
  .e-inplaceeditor-tip .e-editable-form {
@@ -500,6 +541,7 @@
500
541
  opacity: 0.5;
501
542
  pointer-events: none;
502
543
  -webkit-user-select: none;
544
+ -moz-user-select: none;
503
545
  -ms-user-select: none;
504
546
  user-select: none;
505
547
  visibility: visible;
@@ -536,7 +578,8 @@
536
578
  .e-inplaceeditor-tip.e-rtl .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
537
579
  left: 5px;
538
580
  right: auto;
539
- transform: translateX(30%) translateY(-50%);
581
+ -webkit-transform: translateX(30%) translateY(-50%);
582
+ transform: translateX(30%) translateY(-50%);
540
583
  }
541
584
 
542
585
  .e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content,
@@ -588,19 +631,24 @@
588
631
  .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-title {
589
632
  -ms-flex-line-pack: center;
590
633
  align-content: center;
634
+ display: -webkit-box;
591
635
  display: -ms-flexbox;
592
636
  display: flex;
593
- -ms-flex-direction: column;
594
- flex-direction: column;
637
+ -webkit-box-orient: vertical;
638
+ -webkit-box-direction: normal;
639
+ -ms-flex-direction: column;
640
+ flex-direction: column;
595
641
  font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif, "-apple-system", "BlinkMacSystemFont";
596
642
  font-size: 14px;
597
643
  font-weight: 700;
598
644
  height: 30px;
599
- -ms-flex-pack: center;
600
- justify-content: center;
645
+ -webkit-box-pack: center;
646
+ -ms-flex-pack: center;
647
+ justify-content: center;
601
648
  padding: 0 0 0 12px;
602
649
  }
603
650
  .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-wrapper {
651
+ display: -webkit-box;
604
652
  display: -ms-flexbox;
605
653
  display: flex;
606
654
  padding: 12px;
@@ -613,6 +661,7 @@
613
661
  top: auto;
614
662
  }
615
663
  .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-container {
664
+ display: -webkit-box;
616
665
  display: -ms-flexbox;
617
666
  display: flex;
618
667
  padding: 12px;
@@ -711,7 +760,8 @@
711
760
  .e-inplaceeditor .e-editable-action-buttons .e-btn-cancel.e-icon-btn,
712
761
  .e-inplaceeditor-tip .e-editable-action-buttons .e-btn-save.e-icon-btn,
713
762
  .e-inplaceeditor-tip .e-editable-action-buttons .e-btn-cancel.e-icon-btn {
714
- box-shadow: none;
763
+ -webkit-box-shadow: none;
764
+ box-shadow: none;
715
765
  }
716
766
  .e-inplaceeditor .e-editable-action-buttons .e-btn-save.e-icon-btn .e-btn-icon.e-icons,
717
767
  .e-inplaceeditor .e-editable-action-buttons .e-btn-cancel.e-icon-btn .e-btn-icon.e-icons,
@@ -721,7 +771,8 @@
721
771
  }
722
772
  .e-inplaceeditor-tip.e-tooltip-wrap.e-popup {
723
773
  background: #2a2a2a;
724
- box-shadow: none;
774
+ -webkit-box-shadow: none;
775
+ box-shadow: none;
725
776
  }
726
777
  .e-inplaceeditor-tip.e-tooltip-wrap.e-popup .e-tip-content {
727
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 {
@@ -131,20 +135,48 @@
131
135
  width: 40px;
132
136
  }
133
137
 
138
+ .e-bigger.e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon {
139
+ margin-top: -3.2em;
140
+ }
141
+
134
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
+ }
135
153
  @keyframes material-spinner-rotate {
136
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);
137
166
  transform: rotate(0);
138
167
  }
139
168
  100% {
169
+ -webkit-transform: rotate(360deg);
140
170
  transform: rotate(360deg);
141
171
  }
142
172
  }
143
173
  @keyframes fabric-spinner-rotate {
144
174
  0% {
175
+ -webkit-transform: rotate(0);
145
176
  transform: rotate(0);
146
177
  }
147
178
  100% {
179
+ -webkit-transform: rotate(360deg);
148
180
  transform: rotate(360deg);
149
181
  }
150
182
  }
@@ -443,6 +475,7 @@
443
475
  .e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon {
444
476
  bottom: 0;
445
477
  cursor: pointer;
478
+ display: -webkit-inline-box;
446
479
  display: -ms-inline-flexbox;
447
480
  display: inline-flex;
448
481
  height: inherit;
@@ -453,8 +486,10 @@
453
486
  width: 18px;
454
487
  }
455
488
  .e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon::before {
456
- -ms-flex-align: center;
457
- align-items: center;
489
+ -webkit-box-align: center;
490
+ -ms-flex-align: center;
491
+ align-items: center;
492
+ display: -webkit-box;
458
493
  display: -ms-flexbox;
459
494
  display: flex;
460
495
  font-size: 14px;
@@ -464,6 +499,7 @@
464
499
  }
465
500
  .e-inplaceeditor .e-editable-value-wrapper.e-editable-open {
466
501
  -webkit-user-select: none;
502
+ -moz-user-select: none;
467
503
  -ms-user-select: none;
468
504
  user-select: none;
469
505
  }
@@ -496,6 +532,7 @@
496
532
  .e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon {
497
533
  bottom: 0;
498
534
  cursor: pointer;
535
+ display: -webkit-inline-box;
499
536
  display: -ms-inline-flexbox;
500
537
  display: inline-flex;
501
538
  height: inherit;
@@ -506,8 +543,10 @@
506
543
  width: 18px;
507
544
  }
508
545
  .e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon::before {
509
- -ms-flex-align: center;
510
- align-items: center;
546
+ -webkit-box-align: center;
547
+ -ms-flex-align: center;
548
+ align-items: center;
549
+ display: -webkit-box;
511
550
  display: -ms-flexbox;
512
551
  display: flex;
513
552
  font-size: 14px;
@@ -517,6 +556,7 @@
517
556
  }
518
557
  .e-inplaceeditor .e-editable-value-container.e-editable-open {
519
558
  -webkit-user-select: none;
559
+ -moz-user-select: none;
520
560
  -ms-user-select: none;
521
561
  user-select: none;
522
562
  }
@@ -541,6 +581,7 @@
541
581
  }
542
582
  .e-inplaceeditor.e-overlay {
543
583
  -webkit-user-select: none;
584
+ -moz-user-select: none;
544
585
  -ms-user-select: none;
545
586
  user-select: none;
546
587
  }
@@ -606,7 +647,8 @@
606
647
  .e-inplaceeditor-tip .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
607
648
  left: auto;
608
649
  right: 5px;
609
- transform: translateX(-30%) translateY(-50%);
650
+ -webkit-transform: translateX(-30%) translateY(-50%);
651
+ transform: translateX(-30%) translateY(-50%);
610
652
  }
611
653
  .e-inplaceeditor .e-editable-form,
612
654
  .e-inplaceeditor-tip .e-editable-form {
@@ -634,6 +676,7 @@
634
676
  opacity: 0.5;
635
677
  pointer-events: none;
636
678
  -webkit-user-select: none;
679
+ -moz-user-select: none;
637
680
  -ms-user-select: none;
638
681
  user-select: none;
639
682
  visibility: visible;
@@ -670,7 +713,8 @@
670
713
  .e-inplaceeditor-tip.e-rtl .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
671
714
  left: 5px;
672
715
  right: auto;
673
- transform: translateX(30%) translateY(-50%);
716
+ -webkit-transform: translateX(30%) translateY(-50%);
717
+ transform: translateX(30%) translateY(-50%);
674
718
  }
675
719
 
676
720
  .e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content,
@@ -722,19 +766,24 @@
722
766
  .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-title {
723
767
  -ms-flex-line-pack: center;
724
768
  align-content: center;
769
+ display: -webkit-box;
725
770
  display: -ms-flexbox;
726
771
  display: flex;
727
- -ms-flex-direction: column;
728
- flex-direction: column;
772
+ -webkit-box-orient: vertical;
773
+ -webkit-box-direction: normal;
774
+ -ms-flex-direction: column;
775
+ flex-direction: column;
729
776
  font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif, "-apple-system", "BlinkMacSystemFont";
730
777
  font-size: 14px;
731
778
  font-weight: 700;
732
779
  height: 30px;
733
- -ms-flex-pack: center;
734
- justify-content: center;
780
+ -webkit-box-pack: center;
781
+ -ms-flex-pack: center;
782
+ justify-content: center;
735
783
  padding: 0 0 0 12px;
736
784
  }
737
785
  .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-wrapper {
786
+ display: -webkit-box;
738
787
  display: -ms-flexbox;
739
788
  display: flex;
740
789
  padding: 12px;
@@ -747,6 +796,7 @@
747
796
  top: auto;
748
797
  }
749
798
  .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-container {
799
+ display: -webkit-box;
750
800
  display: -ms-flexbox;
751
801
  display: flex;
752
802
  padding: 12px;
@@ -845,7 +895,8 @@
845
895
  .e-inplaceeditor .e-editable-action-buttons .e-btn-cancel.e-icon-btn,
846
896
  .e-inplaceeditor-tip .e-editable-action-buttons .e-btn-save.e-icon-btn,
847
897
  .e-inplaceeditor-tip .e-editable-action-buttons .e-btn-cancel.e-icon-btn {
848
- 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);
849
900
  }
850
901
  .e-inplaceeditor .e-editable-action-buttons .e-btn-save.e-icon-btn .e-btn-icon.e-icons,
851
902
  .e-inplaceeditor .e-editable-action-buttons .e-btn-cancel.e-icon-btn .e-btn-icon.e-icons,
@@ -855,7 +906,8 @@
855
906
  }
856
907
  .e-inplaceeditor-tip.e-tooltip-wrap.e-popup {
857
908
  background: #fff;
858
- 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);
859
911
  }
860
912
  .e-inplaceeditor-tip.e-tooltip-wrap.e-popup .e-tip-content {
861
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;