@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.
- package/.eslintrc.json +3 -2
- package/dist/ej2-inplace-editor.umd.min.js +2 -2
- package/dist/ej2-inplace-editor.umd.min.js.map +1 -1
- package/dist/es6/ej2-inplace-editor.es2015.js +22 -43
- package/dist/es6/ej2-inplace-editor.es2015.js.map +1 -1
- package/dist/es6/ej2-inplace-editor.es5.js +77 -98
- package/dist/es6/ej2-inplace-editor.es5.js.map +1 -1
- package/dist/global/ej2-inplace-editor.min.js +2 -2
- package/dist/global/ej2-inplace-editor.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/dist/ts/index.d.ts +4 -0
- package/dist/ts/index.ts +4 -0
- package/dist/ts/inplace-editor/base/classes.d.ts +63 -0
- package/dist/ts/inplace-editor/base/events.d.ts +17 -0
- package/dist/ts/inplace-editor/base/index.d.ts +10 -0
- package/dist/ts/inplace-editor/base/index.ts +10 -0
- package/dist/ts/inplace-editor/base/inplace-editor-model.d.ts +344 -0
- package/dist/ts/inplace-editor/base/inplace-editor.d.ts +623 -0
- package/dist/ts/inplace-editor/base/inplace-editor.ts +0 -1
- package/dist/ts/inplace-editor/base/interface.d.ts +117 -0
- package/dist/ts/inplace-editor/base/models-model.d.ts +22 -0
- package/dist/ts/inplace-editor/base/models.d.ts +31 -0
- package/dist/ts/inplace-editor/base/models.ts +0 -2
- package/dist/ts/inplace-editor/base/util.d.ts +28 -0
- package/dist/ts/inplace-editor/index.d.ts +5 -0
- package/dist/ts/inplace-editor/index.ts +5 -0
- package/dist/ts/inplace-editor/modules/auto-complete.d.ts +34 -0
- package/dist/ts/inplace-editor/modules/base-module.d.ts +19 -0
- package/dist/ts/inplace-editor/modules/color-picker.d.ts +29 -0
- package/dist/ts/inplace-editor/modules/combo-box.d.ts +34 -0
- package/dist/ts/inplace-editor/modules/date-range-picker.d.ts +29 -0
- package/dist/ts/inplace-editor/modules/index.d.ts +12 -0
- package/dist/ts/inplace-editor/modules/index.ts +12 -0
- package/dist/ts/inplace-editor/modules/multi-select.d.ts +35 -0
- package/dist/ts/inplace-editor/modules/rte.d.ts +31 -0
- package/dist/ts/inplace-editor/modules/rte.ts +3 -2
- package/dist/ts/inplace-editor/modules/slider.d.ts +30 -0
- package/dist/ts/inplace-editor/modules/time-picker.d.ts +29 -0
- package/package.json +18 -18
- package/src/inplace-editor/base/inplace-editor.d.ts +0 -1
- package/src/inplace-editor/base/interface.js +0 -1
- package/src/inplace-editor/base/models.js +0 -2
- package/styles/bootstrap-dark.css +65 -14
- package/styles/bootstrap-dark.scss +26 -1
- package/styles/bootstrap.css +67 -15
- package/styles/bootstrap.scss +26 -1
- package/styles/bootstrap4.css +71 -19
- package/styles/bootstrap4.scss +26 -1
- package/styles/bootstrap5-dark.css +62 -14
- package/styles/bootstrap5-dark.scss +26 -1
- package/styles/bootstrap5.css +62 -14
- package/styles/bootstrap5.scss +26 -1
- package/styles/fabric-dark.css +59 -13
- package/styles/fabric-dark.scss +26 -1
- package/styles/fabric.css +61 -14
- package/styles/fabric.scss +26 -1
- package/styles/fluent-dark.css +67 -14
- package/styles/fluent-dark.scss +26 -1
- package/styles/fluent.css +67 -14
- package/styles/fluent.scss +26 -1
- package/styles/fluent2.css +1996 -0
- package/styles/fluent2.scss +26 -0
- package/styles/highcontrast-light.css +62 -13
- package/styles/highcontrast-light.scss +26 -1
- package/styles/highcontrast.css +64 -14
- package/styles/highcontrast.scss +26 -1
- package/styles/inplace-editor/_bootstrap5.3-definition.scss +69 -0
- package/styles/inplace-editor/_fluent2-definition.scss +71 -0
- package/styles/inplace-editor/_theme.scss +8 -3
- package/styles/inplace-editor/bootstrap-dark.css +65 -14
- package/styles/inplace-editor/bootstrap.css +67 -15
- package/styles/inplace-editor/bootstrap4.css +71 -19
- package/styles/inplace-editor/bootstrap5-dark.css +62 -14
- package/styles/inplace-editor/bootstrap5.css +62 -14
- package/styles/inplace-editor/fabric-dark.css +59 -13
- package/styles/inplace-editor/fabric.css +61 -14
- package/styles/inplace-editor/fluent-dark.css +67 -14
- package/styles/inplace-editor/fluent.css +67 -14
- package/styles/inplace-editor/fluent2.css +1996 -0
- package/styles/inplace-editor/fluent2.scss +26 -0
- package/styles/inplace-editor/highcontrast-light.css +62 -13
- package/styles/inplace-editor/highcontrast.css +64 -14
- package/styles/inplace-editor/icons/_bootstrap5.3.scss +19 -0
- package/styles/inplace-editor/icons/_fluent2.scss +19 -0
- package/styles/inplace-editor/material-dark.css +88 -17
- package/styles/inplace-editor/material.css +104 -20
- package/styles/inplace-editor/material3-dark.css +101 -21
- package/styles/inplace-editor/material3.css +101 -21
- package/styles/inplace-editor/tailwind-dark.css +72 -17
- package/styles/inplace-editor/tailwind.css +72 -17
- package/styles/material-dark.css +88 -17
- package/styles/material-dark.scss +26 -1
- package/styles/material.css +104 -20
- package/styles/material.scss +26 -1
- package/styles/material3-dark.css +101 -21
- package/styles/material3-dark.scss +26 -1
- package/styles/material3.css +101 -21
- package/styles/material3.scss +26 -1
- package/styles/tailwind-dark.css +72 -17
- package/styles/tailwind-dark.scss +26 -1
- package/styles/tailwind.css +72 -17
- package/styles/tailwind.scss +26 -1
- package/CHANGELOG.md +0 -262
- package/dist/ej2-inplace-editor.min.js +0 -10
package/styles/bootstrap4.css
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
/* stylelint-disable property-no-vendor-prefix */
|
|
2
|
-
/* stylelint-disable-line no-empty-source */
|
|
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:
|
|
495
|
-
padding-top:
|
|
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
|
-
-
|
|
679
|
-
align
|
|
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
|
-
-
|
|
733
|
-
align
|
|
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
|
-
-
|
|
962
|
-
|
|
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
|
-
-
|
|
968
|
-
|
|
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;
|
package/styles/bootstrap4.scss
CHANGED
|
@@ -1 +1,26 @@
|
|
|
1
|
-
@import '
|
|
1
|
+
@import 'ej2-base/styles/definition/bootstrap4.scss';
|
|
2
|
+
@import 'ej2-inputs/styles/input/bootstrap4-definition.scss';
|
|
3
|
+
@import 'ej2-inputs/styles/color-picker/bootstrap4-definition.scss';
|
|
4
|
+
@import 'ej2-inputs/styles/maskedtextbox/bootstrap4-definition.scss';
|
|
5
|
+
@import 'ej2-inputs/styles/numerictextbox/bootstrap4-definition.scss';
|
|
6
|
+
@import 'ej2-inputs/styles/slider/bootstrap4-definition.scss';
|
|
7
|
+
@import 'ej2-inputs/styles/textbox/bootstrap4-definition.scss';
|
|
8
|
+
@import 'ej2-buttons/styles/button/bootstrap4-definition.scss';
|
|
9
|
+
@import 'ej2-buttons/styles/check-box/bootstrap4-definition.scss';
|
|
10
|
+
@import 'ej2-buttons/styles/radio-button/bootstrap4-definition.scss';
|
|
11
|
+
@import 'ej2-calendars/styles/calendar/bootstrap4-definition.scss';
|
|
12
|
+
@import 'ej2-calendars/styles/datepicker/bootstrap4-definition.scss';
|
|
13
|
+
@import 'ej2-calendars/styles/daterangepicker/bootstrap4-definition.scss';
|
|
14
|
+
@import 'ej2-calendars/styles/datetimepicker/bootstrap4-definition.scss';
|
|
15
|
+
@import 'ej2-calendars/styles/timepicker/bootstrap4-definition.scss';
|
|
16
|
+
@import 'ej2-dropdowns/styles/auto-complete/bootstrap4-definition.scss';
|
|
17
|
+
@import 'ej2-dropdowns/styles/combo-box/bootstrap4-definition.scss';
|
|
18
|
+
@import 'ej2-dropdowns/styles/drop-down-list/bootstrap4-definition.scss';
|
|
19
|
+
@import 'ej2-dropdowns/styles/multi-select/bootstrap4-definition.scss';
|
|
20
|
+
@import 'ej2-popups/styles/popup/bootstrap4-definition.scss';
|
|
21
|
+
@import 'ej2-popups/styles/spinner/bootstrap4-definition.scss';
|
|
22
|
+
@import 'ej2-popups/styles/tooltip/bootstrap4-definition.scss';
|
|
23
|
+
@import 'ej2-richtexteditor/styles/rich-text-editor/bootstrap4-definition.scss';
|
|
24
|
+
@import 'inplace-editor/bootstrap4-definition.scss';
|
|
25
|
+
@import 'inplace-editor/icons/bootstrap4.scss';
|
|
26
|
+
@import 'inplace-editor/all.scss';
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
/* stylelint-disable property-no-vendor-prefix */
|
|
2
|
-
/* stylelint-disable-line no-empty-source */
|
|
2
|
+
/* stylelint-disable-line no-empty-source */
|
|
3
|
+
/*! calendar bootstrap5 theme variables */
|
|
3
4
|
.e-popup.e-ddl {
|
|
4
5
|
border-radius: 4px;
|
|
5
|
-
box-shadow: none;
|
|
6
|
+
-webkit-box-shadow: none;
|
|
7
|
+
box-shadow: none;
|
|
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;
|
|
@@ -104,11 +107,13 @@
|
|
|
104
107
|
.e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-input-group-icon:active,
|
|
105
108
|
.e-ddl.e-popup .e-input-group:not(.e-disabled) .e-back-icon:active,
|
|
106
109
|
.e-ddl.e-popup .e-input-group:not(.e-disabled) .e-clear-icon:active {
|
|
107
|
-
box-shadow: none;
|
|
110
|
+
-webkit-box-shadow: none;
|
|
111
|
+
box-shadow: none;
|
|
108
112
|
}
|
|
109
113
|
|
|
110
114
|
.e-ddl.e-popup .e-input-group:not(.e-disabled) .e-clear-icon {
|
|
111
115
|
background: transparent;
|
|
116
|
+
display: -webkit-box;
|
|
112
117
|
display: -ms-flexbox;
|
|
113
118
|
display: flex;
|
|
114
119
|
position: relative;
|
|
@@ -184,19 +189,43 @@
|
|
|
184
189
|
|
|
185
190
|
/* stylelint-disable-line no-empty-source */
|
|
186
191
|
/* stylelint-disable property-no-vendor-prefix */
|
|
192
|
+
@-webkit-keyframes material-spinner-rotate {
|
|
193
|
+
0% {
|
|
194
|
+
-webkit-transform: rotate(0);
|
|
195
|
+
transform: rotate(0);
|
|
196
|
+
}
|
|
197
|
+
100% {
|
|
198
|
+
-webkit-transform: rotate(360deg);
|
|
199
|
+
transform: rotate(360deg);
|
|
200
|
+
}
|
|
201
|
+
}
|
|
187
202
|
@keyframes material-spinner-rotate {
|
|
188
203
|
0% {
|
|
204
|
+
-webkit-transform: rotate(0);
|
|
205
|
+
transform: rotate(0);
|
|
206
|
+
}
|
|
207
|
+
100% {
|
|
208
|
+
-webkit-transform: rotate(360deg);
|
|
209
|
+
transform: rotate(360deg);
|
|
210
|
+
}
|
|
211
|
+
}
|
|
212
|
+
@-webkit-keyframes fabric-spinner-rotate {
|
|
213
|
+
0% {
|
|
214
|
+
-webkit-transform: rotate(0);
|
|
189
215
|
transform: rotate(0);
|
|
190
216
|
}
|
|
191
217
|
100% {
|
|
218
|
+
-webkit-transform: rotate(360deg);
|
|
192
219
|
transform: rotate(360deg);
|
|
193
220
|
}
|
|
194
221
|
}
|
|
195
222
|
@keyframes fabric-spinner-rotate {
|
|
196
223
|
0% {
|
|
224
|
+
-webkit-transform: rotate(0);
|
|
197
225
|
transform: rotate(0);
|
|
198
226
|
}
|
|
199
227
|
100% {
|
|
228
|
+
-webkit-transform: rotate(360deg);
|
|
200
229
|
transform: rotate(360deg);
|
|
201
230
|
}
|
|
202
231
|
}
|
|
@@ -335,6 +364,7 @@
|
|
|
335
364
|
.e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon {
|
|
336
365
|
bottom: 0;
|
|
337
366
|
cursor: pointer;
|
|
367
|
+
display: -webkit-inline-box;
|
|
338
368
|
display: -ms-inline-flexbox;
|
|
339
369
|
display: inline-flex;
|
|
340
370
|
height: inherit;
|
|
@@ -345,8 +375,10 @@
|
|
|
345
375
|
width: 20px;
|
|
346
376
|
}
|
|
347
377
|
.e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon::before {
|
|
348
|
-
-
|
|
349
|
-
align
|
|
378
|
+
-webkit-box-align: center;
|
|
379
|
+
-ms-flex-align: center;
|
|
380
|
+
align-items: center;
|
|
381
|
+
display: -webkit-box;
|
|
350
382
|
display: -ms-flexbox;
|
|
351
383
|
display: flex;
|
|
352
384
|
font-size: 14px;
|
|
@@ -356,6 +388,7 @@
|
|
|
356
388
|
}
|
|
357
389
|
.e-inplaceeditor .e-editable-value-wrapper.e-editable-open {
|
|
358
390
|
-webkit-user-select: none;
|
|
391
|
+
-moz-user-select: none;
|
|
359
392
|
-ms-user-select: none;
|
|
360
393
|
user-select: none;
|
|
361
394
|
}
|
|
@@ -388,6 +421,7 @@
|
|
|
388
421
|
.e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon {
|
|
389
422
|
bottom: 0;
|
|
390
423
|
cursor: pointer;
|
|
424
|
+
display: -webkit-inline-box;
|
|
391
425
|
display: -ms-inline-flexbox;
|
|
392
426
|
display: inline-flex;
|
|
393
427
|
height: inherit;
|
|
@@ -398,8 +432,10 @@
|
|
|
398
432
|
width: 20px;
|
|
399
433
|
}
|
|
400
434
|
.e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon::before {
|
|
401
|
-
-
|
|
402
|
-
align
|
|
435
|
+
-webkit-box-align: center;
|
|
436
|
+
-ms-flex-align: center;
|
|
437
|
+
align-items: center;
|
|
438
|
+
display: -webkit-box;
|
|
403
439
|
display: -ms-flexbox;
|
|
404
440
|
display: flex;
|
|
405
441
|
font-size: 14px;
|
|
@@ -409,6 +445,7 @@
|
|
|
409
445
|
}
|
|
410
446
|
.e-inplaceeditor .e-editable-value-container.e-editable-open {
|
|
411
447
|
-webkit-user-select: none;
|
|
448
|
+
-moz-user-select: none;
|
|
412
449
|
-ms-user-select: none;
|
|
413
450
|
user-select: none;
|
|
414
451
|
}
|
|
@@ -433,6 +470,7 @@
|
|
|
433
470
|
}
|
|
434
471
|
.e-inplaceeditor.e-overlay {
|
|
435
472
|
-webkit-user-select: none;
|
|
473
|
+
-moz-user-select: none;
|
|
436
474
|
-ms-user-select: none;
|
|
437
475
|
user-select: none;
|
|
438
476
|
}
|
|
@@ -498,7 +536,8 @@
|
|
|
498
536
|
.e-inplaceeditor-tip .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
|
|
499
537
|
left: auto;
|
|
500
538
|
right: 5px;
|
|
501
|
-
transform: translateX(-30%) translateY(-50%);
|
|
539
|
+
-webkit-transform: translateX(-30%) translateY(-50%);
|
|
540
|
+
transform: translateX(-30%) translateY(-50%);
|
|
502
541
|
}
|
|
503
542
|
.e-inplaceeditor .e-editable-form,
|
|
504
543
|
.e-inplaceeditor-tip .e-editable-form {
|
|
@@ -526,6 +565,7 @@
|
|
|
526
565
|
opacity: 0.5;
|
|
527
566
|
pointer-events: none;
|
|
528
567
|
-webkit-user-select: none;
|
|
568
|
+
-moz-user-select: none;
|
|
529
569
|
-ms-user-select: none;
|
|
530
570
|
user-select: none;
|
|
531
571
|
visibility: visible;
|
|
@@ -562,7 +602,8 @@
|
|
|
562
602
|
.e-inplaceeditor-tip.e-rtl .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
|
|
563
603
|
left: 5px;
|
|
564
604
|
right: auto;
|
|
565
|
-
transform: translateX(30%) translateY(-50%);
|
|
605
|
+
-webkit-transform: translateX(30%) translateY(-50%);
|
|
606
|
+
transform: translateX(30%) translateY(-50%);
|
|
566
607
|
}
|
|
567
608
|
|
|
568
609
|
.e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content,
|
|
@@ -614,19 +655,24 @@
|
|
|
614
655
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-title {
|
|
615
656
|
-ms-flex-line-pack: center;
|
|
616
657
|
align-content: center;
|
|
658
|
+
display: -webkit-box;
|
|
617
659
|
display: -ms-flexbox;
|
|
618
660
|
display: flex;
|
|
619
|
-
-
|
|
620
|
-
|
|
661
|
+
-webkit-box-orient: vertical;
|
|
662
|
+
-webkit-box-direction: normal;
|
|
663
|
+
-ms-flex-direction: column;
|
|
664
|
+
flex-direction: column;
|
|
621
665
|
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
622
666
|
font-size: 12px;
|
|
623
667
|
font-weight: 500;
|
|
624
668
|
height: 36px;
|
|
625
|
-
-
|
|
626
|
-
|
|
669
|
+
-webkit-box-pack: center;
|
|
670
|
+
-ms-flex-pack: center;
|
|
671
|
+
justify-content: center;
|
|
627
672
|
padding: 9px 12px 9px 12px;
|
|
628
673
|
}
|
|
629
674
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-wrapper {
|
|
675
|
+
display: -webkit-box;
|
|
630
676
|
display: -ms-flexbox;
|
|
631
677
|
display: flex;
|
|
632
678
|
padding: 12px;
|
|
@@ -639,6 +685,7 @@
|
|
|
639
685
|
top: auto;
|
|
640
686
|
}
|
|
641
687
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-container {
|
|
688
|
+
display: -webkit-box;
|
|
642
689
|
display: -ms-flexbox;
|
|
643
690
|
display: flex;
|
|
644
691
|
padding: 12px;
|
|
@@ -806,7 +853,8 @@
|
|
|
806
853
|
|
|
807
854
|
.e-inplaceeditor-tip.e-tooltip-wrap.e-popup {
|
|
808
855
|
background: #212529;
|
|
809
|
-
box-shadow: 0 16px 48px rgba(0, 0, 0, 0.175);
|
|
856
|
+
-webkit-box-shadow: 0 16px 48px rgba(0, 0, 0, 0.175);
|
|
857
|
+
box-shadow: 0 16px 48px rgba(0, 0, 0, 0.175);
|
|
810
858
|
}
|
|
811
859
|
.e-inplaceeditor-tip.e-tooltip-wrap.e-popup .e-tip-content {
|
|
812
860
|
border-radius: 4px;
|
|
@@ -1 +1,26 @@
|
|
|
1
|
-
@import '
|
|
1
|
+
@import 'ej2-base/styles/definition/bootstrap5-dark.scss';
|
|
2
|
+
@import 'ej2-inputs/styles/input/bootstrap5-dark-definition.scss';
|
|
3
|
+
@import 'ej2-inputs/styles/color-picker/bootstrap5-dark-definition.scss';
|
|
4
|
+
@import 'ej2-inputs/styles/maskedtextbox/bootstrap5-dark-definition.scss';
|
|
5
|
+
@import 'ej2-inputs/styles/numerictextbox/bootstrap5-dark-definition.scss';
|
|
6
|
+
@import 'ej2-inputs/styles/slider/bootstrap5-dark-definition.scss';
|
|
7
|
+
@import 'ej2-inputs/styles/textbox/bootstrap5-dark-definition.scss';
|
|
8
|
+
@import 'ej2-buttons/styles/button/bootstrap5-dark-definition.scss';
|
|
9
|
+
@import 'ej2-buttons/styles/check-box/bootstrap5-dark-definition.scss';
|
|
10
|
+
@import 'ej2-buttons/styles/radio-button/bootstrap5-dark-definition.scss';
|
|
11
|
+
@import 'ej2-calendars/styles/calendar/bootstrap5-dark-definition.scss';
|
|
12
|
+
@import 'ej2-calendars/styles/datepicker/bootstrap5-dark-definition.scss';
|
|
13
|
+
@import 'ej2-calendars/styles/daterangepicker/bootstrap5-dark-definition.scss';
|
|
14
|
+
@import 'ej2-calendars/styles/datetimepicker/bootstrap5-dark-definition.scss';
|
|
15
|
+
@import 'ej2-calendars/styles/timepicker/bootstrap5-dark-definition.scss';
|
|
16
|
+
@import 'ej2-dropdowns/styles/auto-complete/bootstrap5-dark-definition.scss';
|
|
17
|
+
@import 'ej2-dropdowns/styles/combo-box/bootstrap5-dark-definition.scss';
|
|
18
|
+
@import 'ej2-dropdowns/styles/drop-down-list/bootstrap5-dark-definition.scss';
|
|
19
|
+
@import 'ej2-dropdowns/styles/multi-select/bootstrap5-dark-definition.scss';
|
|
20
|
+
@import 'ej2-popups/styles/popup/bootstrap5-dark-definition.scss';
|
|
21
|
+
@import 'ej2-popups/styles/spinner/bootstrap5-dark-definition.scss';
|
|
22
|
+
@import 'ej2-popups/styles/tooltip/bootstrap5-dark-definition.scss';
|
|
23
|
+
@import 'ej2-richtexteditor/styles/rich-text-editor/bootstrap5-dark-definition.scss';
|
|
24
|
+
@import 'inplace-editor/bootstrap5-dark-definition.scss';
|
|
25
|
+
@import 'inplace-editor/icons/bootstrap5-dark.scss';
|
|
26
|
+
@import 'inplace-editor/all.scss';
|