@syncfusion/ej2-vue-schedule 20.1.48 → 20.1.55

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (69) hide show
  1. package/CHANGELOG.md +46 -11
  2. package/dist/ej2-vue-schedule.umd.min.js +11 -2
  3. package/dist/es6/ej2-vue-schedule.es2015.js +136 -11
  4. package/dist/es6/ej2-vue-schedule.es2015.js.map +1 -1
  5. package/dist/es6/ej2-vue-schedule.es5.js +92 -10
  6. package/dist/es6/ej2-vue-schedule.es5.js.map +1 -1
  7. package/dist/global/ej2-vue-schedule.min.js +2 -2
  8. package/package.json +8 -14
  9. package/src/recurrence-editor/recurrenceeditor.component.d.ts +1 -0
  10. package/src/recurrence-editor/recurrenceeditor.component.js +10 -1
  11. package/src/schedule/headerrows.directive.d.ts +3 -1
  12. package/src/schedule/headerrows.directive.js +24 -2
  13. package/src/schedule/resources.directive.d.ts +3 -1
  14. package/src/schedule/resources.directive.js +24 -2
  15. package/src/schedule/schedule.component.d.ts +1 -0
  16. package/src/schedule/schedule.component.js +11 -1
  17. package/src/schedule/views.directive.d.ts +3 -1
  18. package/src/schedule/views.directive.js +24 -2
  19. package/styles/bootstrap-dark.css +91 -973
  20. package/styles/bootstrap.css +91 -972
  21. package/styles/bootstrap4.css +92 -996
  22. package/styles/bootstrap5-dark.css +100 -1004
  23. package/styles/bootstrap5.css +100 -1004
  24. package/styles/fabric-dark.css +91 -973
  25. package/styles/fabric.css +91 -975
  26. package/styles/fluent-dark.css +4217 -0
  27. package/styles/fluent-dark.scss +2 -0
  28. package/styles/fluent.css +4218 -0
  29. package/styles/fluent.scss +2 -0
  30. package/styles/highcontrast-light.css +91 -972
  31. package/styles/highcontrast.css +92 -978
  32. package/styles/material-dark.css +91 -972
  33. package/styles/material.css +91 -972
  34. package/styles/recurrence-editor/bootstrap-dark.css +6 -94
  35. package/styles/recurrence-editor/bootstrap.css +6 -94
  36. package/styles/recurrence-editor/bootstrap4.css +6 -94
  37. package/styles/recurrence-editor/bootstrap5-dark.css +6 -94
  38. package/styles/recurrence-editor/bootstrap5.css +6 -94
  39. package/styles/recurrence-editor/fabric-dark.css +6 -94
  40. package/styles/recurrence-editor/fabric.css +6 -94
  41. package/styles/recurrence-editor/fluent-dark.css +407 -0
  42. package/styles/recurrence-editor/fluent-dark.scss +1 -0
  43. package/styles/recurrence-editor/fluent.css +407 -0
  44. package/styles/recurrence-editor/fluent.scss +1 -0
  45. package/styles/recurrence-editor/highcontrast-light.css +6 -94
  46. package/styles/recurrence-editor/highcontrast.css +6 -94
  47. package/styles/recurrence-editor/material-dark.css +6 -94
  48. package/styles/recurrence-editor/material.css +6 -94
  49. package/styles/recurrence-editor/tailwind-dark.css +6 -94
  50. package/styles/recurrence-editor/tailwind.css +6 -94
  51. package/styles/schedule/bootstrap-dark.css +86 -880
  52. package/styles/schedule/bootstrap.css +86 -879
  53. package/styles/schedule/bootstrap4.css +87 -903
  54. package/styles/schedule/bootstrap5-dark.css +95 -911
  55. package/styles/schedule/bootstrap5.css +95 -911
  56. package/styles/schedule/fabric-dark.css +86 -880
  57. package/styles/schedule/fabric.css +86 -882
  58. package/styles/schedule/fluent-dark.css +3809 -0
  59. package/styles/schedule/fluent-dark.scss +1 -0
  60. package/styles/schedule/fluent.css +3810 -0
  61. package/styles/schedule/fluent.scss +1 -0
  62. package/styles/schedule/highcontrast-light.css +86 -879
  63. package/styles/schedule/highcontrast.css +87 -885
  64. package/styles/schedule/material-dark.css +86 -879
  65. package/styles/schedule/material.css +86 -879
  66. package/styles/schedule/tailwind-dark.css +90 -902
  67. package/styles/schedule/tailwind.css +90 -902
  68. package/styles/tailwind-dark.css +95 -995
  69. package/styles/tailwind.css +95 -995
@@ -0,0 +1,407 @@
1
+ /*! recurrence editor theme wise definitions*/
2
+ /*! Recurrence-Editor component layout */
3
+ .e-recurrenceeditor .e-editor {
4
+ display: -ms-flexbox;
5
+ display: flex;
6
+ -ms-flex-flow: row wrap;
7
+ flex-flow: row wrap;
8
+ margin-left: auto;
9
+ margin-right: auto;
10
+ max-width: 1240px;
11
+ }
12
+ .e-recurrenceeditor .e-recurrence-table {
13
+ table-layout: fixed;
14
+ width: 100%;
15
+ }
16
+ .e-recurrenceeditor .e-recurrence-table.e-repeat-content-wrapper td:last-child {
17
+ width: 27%;
18
+ }
19
+ .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
20
+ width: 24%;
21
+ }
22
+ .e-recurrenceeditor .e-recurrence-table .e-repeat-content {
23
+ display: inline-block;
24
+ font-weight: normal;
25
+ padding: 18px 0 0 8px;
26
+ }
27
+ .e-recurrenceeditor .e-recurrence-table .e-input-wrapper {
28
+ float: none;
29
+ width: 100%;
30
+ }
31
+ .e-recurrenceeditor .e-recurrence-table .e-week-position {
32
+ min-width: 90px;
33
+ position: relative;
34
+ right: 21px;
35
+ }
36
+ .e-recurrenceeditor .e-recurrence-table .e-day-position {
37
+ min-width: 120px;
38
+ }
39
+ .e-recurrenceeditor .e-recurrence-table .e-monthday-element {
40
+ padding-left: 10px;
41
+ }
42
+ .e-recurrenceeditor .e-input-wrapper-side.e-form-left {
43
+ padding: 0 8px 16px 0;
44
+ }
45
+ .e-recurrenceeditor .e-form-left {
46
+ padding: 0 8px 16px 0;
47
+ }
48
+ .e-recurrenceeditor .e-form-right,
49
+ .e-recurrenceeditor .e-input-wrapper-side.e-form-right {
50
+ padding: 0 0 10px 8px;
51
+ }
52
+ .e-recurrenceeditor .e-input-wrapper {
53
+ float: left;
54
+ width: 50%;
55
+ }
56
+ .e-recurrenceeditor .e-input-wrapper div {
57
+ margin-bottom: 2.5%;
58
+ }
59
+ .e-recurrenceeditor .e-input-wrapper.e-end-on-date,
60
+ .e-recurrenceeditor .e-input-wrapper.e-end-on-count {
61
+ padding-right: 0;
62
+ }
63
+ .e-recurrenceeditor.e-rtl .e-end-on > div,
64
+ .e-recurrenceeditor.e-rtl .e-month-expander > div > div {
65
+ float: right;
66
+ }
67
+ .e-recurrenceeditor.e-rtl .e-form-left,
68
+ .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-form-left {
69
+ padding: 0 0 10px 8px;
70
+ }
71
+ .e-recurrenceeditor.e-rtl .e-form-right,
72
+ .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-form-right {
73
+ padding: 0 8px 10px 0;
74
+ }
75
+ .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element {
76
+ position: relative;
77
+ right: 10px;
78
+ }
79
+ .e-recurrenceeditor.e-rtl .e-week-position {
80
+ position: relative;
81
+ right: -21px;
82
+ }
83
+ .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-label,
84
+ .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-non-week > .e-month-expander-label {
85
+ padding-right: 0;
86
+ }
87
+ .e-recurrenceeditor.e-rtl .e-end-on-label {
88
+ margin-bottom: 5px;
89
+ }
90
+ .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
91
+ padding-left: 8px;
92
+ padding-right: 0;
93
+ }
94
+ .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
95
+ .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
96
+ padding-left: 0;
97
+ padding-right: 8px;
98
+ }
99
+ .e-recurrenceeditor.e-rtl .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
100
+ width: 0;
101
+ }
102
+ .e-recurrenceeditor .e-days .e-week-expander-label {
103
+ font-size: 14px;
104
+ font-weight: 400;
105
+ margin-bottom: 8px;
106
+ }
107
+ .e-recurrenceeditor .e-days button {
108
+ border-radius: 50%;
109
+ -ms-flex-flow: row wrap;
110
+ flex-flow: row wrap;
111
+ height: 35px;
112
+ margin: 0 8px 10px;
113
+ width: 35px;
114
+ }
115
+ .e-recurrenceeditor .e-hide-recurrence-element {
116
+ display: none;
117
+ }
118
+ .e-recurrenceeditor .e-half-space {
119
+ width: 20%;
120
+ }
121
+ .e-recurrenceeditor .e-year-expander {
122
+ margin-bottom: 11px;
123
+ }
124
+ .e-recurrenceeditor .e-month-expander tr:first-child .e-input-wrapper {
125
+ margin-bottom: 11px;
126
+ }
127
+ .e-recurrenceeditor .e-month-expander-checkbox-wrapper.e-input-wrapper {
128
+ margin-top: -3px;
129
+ }
130
+ .e-recurrenceeditor .e-month-expander-checkbox-wrapper.e-input-wrapper .e-month-type .e-label {
131
+ display: none;
132
+ }
133
+ .e-recurrenceeditor .e-input-wrapper-side {
134
+ float: left;
135
+ padding: 16px 20px 0;
136
+ width: 50%;
137
+ }
138
+ .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-label {
139
+ float: none;
140
+ font-size: 14px;
141
+ font-weight: 400;
142
+ margin-bottom: 7px;
143
+ padding-right: 16px;
144
+ }
145
+ .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
146
+ padding-right: 16px;
147
+ }
148
+ .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-input-wrapper {
149
+ margin: 0;
150
+ }
151
+ .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
152
+ font-size: 14px;
153
+ font-weight: 400;
154
+ margin-bottom: 7px;
155
+ padding-right: 16px;
156
+ }
157
+ .e-recurrenceeditor .e-input-wrapper-side .e-days .e-form-left {
158
+ padding-bottom: 6px;
159
+ }
160
+ .e-recurrenceeditor .e-input-wrapper-side .e-non-week .e-form-left {
161
+ padding-bottom: 12px;
162
+ }
163
+ .e-recurrenceeditor .e-input-wrapper-side.e-form-right {
164
+ margin-bottom: 11px;
165
+ }
166
+
167
+ .e-bigger .e-recurrenceeditor {
168
+ padding: 0;
169
+ }
170
+ .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-form-left {
171
+ padding: 0 12px 11px 0;
172
+ }
173
+ .e-bigger .e-recurrenceeditor .e-form-left {
174
+ padding: 0 12px 14px 0;
175
+ }
176
+ .e-bigger .e-recurrenceeditor .e-form-right,
177
+ .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-form-right {
178
+ padding: 0 0 10px 12px;
179
+ }
180
+ .e-bigger .e-recurrenceeditor .e-recurrence-table .e-week-position {
181
+ right: 24px;
182
+ }
183
+ .e-bigger .e-recurrenceeditor .e-input-wrapper-side .e-days .e-form-left {
184
+ padding-bottom: 6px;
185
+ }
186
+ .e-bigger .e-recurrenceeditor .e-recurrence-table .e-monthday-element {
187
+ padding-left: 70px;
188
+ }
189
+ .e-bigger .e-recurrenceeditor .e-week-position {
190
+ min-width: 157px;
191
+ padding-left: 55px;
192
+ padding-right: 0;
193
+ }
194
+ .e-bigger .e-recurrenceeditor .e-day-position {
195
+ min-width: 183px;
196
+ padding-left: 54px;
197
+ }
198
+ .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
199
+ font-size: 16px;
200
+ margin-bottom: 0;
201
+ }
202
+ .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
203
+ padding-right: 5px;
204
+ }
205
+ .e-bigger .e-recurrenceeditor .e-end-on-label {
206
+ margin-bottom: 0;
207
+ }
208
+ .e-bigger .e-recurrenceeditor .e-days .e-week-expander-label {
209
+ font-size: 16px;
210
+ margin-bottom: 8px;
211
+ }
212
+ .e-bigger .e-recurrenceeditor .e-input-wrapper-side .e-non-week .e-form-left {
213
+ padding-bottom: 12px;
214
+ }
215
+ .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-label {
216
+ font-size: 16px;
217
+ margin-bottom: 1px;
218
+ }
219
+ .e-bigger .e-recurrenceeditor .e-month-expander tr:first-child .e-input-wrapper,
220
+ .e-bigger .e-recurrenceeditor .e-year-expander,
221
+ .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-form-right {
222
+ margin-bottom: 11px;
223
+ }
224
+ .e-bigger .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
225
+ width: 0;
226
+ }
227
+ .e-bigger .e-recurrenceeditor .e-days button {
228
+ height: 40px;
229
+ width: 40px;
230
+ }
231
+ .e-bigger .e-recurrenceeditor.e-rtl .e-form-left,
232
+ .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-form-left {
233
+ padding: 0 0 10px 12px;
234
+ }
235
+ .e-bigger .e-recurrenceeditor.e-rtl .e-form-right,
236
+ .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-form-right {
237
+ padding: 0 12px 10px 0;
238
+ }
239
+ .e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element {
240
+ padding-left: 0;
241
+ padding-right: 64px;
242
+ }
243
+ .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-label,
244
+ .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-non-week > .e-month-expander-label {
245
+ padding-right: 0;
246
+ }
247
+ .e-bigger .e-recurrenceeditor.e-rtl .e-end-on-label {
248
+ margin-bottom: 5px;
249
+ }
250
+ .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
251
+ padding-left: 12px;
252
+ padding-right: 0;
253
+ }
254
+ .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
255
+ .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
256
+ padding-left: 0;
257
+ padding-right: 12px;
258
+ }
259
+ .e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-week-position {
260
+ right: 33px;
261
+ }
262
+ .e-bigger .e-recurrenceeditor.e-rtl .e-week-position {
263
+ padding-left: 46px;
264
+ }
265
+
266
+ .e-device .e-recurrenceeditor .e-recurrence-table.e-repeat-content-wrapper td:last-child {
267
+ width: 25%;
268
+ }
269
+ .e-device .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
270
+ width: 20%;
271
+ }
272
+ .e-device .e-recurrenceeditor .e-week-expander-label {
273
+ margin-bottom: 6px;
274
+ }
275
+ .e-device .e-recurrenceeditor .e-month-expander-label {
276
+ font-size: 12px;
277
+ margin-bottom: 5px;
278
+ }
279
+ .e-device .e-recurrenceeditor .e-footer-content {
280
+ padding: 12px;
281
+ }
282
+ .e-device .e-recurrenceeditor .e-form-left,
283
+ .e-device .e-recurrenceeditor .e-input-wrapper-side.e-form-left {
284
+ padding: 0 3px 10px 0;
285
+ }
286
+ .e-device .e-recurrenceeditor .e-form-right,
287
+ .e-device .e-recurrenceeditor .e-input-wrapper-side.e-form-right {
288
+ padding: 0 0 10px 3px;
289
+ }
290
+ .e-device .e-recurrenceeditor .e-input-wrapper.e-end-on-date,
291
+ .e-device .e-recurrenceeditor .e-input-wrapper.e-end-on-count {
292
+ padding-left: 10px;
293
+ padding-right: 0;
294
+ }
295
+ .e-device .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
296
+ padding-right: 10px;
297
+ }
298
+ .e-device .e-recurrenceeditor.e-end-on {
299
+ padding-right: 0;
300
+ }
301
+ .e-device .e-recurrenceeditor.e-end-on .e-end-on-label {
302
+ float: none;
303
+ font-size: 12px;
304
+ font-weight: 400;
305
+ margin-bottom: 7px;
306
+ }
307
+ .e-device .e-recurrenceeditor.e-end-on .e-end-on-left {
308
+ padding-right: 0;
309
+ }
310
+ .e-device .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
311
+ padding-right: 0;
312
+ }
313
+ .e-device .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
314
+ .e-device .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
315
+ padding-left: 0;
316
+ padding-right: 10px;
317
+ }
318
+ .e-device .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element {
319
+ padding-left: 0;
320
+ }
321
+ .e-device .e-recurrenceeditor.e-rtl .e-week-position {
322
+ padding-left: 16px;
323
+ padding-right: 0;
324
+ }
325
+ .e-device .e-recurrenceeditor .e-recurrence-table .e-monthday-element {
326
+ padding-left: 20px;
327
+ }
328
+ .e-device .e-recurrenceeditor .e-week-position {
329
+ padding-left: 0;
330
+ padding-right: 0;
331
+ }
332
+ .e-device .e-recurrenceeditor .e-week-position {
333
+ padding-left: 0;
334
+ }
335
+ .e-device.e-recurrence-dialog .e-dlg-header-content {
336
+ background: none;
337
+ box-shadow: none;
338
+ padding-bottom: 10px;
339
+ }
340
+ .e-device.e-recurrence-dialog .e-editor .e-input-wrapper-side.e-end-on .e-end-on-label {
341
+ margin-bottom: 7px;
342
+ }
343
+ .e-device.e-recurrence-dialog .e-footer-content {
344
+ padding: 16px 8px;
345
+ }
346
+
347
+ @media (max-width: 580px) {
348
+ .e-recurrenceeditor {
349
+ margin-left: auto;
350
+ margin-right: auto;
351
+ width: 100%;
352
+ }
353
+ .e-recurrenceeditor .e-editor {
354
+ -ms-flex-direction: column;
355
+ flex-direction: column;
356
+ }
357
+ .e-recurrenceeditor .e-editor > .e-input-wrapper.e-form-left {
358
+ margin-top: 0;
359
+ }
360
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week > .e-month-expander-label,
361
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on .e-end-on-label {
362
+ margin-bottom: 7px;
363
+ }
364
+ .e-recurrenceeditor .e-editor > div {
365
+ margin-top: 20px;
366
+ }
367
+ .e-recurrenceeditor .e-editor > .e-input-wrapper {
368
+ width: 100%;
369
+ }
370
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on {
371
+ width: 100%;
372
+ }
373
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on .e-input-wrapper {
374
+ width: 50%;
375
+ }
376
+ .e-recurrenceeditor .e-editor .e-form-left,
377
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-form-left {
378
+ padding: 0 0 10px;
379
+ }
380
+ .e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-date,
381
+ .e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-count {
382
+ padding-left: 10px;
383
+ padding-right: 0;
384
+ }
385
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on .e-end-on-left {
386
+ padding-right: 10px;
387
+ }
388
+ .e-recurrenceeditor .e-editor .e-form-right,
389
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-form-right {
390
+ padding-left: 0;
391
+ }
392
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-days {
393
+ width: 100%;
394
+ }
395
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week {
396
+ width: 100%;
397
+ }
398
+ .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
399
+ padding-right: 0;
400
+ }
401
+ .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
402
+ .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
403
+ padding-left: 0;
404
+ padding-right: 10px;
405
+ }
406
+ }
407
+ /*! Recurrence-Editor component theme */
@@ -0,0 +1 @@
1
+ @import 'ej2-schedule/styles/recurrence-editor/fluent-dark.scss';