@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
|
@@ -1,13 +1,22 @@
|
|
|
1
1
|
/* stylelint-disable property-no-vendor-prefix */
|
|
2
|
-
/* stylelint-disable-line no-empty-source */
|
|
2
|
+
/* stylelint-disable-line no-empty-source */
|
|
3
|
+
/*! calendar tailwind theme variables */
|
|
3
4
|
.e-ddl.e-control-wrapper .e-ddl-icon::before {
|
|
4
|
-
transform: rotate(0deg);
|
|
5
|
+
-webkit-transform: rotate(0deg);
|
|
6
|
+
transform: rotate(0deg);
|
|
7
|
+
-webkit-transition: -webkit-transform 300ms ease;
|
|
8
|
+
transition: -webkit-transform 300ms ease;
|
|
5
9
|
transition: transform 300ms ease;
|
|
10
|
+
transition: transform 300ms ease, -webkit-transform 300ms ease;
|
|
6
11
|
}
|
|
7
12
|
|
|
8
13
|
.e-ddl.e-control-wrapper.e-icon-anim .e-ddl-icon::before {
|
|
9
|
-
transform: rotate(180deg);
|
|
14
|
+
-webkit-transform: rotate(180deg);
|
|
15
|
+
transform: rotate(180deg);
|
|
16
|
+
-webkit-transition: -webkit-transform 300ms ease;
|
|
17
|
+
transition: -webkit-transform 300ms ease;
|
|
10
18
|
transition: transform 300ms ease;
|
|
19
|
+
transition: transform 300ms ease, -webkit-transform 300ms ease;
|
|
11
20
|
}
|
|
12
21
|
|
|
13
22
|
.e-dropdownbase .e-list-item.e-active.e-hover {
|
|
@@ -24,13 +33,15 @@
|
|
|
24
33
|
}
|
|
25
34
|
|
|
26
35
|
.e-input-group .e-ddl-icon:not(:active)::after {
|
|
27
|
-
animation: none;
|
|
36
|
+
-webkit-animation: none;
|
|
37
|
+
animation: none;
|
|
28
38
|
}
|
|
29
39
|
|
|
30
40
|
.e-ddl.e-popup {
|
|
31
41
|
border: 0;
|
|
32
42
|
border-radius: 4px;
|
|
33
|
-
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
|
43
|
+
-webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
|
44
|
+
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
|
34
45
|
margin-top: 4px;
|
|
35
46
|
}
|
|
36
47
|
|
|
@@ -69,7 +80,8 @@
|
|
|
69
80
|
.e-bigger .e-ddl-device .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
|
|
70
81
|
background: #374151;
|
|
71
82
|
border-width: 0;
|
|
72
|
-
box-shadow: none;
|
|
83
|
+
-webkit-box-shadow: none;
|
|
84
|
+
box-shadow: none;
|
|
73
85
|
margin-bottom: 0;
|
|
74
86
|
}
|
|
75
87
|
|
|
@@ -128,19 +140,43 @@
|
|
|
128
140
|
|
|
129
141
|
/* stylelint-disable-line no-empty-source */
|
|
130
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
|
+
}
|
|
131
153
|
@keyframes material-spinner-rotate {
|
|
132
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);
|
|
133
166
|
transform: rotate(0);
|
|
134
167
|
}
|
|
135
168
|
100% {
|
|
169
|
+
-webkit-transform: rotate(360deg);
|
|
136
170
|
transform: rotate(360deg);
|
|
137
171
|
}
|
|
138
172
|
}
|
|
139
173
|
@keyframes fabric-spinner-rotate {
|
|
140
174
|
0% {
|
|
175
|
+
-webkit-transform: rotate(0);
|
|
141
176
|
transform: rotate(0);
|
|
142
177
|
}
|
|
143
178
|
100% {
|
|
179
|
+
-webkit-transform: rotate(360deg);
|
|
144
180
|
transform: rotate(360deg);
|
|
145
181
|
}
|
|
146
182
|
}
|
|
@@ -279,6 +315,7 @@
|
|
|
279
315
|
.e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon {
|
|
280
316
|
bottom: 0;
|
|
281
317
|
cursor: pointer;
|
|
318
|
+
display: -webkit-inline-box;
|
|
282
319
|
display: -ms-inline-flexbox;
|
|
283
320
|
display: inline-flex;
|
|
284
321
|
height: inherit;
|
|
@@ -289,8 +326,10 @@
|
|
|
289
326
|
width: 20px;
|
|
290
327
|
}
|
|
291
328
|
.e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon::before {
|
|
292
|
-
-
|
|
293
|
-
align
|
|
329
|
+
-webkit-box-align: center;
|
|
330
|
+
-ms-flex-align: center;
|
|
331
|
+
align-items: center;
|
|
332
|
+
display: -webkit-box;
|
|
294
333
|
display: -ms-flexbox;
|
|
295
334
|
display: flex;
|
|
296
335
|
font-size: 14px;
|
|
@@ -300,6 +339,7 @@
|
|
|
300
339
|
}
|
|
301
340
|
.e-inplaceeditor .e-editable-value-wrapper.e-editable-open {
|
|
302
341
|
-webkit-user-select: none;
|
|
342
|
+
-moz-user-select: none;
|
|
303
343
|
-ms-user-select: none;
|
|
304
344
|
user-select: none;
|
|
305
345
|
}
|
|
@@ -332,6 +372,7 @@
|
|
|
332
372
|
.e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon {
|
|
333
373
|
bottom: 0;
|
|
334
374
|
cursor: pointer;
|
|
375
|
+
display: -webkit-inline-box;
|
|
335
376
|
display: -ms-inline-flexbox;
|
|
336
377
|
display: inline-flex;
|
|
337
378
|
height: inherit;
|
|
@@ -342,8 +383,10 @@
|
|
|
342
383
|
width: 20px;
|
|
343
384
|
}
|
|
344
385
|
.e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon::before {
|
|
345
|
-
-
|
|
346
|
-
align
|
|
386
|
+
-webkit-box-align: center;
|
|
387
|
+
-ms-flex-align: center;
|
|
388
|
+
align-items: center;
|
|
389
|
+
display: -webkit-box;
|
|
347
390
|
display: -ms-flexbox;
|
|
348
391
|
display: flex;
|
|
349
392
|
font-size: 14px;
|
|
@@ -353,6 +396,7 @@
|
|
|
353
396
|
}
|
|
354
397
|
.e-inplaceeditor .e-editable-value-container.e-editable-open {
|
|
355
398
|
-webkit-user-select: none;
|
|
399
|
+
-moz-user-select: none;
|
|
356
400
|
-ms-user-select: none;
|
|
357
401
|
user-select: none;
|
|
358
402
|
}
|
|
@@ -377,6 +421,7 @@
|
|
|
377
421
|
}
|
|
378
422
|
.e-inplaceeditor.e-overlay {
|
|
379
423
|
-webkit-user-select: none;
|
|
424
|
+
-moz-user-select: none;
|
|
380
425
|
-ms-user-select: none;
|
|
381
426
|
user-select: none;
|
|
382
427
|
}
|
|
@@ -442,7 +487,8 @@
|
|
|
442
487
|
.e-inplaceeditor-tip .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
|
|
443
488
|
left: auto;
|
|
444
489
|
right: 5px;
|
|
445
|
-
transform: translateX(-30%) translateY(-50%);
|
|
490
|
+
-webkit-transform: translateX(-30%) translateY(-50%);
|
|
491
|
+
transform: translateX(-30%) translateY(-50%);
|
|
446
492
|
}
|
|
447
493
|
.e-inplaceeditor .e-editable-form,
|
|
448
494
|
.e-inplaceeditor-tip .e-editable-form {
|
|
@@ -470,6 +516,7 @@
|
|
|
470
516
|
opacity: 0.5;
|
|
471
517
|
pointer-events: none;
|
|
472
518
|
-webkit-user-select: none;
|
|
519
|
+
-moz-user-select: none;
|
|
473
520
|
-ms-user-select: none;
|
|
474
521
|
user-select: none;
|
|
475
522
|
visibility: visible;
|
|
@@ -506,7 +553,8 @@
|
|
|
506
553
|
.e-inplaceeditor-tip.e-rtl .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
|
|
507
554
|
left: 5px;
|
|
508
555
|
right: auto;
|
|
509
|
-
transform: translateX(30%) translateY(-50%);
|
|
556
|
+
-webkit-transform: translateX(30%) translateY(-50%);
|
|
557
|
+
transform: translateX(30%) translateY(-50%);
|
|
510
558
|
}
|
|
511
559
|
|
|
512
560
|
.e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content,
|
|
@@ -558,19 +606,24 @@
|
|
|
558
606
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-title {
|
|
559
607
|
-ms-flex-line-pack: center;
|
|
560
608
|
align-content: center;
|
|
609
|
+
display: -webkit-box;
|
|
561
610
|
display: -ms-flexbox;
|
|
562
611
|
display: flex;
|
|
563
|
-
-
|
|
564
|
-
|
|
612
|
+
-webkit-box-orient: vertical;
|
|
613
|
+
-webkit-box-direction: normal;
|
|
614
|
+
-ms-flex-direction: column;
|
|
615
|
+
flex-direction: column;
|
|
565
616
|
font-family: "Inter";
|
|
566
617
|
font-size: 12px;
|
|
567
618
|
font-weight: 500;
|
|
568
619
|
height: 30px;
|
|
569
|
-
-
|
|
570
|
-
|
|
620
|
+
-webkit-box-pack: center;
|
|
621
|
+
-ms-flex-pack: center;
|
|
622
|
+
justify-content: center;
|
|
571
623
|
padding: 6px 12px 6px 12px;
|
|
572
624
|
}
|
|
573
625
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-wrapper {
|
|
626
|
+
display: -webkit-box;
|
|
574
627
|
display: -ms-flexbox;
|
|
575
628
|
display: flex;
|
|
576
629
|
padding: 12px;
|
|
@@ -583,6 +636,7 @@
|
|
|
583
636
|
top: auto;
|
|
584
637
|
}
|
|
585
638
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-container {
|
|
639
|
+
display: -webkit-box;
|
|
586
640
|
display: -ms-flexbox;
|
|
587
641
|
display: flex;
|
|
588
642
|
padding: 12px;
|
|
@@ -718,7 +772,8 @@
|
|
|
718
772
|
|
|
719
773
|
.e-inplaceeditor-tip.e-tooltip-wrap.e-popup {
|
|
720
774
|
background: #374151;
|
|
721
|
-
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
|
775
|
+
-webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
|
776
|
+
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
|
722
777
|
}
|
|
723
778
|
.e-inplaceeditor-tip.e-tooltip-wrap.e-popup .e-tip-content {
|
|
724
779
|
border-radius: 4px;
|
|
@@ -1,13 +1,22 @@
|
|
|
1
1
|
/* stylelint-disable property-no-vendor-prefix */
|
|
2
|
-
/* stylelint-disable-line no-empty-source */
|
|
2
|
+
/* stylelint-disable-line no-empty-source */
|
|
3
|
+
/*! calendar tailwind theme variables */
|
|
3
4
|
.e-ddl.e-control-wrapper .e-ddl-icon::before {
|
|
4
|
-
transform: rotate(0deg);
|
|
5
|
+
-webkit-transform: rotate(0deg);
|
|
6
|
+
transform: rotate(0deg);
|
|
7
|
+
-webkit-transition: -webkit-transform 300ms ease;
|
|
8
|
+
transition: -webkit-transform 300ms ease;
|
|
5
9
|
transition: transform 300ms ease;
|
|
10
|
+
transition: transform 300ms ease, -webkit-transform 300ms ease;
|
|
6
11
|
}
|
|
7
12
|
|
|
8
13
|
.e-ddl.e-control-wrapper.e-icon-anim .e-ddl-icon::before {
|
|
9
|
-
transform: rotate(180deg);
|
|
14
|
+
-webkit-transform: rotate(180deg);
|
|
15
|
+
transform: rotate(180deg);
|
|
16
|
+
-webkit-transition: -webkit-transform 300ms ease;
|
|
17
|
+
transition: -webkit-transform 300ms ease;
|
|
10
18
|
transition: transform 300ms ease;
|
|
19
|
+
transition: transform 300ms ease, -webkit-transform 300ms ease;
|
|
11
20
|
}
|
|
12
21
|
|
|
13
22
|
.e-dropdownbase .e-list-item.e-active.e-hover {
|
|
@@ -24,13 +33,15 @@
|
|
|
24
33
|
}
|
|
25
34
|
|
|
26
35
|
.e-input-group .e-ddl-icon:not(:active)::after {
|
|
27
|
-
animation: none;
|
|
36
|
+
-webkit-animation: none;
|
|
37
|
+
animation: none;
|
|
28
38
|
}
|
|
29
39
|
|
|
30
40
|
.e-ddl.e-popup {
|
|
31
41
|
border: 0;
|
|
32
42
|
border-radius: 4px;
|
|
33
|
-
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
|
43
|
+
-webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
|
44
|
+
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
|
34
45
|
margin-top: 4px;
|
|
35
46
|
}
|
|
36
47
|
|
|
@@ -69,7 +80,8 @@
|
|
|
69
80
|
.e-bigger .e-ddl-device .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
|
|
70
81
|
background: #fff;
|
|
71
82
|
border-width: 0;
|
|
72
|
-
box-shadow: none;
|
|
83
|
+
-webkit-box-shadow: none;
|
|
84
|
+
box-shadow: none;
|
|
73
85
|
margin-bottom: 0;
|
|
74
86
|
}
|
|
75
87
|
|
|
@@ -128,19 +140,43 @@
|
|
|
128
140
|
|
|
129
141
|
/* stylelint-disable-line no-empty-source */
|
|
130
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
|
+
}
|
|
131
153
|
@keyframes material-spinner-rotate {
|
|
132
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);
|
|
133
166
|
transform: rotate(0);
|
|
134
167
|
}
|
|
135
168
|
100% {
|
|
169
|
+
-webkit-transform: rotate(360deg);
|
|
136
170
|
transform: rotate(360deg);
|
|
137
171
|
}
|
|
138
172
|
}
|
|
139
173
|
@keyframes fabric-spinner-rotate {
|
|
140
174
|
0% {
|
|
175
|
+
-webkit-transform: rotate(0);
|
|
141
176
|
transform: rotate(0);
|
|
142
177
|
}
|
|
143
178
|
100% {
|
|
179
|
+
-webkit-transform: rotate(360deg);
|
|
144
180
|
transform: rotate(360deg);
|
|
145
181
|
}
|
|
146
182
|
}
|
|
@@ -279,6 +315,7 @@
|
|
|
279
315
|
.e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon {
|
|
280
316
|
bottom: 0;
|
|
281
317
|
cursor: pointer;
|
|
318
|
+
display: -webkit-inline-box;
|
|
282
319
|
display: -ms-inline-flexbox;
|
|
283
320
|
display: inline-flex;
|
|
284
321
|
height: inherit;
|
|
@@ -289,8 +326,10 @@
|
|
|
289
326
|
width: 20px;
|
|
290
327
|
}
|
|
291
328
|
.e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon::before {
|
|
292
|
-
-
|
|
293
|
-
align
|
|
329
|
+
-webkit-box-align: center;
|
|
330
|
+
-ms-flex-align: center;
|
|
331
|
+
align-items: center;
|
|
332
|
+
display: -webkit-box;
|
|
294
333
|
display: -ms-flexbox;
|
|
295
334
|
display: flex;
|
|
296
335
|
font-size: 14px;
|
|
@@ -300,6 +339,7 @@
|
|
|
300
339
|
}
|
|
301
340
|
.e-inplaceeditor .e-editable-value-wrapper.e-editable-open {
|
|
302
341
|
-webkit-user-select: none;
|
|
342
|
+
-moz-user-select: none;
|
|
303
343
|
-ms-user-select: none;
|
|
304
344
|
user-select: none;
|
|
305
345
|
}
|
|
@@ -332,6 +372,7 @@
|
|
|
332
372
|
.e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon {
|
|
333
373
|
bottom: 0;
|
|
334
374
|
cursor: pointer;
|
|
375
|
+
display: -webkit-inline-box;
|
|
335
376
|
display: -ms-inline-flexbox;
|
|
336
377
|
display: inline-flex;
|
|
337
378
|
height: inherit;
|
|
@@ -342,8 +383,10 @@
|
|
|
342
383
|
width: 20px;
|
|
343
384
|
}
|
|
344
385
|
.e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon::before {
|
|
345
|
-
-
|
|
346
|
-
align
|
|
386
|
+
-webkit-box-align: center;
|
|
387
|
+
-ms-flex-align: center;
|
|
388
|
+
align-items: center;
|
|
389
|
+
display: -webkit-box;
|
|
347
390
|
display: -ms-flexbox;
|
|
348
391
|
display: flex;
|
|
349
392
|
font-size: 14px;
|
|
@@ -353,6 +396,7 @@
|
|
|
353
396
|
}
|
|
354
397
|
.e-inplaceeditor .e-editable-value-container.e-editable-open {
|
|
355
398
|
-webkit-user-select: none;
|
|
399
|
+
-moz-user-select: none;
|
|
356
400
|
-ms-user-select: none;
|
|
357
401
|
user-select: none;
|
|
358
402
|
}
|
|
@@ -377,6 +421,7 @@
|
|
|
377
421
|
}
|
|
378
422
|
.e-inplaceeditor.e-overlay {
|
|
379
423
|
-webkit-user-select: none;
|
|
424
|
+
-moz-user-select: none;
|
|
380
425
|
-ms-user-select: none;
|
|
381
426
|
user-select: none;
|
|
382
427
|
}
|
|
@@ -442,7 +487,8 @@
|
|
|
442
487
|
.e-inplaceeditor-tip .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
|
|
443
488
|
left: auto;
|
|
444
489
|
right: 5px;
|
|
445
|
-
transform: translateX(-30%) translateY(-50%);
|
|
490
|
+
-webkit-transform: translateX(-30%) translateY(-50%);
|
|
491
|
+
transform: translateX(-30%) translateY(-50%);
|
|
446
492
|
}
|
|
447
493
|
.e-inplaceeditor .e-editable-form,
|
|
448
494
|
.e-inplaceeditor-tip .e-editable-form {
|
|
@@ -470,6 +516,7 @@
|
|
|
470
516
|
opacity: 0.5;
|
|
471
517
|
pointer-events: none;
|
|
472
518
|
-webkit-user-select: none;
|
|
519
|
+
-moz-user-select: none;
|
|
473
520
|
-ms-user-select: none;
|
|
474
521
|
user-select: none;
|
|
475
522
|
visibility: visible;
|
|
@@ -506,7 +553,8 @@
|
|
|
506
553
|
.e-inplaceeditor-tip.e-rtl .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
|
|
507
554
|
left: 5px;
|
|
508
555
|
right: auto;
|
|
509
|
-
transform: translateX(30%) translateY(-50%);
|
|
556
|
+
-webkit-transform: translateX(30%) translateY(-50%);
|
|
557
|
+
transform: translateX(30%) translateY(-50%);
|
|
510
558
|
}
|
|
511
559
|
|
|
512
560
|
.e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content,
|
|
@@ -558,19 +606,24 @@
|
|
|
558
606
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-title {
|
|
559
607
|
-ms-flex-line-pack: center;
|
|
560
608
|
align-content: center;
|
|
609
|
+
display: -webkit-box;
|
|
561
610
|
display: -ms-flexbox;
|
|
562
611
|
display: flex;
|
|
563
|
-
-
|
|
564
|
-
|
|
612
|
+
-webkit-box-orient: vertical;
|
|
613
|
+
-webkit-box-direction: normal;
|
|
614
|
+
-ms-flex-direction: column;
|
|
615
|
+
flex-direction: column;
|
|
565
616
|
font-family: "Inter";
|
|
566
617
|
font-size: 12px;
|
|
567
618
|
font-weight: 500;
|
|
568
619
|
height: 30px;
|
|
569
|
-
-
|
|
570
|
-
|
|
620
|
+
-webkit-box-pack: center;
|
|
621
|
+
-ms-flex-pack: center;
|
|
622
|
+
justify-content: center;
|
|
571
623
|
padding: 6px 12px 6px 12px;
|
|
572
624
|
}
|
|
573
625
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-wrapper {
|
|
626
|
+
display: -webkit-box;
|
|
574
627
|
display: -ms-flexbox;
|
|
575
628
|
display: flex;
|
|
576
629
|
padding: 12px;
|
|
@@ -583,6 +636,7 @@
|
|
|
583
636
|
top: auto;
|
|
584
637
|
}
|
|
585
638
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-container {
|
|
639
|
+
display: -webkit-box;
|
|
586
640
|
display: -ms-flexbox;
|
|
587
641
|
display: flex;
|
|
588
642
|
padding: 12px;
|
|
@@ -718,7 +772,8 @@
|
|
|
718
772
|
|
|
719
773
|
.e-inplaceeditor-tip.e-tooltip-wrap.e-popup {
|
|
720
774
|
background: #fff;
|
|
721
|
-
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
|
775
|
+
-webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
|
776
|
+
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
|
722
777
|
}
|
|
723
778
|
.e-inplaceeditor-tip.e-tooltip-wrap.e-popup .e-tip-content {
|
|
724
779
|
border-radius: 4px;
|
package/styles/material-dark.css
CHANGED
|
@@ -1,14 +1,26 @@
|
|
|
1
1
|
/* stylelint-disable property-no-vendor-prefix */
|
|
2
|
+
@-webkit-keyframes e-input-ripple {
|
|
3
|
+
100% {
|
|
4
|
+
opacity: 0;
|
|
5
|
+
-webkit-transform: scale(4);
|
|
6
|
+
transform: scale(4);
|
|
7
|
+
}
|
|
8
|
+
}
|
|
2
9
|
@keyframes e-input-ripple {
|
|
3
10
|
100% {
|
|
4
11
|
opacity: 0;
|
|
5
|
-
transform: scale(4);
|
|
12
|
+
-webkit-transform: scale(4);
|
|
13
|
+
transform: scale(4);
|
|
6
14
|
}
|
|
7
15
|
}
|
|
8
16
|
/* stylelint-disable-line no-empty-source */
|
|
9
17
|
.e-ddl.e-control-wrapper .e-ddl-icon::before {
|
|
10
|
-
transform: rotate(0deg);
|
|
18
|
+
-webkit-transform: rotate(0deg);
|
|
19
|
+
transform: rotate(0deg);
|
|
20
|
+
-webkit-transition: -webkit-transform 300ms ease;
|
|
21
|
+
transition: -webkit-transform 300ms ease;
|
|
11
22
|
transition: transform 300ms ease;
|
|
23
|
+
transition: transform 300ms ease, -webkit-transform 300ms ease;
|
|
12
24
|
}
|
|
13
25
|
|
|
14
26
|
.e-popup.e-ddl .e-dropdownbase {
|
|
@@ -16,8 +28,12 @@
|
|
|
16
28
|
}
|
|
17
29
|
|
|
18
30
|
.e-ddl.e-control-wrapper.e-icon-anim .e-ddl-icon::before {
|
|
19
|
-
transform: rotate(180deg);
|
|
31
|
+
-webkit-transform: rotate(180deg);
|
|
32
|
+
transform: rotate(180deg);
|
|
33
|
+
-webkit-transition: -webkit-transform 300ms ease;
|
|
34
|
+
transition: -webkit-transform 300ms ease;
|
|
20
35
|
transition: transform 300ms ease;
|
|
36
|
+
transition: transform 300ms ease, -webkit-transform 300ms ease;
|
|
21
37
|
}
|
|
22
38
|
|
|
23
39
|
.e-dropdownbase .e-list-item.e-active.e-hover {
|
|
@@ -34,12 +50,14 @@
|
|
|
34
50
|
}
|
|
35
51
|
|
|
36
52
|
.e-input-group .e-ddl-icon:not(:active)::after {
|
|
37
|
-
animation: none;
|
|
53
|
+
-webkit-animation: none;
|
|
54
|
+
animation: none;
|
|
38
55
|
}
|
|
39
56
|
|
|
40
57
|
.e-ddl.e-popup {
|
|
41
58
|
border: 0;
|
|
42
|
-
box-shadow: 0 2px 3px 1px rgba(0, 0, 0, 0.21);
|
|
59
|
+
-webkit-box-shadow: 0 2px 3px 1px rgba(0, 0, 0, 0.21);
|
|
60
|
+
box-shadow: 0 2px 3px 1px rgba(0, 0, 0, 0.21);
|
|
43
61
|
margin-top: 2px;
|
|
44
62
|
}
|
|
45
63
|
|
|
@@ -55,7 +73,8 @@
|
|
|
55
73
|
.e-bigger .e-ddl-device .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
|
|
56
74
|
background: #f5f5f5;
|
|
57
75
|
border-width: 0;
|
|
58
|
-
box-shadow: none;
|
|
76
|
+
-webkit-box-shadow: none;
|
|
77
|
+
box-shadow: none;
|
|
59
78
|
margin-bottom: 0;
|
|
60
79
|
}
|
|
61
80
|
|
|
@@ -122,19 +141,43 @@
|
|
|
122
141
|
}
|
|
123
142
|
|
|
124
143
|
/* stylelint-disable property-no-vendor-prefix */
|
|
144
|
+
@-webkit-keyframes material-spinner-rotate {
|
|
145
|
+
0% {
|
|
146
|
+
-webkit-transform: rotate(0deg);
|
|
147
|
+
transform: rotate(0deg);
|
|
148
|
+
}
|
|
149
|
+
100% {
|
|
150
|
+
-webkit-transform: rotate(360deg);
|
|
151
|
+
transform: rotate(360deg);
|
|
152
|
+
}
|
|
153
|
+
}
|
|
125
154
|
@keyframes material-spinner-rotate {
|
|
126
155
|
0% {
|
|
156
|
+
-webkit-transform: rotate(0deg);
|
|
157
|
+
transform: rotate(0deg);
|
|
158
|
+
}
|
|
159
|
+
100% {
|
|
160
|
+
-webkit-transform: rotate(360deg);
|
|
161
|
+
transform: rotate(360deg);
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
@-webkit-keyframes fabric-spinner-rotate {
|
|
165
|
+
0% {
|
|
166
|
+
-webkit-transform: rotate(0deg);
|
|
127
167
|
transform: rotate(0deg);
|
|
128
168
|
}
|
|
129
169
|
100% {
|
|
170
|
+
-webkit-transform: rotate(360deg);
|
|
130
171
|
transform: rotate(360deg);
|
|
131
172
|
}
|
|
132
173
|
}
|
|
133
174
|
@keyframes fabric-spinner-rotate {
|
|
134
175
|
0% {
|
|
176
|
+
-webkit-transform: rotate(0deg);
|
|
135
177
|
transform: rotate(0deg);
|
|
136
178
|
}
|
|
137
179
|
100% {
|
|
180
|
+
-webkit-transform: rotate(360deg);
|
|
138
181
|
transform: rotate(360deg);
|
|
139
182
|
}
|
|
140
183
|
}
|
|
@@ -281,6 +324,7 @@
|
|
|
281
324
|
.e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon {
|
|
282
325
|
bottom: 0;
|
|
283
326
|
cursor: pointer;
|
|
327
|
+
display: -webkit-inline-box;
|
|
284
328
|
display: -ms-inline-flexbox;
|
|
285
329
|
display: inline-flex;
|
|
286
330
|
height: inherit;
|
|
@@ -291,8 +335,10 @@
|
|
|
291
335
|
width: 18px;
|
|
292
336
|
}
|
|
293
337
|
.e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon::before {
|
|
294
|
-
-
|
|
295
|
-
align
|
|
338
|
+
-webkit-box-align: center;
|
|
339
|
+
-ms-flex-align: center;
|
|
340
|
+
align-items: center;
|
|
341
|
+
display: -webkit-box;
|
|
296
342
|
display: -ms-flexbox;
|
|
297
343
|
display: flex;
|
|
298
344
|
font-size: 14px;
|
|
@@ -302,6 +348,7 @@
|
|
|
302
348
|
}
|
|
303
349
|
.e-inplaceeditor .e-editable-value-wrapper.e-editable-open {
|
|
304
350
|
-webkit-user-select: none;
|
|
351
|
+
-moz-user-select: none;
|
|
305
352
|
-ms-user-select: none;
|
|
306
353
|
user-select: none;
|
|
307
354
|
}
|
|
@@ -334,6 +381,7 @@
|
|
|
334
381
|
.e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon {
|
|
335
382
|
bottom: 0;
|
|
336
383
|
cursor: pointer;
|
|
384
|
+
display: -webkit-inline-box;
|
|
337
385
|
display: -ms-inline-flexbox;
|
|
338
386
|
display: inline-flex;
|
|
339
387
|
height: inherit;
|
|
@@ -344,8 +392,10 @@
|
|
|
344
392
|
width: 18px;
|
|
345
393
|
}
|
|
346
394
|
.e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon::before {
|
|
347
|
-
-
|
|
348
|
-
align
|
|
395
|
+
-webkit-box-align: center;
|
|
396
|
+
-ms-flex-align: center;
|
|
397
|
+
align-items: center;
|
|
398
|
+
display: -webkit-box;
|
|
349
399
|
display: -ms-flexbox;
|
|
350
400
|
display: flex;
|
|
351
401
|
font-size: 14px;
|
|
@@ -355,6 +405,7 @@
|
|
|
355
405
|
}
|
|
356
406
|
.e-inplaceeditor .e-editable-value-container.e-editable-open {
|
|
357
407
|
-webkit-user-select: none;
|
|
408
|
+
-moz-user-select: none;
|
|
358
409
|
-ms-user-select: none;
|
|
359
410
|
user-select: none;
|
|
360
411
|
}
|
|
@@ -379,6 +430,7 @@
|
|
|
379
430
|
}
|
|
380
431
|
.e-inplaceeditor.e-overlay {
|
|
381
432
|
-webkit-user-select: none;
|
|
433
|
+
-moz-user-select: none;
|
|
382
434
|
-ms-user-select: none;
|
|
383
435
|
user-select: none;
|
|
384
436
|
}
|
|
@@ -444,7 +496,8 @@
|
|
|
444
496
|
.e-inplaceeditor-tip .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
|
|
445
497
|
left: auto;
|
|
446
498
|
right: 5px;
|
|
447
|
-
transform: translateX(-30%) translateY(-50%);
|
|
499
|
+
-webkit-transform: translateX(-30%) translateY(-50%);
|
|
500
|
+
transform: translateX(-30%) translateY(-50%);
|
|
448
501
|
}
|
|
449
502
|
.e-inplaceeditor .e-editable-form,
|
|
450
503
|
.e-inplaceeditor-tip .e-editable-form {
|
|
@@ -472,6 +525,7 @@
|
|
|
472
525
|
opacity: 0.5;
|
|
473
526
|
pointer-events: none;
|
|
474
527
|
-webkit-user-select: none;
|
|
528
|
+
-moz-user-select: none;
|
|
475
529
|
-ms-user-select: none;
|
|
476
530
|
user-select: none;
|
|
477
531
|
visibility: visible;
|
|
@@ -508,7 +562,8 @@
|
|
|
508
562
|
.e-inplaceeditor-tip.e-rtl .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
|
|
509
563
|
left: 5px;
|
|
510
564
|
right: auto;
|
|
511
|
-
transform: translateX(30%) translateY(-50%);
|
|
565
|
+
-webkit-transform: translateX(30%) translateY(-50%);
|
|
566
|
+
transform: translateX(30%) translateY(-50%);
|
|
512
567
|
}
|
|
513
568
|
|
|
514
569
|
.e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content,
|
|
@@ -560,19 +615,24 @@
|
|
|
560
615
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-title {
|
|
561
616
|
-ms-flex-line-pack: center;
|
|
562
617
|
align-content: center;
|
|
618
|
+
display: -webkit-box;
|
|
563
619
|
display: -ms-flexbox;
|
|
564
620
|
display: flex;
|
|
565
|
-
-
|
|
566
|
-
|
|
621
|
+
-webkit-box-orient: vertical;
|
|
622
|
+
-webkit-box-direction: normal;
|
|
623
|
+
-ms-flex-direction: column;
|
|
624
|
+
flex-direction: column;
|
|
567
625
|
font-family: "Roboto", "Segoe UI", "GeezaPro", "DejaVu Serif", "sans-serif", "-apple-system", "BlinkMacSystemFont";
|
|
568
626
|
font-size: 13px;
|
|
569
627
|
font-weight: 500;
|
|
570
628
|
height: 30px;
|
|
571
|
-
-
|
|
572
|
-
|
|
629
|
+
-webkit-box-pack: center;
|
|
630
|
+
-ms-flex-pack: center;
|
|
631
|
+
justify-content: center;
|
|
573
632
|
padding: 0 0 0 10px;
|
|
574
633
|
}
|
|
575
634
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-wrapper {
|
|
635
|
+
display: -webkit-box;
|
|
576
636
|
display: -ms-flexbox;
|
|
577
637
|
display: flex;
|
|
578
638
|
padding: 16px;
|
|
@@ -585,6 +645,7 @@
|
|
|
585
645
|
top: auto;
|
|
586
646
|
}
|
|
587
647
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-container {
|
|
648
|
+
display: -webkit-box;
|
|
588
649
|
display: -ms-flexbox;
|
|
589
650
|
display: flex;
|
|
590
651
|
padding: 16px;
|
|
@@ -687,7 +748,8 @@
|
|
|
687
748
|
}
|
|
688
749
|
.e-inplaceeditor-tip.e-tooltip-wrap.e-popup {
|
|
689
750
|
background: #424242;
|
|
690
|
-
box-shadow: none;
|
|
751
|
+
-webkit-box-shadow: none;
|
|
752
|
+
box-shadow: none;
|
|
691
753
|
}
|
|
692
754
|
.e-inplaceeditor-tip.e-tooltip-wrap.e-popup .e-tip-content {
|
|
693
755
|
border-radius: 2px;
|