@syncfusion/ej2-schedule 32.1.22 → 32.1.25-810416

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