@syncfusion/ej2-schedule 19.2.60 → 19.3.48

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 (125) hide show
  1. package/.eslintrc.json +1 -1
  2. package/CHANGELOG.md +65 -0
  3. package/dist/ej2-schedule.umd.min.js +2 -2
  4. package/dist/ej2-schedule.umd.min.js.map +1 -1
  5. package/dist/es6/ej2-schedule.es2015.js +445 -164
  6. package/dist/es6/ej2-schedule.es2015.js.map +1 -1
  7. package/dist/es6/ej2-schedule.es5.js +456 -172
  8. package/dist/es6/ej2-schedule.es5.js.map +1 -1
  9. package/dist/global/ej2-schedule.min.js +2 -2
  10. package/dist/global/ej2-schedule.min.js.map +1 -1
  11. package/dist/global/index.d.ts +1 -1
  12. package/package.json +15 -15
  13. package/src/schedule/actions/action-base.js +1 -1
  14. package/src/schedule/actions/crud.js +3 -2
  15. package/src/schedule/actions/drag.d.ts +2 -0
  16. package/src/schedule/actions/drag.js +27 -17
  17. package/src/schedule/actions/keyboard.js +5 -5
  18. package/src/schedule/actions/resize.js +17 -10
  19. package/src/schedule/actions/virtual-scroll.js +2 -1
  20. package/src/schedule/base/interface.d.ts +9 -0
  21. package/src/schedule/base/resource.js +12 -3
  22. package/src/schedule/base/schedule-model.d.ts +13 -1
  23. package/src/schedule/base/schedule.d.ts +45 -2
  24. package/src/schedule/base/schedule.js +139 -14
  25. package/src/schedule/base/type.d.ts +4 -0
  26. package/src/schedule/event-renderer/event-base.d.ts +2 -1
  27. package/src/schedule/event-renderer/event-base.js +42 -28
  28. package/src/schedule/event-renderer/month.d.ts +0 -1
  29. package/src/schedule/event-renderer/month.js +32 -33
  30. package/src/schedule/event-renderer/timeline-view.d.ts +2 -0
  31. package/src/schedule/event-renderer/timeline-view.js +31 -1
  32. package/src/schedule/event-renderer/vertical-view.js +26 -19
  33. package/src/schedule/event-renderer/year.js +4 -1
  34. package/src/schedule/models/event-settings-model.d.ts +21 -1
  35. package/src/schedule/models/event-settings.d.ts +20 -0
  36. package/src/schedule/models/event-settings.js +6 -0
  37. package/src/schedule/models/views-model.d.ts +9 -0
  38. package/src/schedule/models/views.d.ts +8 -0
  39. package/src/schedule/models/views.js +3 -0
  40. package/src/schedule/popups/event-window.d.ts +3 -2
  41. package/src/schedule/popups/event-window.js +7 -3
  42. package/src/schedule/popups/form-validator.js +4 -1
  43. package/src/schedule/popups/quick-popups.d.ts +3 -2
  44. package/src/schedule/popups/quick-popups.js +32 -13
  45. package/src/schedule/renderer/agenda.d.ts +1 -0
  46. package/src/schedule/renderer/agenda.js +20 -3
  47. package/src/schedule/renderer/header-renderer.d.ts +1 -0
  48. package/src/schedule/renderer/header-renderer.js +6 -1
  49. package/src/schedule/renderer/month.d.ts +1 -0
  50. package/src/schedule/renderer/month.js +7 -7
  51. package/src/schedule/renderer/timeline-year.js +8 -2
  52. package/src/schedule/renderer/vertical-view.d.ts +2 -0
  53. package/src/schedule/renderer/vertical-view.js +19 -8
  54. package/src/schedule/renderer/view-base.d.ts +2 -1
  55. package/src/schedule/renderer/view-base.js +11 -3
  56. package/styles/bootstrap-dark.css +48 -66
  57. package/styles/bootstrap.css +28 -45
  58. package/styles/bootstrap4.css +28 -44
  59. package/styles/bootstrap5-dark.css +5172 -0
  60. package/styles/bootstrap5-dark.scss +2 -0
  61. package/styles/bootstrap5.css +5173 -0
  62. package/styles/bootstrap5.scss +2 -0
  63. package/styles/fabric-dark.css +29 -61
  64. package/styles/fabric.css +28 -45
  65. package/styles/highcontrast-light.css +28 -76
  66. package/styles/highcontrast.css +30 -49
  67. package/styles/material-dark.css +72 -79
  68. package/styles/material.css +32 -45
  69. package/styles/recurrence-editor/_bootstrap5-dark-definition.scss +1 -0
  70. package/styles/recurrence-editor/_bootstrap5-definition.scss +8 -0
  71. package/styles/recurrence-editor/_layout.scss +0 -4
  72. package/styles/recurrence-editor/_tailwind-dark-definition.scss +1 -8
  73. package/styles/recurrence-editor/_tailwind-definition.scss +8 -8
  74. package/styles/recurrence-editor/bootstrap-dark.css +0 -4
  75. package/styles/recurrence-editor/bootstrap.css +0 -4
  76. package/styles/recurrence-editor/bootstrap4.css +0 -4
  77. package/styles/recurrence-editor/bootstrap5-dark.css +479 -0
  78. package/styles/recurrence-editor/bootstrap5-dark.scss +3 -0
  79. package/styles/recurrence-editor/bootstrap5.css +479 -0
  80. package/styles/recurrence-editor/bootstrap5.scss +3 -0
  81. package/styles/recurrence-editor/fabric-dark.css +0 -4
  82. package/styles/recurrence-editor/fabric.css +0 -4
  83. package/styles/recurrence-editor/highcontrast-light.css +0 -4
  84. package/styles/recurrence-editor/highcontrast.css +0 -4
  85. package/styles/recurrence-editor/material-dark.css +0 -4
  86. package/styles/recurrence-editor/material.css +0 -4
  87. package/styles/recurrence-editor/tailwind-dark.css +0 -4
  88. package/styles/recurrence-editor/tailwind.css +0 -4
  89. package/styles/schedule/_bootstrap-dark-definition.scss +6 -6
  90. package/styles/schedule/_bootstrap-definition.scss +2 -2
  91. package/styles/schedule/_bootstrap4-definition.scss +6 -5
  92. package/styles/schedule/_bootstrap5-dark-definition.scss +1 -0
  93. package/styles/schedule/_bootstrap5-definition.scss +198 -0
  94. package/styles/schedule/_fabric-dark-definition.scss +3 -3
  95. package/styles/schedule/_fabric-definition.scss +2 -2
  96. package/styles/schedule/_highcontrast-definition.scss +3 -3
  97. package/styles/schedule/_highcontrast-light-definition.scss +2 -2
  98. package/styles/schedule/_layout.scss +97 -120
  99. package/styles/schedule/_material-dark-definition.scss +2 -2
  100. package/styles/schedule/_material-definition.scss +2 -2
  101. package/styles/schedule/_tailwind-dark-definition.scss +1 -196
  102. package/styles/schedule/_tailwind-definition.scss +195 -196
  103. package/styles/schedule/_theme.scss +33 -7
  104. package/styles/schedule/bootstrap-dark.css +48 -62
  105. package/styles/schedule/bootstrap.css +28 -41
  106. package/styles/schedule/bootstrap4.css +28 -40
  107. package/styles/schedule/bootstrap5-dark.css +4692 -0
  108. package/styles/schedule/bootstrap5-dark.scss +4 -0
  109. package/styles/schedule/bootstrap5.css +4693 -0
  110. package/styles/schedule/bootstrap5.scss +5 -0
  111. package/styles/schedule/fabric-dark.css +29 -57
  112. package/styles/schedule/fabric.css +28 -41
  113. package/styles/schedule/highcontrast-light.css +28 -72
  114. package/styles/schedule/highcontrast.css +30 -45
  115. package/styles/schedule/icons/_bootstrap5-dark.scss +1 -0
  116. package/styles/schedule/icons/_bootstrap5.scss +232 -0
  117. package/styles/schedule/icons/_tailwind-dark.scss +1 -231
  118. package/styles/schedule/icons/_tailwind.scss +231 -231
  119. package/styles/schedule/material-dark.css +72 -75
  120. package/styles/schedule/material.css +32 -41
  121. package/styles/schedule/tailwind-dark.css +53 -71
  122. package/styles/schedule/tailwind-dark.scss +0 -1
  123. package/styles/schedule/tailwind.css +53 -70
  124. package/styles/tailwind-dark.css +53 -75
  125. package/styles/tailwind.css +53 -74
@@ -43,10 +43,6 @@
43
43
  padding-left: 10px;
44
44
  }
45
45
 
46
- .e-recurrenceeditor .e-icons {
47
- height: 0;
48
- }
49
-
50
46
  .e-recurrenceeditor .e-input-wrapper-side.e-form-left {
51
47
  padding: 0 8px 10px 0;
52
48
  }
@@ -43,10 +43,6 @@
43
43
  padding-left: 10px;
44
44
  }
45
45
 
46
- .e-recurrenceeditor .e-icons {
47
- height: 0;
48
- }
49
-
50
46
  .e-recurrenceeditor .e-input-wrapper-side.e-form-left {
51
47
  padding: 0 8px 10px 0;
52
48
  }
@@ -43,10 +43,6 @@
43
43
  padding-left: 10px;
44
44
  }
45
45
 
46
- .e-recurrenceeditor .e-icons {
47
- height: 0;
48
- }
49
-
50
46
  .e-recurrenceeditor .e-input-wrapper-side.e-form-left {
51
47
  padding: 0 8px 16px 0;
52
48
  }
@@ -0,0 +1,479 @@
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
+
13
+ .e-recurrenceeditor .e-recurrence-table {
14
+ table-layout: fixed;
15
+ width: 100%;
16
+ }
17
+
18
+ .e-recurrenceeditor .e-recurrence-table.e-repeat-content-wrapper td:last-child {
19
+ width: 27%;
20
+ }
21
+
22
+ .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
23
+ width: 24%;
24
+ }
25
+
26
+ .e-recurrenceeditor .e-recurrence-table .e-repeat-content {
27
+ display: inline-block;
28
+ font-weight: normal;
29
+ padding: 18px 0 0 8px;
30
+ }
31
+
32
+ .e-recurrenceeditor .e-recurrence-table .e-input-wrapper {
33
+ float: none;
34
+ width: 100%;
35
+ }
36
+
37
+ .e-recurrenceeditor .e-recurrence-table .e-week-position {
38
+ position: relative;
39
+ right: 16px;
40
+ }
41
+
42
+ .e-recurrenceeditor .e-recurrence-table .e-monthday-element {
43
+ padding-left: 10px;
44
+ }
45
+
46
+ .e-recurrenceeditor .e-input-wrapper-side.e-form-left {
47
+ padding: 0 8px 16px 0;
48
+ }
49
+
50
+ .e-recurrenceeditor .e-form-left {
51
+ padding: 0 8px 16px 0;
52
+ }
53
+
54
+ .e-recurrenceeditor .e-form-right,
55
+ .e-recurrenceeditor .e-input-wrapper-side.e-form-right {
56
+ padding: 0 0 10px 8px;
57
+ }
58
+
59
+ .e-recurrenceeditor .e-input-wrapper {
60
+ float: left;
61
+ width: 50%;
62
+ }
63
+
64
+ .e-recurrenceeditor .e-input-wrapper div {
65
+ margin-bottom: 2.5%;
66
+ }
67
+
68
+ .e-recurrenceeditor .e-input-wrapper.e-end-on-date,
69
+ .e-recurrenceeditor .e-input-wrapper.e-end-on-count {
70
+ padding-right: 0;
71
+ }
72
+
73
+ .e-recurrenceeditor.e-rtl .e-end-on > div,
74
+ .e-recurrenceeditor.e-rtl .e-month-expander > div > div {
75
+ float: right;
76
+ }
77
+
78
+ .e-recurrenceeditor.e-rtl .e-form-left,
79
+ .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-form-left {
80
+ padding: 0 0 10px 8px;
81
+ }
82
+
83
+ .e-recurrenceeditor.e-rtl .e-form-right,
84
+ .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-form-right {
85
+ padding: 0 8px 10px 0;
86
+ }
87
+
88
+ .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element {
89
+ padding-left: 0;
90
+ }
91
+
92
+ .e-recurrenceeditor.e-rtl .e-week-position {
93
+ padding-left: 16px;
94
+ right: 0;
95
+ }
96
+
97
+ .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-label,
98
+ .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-non-week > .e-month-expander-label {
99
+ padding-right: 0;
100
+ }
101
+
102
+ .e-recurrenceeditor.e-rtl .e-end-on-label {
103
+ margin-bottom: 5px;
104
+ }
105
+
106
+ .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
107
+ padding-left: 8px;
108
+ padding-right: 0;
109
+ }
110
+
111
+ .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
112
+ .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
113
+ padding-left: 0;
114
+ padding-right: 8px;
115
+ }
116
+
117
+ .e-recurrenceeditor.e-rtl .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
118
+ width: 0;
119
+ }
120
+
121
+ .e-recurrenceeditor .e-days .e-week-expander-label {
122
+ font-size: 14px;
123
+ font-weight: 400;
124
+ margin-bottom: 8px;
125
+ }
126
+
127
+ .e-recurrenceeditor .e-days button {
128
+ border-radius: 50%;
129
+ -ms-flex-flow: row wrap;
130
+ flex-flow: row wrap;
131
+ height: 35px;
132
+ margin: 0 8px 10px;
133
+ width: 35px;
134
+ }
135
+
136
+ .e-recurrenceeditor .e-hide-recurrence-element {
137
+ display: none;
138
+ }
139
+
140
+ .e-recurrenceeditor .e-half-space {
141
+ width: 20%;
142
+ }
143
+
144
+ .e-recurrenceeditor .e-year-expander {
145
+ margin-bottom: 11px;
146
+ }
147
+
148
+ .e-recurrenceeditor .e-month-expander tr:first-child .e-input-wrapper {
149
+ margin-bottom: 11px;
150
+ }
151
+
152
+ .e-recurrenceeditor .e-month-expander-checkbox-wrapper.e-input-wrapper {
153
+ margin-top: -3px;
154
+ }
155
+
156
+ .e-recurrenceeditor .e-month-expander-checkbox-wrapper.e-input-wrapper .e-month-type .e-label {
157
+ display: none;
158
+ }
159
+
160
+ .e-recurrenceeditor .e-input-wrapper-side {
161
+ float: left;
162
+ padding: 16px 20px 0;
163
+ width: 50%;
164
+ }
165
+
166
+ .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-label {
167
+ float: none;
168
+ font-size: 14px;
169
+ font-weight: 400;
170
+ margin-bottom: 7px;
171
+ padding-right: 16px;
172
+ }
173
+
174
+ .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
175
+ padding-right: 16px;
176
+ }
177
+
178
+ .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-input-wrapper {
179
+ margin: 0;
180
+ }
181
+
182
+ .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
183
+ font-size: 14px;
184
+ font-weight: 400;
185
+ margin-bottom: 7px;
186
+ padding-right: 16px;
187
+ }
188
+
189
+ .e-recurrenceeditor .e-input-wrapper-side .e-days .e-form-left {
190
+ padding-bottom: 6px;
191
+ }
192
+
193
+ .e-recurrenceeditor .e-input-wrapper-side .e-non-week .e-form-left {
194
+ padding-bottom: 12px;
195
+ }
196
+
197
+ .e-recurrenceeditor .e-input-wrapper-side.e-form-right {
198
+ margin-bottom: 11px;
199
+ }
200
+
201
+ .e-bigger .e-recurrenceeditor {
202
+ padding: 0;
203
+ }
204
+
205
+ .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-form-left {
206
+ padding: 0 12px 11px 0;
207
+ }
208
+
209
+ .e-bigger .e-recurrenceeditor .e-form-left {
210
+ padding: 0 12px 14px 0;
211
+ }
212
+
213
+ .e-bigger .e-recurrenceeditor .e-form-right,
214
+ .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-form-right {
215
+ padding: 0 0 10px 12px;
216
+ }
217
+
218
+ .e-bigger .e-recurrenceeditor .e-recurrence-table .e-week-position {
219
+ right: 24px;
220
+ }
221
+
222
+ .e-bigger .e-recurrenceeditor .e-input-wrapper-side .e-days .e-form-left {
223
+ padding-bottom: 6px;
224
+ }
225
+
226
+ .e-bigger .e-recurrenceeditor .e-recurrence-table .e-monthday-element {
227
+ padding-left: 70px;
228
+ }
229
+
230
+ .e-bigger .e-recurrenceeditor .e-week-position {
231
+ padding-left: 55px;
232
+ padding-right: 0;
233
+ }
234
+
235
+ .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
236
+ font-size: 16px;
237
+ margin-bottom: 0;
238
+ }
239
+
240
+ .e-bigger .e-recurrenceeditor .e-end-on-label {
241
+ margin-bottom: 0;
242
+ }
243
+
244
+ .e-bigger .e-recurrenceeditor .e-days .e-week-expander-label {
245
+ font-size: 16px;
246
+ margin-bottom: 8px;
247
+ }
248
+
249
+ .e-bigger .e-recurrenceeditor .e-input-wrapper-side .e-non-week .e-form-left {
250
+ padding-bottom: 12px;
251
+ }
252
+
253
+ .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-label {
254
+ font-size: 16px;
255
+ margin-bottom: 1px;
256
+ }
257
+
258
+ .e-bigger .e-recurrenceeditor .e-month-expander tr:first-child .e-input-wrapper,
259
+ .e-bigger .e-recurrenceeditor .e-year-expander,
260
+ .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-form-right {
261
+ margin-bottom: 11px;
262
+ }
263
+
264
+ .e-bigger .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
265
+ width: 0;
266
+ }
267
+
268
+ .e-bigger .e-recurrenceeditor .e-days button {
269
+ height: 40px;
270
+ width: 40px;
271
+ }
272
+
273
+ .e-bigger .e-recurrenceeditor.e-rtl .e-form-left,
274
+ .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-form-left {
275
+ padding: 0 0 10px 12px;
276
+ }
277
+
278
+ .e-bigger .e-recurrenceeditor.e-rtl .e-form-right,
279
+ .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-form-right {
280
+ padding: 0 12px 10px 0;
281
+ }
282
+
283
+ .e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element {
284
+ padding-left: 0;
285
+ padding-right: 64px;
286
+ }
287
+
288
+ .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-label,
289
+ .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-non-week > .e-month-expander-label {
290
+ padding-right: 0;
291
+ }
292
+
293
+ .e-bigger .e-recurrenceeditor.e-rtl .e-end-on-label {
294
+ margin-bottom: 5px;
295
+ }
296
+
297
+ .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
298
+ padding-left: 12px;
299
+ padding-right: 0;
300
+ }
301
+
302
+ .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
303
+ .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
304
+ padding-left: 0;
305
+ padding-right: 12px;
306
+ }
307
+
308
+ .e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-week-position {
309
+ right: 33px;
310
+ }
311
+
312
+ .e-bigger .e-recurrenceeditor.e-rtl .e-week-position {
313
+ padding-left: 46px;
314
+ }
315
+
316
+ .e-device .e-recurrenceeditor .e-recurrence-table.e-repeat-content-wrapper td:last-child {
317
+ width: 25%;
318
+ }
319
+
320
+ .e-device .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
321
+ width: 20%;
322
+ }
323
+
324
+ .e-device .e-recurrenceeditor .e-week-expander-label {
325
+ margin-bottom: 6px;
326
+ }
327
+
328
+ .e-device .e-recurrenceeditor .e-month-expander-label {
329
+ font-size: 12px;
330
+ margin-bottom: 5px;
331
+ }
332
+
333
+ .e-device .e-recurrenceeditor .e-footer-content {
334
+ padding: 12px;
335
+ }
336
+
337
+ .e-device .e-recurrenceeditor .e-form-left,
338
+ .e-device .e-recurrenceeditor .e-input-wrapper-side.e-form-left {
339
+ padding: 0 3px 10px 0;
340
+ }
341
+
342
+ .e-device .e-recurrenceeditor .e-form-right,
343
+ .e-device .e-recurrenceeditor .e-input-wrapper-side.e-form-right {
344
+ padding: 0 0 10px 3px;
345
+ }
346
+
347
+ .e-device .e-recurrenceeditor .e-input-wrapper.e-end-on-date,
348
+ .e-device .e-recurrenceeditor .e-input-wrapper.e-end-on-count {
349
+ padding-left: 10px;
350
+ padding-right: 0;
351
+ }
352
+
353
+ .e-device .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
354
+ padding-right: 10px;
355
+ }
356
+
357
+ .e-device .e-recurrenceeditor.e-end-on {
358
+ padding-right: 0;
359
+ }
360
+
361
+ .e-device .e-recurrenceeditor.e-end-on .e-end-on-label {
362
+ float: none;
363
+ font-size: 12px;
364
+ font-weight: 400;
365
+ margin-bottom: 7px;
366
+ }
367
+
368
+ .e-device .e-recurrenceeditor.e-end-on .e-end-on-left {
369
+ padding-right: 0;
370
+ }
371
+
372
+ .e-device .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
373
+ padding-right: 0;
374
+ }
375
+
376
+ .e-device .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
377
+ .e-device .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
378
+ padding-left: 0;
379
+ padding-right: 10px;
380
+ }
381
+
382
+ .e-device .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element {
383
+ padding-left: 0;
384
+ }
385
+
386
+ .e-device .e-recurrenceeditor.e-rtl .e-week-position {
387
+ padding-left: 16px;
388
+ padding-right: 0;
389
+ }
390
+
391
+ .e-device .e-recurrenceeditor .e-recurrence-table .e-monthday-element {
392
+ padding-left: 20px;
393
+ }
394
+
395
+ .e-device .e-recurrenceeditor .e-week-position {
396
+ padding-left: 0;
397
+ padding-right: 0;
398
+ }
399
+
400
+ .e-device .e-recurrenceeditor .e-week-position {
401
+ padding-left: 0;
402
+ }
403
+
404
+ .e-device.e-recurrence-dialog .e-dlg-header-content {
405
+ background: none;
406
+ box-shadow: none;
407
+ padding-bottom: 10px;
408
+ }
409
+
410
+ .e-device.e-recurrence-dialog .e-editor .e-input-wrapper-side.e-end-on .e-end-on-label {
411
+ margin-bottom: 7px;
412
+ }
413
+
414
+ .e-device.e-recurrence-dialog .e-footer-content {
415
+ padding: 16px 8px;
416
+ }
417
+
418
+ @media (max-width: 580px) {
419
+ .e-recurrenceeditor {
420
+ margin-left: auto;
421
+ margin-right: auto;
422
+ width: 100%;
423
+ }
424
+ .e-recurrenceeditor .e-editor {
425
+ -ms-flex-direction: column;
426
+ flex-direction: column;
427
+ }
428
+ .e-recurrenceeditor .e-editor > .e-input-wrapper.e-form-left {
429
+ margin-top: 0;
430
+ }
431
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week > .e-month-expander-label,
432
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on .e-end-on-label {
433
+ margin-bottom: 7px;
434
+ }
435
+ .e-recurrenceeditor .e-editor > div {
436
+ margin-top: 20px;
437
+ }
438
+ .e-recurrenceeditor .e-editor > .e-input-wrapper {
439
+ width: 100%;
440
+ }
441
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on {
442
+ width: 100%;
443
+ }
444
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on .e-input-wrapper {
445
+ width: 50%;
446
+ }
447
+ .e-recurrenceeditor .e-editor .e-form-left,
448
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-form-left {
449
+ padding: 0 0 10px;
450
+ }
451
+ .e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-date,
452
+ .e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-count {
453
+ padding-left: 10px;
454
+ padding-right: 0;
455
+ }
456
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on .e-end-on-left {
457
+ padding-right: 10px;
458
+ }
459
+ .e-recurrenceeditor .e-editor .e-form-right,
460
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-form-right {
461
+ padding-left: 0;
462
+ }
463
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-days {
464
+ width: 100%;
465
+ }
466
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week {
467
+ width: 100%;
468
+ }
469
+ .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
470
+ padding-right: 0;
471
+ }
472
+ .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
473
+ .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
474
+ padding-left: 0;
475
+ padding-right: 10px;
476
+ }
477
+ }
478
+
479
+ /*! Recurrence-Editor component theme */
@@ -0,0 +1,3 @@
1
+ @import 'ej2-base/styles/bootstrap5-dark-definition.scss';
2
+ @import 'bootstrap5-dark-definition.scss';
3
+ @import 'all.scss';