@syncfusion/ej2-vue-schedule 20.3.61 → 20.4.38
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/CHANGELOG.md +8 -0
- package/README.md +145 -41
- package/dist/ej2-vue-schedule.umd.min.js +2 -2
- package/dist/ej2-vue-schedule.umd.min.js.map +1 -1
- package/dist/es6/ej2-vue-schedule.es2015.js +4 -1
- package/dist/es6/ej2-vue-schedule.es2015.js.map +1 -1
- package/dist/es6/ej2-vue-schedule.es5.js +4 -1
- package/dist/es6/ej2-vue-schedule.es5.js.map +1 -1
- package/dist/global/ej2-vue-schedule.min.js +2 -2
- package/package.json +17 -23
- package/src/schedule/schedule.component.d.ts +1 -0
- package/src/schedule/schedule.component.js +4 -1
- package/styles/bootstrap-dark.css +364 -101
- package/styles/bootstrap.css +363 -99
- package/styles/bootstrap4.css +375 -141
- package/styles/bootstrap5-dark.css +339 -137
- package/styles/bootstrap5.css +339 -137
- package/styles/fabric-dark.css +330 -101
- package/styles/fabric.css +316 -106
- package/styles/fluent-dark.css +395 -102
- package/styles/fluent.css +395 -102
- package/styles/highcontrast-light.css +407 -98
- package/styles/highcontrast.css +399 -113
- package/styles/material-dark.css +362 -110
- package/styles/material.css +404 -110
- package/styles/recurrence-editor/bootstrap-dark.css +137 -28
- package/styles/recurrence-editor/bootstrap.css +137 -28
- package/styles/recurrence-editor/bootstrap4.css +171 -28
- package/styles/recurrence-editor/bootstrap5-dark.css +178 -28
- package/styles/recurrence-editor/bootstrap5.css +178 -28
- package/styles/recurrence-editor/fabric-dark.css +113 -28
- package/styles/recurrence-editor/fabric.css +106 -28
- package/styles/recurrence-editor/fluent-dark.css +158 -28
- package/styles/recurrence-editor/fluent.css +158 -28
- package/styles/recurrence-editor/highcontrast-light.css +110 -28
- package/styles/recurrence-editor/highcontrast.css +110 -28
- package/styles/recurrence-editor/material-dark.css +138 -28
- package/styles/recurrence-editor/material.css +163 -28
- package/styles/recurrence-editor/tailwind-dark.css +126 -28
- package/styles/recurrence-editor/tailwind.css +126 -28
- package/styles/schedule/bootstrap-dark.css +332 -73
- package/styles/schedule/bootstrap.css +331 -71
- package/styles/schedule/bootstrap4.css +343 -113
- package/styles/schedule/bootstrap5-dark.css +307 -109
- package/styles/schedule/bootstrap5.css +307 -109
- package/styles/schedule/fabric-dark.css +298 -73
- package/styles/schedule/fabric.css +284 -78
- package/styles/schedule/fluent-dark.css +363 -74
- package/styles/schedule/fluent.css +363 -74
- package/styles/schedule/highcontrast-light.css +375 -70
- package/styles/schedule/highcontrast.css +367 -85
- package/styles/schedule/material-dark.css +330 -82
- package/styles/schedule/material.css +372 -82
- package/styles/schedule/tailwind-dark.css +246 -111
- package/styles/schedule/tailwind.css +246 -111
- package/styles/tailwind-dark.css +279 -140
- package/styles/tailwind.css +279 -140
|
@@ -1,4 +1,98 @@
|
|
|
1
1
|
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
|
|
2
|
+
.e-ddl.e-control-wrapper .e-ddl-icon::before {
|
|
3
|
+
transform: rotate(0deg);
|
|
4
|
+
transition: transform 300ms ease;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.e-ddl.e-control-wrapper.e-icon-anim .e-ddl-icon::before {
|
|
8
|
+
transform: rotate(180deg);
|
|
9
|
+
transition: transform 300ms ease;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.e-dropdownbase .e-list-item.e-active.e-hover {
|
|
13
|
+
color: #111827;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:active,
|
|
17
|
+
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:hover,
|
|
18
|
+
.e-input-group:not(.e-disabled) .e-back-icon:active,
|
|
19
|
+
.e-input-group:not(.e-disabled) .e-back-icon:hover,
|
|
20
|
+
.e-popup.e-ddl .e-input-group:not(.e-disabled) .e-clear-icon:active,
|
|
21
|
+
.e-popup.e-ddl .e-input-group:not(.e-disabled) .e-clear-icon:hover {
|
|
22
|
+
background: transparent;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.e-input-group .e-ddl-icon:not(:active)::after {
|
|
26
|
+
animation: none;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.e-ddl.e-popup {
|
|
30
|
+
border: 0;
|
|
31
|
+
border-radius: 4px;
|
|
32
|
+
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
|
33
|
+
margin-top: 4px;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.e-small .e-ddl.e-popup,
|
|
37
|
+
.e-small.e-ddl.e-popup {
|
|
38
|
+
border-radius: 2px;
|
|
39
|
+
margin-top: 2px;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.e-bigger .e-ddl.e-popup,
|
|
43
|
+
.e-bigger.e-ddl.e-popup {
|
|
44
|
+
border-radius: 6px;
|
|
45
|
+
margin-top: 8px;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.e-bigger.e-small .e-ddl.e-popup,
|
|
49
|
+
.e-small.e-bigger.e-ddl.e-popup {
|
|
50
|
+
border-radius: 4px;
|
|
51
|
+
margin-top: 6px;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.e-popup.e-ddl .e-dropdownbase {
|
|
55
|
+
min-height: 26px;
|
|
56
|
+
padding: 4px 0;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.e-bigger .e-popup.e-ddl-device-filter .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
|
|
60
|
+
border-color: #e5e7eb;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.e-bigger .e-popup.e-ddl-device-filter {
|
|
64
|
+
margin-top: 0;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.e-bigger .e-ddl-device .e-input-group,
|
|
68
|
+
.e-bigger .e-ddl-device .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
|
|
69
|
+
background: #fff;
|
|
70
|
+
border-width: 0;
|
|
71
|
+
box-shadow: none;
|
|
72
|
+
margin-bottom: 0;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.e-bigger .e-ddl-device .e-input-group .e-back-icon,
|
|
76
|
+
.e-bigger .e-ddl-device .e-input-group input.e-input,
|
|
77
|
+
.e-bigger .e-ddl-device .e-input-group .e-clear-icon {
|
|
78
|
+
background-color: #fff;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.e-input-group.e-ddl,
|
|
82
|
+
.e-input-group.e-ddl .e-input,
|
|
83
|
+
.e-input-group.e-ddl .e-ddl-icon {
|
|
84
|
+
background: #fff;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.e-ddl.e-ddl-device.e-ddl-device-filter .e-input-group:hover:not(.e-disabled):not(.e-float-icon-left),
|
|
88
|
+
.e-ddl.e-ddl-device.e-ddl-device-filter .e-input-group.e-control-wrapper:hover:not(.e-disabled):not(.e-float-icon-left) {
|
|
89
|
+
border-bottom-width: 0;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.e-ddl.e-popup.e-outline .e-filter-parent {
|
|
93
|
+
padding: 4px 8px;
|
|
94
|
+
}
|
|
95
|
+
|
|
2
96
|
/*! recurrence editor theme wise definitions*/
|
|
3
97
|
/*! Recurrence-Editor component layout */
|
|
4
98
|
.e-recurrenceeditor .e-editor {
|
|
@@ -6,8 +100,7 @@
|
|
|
6
100
|
display: flex;
|
|
7
101
|
-ms-flex-flow: row wrap;
|
|
8
102
|
flex-flow: row wrap;
|
|
9
|
-
margin
|
|
10
|
-
margin-right: auto;
|
|
103
|
+
margin: 0 auto;
|
|
11
104
|
max-width: 1240px;
|
|
12
105
|
}
|
|
13
106
|
.e-recurrenceeditor .e-recurrence-table {
|
|
@@ -48,7 +141,7 @@
|
|
|
48
141
|
}
|
|
49
142
|
.e-recurrenceeditor .e-form-right,
|
|
50
143
|
.e-recurrenceeditor .e-input-wrapper-side.e-form-right {
|
|
51
|
-
padding: 0 0 10px
|
|
144
|
+
padding: 0 0 10px;
|
|
52
145
|
}
|
|
53
146
|
.e-recurrenceeditor .e-input-wrapper {
|
|
54
147
|
float: left;
|
|
@@ -89,13 +182,11 @@
|
|
|
89
182
|
margin-bottom: 5px;
|
|
90
183
|
}
|
|
91
184
|
.e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
92
|
-
padding
|
|
93
|
-
padding-right: 0;
|
|
185
|
+
padding: 0 0 0 8px;
|
|
94
186
|
}
|
|
95
187
|
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
|
|
96
188
|
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
97
|
-
padding
|
|
98
|
-
padding-right: 8px;
|
|
189
|
+
padding: 0 8px 0 0;
|
|
99
190
|
}
|
|
100
191
|
.e-recurrenceeditor.e-rtl .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
|
|
101
192
|
width: 30px;
|
|
@@ -123,10 +214,10 @@
|
|
|
123
214
|
margin-bottom: 11px;
|
|
124
215
|
}
|
|
125
216
|
.e-recurrenceeditor .e-month-expander tr:first-child .e-input-wrapper {
|
|
126
|
-
|
|
217
|
+
padding-bottom: 11px;
|
|
127
218
|
}
|
|
128
219
|
.e-recurrenceeditor .e-month-expander-checkbox-wrapper.e-input-wrapper {
|
|
129
|
-
|
|
220
|
+
padding-top: 3px;
|
|
130
221
|
}
|
|
131
222
|
.e-recurrenceeditor .e-month-expander-checkbox-wrapper.e-input-wrapper .e-month-type .e-label {
|
|
132
223
|
display: none;
|
|
@@ -176,7 +267,7 @@
|
|
|
176
267
|
}
|
|
177
268
|
.e-bigger .e-recurrenceeditor .e-form-right,
|
|
178
269
|
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-form-right {
|
|
179
|
-
padding: 0 0 10px
|
|
270
|
+
padding: 0 0 10px;
|
|
180
271
|
}
|
|
181
272
|
.e-bigger .e-recurrenceeditor .e-input-wrapper-side .e-days .e-form-left {
|
|
182
273
|
padding-bottom: 6px;
|
|
@@ -235,8 +326,7 @@
|
|
|
235
326
|
}
|
|
236
327
|
.e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element,
|
|
237
328
|
.e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-day-position {
|
|
238
|
-
padding
|
|
239
|
-
padding-right: 64px;
|
|
329
|
+
padding: 0 64px 0 0;
|
|
240
330
|
}
|
|
241
331
|
.e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-label,
|
|
242
332
|
.e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-non-week > .e-month-expander-label {
|
|
@@ -246,13 +336,11 @@
|
|
|
246
336
|
margin-bottom: 5px;
|
|
247
337
|
}
|
|
248
338
|
.e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
249
|
-
padding
|
|
250
|
-
padding-right: 0;
|
|
339
|
+
padding: 0 0 0 12px;
|
|
251
340
|
}
|
|
252
341
|
.e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
|
|
253
342
|
.e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
254
|
-
padding
|
|
255
|
-
padding-right: 12px;
|
|
343
|
+
padding: 0 12px 0 0;
|
|
256
344
|
}
|
|
257
345
|
.e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-week-position {
|
|
258
346
|
left: 0;
|
|
@@ -284,8 +372,7 @@
|
|
|
284
372
|
}
|
|
285
373
|
.e-device .e-recurrenceeditor .e-input-wrapper.e-end-on-date,
|
|
286
374
|
.e-device .e-recurrenceeditor .e-input-wrapper.e-end-on-count {
|
|
287
|
-
padding
|
|
288
|
-
padding-right: 0;
|
|
375
|
+
padding: 0 0 0 10px;
|
|
289
376
|
}
|
|
290
377
|
.e-device .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
291
378
|
padding-right: 10px;
|
|
@@ -306,23 +393,25 @@
|
|
|
306
393
|
.e-device .e-recurrenceeditor .e-recurrence-table .e-day-position {
|
|
307
394
|
padding-left: 20px;
|
|
308
395
|
}
|
|
396
|
+
.e-device .e-recurrenceeditor .e-recurrence-table .e-monthday-element {
|
|
397
|
+
margin-left: 20px;
|
|
398
|
+
}
|
|
309
399
|
.e-device .e-recurrenceeditor .e-week-position {
|
|
310
400
|
right: 0;
|
|
401
|
+
padding-right: 10px;
|
|
311
402
|
}
|
|
312
403
|
.e-device .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
313
404
|
padding-right: 0;
|
|
314
405
|
}
|
|
315
406
|
.e-device .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
|
|
316
407
|
.e-device .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
317
|
-
padding
|
|
318
|
-
padding-right: 10px;
|
|
408
|
+
padding: 0 10px 0 0;
|
|
319
409
|
}
|
|
320
410
|
.e-device .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element {
|
|
321
|
-
padding
|
|
411
|
+
padding: 0 20px 0 0;
|
|
322
412
|
}
|
|
323
413
|
.e-device .e-recurrenceeditor.e-rtl .e-recurrence-table .e-day-position {
|
|
324
|
-
padding
|
|
325
|
-
padding-left: 0;
|
|
414
|
+
padding: 0 50px 0 0;
|
|
326
415
|
}
|
|
327
416
|
.e-device .e-recurrenceeditor.e-rtl .e-week-position {
|
|
328
417
|
left: 0;
|
|
@@ -339,6 +428,14 @@
|
|
|
339
428
|
padding: 16px 8px;
|
|
340
429
|
}
|
|
341
430
|
|
|
431
|
+
@media (max-width: 1024px) {
|
|
432
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on {
|
|
433
|
+
width: 100%;
|
|
434
|
+
}
|
|
435
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week {
|
|
436
|
+
width: 65%;
|
|
437
|
+
}
|
|
438
|
+
}
|
|
342
439
|
@media (max-width: 580px) {
|
|
343
440
|
.e-recurrenceeditor {
|
|
344
441
|
margin-left: auto;
|
|
@@ -374,8 +471,7 @@
|
|
|
374
471
|
}
|
|
375
472
|
.e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-date,
|
|
376
473
|
.e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-count {
|
|
377
|
-
padding
|
|
378
|
-
padding-right: 0;
|
|
474
|
+
padding: 0 0 0 10px;
|
|
379
475
|
}
|
|
380
476
|
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
381
477
|
padding-right: 10px;
|
|
@@ -388,15 +484,17 @@
|
|
|
388
484
|
width: 100%;
|
|
389
485
|
}
|
|
390
486
|
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week {
|
|
391
|
-
width:
|
|
487
|
+
width: 65%;
|
|
488
|
+
}
|
|
489
|
+
.e-recurrenceeditor .e-editor .e-recurrence-table .e-day-position {
|
|
490
|
+
padding-left: 50px;
|
|
392
491
|
}
|
|
393
492
|
.e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
394
493
|
padding-right: 0;
|
|
395
494
|
}
|
|
396
495
|
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
|
|
397
496
|
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
398
|
-
padding
|
|
399
|
-
padding-right: 10px;
|
|
497
|
+
padding: 0 10px 0 0;
|
|
400
498
|
}
|
|
401
499
|
}
|
|
402
500
|
/*! Recurrence-Editor component theme */
|