@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.
- 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/classes.ts +63 -0
- package/dist/ts/inplace-editor/base/events.d.ts +17 -0
- package/dist/ts/inplace-editor/base/events.ts +18 -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 +1758 -0
- package/dist/ts/inplace-editor/base/interface.d.ts +117 -0
- package/dist/ts/inplace-editor/base/interface.ts +127 -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 +45 -0
- package/dist/ts/inplace-editor/base/util.d.ts +28 -0
- package/dist/ts/inplace-editor/base/util.ts +104 -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/auto-complete.ts +65 -0
- package/dist/ts/inplace-editor/modules/base-module.d.ts +19 -0
- package/dist/ts/inplace-editor/modules/base-module.ts +74 -0
- package/dist/ts/inplace-editor/modules/color-picker.d.ts +29 -0
- package/dist/ts/inplace-editor/modules/color-picker.ts +55 -0
- package/dist/ts/inplace-editor/modules/combo-box.d.ts +34 -0
- package/dist/ts/inplace-editor/modules/combo-box.ts +63 -0
- package/dist/ts/inplace-editor/modules/date-range-picker.d.ts +29 -0
- package/dist/ts/inplace-editor/modules/date-range-picker.ts +55 -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/multi-select.ts +88 -0
- package/dist/ts/inplace-editor/modules/rte.d.ts +31 -0
- package/dist/ts/inplace-editor/modules/rte.ts +73 -0
- package/dist/ts/inplace-editor/modules/slider.d.ts +30 -0
- package/dist/ts/inplace-editor/modules/slider.ts +59 -0
- package/dist/ts/inplace-editor/modules/time-picker.d.ts +29 -0
- package/dist/ts/inplace-editor/modules/time-picker.ts +54 -0
- package/package.json +17 -17
- 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 +61 -14
- package/styles/bootstrap-dark.scss +26 -1
- package/styles/bootstrap.css +63 -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 +63 -15
- package/styles/fluent-dark.scss +26 -1
- package/styles/fluent.css +63 -15
- 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 +61 -14
- package/styles/inplace-editor/bootstrap.css +63 -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 +63 -15
- package/styles/inplace-editor/fluent.css +63 -15
- 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 +79 -17
- package/styles/inplace-editor/material.css +95 -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 +79 -17
- package/styles/material-dark.scss +26 -1
- package/styles/material.css +95 -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/fabric.scss
CHANGED
|
@@ -1 +1,26 @@
|
|
|
1
|
-
@import '
|
|
1
|
+
@import 'ej2-base/styles/definition/fabric.scss';
|
|
2
|
+
@import 'ej2-inputs/styles/input/fabric-definition.scss';
|
|
3
|
+
@import 'ej2-inputs/styles/color-picker/fabric-definition.scss';
|
|
4
|
+
@import 'ej2-inputs/styles/maskedtextbox/fabric-definition.scss';
|
|
5
|
+
@import 'ej2-inputs/styles/numerictextbox/fabric-definition.scss';
|
|
6
|
+
@import 'ej2-inputs/styles/slider/fabric-definition.scss';
|
|
7
|
+
@import 'ej2-inputs/styles/textbox/fabric-definition.scss';
|
|
8
|
+
@import 'ej2-buttons/styles/button/fabric-definition.scss';
|
|
9
|
+
@import 'ej2-buttons/styles/check-box/fabric-definition.scss';
|
|
10
|
+
@import 'ej2-buttons/styles/radio-button/fabric-definition.scss';
|
|
11
|
+
@import 'ej2-calendars/styles/calendar/fabric-definition.scss';
|
|
12
|
+
@import 'ej2-calendars/styles/datepicker/fabric-definition.scss';
|
|
13
|
+
@import 'ej2-calendars/styles/daterangepicker/fabric-definition.scss';
|
|
14
|
+
@import 'ej2-calendars/styles/datetimepicker/fabric-definition.scss';
|
|
15
|
+
@import 'ej2-calendars/styles/timepicker/fabric-definition.scss';
|
|
16
|
+
@import 'ej2-dropdowns/styles/auto-complete/fabric-definition.scss';
|
|
17
|
+
@import 'ej2-dropdowns/styles/combo-box/fabric-definition.scss';
|
|
18
|
+
@import 'ej2-dropdowns/styles/drop-down-list/fabric-definition.scss';
|
|
19
|
+
@import 'ej2-dropdowns/styles/multi-select/fabric-definition.scss';
|
|
20
|
+
@import 'ej2-popups/styles/popup/fabric-definition.scss';
|
|
21
|
+
@import 'ej2-popups/styles/spinner/fabric-definition.scss';
|
|
22
|
+
@import 'ej2-popups/styles/tooltip/fabric-definition.scss';
|
|
23
|
+
@import 'ej2-richtexteditor/styles/rich-text-editor/fabric-definition.scss';
|
|
24
|
+
@import 'inplace-editor/fabric-definition.scss';
|
|
25
|
+
@import 'inplace-editor/icons/fabric.scss';
|
|
26
|
+
@import 'inplace-editor/all.scss';
|
package/styles/fluent-dark.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 bootstrap5 theme variables */
|
|
3
4
|
.e-daterangepicker.e-popup .e-calendar .e-header .e-title {
|
|
4
5
|
width: 65%;
|
|
5
6
|
}
|
|
@@ -19,7 +20,8 @@
|
|
|
19
20
|
|
|
20
21
|
.e-popup.e-ddl {
|
|
21
22
|
border-radius: 4px;
|
|
22
|
-
box-shadow: none;
|
|
23
|
+
-webkit-box-shadow: none;
|
|
24
|
+
box-shadow: none;
|
|
23
25
|
margin-top: 1px;
|
|
24
26
|
}
|
|
25
27
|
.e-popup.e-ddl .e-input-group {
|
|
@@ -34,6 +36,7 @@
|
|
|
34
36
|
}
|
|
35
37
|
|
|
36
38
|
.e-popup.e-ddl .e-filter-parent .e-input-group {
|
|
39
|
+
display: -webkit-box;
|
|
37
40
|
display: -ms-flexbox;
|
|
38
41
|
display: flex;
|
|
39
42
|
width: auto;
|
|
@@ -105,11 +108,13 @@
|
|
|
105
108
|
.e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-input-group-icon:active,
|
|
106
109
|
.e-ddl.e-popup .e-input-group:not(.e-disabled) .e-back-icon:active,
|
|
107
110
|
.e-ddl.e-popup .e-input-group:not(.e-disabled) .e-clear-icon:active {
|
|
108
|
-
box-shadow: none;
|
|
111
|
+
-webkit-box-shadow: none;
|
|
112
|
+
box-shadow: none;
|
|
109
113
|
}
|
|
110
114
|
|
|
111
115
|
.e-ddl.e-popup .e-input-group:not(.e-disabled) .e-clear-icon {
|
|
112
116
|
background: none;
|
|
117
|
+
display: -webkit-box;
|
|
113
118
|
display: -ms-flexbox;
|
|
114
119
|
display: flex;
|
|
115
120
|
position: relative;
|
|
@@ -181,24 +186,48 @@
|
|
|
181
186
|
|
|
182
187
|
.e-bigger .e-multiselect.e-control-container .e-multi-select-wrapper.e-down-icon .e-clear-icon,
|
|
183
188
|
.e-bigger.e-multiselect.e-control-container .e-multi-select-wrapper.e-down-icon .e-clear-icon {
|
|
184
|
-
margin-top: -1.
|
|
189
|
+
margin-top: -1.6em;
|
|
185
190
|
}
|
|
186
191
|
|
|
187
192
|
/* stylelint-disable-line no-empty-source */
|
|
188
193
|
/* stylelint-disable property-no-vendor-prefix */
|
|
194
|
+
@-webkit-keyframes material-spinner-rotate {
|
|
195
|
+
0% {
|
|
196
|
+
-webkit-transform: rotate(0);
|
|
197
|
+
transform: rotate(0);
|
|
198
|
+
}
|
|
199
|
+
100% {
|
|
200
|
+
-webkit-transform: rotate(360deg);
|
|
201
|
+
transform: rotate(360deg);
|
|
202
|
+
}
|
|
203
|
+
}
|
|
189
204
|
@keyframes material-spinner-rotate {
|
|
190
205
|
0% {
|
|
206
|
+
-webkit-transform: rotate(0);
|
|
207
|
+
transform: rotate(0);
|
|
208
|
+
}
|
|
209
|
+
100% {
|
|
210
|
+
-webkit-transform: rotate(360deg);
|
|
211
|
+
transform: rotate(360deg);
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
@-webkit-keyframes fabric-spinner-rotate {
|
|
215
|
+
0% {
|
|
216
|
+
-webkit-transform: rotate(0);
|
|
191
217
|
transform: rotate(0);
|
|
192
218
|
}
|
|
193
219
|
100% {
|
|
220
|
+
-webkit-transform: rotate(360deg);
|
|
194
221
|
transform: rotate(360deg);
|
|
195
222
|
}
|
|
196
223
|
}
|
|
197
224
|
@keyframes fabric-spinner-rotate {
|
|
198
225
|
0% {
|
|
226
|
+
-webkit-transform: rotate(0);
|
|
199
227
|
transform: rotate(0);
|
|
200
228
|
}
|
|
201
229
|
100% {
|
|
230
|
+
-webkit-transform: rotate(360deg);
|
|
202
231
|
transform: rotate(360deg);
|
|
203
232
|
}
|
|
204
233
|
}
|
|
@@ -337,6 +366,7 @@
|
|
|
337
366
|
.e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon {
|
|
338
367
|
bottom: 0;
|
|
339
368
|
cursor: pointer;
|
|
369
|
+
display: -webkit-inline-box;
|
|
340
370
|
display: -ms-inline-flexbox;
|
|
341
371
|
display: inline-flex;
|
|
342
372
|
height: inherit;
|
|
@@ -347,8 +377,10 @@
|
|
|
347
377
|
width: 20px;
|
|
348
378
|
}
|
|
349
379
|
.e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon::before {
|
|
350
|
-
-
|
|
351
|
-
align
|
|
380
|
+
-webkit-box-align: center;
|
|
381
|
+
-ms-flex-align: center;
|
|
382
|
+
align-items: center;
|
|
383
|
+
display: -webkit-box;
|
|
352
384
|
display: -ms-flexbox;
|
|
353
385
|
display: flex;
|
|
354
386
|
font-size: 14px;
|
|
@@ -358,6 +390,7 @@
|
|
|
358
390
|
}
|
|
359
391
|
.e-inplaceeditor .e-editable-value-wrapper.e-editable-open {
|
|
360
392
|
-webkit-user-select: none;
|
|
393
|
+
-moz-user-select: none;
|
|
361
394
|
-ms-user-select: none;
|
|
362
395
|
user-select: none;
|
|
363
396
|
}
|
|
@@ -390,6 +423,7 @@
|
|
|
390
423
|
.e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon {
|
|
391
424
|
bottom: 0;
|
|
392
425
|
cursor: pointer;
|
|
426
|
+
display: -webkit-inline-box;
|
|
393
427
|
display: -ms-inline-flexbox;
|
|
394
428
|
display: inline-flex;
|
|
395
429
|
height: inherit;
|
|
@@ -400,8 +434,10 @@
|
|
|
400
434
|
width: 20px;
|
|
401
435
|
}
|
|
402
436
|
.e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon::before {
|
|
403
|
-
-
|
|
404
|
-
align
|
|
437
|
+
-webkit-box-align: center;
|
|
438
|
+
-ms-flex-align: center;
|
|
439
|
+
align-items: center;
|
|
440
|
+
display: -webkit-box;
|
|
405
441
|
display: -ms-flexbox;
|
|
406
442
|
display: flex;
|
|
407
443
|
font-size: 14px;
|
|
@@ -411,6 +447,7 @@
|
|
|
411
447
|
}
|
|
412
448
|
.e-inplaceeditor .e-editable-value-container.e-editable-open {
|
|
413
449
|
-webkit-user-select: none;
|
|
450
|
+
-moz-user-select: none;
|
|
414
451
|
-ms-user-select: none;
|
|
415
452
|
user-select: none;
|
|
416
453
|
}
|
|
@@ -435,6 +472,7 @@
|
|
|
435
472
|
}
|
|
436
473
|
.e-inplaceeditor.e-overlay {
|
|
437
474
|
-webkit-user-select: none;
|
|
475
|
+
-moz-user-select: none;
|
|
438
476
|
-ms-user-select: none;
|
|
439
477
|
user-select: none;
|
|
440
478
|
}
|
|
@@ -500,7 +538,8 @@
|
|
|
500
538
|
.e-inplaceeditor-tip .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
|
|
501
539
|
left: auto;
|
|
502
540
|
right: 5px;
|
|
503
|
-
transform: translateX(-30%) translateY(-50%);
|
|
541
|
+
-webkit-transform: translateX(-30%) translateY(-50%);
|
|
542
|
+
transform: translateX(-30%) translateY(-50%);
|
|
504
543
|
}
|
|
505
544
|
.e-inplaceeditor .e-editable-form,
|
|
506
545
|
.e-inplaceeditor-tip .e-editable-form {
|
|
@@ -528,6 +567,7 @@
|
|
|
528
567
|
opacity: 0.5;
|
|
529
568
|
pointer-events: none;
|
|
530
569
|
-webkit-user-select: none;
|
|
570
|
+
-moz-user-select: none;
|
|
531
571
|
-ms-user-select: none;
|
|
532
572
|
user-select: none;
|
|
533
573
|
visibility: visible;
|
|
@@ -564,7 +604,8 @@
|
|
|
564
604
|
.e-inplaceeditor-tip.e-rtl .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
|
|
565
605
|
left: 5px;
|
|
566
606
|
right: auto;
|
|
567
|
-
transform: translateX(30%) translateY(-50%);
|
|
607
|
+
-webkit-transform: translateX(30%) translateY(-50%);
|
|
608
|
+
transform: translateX(30%) translateY(-50%);
|
|
568
609
|
}
|
|
569
610
|
|
|
570
611
|
.e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content,
|
|
@@ -616,19 +657,24 @@
|
|
|
616
657
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-title {
|
|
617
658
|
-ms-flex-line-pack: center;
|
|
618
659
|
align-content: center;
|
|
660
|
+
display: -webkit-box;
|
|
619
661
|
display: -ms-flexbox;
|
|
620
662
|
display: flex;
|
|
621
|
-
-
|
|
622
|
-
|
|
663
|
+
-webkit-box-orient: vertical;
|
|
664
|
+
-webkit-box-direction: normal;
|
|
665
|
+
-ms-flex-direction: column;
|
|
666
|
+
flex-direction: column;
|
|
623
667
|
font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
|
|
624
668
|
font-size: 16px;
|
|
625
669
|
font-weight: 600;
|
|
626
670
|
height: 24px;
|
|
627
|
-
-
|
|
628
|
-
|
|
671
|
+
-webkit-box-pack: center;
|
|
672
|
+
-ms-flex-pack: center;
|
|
673
|
+
justify-content: center;
|
|
629
674
|
padding: 6px 12px 0 12px;
|
|
630
675
|
}
|
|
631
676
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-wrapper {
|
|
677
|
+
display: -webkit-box;
|
|
632
678
|
display: -ms-flexbox;
|
|
633
679
|
display: flex;
|
|
634
680
|
padding: 18px 12px 12px 12px;
|
|
@@ -641,6 +687,7 @@
|
|
|
641
687
|
top: auto;
|
|
642
688
|
}
|
|
643
689
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-container {
|
|
690
|
+
display: -webkit-box;
|
|
644
691
|
display: -ms-flexbox;
|
|
645
692
|
display: flex;
|
|
646
693
|
padding: 18px 12px 12px 12px;
|
|
@@ -743,7 +790,8 @@
|
|
|
743
790
|
}
|
|
744
791
|
.e-inplaceeditor-tip.e-tooltip-wrap.e-popup {
|
|
745
792
|
background: #252423;
|
|
746
|
-
box-shadow: 0 25.6px 57.6px 0 rgba(0, 0, 0, 0.22), 0 4.8px 14.4px 0 rgba(0, 0, 0, 0.18);
|
|
793
|
+
-webkit-box-shadow: 0 25.6px 57.6px 0 rgba(0, 0, 0, 0.22), 0 4.8px 14.4px 0 rgba(0, 0, 0, 0.18);
|
|
794
|
+
box-shadow: 0 25.6px 57.6px 0 rgba(0, 0, 0, 0.22), 0 4.8px 14.4px 0 rgba(0, 0, 0, 0.18);
|
|
747
795
|
border-radius: 0;
|
|
748
796
|
}
|
|
749
797
|
.e-inplaceeditor-tip.e-tooltip-wrap.e-popup .e-tip-content {
|
package/styles/fluent-dark.scss
CHANGED
|
@@ -1 +1,26 @@
|
|
|
1
|
-
@import '
|
|
1
|
+
@import 'ej2-base/styles/definition/fluent-dark.scss';
|
|
2
|
+
@import 'ej2-inputs/styles/input/fluent-dark-definition.scss';
|
|
3
|
+
@import 'ej2-inputs/styles/color-picker/fluent-dark-definition.scss';
|
|
4
|
+
@import 'ej2-inputs/styles/maskedtextbox/fluent-dark-definition.scss';
|
|
5
|
+
@import 'ej2-inputs/styles/numerictextbox/fluent-dark-definition.scss';
|
|
6
|
+
@import 'ej2-inputs/styles/slider/fluent-dark-definition.scss';
|
|
7
|
+
@import 'ej2-inputs/styles/textbox/fluent-dark-definition.scss';
|
|
8
|
+
@import 'ej2-buttons/styles/button/fluent-dark-definition.scss';
|
|
9
|
+
@import 'ej2-buttons/styles/check-box/fluent-dark-definition.scss';
|
|
10
|
+
@import 'ej2-buttons/styles/radio-button/fluent-dark-definition.scss';
|
|
11
|
+
@import 'ej2-calendars/styles/calendar/fluent-dark-definition.scss';
|
|
12
|
+
@import 'ej2-calendars/styles/datepicker/fluent-dark-definition.scss';
|
|
13
|
+
@import 'ej2-calendars/styles/daterangepicker/fluent-dark-definition.scss';
|
|
14
|
+
@import 'ej2-calendars/styles/datetimepicker/fluent-dark-definition.scss';
|
|
15
|
+
@import 'ej2-calendars/styles/timepicker/fluent-dark-definition.scss';
|
|
16
|
+
@import 'ej2-dropdowns/styles/auto-complete/fluent-dark-definition.scss';
|
|
17
|
+
@import 'ej2-dropdowns/styles/combo-box/fluent-dark-definition.scss';
|
|
18
|
+
@import 'ej2-dropdowns/styles/drop-down-list/fluent-dark-definition.scss';
|
|
19
|
+
@import 'ej2-dropdowns/styles/multi-select/fluent-dark-definition.scss';
|
|
20
|
+
@import 'ej2-popups/styles/popup/fluent-dark-definition.scss';
|
|
21
|
+
@import 'ej2-popups/styles/spinner/fluent-dark-definition.scss';
|
|
22
|
+
@import 'ej2-popups/styles/tooltip/fluent-dark-definition.scss';
|
|
23
|
+
@import 'ej2-richtexteditor/styles/rich-text-editor/fluent-dark-definition.scss';
|
|
24
|
+
@import 'inplace-editor/fluent-dark-definition.scss';
|
|
25
|
+
@import 'inplace-editor/icons/fluent-dark.scss';
|
|
26
|
+
@import 'inplace-editor/all.scss';
|
package/styles/fluent.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 bootstrap5 theme variables */
|
|
3
4
|
.e-daterangepicker.e-popup .e-calendar .e-header .e-title {
|
|
4
5
|
width: 65%;
|
|
5
6
|
}
|
|
@@ -19,7 +20,8 @@
|
|
|
19
20
|
|
|
20
21
|
.e-popup.e-ddl {
|
|
21
22
|
border-radius: 4px;
|
|
22
|
-
box-shadow: none;
|
|
23
|
+
-webkit-box-shadow: none;
|
|
24
|
+
box-shadow: none;
|
|
23
25
|
margin-top: 1px;
|
|
24
26
|
}
|
|
25
27
|
.e-popup.e-ddl .e-input-group {
|
|
@@ -34,6 +36,7 @@
|
|
|
34
36
|
}
|
|
35
37
|
|
|
36
38
|
.e-popup.e-ddl .e-filter-parent .e-input-group {
|
|
39
|
+
display: -webkit-box;
|
|
37
40
|
display: -ms-flexbox;
|
|
38
41
|
display: flex;
|
|
39
42
|
width: auto;
|
|
@@ -105,11 +108,13 @@
|
|
|
105
108
|
.e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-input-group-icon:active,
|
|
106
109
|
.e-ddl.e-popup .e-input-group:not(.e-disabled) .e-back-icon:active,
|
|
107
110
|
.e-ddl.e-popup .e-input-group:not(.e-disabled) .e-clear-icon:active {
|
|
108
|
-
box-shadow: none;
|
|
111
|
+
-webkit-box-shadow: none;
|
|
112
|
+
box-shadow: none;
|
|
109
113
|
}
|
|
110
114
|
|
|
111
115
|
.e-ddl.e-popup .e-input-group:not(.e-disabled) .e-clear-icon {
|
|
112
116
|
background: none;
|
|
117
|
+
display: -webkit-box;
|
|
113
118
|
display: -ms-flexbox;
|
|
114
119
|
display: flex;
|
|
115
120
|
position: relative;
|
|
@@ -181,24 +186,48 @@
|
|
|
181
186
|
|
|
182
187
|
.e-bigger .e-multiselect.e-control-container .e-multi-select-wrapper.e-down-icon .e-clear-icon,
|
|
183
188
|
.e-bigger.e-multiselect.e-control-container .e-multi-select-wrapper.e-down-icon .e-clear-icon {
|
|
184
|
-
margin-top: -1.
|
|
189
|
+
margin-top: -1.6em;
|
|
185
190
|
}
|
|
186
191
|
|
|
187
192
|
/* stylelint-disable-line no-empty-source */
|
|
188
193
|
/* stylelint-disable property-no-vendor-prefix */
|
|
194
|
+
@-webkit-keyframes material-spinner-rotate {
|
|
195
|
+
0% {
|
|
196
|
+
-webkit-transform: rotate(0);
|
|
197
|
+
transform: rotate(0);
|
|
198
|
+
}
|
|
199
|
+
100% {
|
|
200
|
+
-webkit-transform: rotate(360deg);
|
|
201
|
+
transform: rotate(360deg);
|
|
202
|
+
}
|
|
203
|
+
}
|
|
189
204
|
@keyframes material-spinner-rotate {
|
|
190
205
|
0% {
|
|
206
|
+
-webkit-transform: rotate(0);
|
|
207
|
+
transform: rotate(0);
|
|
208
|
+
}
|
|
209
|
+
100% {
|
|
210
|
+
-webkit-transform: rotate(360deg);
|
|
211
|
+
transform: rotate(360deg);
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
@-webkit-keyframes fabric-spinner-rotate {
|
|
215
|
+
0% {
|
|
216
|
+
-webkit-transform: rotate(0);
|
|
191
217
|
transform: rotate(0);
|
|
192
218
|
}
|
|
193
219
|
100% {
|
|
220
|
+
-webkit-transform: rotate(360deg);
|
|
194
221
|
transform: rotate(360deg);
|
|
195
222
|
}
|
|
196
223
|
}
|
|
197
224
|
@keyframes fabric-spinner-rotate {
|
|
198
225
|
0% {
|
|
226
|
+
-webkit-transform: rotate(0);
|
|
199
227
|
transform: rotate(0);
|
|
200
228
|
}
|
|
201
229
|
100% {
|
|
230
|
+
-webkit-transform: rotate(360deg);
|
|
202
231
|
transform: rotate(360deg);
|
|
203
232
|
}
|
|
204
233
|
}
|
|
@@ -337,6 +366,7 @@
|
|
|
337
366
|
.e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon {
|
|
338
367
|
bottom: 0;
|
|
339
368
|
cursor: pointer;
|
|
369
|
+
display: -webkit-inline-box;
|
|
340
370
|
display: -ms-inline-flexbox;
|
|
341
371
|
display: inline-flex;
|
|
342
372
|
height: inherit;
|
|
@@ -347,8 +377,10 @@
|
|
|
347
377
|
width: 20px;
|
|
348
378
|
}
|
|
349
379
|
.e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon::before {
|
|
350
|
-
-
|
|
351
|
-
align
|
|
380
|
+
-webkit-box-align: center;
|
|
381
|
+
-ms-flex-align: center;
|
|
382
|
+
align-items: center;
|
|
383
|
+
display: -webkit-box;
|
|
352
384
|
display: -ms-flexbox;
|
|
353
385
|
display: flex;
|
|
354
386
|
font-size: 14px;
|
|
@@ -358,6 +390,7 @@
|
|
|
358
390
|
}
|
|
359
391
|
.e-inplaceeditor .e-editable-value-wrapper.e-editable-open {
|
|
360
392
|
-webkit-user-select: none;
|
|
393
|
+
-moz-user-select: none;
|
|
361
394
|
-ms-user-select: none;
|
|
362
395
|
user-select: none;
|
|
363
396
|
}
|
|
@@ -390,6 +423,7 @@
|
|
|
390
423
|
.e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon {
|
|
391
424
|
bottom: 0;
|
|
392
425
|
cursor: pointer;
|
|
426
|
+
display: -webkit-inline-box;
|
|
393
427
|
display: -ms-inline-flexbox;
|
|
394
428
|
display: inline-flex;
|
|
395
429
|
height: inherit;
|
|
@@ -400,8 +434,10 @@
|
|
|
400
434
|
width: 20px;
|
|
401
435
|
}
|
|
402
436
|
.e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon::before {
|
|
403
|
-
-
|
|
404
|
-
align
|
|
437
|
+
-webkit-box-align: center;
|
|
438
|
+
-ms-flex-align: center;
|
|
439
|
+
align-items: center;
|
|
440
|
+
display: -webkit-box;
|
|
405
441
|
display: -ms-flexbox;
|
|
406
442
|
display: flex;
|
|
407
443
|
font-size: 14px;
|
|
@@ -411,6 +447,7 @@
|
|
|
411
447
|
}
|
|
412
448
|
.e-inplaceeditor .e-editable-value-container.e-editable-open {
|
|
413
449
|
-webkit-user-select: none;
|
|
450
|
+
-moz-user-select: none;
|
|
414
451
|
-ms-user-select: none;
|
|
415
452
|
user-select: none;
|
|
416
453
|
}
|
|
@@ -435,6 +472,7 @@
|
|
|
435
472
|
}
|
|
436
473
|
.e-inplaceeditor.e-overlay {
|
|
437
474
|
-webkit-user-select: none;
|
|
475
|
+
-moz-user-select: none;
|
|
438
476
|
-ms-user-select: none;
|
|
439
477
|
user-select: none;
|
|
440
478
|
}
|
|
@@ -500,7 +538,8 @@
|
|
|
500
538
|
.e-inplaceeditor-tip .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
|
|
501
539
|
left: auto;
|
|
502
540
|
right: 5px;
|
|
503
|
-
transform: translateX(-30%) translateY(-50%);
|
|
541
|
+
-webkit-transform: translateX(-30%) translateY(-50%);
|
|
542
|
+
transform: translateX(-30%) translateY(-50%);
|
|
504
543
|
}
|
|
505
544
|
.e-inplaceeditor .e-editable-form,
|
|
506
545
|
.e-inplaceeditor-tip .e-editable-form {
|
|
@@ -528,6 +567,7 @@
|
|
|
528
567
|
opacity: 0.5;
|
|
529
568
|
pointer-events: none;
|
|
530
569
|
-webkit-user-select: none;
|
|
570
|
+
-moz-user-select: none;
|
|
531
571
|
-ms-user-select: none;
|
|
532
572
|
user-select: none;
|
|
533
573
|
visibility: visible;
|
|
@@ -564,7 +604,8 @@
|
|
|
564
604
|
.e-inplaceeditor-tip.e-rtl .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
|
|
565
605
|
left: 5px;
|
|
566
606
|
right: auto;
|
|
567
|
-
transform: translateX(30%) translateY(-50%);
|
|
607
|
+
-webkit-transform: translateX(30%) translateY(-50%);
|
|
608
|
+
transform: translateX(30%) translateY(-50%);
|
|
568
609
|
}
|
|
569
610
|
|
|
570
611
|
.e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content,
|
|
@@ -616,19 +657,24 @@
|
|
|
616
657
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-title {
|
|
617
658
|
-ms-flex-line-pack: center;
|
|
618
659
|
align-content: center;
|
|
660
|
+
display: -webkit-box;
|
|
619
661
|
display: -ms-flexbox;
|
|
620
662
|
display: flex;
|
|
621
|
-
-
|
|
622
|
-
|
|
663
|
+
-webkit-box-orient: vertical;
|
|
664
|
+
-webkit-box-direction: normal;
|
|
665
|
+
-ms-flex-direction: column;
|
|
666
|
+
flex-direction: column;
|
|
623
667
|
font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
|
|
624
668
|
font-size: 16px;
|
|
625
669
|
font-weight: 600;
|
|
626
670
|
height: 24px;
|
|
627
|
-
-
|
|
628
|
-
|
|
671
|
+
-webkit-box-pack: center;
|
|
672
|
+
-ms-flex-pack: center;
|
|
673
|
+
justify-content: center;
|
|
629
674
|
padding: 6px 12px 0 12px;
|
|
630
675
|
}
|
|
631
676
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-wrapper {
|
|
677
|
+
display: -webkit-box;
|
|
632
678
|
display: -ms-flexbox;
|
|
633
679
|
display: flex;
|
|
634
680
|
padding: 18px 12px 12px 12px;
|
|
@@ -641,6 +687,7 @@
|
|
|
641
687
|
top: auto;
|
|
642
688
|
}
|
|
643
689
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-container {
|
|
690
|
+
display: -webkit-box;
|
|
644
691
|
display: -ms-flexbox;
|
|
645
692
|
display: flex;
|
|
646
693
|
padding: 18px 12px 12px 12px;
|
|
@@ -743,7 +790,8 @@
|
|
|
743
790
|
}
|
|
744
791
|
.e-inplaceeditor-tip.e-tooltip-wrap.e-popup {
|
|
745
792
|
background: #fff;
|
|
746
|
-
box-shadow: 0 25.6px 57.6px 0 rgba(0, 0, 0, 0.22), 0 4.8px 14.4px 0 rgba(0, 0, 0, 0.18);
|
|
793
|
+
-webkit-box-shadow: 0 25.6px 57.6px 0 rgba(0, 0, 0, 0.22), 0 4.8px 14.4px 0 rgba(0, 0, 0, 0.18);
|
|
794
|
+
box-shadow: 0 25.6px 57.6px 0 rgba(0, 0, 0, 0.22), 0 4.8px 14.4px 0 rgba(0, 0, 0, 0.18);
|
|
747
795
|
border-radius: 0;
|
|
748
796
|
}
|
|
749
797
|
.e-inplaceeditor-tip.e-tooltip-wrap.e-popup .e-tip-content {
|
package/styles/fluent.scss
CHANGED
|
@@ -1 +1,26 @@
|
|
|
1
|
-
@import '
|
|
1
|
+
@import 'ej2-base/styles/definition/fluent.scss';
|
|
2
|
+
@import 'ej2-inputs/styles/input/fluent-definition.scss';
|
|
3
|
+
@import 'ej2-inputs/styles/color-picker/fluent-definition.scss';
|
|
4
|
+
@import 'ej2-inputs/styles/maskedtextbox/fluent-definition.scss';
|
|
5
|
+
@import 'ej2-inputs/styles/numerictextbox/fluent-definition.scss';
|
|
6
|
+
@import 'ej2-inputs/styles/slider/fluent-definition.scss';
|
|
7
|
+
@import 'ej2-inputs/styles/textbox/fluent-definition.scss';
|
|
8
|
+
@import 'ej2-buttons/styles/button/fluent-definition.scss';
|
|
9
|
+
@import 'ej2-buttons/styles/check-box/fluent-definition.scss';
|
|
10
|
+
@import 'ej2-buttons/styles/radio-button/fluent-definition.scss';
|
|
11
|
+
@import 'ej2-calendars/styles/calendar/fluent-definition.scss';
|
|
12
|
+
@import 'ej2-calendars/styles/datepicker/fluent-definition.scss';
|
|
13
|
+
@import 'ej2-calendars/styles/daterangepicker/fluent-definition.scss';
|
|
14
|
+
@import 'ej2-calendars/styles/datetimepicker/fluent-definition.scss';
|
|
15
|
+
@import 'ej2-calendars/styles/timepicker/fluent-definition.scss';
|
|
16
|
+
@import 'ej2-dropdowns/styles/auto-complete/fluent-definition.scss';
|
|
17
|
+
@import 'ej2-dropdowns/styles/combo-box/fluent-definition.scss';
|
|
18
|
+
@import 'ej2-dropdowns/styles/drop-down-list/fluent-definition.scss';
|
|
19
|
+
@import 'ej2-dropdowns/styles/multi-select/fluent-definition.scss';
|
|
20
|
+
@import 'ej2-popups/styles/popup/fluent-definition.scss';
|
|
21
|
+
@import 'ej2-popups/styles/spinner/fluent-definition.scss';
|
|
22
|
+
@import 'ej2-popups/styles/tooltip/fluent-definition.scss';
|
|
23
|
+
@import 'ej2-richtexteditor/styles/rich-text-editor/fluent-definition.scss';
|
|
24
|
+
@import 'inplace-editor/fluent-definition.scss';
|
|
25
|
+
@import 'inplace-editor/icons/fluent.scss';
|
|
26
|
+
@import 'inplace-editor/all.scss';
|