@syncfusion/ej2-schedule 19.3.55 → 19.4.42

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 (121) hide show
  1. package/.github/PULL_REQUEST_TEMPLATE/Bug.md +63 -0
  2. package/.github/PULL_REQUEST_TEMPLATE/Feature.md +39 -0
  3. package/CHANGELOG.md +50 -1
  4. package/dist/ej2-schedule.umd.min.js +2 -2
  5. package/dist/ej2-schedule.umd.min.js.map +1 -1
  6. package/dist/es6/ej2-schedule.es2015.js +489 -145
  7. package/dist/es6/ej2-schedule.es2015.js.map +1 -1
  8. package/dist/es6/ej2-schedule.es5.js +493 -152
  9. package/dist/es6/ej2-schedule.es5.js.map +1 -1
  10. package/dist/global/ej2-schedule.min.js +2 -2
  11. package/dist/global/ej2-schedule.min.js.map +1 -1
  12. package/dist/global/index.d.ts +1 -1
  13. package/package.json +15 -15
  14. package/src/recurrence-editor/recurrence-editor.js +2 -2
  15. package/src/schedule/actions/drag.js +12 -4
  16. package/src/schedule/actions/keyboard.d.ts +7 -0
  17. package/src/schedule/actions/keyboard.js +197 -28
  18. package/src/schedule/actions/resize.js +44 -37
  19. package/src/schedule/base/css-constant.d.ts +6 -0
  20. package/src/schedule/base/css-constant.js +6 -0
  21. package/src/schedule/base/interface.d.ts +12 -0
  22. package/src/schedule/base/resource.js +1 -0
  23. package/src/schedule/base/schedule-model.d.ts +89 -20
  24. package/src/schedule/base/schedule.d.ts +88 -19
  25. package/src/schedule/base/schedule.js +15 -4
  26. package/src/schedule/base/util.d.ts +1 -0
  27. package/src/schedule/base/util.js +1 -0
  28. package/src/schedule/event-renderer/event-base.d.ts +2 -1
  29. package/src/schedule/event-renderer/event-base.js +19 -4
  30. package/src/schedule/event-renderer/inline-edit.js +8 -5
  31. package/src/schedule/event-renderer/month.js +3 -2
  32. package/src/schedule/event-renderer/timeline-view.js +4 -0
  33. package/src/schedule/event-renderer/vertical-view.js +9 -6
  34. package/src/schedule/event-renderer/year.js +1 -1
  35. package/src/schedule/exports/excel-export.d.ts +2 -1
  36. package/src/schedule/exports/excel-export.js +21 -18
  37. package/src/schedule/models/event-settings-model.d.ts +17 -9
  38. package/src/schedule/models/event-settings.d.ts +15 -8
  39. package/src/schedule/models/event-settings.js +6 -3
  40. package/src/schedule/models/views-model.d.ts +19 -0
  41. package/src/schedule/models/views.d.ts +17 -0
  42. package/src/schedule/models/views.js +6 -0
  43. package/src/schedule/popups/quick-popups.js +3 -0
  44. package/src/schedule/renderer/agenda.js +2 -1
  45. package/src/schedule/renderer/header-renderer.d.ts +1 -0
  46. package/src/schedule/renderer/header-renderer.js +23 -8
  47. package/src/schedule/renderer/month.d.ts +4 -0
  48. package/src/schedule/renderer/month.js +69 -19
  49. package/src/schedule/renderer/renderer.js +6 -1
  50. package/src/schedule/renderer/timeline-year.js +4 -1
  51. package/src/schedule/renderer/view-base.js +12 -1
  52. package/src/schedule/renderer/year.d.ts +2 -2
  53. package/src/schedule/renderer/year.js +24 -6
  54. package/styles/bootstrap-dark.css +108 -27
  55. package/styles/bootstrap.css +105 -27
  56. package/styles/bootstrap4.css +117 -62
  57. package/styles/bootstrap5-dark.css +118 -67
  58. package/styles/bootstrap5.css +118 -67
  59. package/styles/fabric-dark.css +108 -26
  60. package/styles/fabric.css +109 -26
  61. package/styles/highcontrast-light.css +104 -26
  62. package/styles/highcontrast.css +109 -28
  63. package/styles/material-dark.css +110 -32
  64. package/styles/material.css +103 -25
  65. package/styles/recurrence-editor/_bootstrap-dark-definition.scss +7 -0
  66. package/styles/recurrence-editor/_bootstrap-definition.scss +7 -0
  67. package/styles/recurrence-editor/_bootstrap4-definition.scss +7 -0
  68. package/styles/recurrence-editor/_bootstrap5-definition.scss +7 -0
  69. package/styles/recurrence-editor/_fabric-dark-definition.scss +8 -0
  70. package/styles/recurrence-editor/_fabric-definition.scss +7 -0
  71. package/styles/recurrence-editor/_fluent-definition.scss +15 -0
  72. package/styles/recurrence-editor/_highcontrast-definition.scss +7 -0
  73. package/styles/recurrence-editor/_highcontrast-light-definition.scss +7 -0
  74. package/styles/recurrence-editor/_layout.scss +20 -4
  75. package/styles/recurrence-editor/_material-dark-definition.scss +7 -0
  76. package/styles/recurrence-editor/_material-definition.scss +7 -0
  77. package/styles/recurrence-editor/_tailwind-definition.scss +15 -8
  78. package/styles/recurrence-editor/bootstrap-dark.css +20 -4
  79. package/styles/recurrence-editor/bootstrap.css +20 -4
  80. package/styles/recurrence-editor/bootstrap4.css +20 -4
  81. package/styles/recurrence-editor/bootstrap5-dark.css +20 -4
  82. package/styles/recurrence-editor/bootstrap5.css +20 -4
  83. package/styles/recurrence-editor/fabric-dark.css +20 -4
  84. package/styles/recurrence-editor/fabric.css +20 -4
  85. package/styles/recurrence-editor/highcontrast-light.css +20 -4
  86. package/styles/recurrence-editor/highcontrast.css +20 -4
  87. package/styles/recurrence-editor/material-dark.css +20 -4
  88. package/styles/recurrence-editor/material.css +20 -4
  89. package/styles/recurrence-editor/tailwind-dark.css +20 -4
  90. package/styles/recurrence-editor/tailwind.css +20 -4
  91. package/styles/schedule/_bootstrap-dark-definition.scss +22 -1
  92. package/styles/schedule/_bootstrap-definition.scss +22 -1
  93. package/styles/schedule/_bootstrap4-definition.scss +23 -1
  94. package/styles/schedule/_bootstrap5-definition.scss +145 -119
  95. package/styles/schedule/_fabric-dark-definition.scss +22 -1
  96. package/styles/schedule/_fabric-definition.scss +22 -1
  97. package/styles/schedule/_fluent-definition.scss +218 -0
  98. package/styles/schedule/_highcontrast-definition.scss +22 -1
  99. package/styles/schedule/_highcontrast-light-definition.scss +22 -1
  100. package/styles/schedule/_layout.scss +95 -158
  101. package/styles/schedule/_material-dark-definition.scss +22 -1
  102. package/styles/schedule/_material-definition.scss +21 -0
  103. package/styles/schedule/_tailwind-definition.scss +216 -195
  104. package/styles/schedule/_theme.scss +1 -1
  105. package/styles/schedule/bootstrap-dark.css +88 -23
  106. package/styles/schedule/bootstrap.css +85 -23
  107. package/styles/schedule/bootstrap4.css +97 -58
  108. package/styles/schedule/bootstrap5-dark.css +98 -63
  109. package/styles/schedule/bootstrap5.css +98 -63
  110. package/styles/schedule/fabric-dark.css +88 -22
  111. package/styles/schedule/fabric.css +89 -22
  112. package/styles/schedule/highcontrast-light.css +84 -22
  113. package/styles/schedule/highcontrast.css +89 -24
  114. package/styles/schedule/icons/_fluent.scss +231 -0
  115. package/styles/schedule/icons/_tailwind.scss +231 -231
  116. package/styles/schedule/material-dark.css +90 -28
  117. package/styles/schedule/material.css +83 -21
  118. package/styles/schedule/tailwind-dark.css +94 -52
  119. package/styles/schedule/tailwind.css +94 -52
  120. package/styles/tailwind-dark.css +114 -56
  121. package/styles/tailwind.css +114 -56
@@ -35,8 +35,13 @@
35
35
  }
36
36
 
37
37
  .e-recurrenceeditor .e-recurrence-table .e-week-position {
38
+ min-width: 98px;
38
39
  position: relative;
39
- right: 16px;
40
+ right: 27px;
41
+ }
42
+
43
+ .e-recurrenceeditor .e-recurrence-table .e-day-position {
44
+ min-width: 120px;
40
45
  }
41
46
 
42
47
  .e-recurrenceeditor .e-recurrence-table .e-monthday-element {
@@ -86,12 +91,13 @@
86
91
  }
87
92
 
88
93
  .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element {
89
- padding-left: 0;
94
+ position: relative;
95
+ right: 10px;
90
96
  }
91
97
 
92
98
  .e-recurrenceeditor.e-rtl .e-week-position {
93
- padding-left: 16px;
94
- right: 0;
99
+ position: relative;
100
+ right: -27px;
95
101
  }
96
102
 
97
103
  .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-label,
@@ -228,15 +234,25 @@
228
234
  }
229
235
 
230
236
  .e-bigger .e-recurrenceeditor .e-week-position {
237
+ min-width: 162px;
231
238
  padding-left: 55px;
232
239
  padding-right: 0;
233
240
  }
234
241
 
242
+ .e-bigger .e-recurrenceeditor .e-day-position {
243
+ min-width: 190px;
244
+ padding-left: 54px;
245
+ }
246
+
235
247
  .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
236
248
  font-size: 12px;
237
249
  margin-bottom: 0;
238
250
  }
239
251
 
252
+ .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
253
+ padding-right: 8px;
254
+ }
255
+
240
256
  .e-bigger .e-recurrenceeditor .e-end-on-label {
241
257
  margin-bottom: 0;
242
258
  }
@@ -35,8 +35,13 @@
35
35
  }
36
36
 
37
37
  .e-recurrenceeditor .e-recurrence-table .e-week-position {
38
+ min-width: 98px;
38
39
  position: relative;
39
- right: 16px;
40
+ right: 27px;
41
+ }
42
+
43
+ .e-recurrenceeditor .e-recurrence-table .e-day-position {
44
+ min-width: 120px;
40
45
  }
41
46
 
42
47
  .e-recurrenceeditor .e-recurrence-table .e-monthday-element {
@@ -86,12 +91,13 @@
86
91
  }
87
92
 
88
93
  .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element {
89
- padding-left: 0;
94
+ position: relative;
95
+ right: 10px;
90
96
  }
91
97
 
92
98
  .e-recurrenceeditor.e-rtl .e-week-position {
93
- padding-left: 16px;
94
- right: 0;
99
+ position: relative;
100
+ right: -27px;
95
101
  }
96
102
 
97
103
  .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-label,
@@ -228,15 +234,25 @@
228
234
  }
229
235
 
230
236
  .e-bigger .e-recurrenceeditor .e-week-position {
237
+ min-width: 162px;
231
238
  padding-left: 55px;
232
239
  padding-right: 0;
233
240
  }
234
241
 
242
+ .e-bigger .e-recurrenceeditor .e-day-position {
243
+ min-width: 190px;
244
+ padding-left: 54px;
245
+ }
246
+
235
247
  .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
236
248
  font-size: 16px;
237
249
  margin-bottom: 0;
238
250
  }
239
251
 
252
+ .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
253
+ padding-right: 16px;
254
+ }
255
+
240
256
  .e-bigger .e-recurrenceeditor .e-end-on-label {
241
257
  margin-bottom: 0;
242
258
  }
@@ -35,8 +35,13 @@
35
35
  }
36
36
 
37
37
  .e-recurrenceeditor .e-recurrence-table .e-week-position {
38
+ min-width: 98px;
38
39
  position: relative;
39
- right: 16px;
40
+ right: 27px;
41
+ }
42
+
43
+ .e-recurrenceeditor .e-recurrence-table .e-day-position {
44
+ min-width: 120px;
40
45
  }
41
46
 
42
47
  .e-recurrenceeditor .e-recurrence-table .e-monthday-element {
@@ -86,12 +91,13 @@
86
91
  }
87
92
 
88
93
  .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element {
89
- padding-left: 0;
94
+ position: relative;
95
+ right: 10px;
90
96
  }
91
97
 
92
98
  .e-recurrenceeditor.e-rtl .e-week-position {
93
- padding-left: 16px;
94
- right: 0;
99
+ position: relative;
100
+ right: -27px;
95
101
  }
96
102
 
97
103
  .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-label,
@@ -228,15 +234,25 @@
228
234
  }
229
235
 
230
236
  .e-bigger .e-recurrenceeditor .e-week-position {
237
+ min-width: 162px;
231
238
  padding-left: 55px;
232
239
  padding-right: 0;
233
240
  }
234
241
 
242
+ .e-bigger .e-recurrenceeditor .e-day-position {
243
+ min-width: 190px;
244
+ padding-left: 54px;
245
+ }
246
+
235
247
  .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
236
248
  font-size: 16px;
237
249
  margin-bottom: 0;
238
250
  }
239
251
 
252
+ .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
253
+ padding-right: 16px;
254
+ }
255
+
240
256
  .e-bigger .e-recurrenceeditor .e-end-on-label {
241
257
  margin-bottom: 0;
242
258
  }
@@ -35,8 +35,13 @@
35
35
  }
36
36
 
37
37
  .e-recurrenceeditor .e-recurrence-table .e-week-position {
38
+ min-width: 98px;
38
39
  position: relative;
39
- right: 16px;
40
+ right: 27px;
41
+ }
42
+
43
+ .e-recurrenceeditor .e-recurrence-table .e-day-position {
44
+ min-width: 120px;
40
45
  }
41
46
 
42
47
  .e-recurrenceeditor .e-recurrence-table .e-monthday-element {
@@ -86,12 +91,13 @@
86
91
  }
87
92
 
88
93
  .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element {
89
- padding-left: 0;
94
+ position: relative;
95
+ right: 10px;
90
96
  }
91
97
 
92
98
  .e-recurrenceeditor.e-rtl .e-week-position {
93
- padding-left: 16px;
94
- right: 0;
99
+ position: relative;
100
+ right: -27px;
95
101
  }
96
102
 
97
103
  .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-label,
@@ -228,15 +234,25 @@
228
234
  }
229
235
 
230
236
  .e-bigger .e-recurrenceeditor .e-week-position {
237
+ min-width: 162px;
231
238
  padding-left: 55px;
232
239
  padding-right: 0;
233
240
  }
234
241
 
242
+ .e-bigger .e-recurrenceeditor .e-day-position {
243
+ min-width: 190px;
244
+ padding-left: 54px;
245
+ }
246
+
235
247
  .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
236
248
  font-size: 16px;
237
249
  margin-bottom: 0;
238
250
  }
239
251
 
252
+ .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
253
+ padding-right: 16px;
254
+ }
255
+
240
256
  .e-bigger .e-recurrenceeditor .e-end-on-label {
241
257
  margin-bottom: 0;
242
258
  }
@@ -35,8 +35,13 @@
35
35
  }
36
36
 
37
37
  .e-recurrenceeditor .e-recurrence-table .e-week-position {
38
+ min-width: 90px;
38
39
  position: relative;
39
- right: 16px;
40
+ right: 21px;
41
+ }
42
+
43
+ .e-recurrenceeditor .e-recurrence-table .e-day-position {
44
+ min-width: 120px;
40
45
  }
41
46
 
42
47
  .e-recurrenceeditor .e-recurrence-table .e-monthday-element {
@@ -86,12 +91,13 @@
86
91
  }
87
92
 
88
93
  .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element {
89
- padding-left: 0;
94
+ position: relative;
95
+ right: 10px;
90
96
  }
91
97
 
92
98
  .e-recurrenceeditor.e-rtl .e-week-position {
93
- padding-left: 16px;
94
- right: 0;
99
+ position: relative;
100
+ right: -21px;
95
101
  }
96
102
 
97
103
  .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-label,
@@ -228,15 +234,25 @@
228
234
  }
229
235
 
230
236
  .e-bigger .e-recurrenceeditor .e-week-position {
237
+ min-width: 157px;
231
238
  padding-left: 55px;
232
239
  padding-right: 0;
233
240
  }
234
241
 
242
+ .e-bigger .e-recurrenceeditor .e-day-position {
243
+ min-width: 183px;
244
+ padding-left: 54px;
245
+ }
246
+
235
247
  .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
236
248
  font-size: 13px;
237
249
  margin-bottom: 0;
238
250
  }
239
251
 
252
+ .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
253
+ padding-right: 5px;
254
+ }
255
+
240
256
  .e-bigger .e-recurrenceeditor .e-end-on-label {
241
257
  margin-bottom: 0;
242
258
  }
@@ -35,8 +35,13 @@
35
35
  }
36
36
 
37
37
  .e-recurrenceeditor .e-recurrence-table .e-week-position {
38
+ min-width: 90px;
38
39
  position: relative;
39
- right: 16px;
40
+ right: 21px;
41
+ }
42
+
43
+ .e-recurrenceeditor .e-recurrence-table .e-day-position {
44
+ min-width: 120px;
40
45
  }
41
46
 
42
47
  .e-recurrenceeditor .e-recurrence-table .e-monthday-element {
@@ -86,12 +91,13 @@
86
91
  }
87
92
 
88
93
  .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element {
89
- padding-left: 0;
94
+ position: relative;
95
+ right: 10px;
90
96
  }
91
97
 
92
98
  .e-recurrenceeditor.e-rtl .e-week-position {
93
- padding-left: 16px;
94
- right: 0;
99
+ position: relative;
100
+ right: -21px;
95
101
  }
96
102
 
97
103
  .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-label,
@@ -228,15 +234,25 @@
228
234
  }
229
235
 
230
236
  .e-bigger .e-recurrenceeditor .e-week-position {
237
+ min-width: 157px;
231
238
  padding-left: 55px;
232
239
  padding-right: 0;
233
240
  }
234
241
 
242
+ .e-bigger .e-recurrenceeditor .e-day-position {
243
+ min-width: 183px;
244
+ padding-left: 54px;
245
+ }
246
+
235
247
  .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
236
248
  font-size: 13px;
237
249
  margin-bottom: 0;
238
250
  }
239
251
 
252
+ .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
253
+ padding-right: 5px;
254
+ }
255
+
240
256
  .e-bigger .e-recurrenceeditor .e-end-on-label {
241
257
  margin-bottom: 0;
242
258
  }
@@ -35,8 +35,13 @@
35
35
  }
36
36
 
37
37
  .e-recurrenceeditor .e-recurrence-table .e-week-position {
38
+ min-width: 88px;
38
39
  position: relative;
39
- right: 16px;
40
+ right: 19px;
41
+ }
42
+
43
+ .e-recurrenceeditor .e-recurrence-table .e-day-position {
44
+ min-width: 120px;
40
45
  }
41
46
 
42
47
  .e-recurrenceeditor .e-recurrence-table .e-monthday-element {
@@ -86,12 +91,13 @@
86
91
  }
87
92
 
88
93
  .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element {
89
- padding-left: 0;
94
+ position: relative;
95
+ right: 10px;
90
96
  }
91
97
 
92
98
  .e-recurrenceeditor.e-rtl .e-week-position {
93
- padding-left: 16px;
94
- right: 0;
99
+ position: relative;
100
+ right: -19px;
95
101
  }
96
102
 
97
103
  .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-label,
@@ -228,15 +234,25 @@
228
234
  }
229
235
 
230
236
  .e-bigger .e-recurrenceeditor .e-week-position {
237
+ min-width: 157px;
231
238
  padding-left: 55px;
232
239
  padding-right: 0;
233
240
  }
234
241
 
242
+ .e-bigger .e-recurrenceeditor .e-day-position {
243
+ min-width: 183px;
244
+ padding-left: 54px;
245
+ }
246
+
235
247
  .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
236
248
  font-size: 12px;
237
249
  margin-bottom: 0;
238
250
  }
239
251
 
252
+ .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
253
+ padding-right: 5px;
254
+ }
255
+
240
256
  .e-bigger .e-recurrenceeditor .e-end-on-label {
241
257
  margin-bottom: 0;
242
258
  }
@@ -35,8 +35,13 @@
35
35
  }
36
36
 
37
37
  .e-recurrenceeditor .e-recurrence-table .e-week-position {
38
+ min-width: 88px;
38
39
  position: relative;
39
- right: 16px;
40
+ right: 19px;
41
+ }
42
+
43
+ .e-recurrenceeditor .e-recurrence-table .e-day-position {
44
+ min-width: 120px;
40
45
  }
41
46
 
42
47
  .e-recurrenceeditor .e-recurrence-table .e-monthday-element {
@@ -86,12 +91,13 @@
86
91
  }
87
92
 
88
93
  .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element {
89
- padding-left: 0;
94
+ position: relative;
95
+ right: 10px;
90
96
  }
91
97
 
92
98
  .e-recurrenceeditor.e-rtl .e-week-position {
93
- padding-left: 16px;
94
- right: 0;
99
+ position: relative;
100
+ right: -19px;
95
101
  }
96
102
 
97
103
  .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-label,
@@ -228,15 +234,25 @@
228
234
  }
229
235
 
230
236
  .e-bigger .e-recurrenceeditor .e-week-position {
237
+ min-width: 157px;
231
238
  padding-left: 55px;
232
239
  padding-right: 0;
233
240
  }
234
241
 
242
+ .e-bigger .e-recurrenceeditor .e-day-position {
243
+ min-width: 183px;
244
+ padding-left: 54px;
245
+ }
246
+
235
247
  .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
236
248
  font-size: 12px;
237
249
  margin-bottom: 0;
238
250
  }
239
251
 
252
+ .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
253
+ padding-right: 5px;
254
+ }
255
+
240
256
  .e-bigger .e-recurrenceeditor .e-end-on-label {
241
257
  margin-bottom: 0;
242
258
  }
@@ -36,8 +36,13 @@
36
36
  }
37
37
 
38
38
  .e-recurrenceeditor .e-recurrence-table .e-week-position {
39
+ min-width: 81px;
39
40
  position: relative;
40
- right: 16px;
41
+ right: 24px;
42
+ }
43
+
44
+ .e-recurrenceeditor .e-recurrence-table .e-day-position {
45
+ min-width: 120px;
41
46
  }
42
47
 
43
48
  .e-recurrenceeditor .e-recurrence-table .e-monthday-element {
@@ -87,12 +92,13 @@
87
92
  }
88
93
 
89
94
  .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element {
90
- padding-left: 0;
95
+ position: relative;
96
+ right: 10px;
91
97
  }
92
98
 
93
99
  .e-recurrenceeditor.e-rtl .e-week-position {
94
- padding-left: 16px;
95
- right: 0;
100
+ position: relative;
101
+ right: -24px;
96
102
  }
97
103
 
98
104
  .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-label,
@@ -229,15 +235,25 @@
229
235
  }
230
236
 
231
237
  .e-bigger .e-recurrenceeditor .e-week-position {
238
+ min-width: 125px;
232
239
  padding-left: 55px;
233
240
  padding-right: 0;
234
241
  }
235
242
 
243
+ .e-bigger .e-recurrenceeditor .e-day-position {
244
+ min-width: 128px;
245
+ padding-left: 14px;
246
+ }
247
+
236
248
  .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
237
249
  font-size: 12px;
238
250
  margin-bottom: 0;
239
251
  }
240
252
 
253
+ .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
254
+ padding-right: 16px;
255
+ }
256
+
241
257
  .e-bigger .e-recurrenceeditor .e-end-on-label {
242
258
  margin-bottom: 0;
243
259
  }
@@ -36,8 +36,13 @@
36
36
  }
37
37
 
38
38
  .e-recurrenceeditor .e-recurrence-table .e-week-position {
39
+ min-width: 81px;
39
40
  position: relative;
40
- right: 16px;
41
+ right: 24px;
42
+ }
43
+
44
+ .e-recurrenceeditor .e-recurrence-table .e-day-position {
45
+ min-width: 120px;
41
46
  }
42
47
 
43
48
  .e-recurrenceeditor .e-recurrence-table .e-monthday-element {
@@ -87,12 +92,13 @@
87
92
  }
88
93
 
89
94
  .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element {
90
- padding-left: 0;
95
+ position: relative;
96
+ right: 10px;
91
97
  }
92
98
 
93
99
  .e-recurrenceeditor.e-rtl .e-week-position {
94
- padding-left: 16px;
95
- right: 0;
100
+ position: relative;
101
+ right: -24px;
96
102
  }
97
103
 
98
104
  .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-label,
@@ -229,15 +235,25 @@
229
235
  }
230
236
 
231
237
  .e-bigger .e-recurrenceeditor .e-week-position {
238
+ min-width: 125px;
232
239
  padding-left: 55px;
233
240
  padding-right: 0;
234
241
  }
235
242
 
243
+ .e-bigger .e-recurrenceeditor .e-day-position {
244
+ min-width: 128px;
245
+ padding-left: 14px;
246
+ }
247
+
236
248
  .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
237
249
  font-size: 12px;
238
250
  margin-bottom: 0;
239
251
  }
240
252
 
253
+ .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
254
+ padding-right: 16px;
255
+ }
256
+
241
257
  .e-bigger .e-recurrenceeditor .e-end-on-label {
242
258
  margin-bottom: 0;
243
259
  }
@@ -36,8 +36,13 @@
36
36
  }
37
37
 
38
38
  .e-recurrenceeditor .e-recurrence-table .e-week-position {
39
+ min-width: 94px;
39
40
  position: relative;
40
- right: 16px;
41
+ right: 26px;
42
+ }
43
+
44
+ .e-recurrenceeditor .e-recurrence-table .e-day-position {
45
+ min-width: 120px;
41
46
  }
42
47
 
43
48
  .e-recurrenceeditor .e-recurrence-table .e-monthday-element {
@@ -87,12 +92,13 @@
87
92
  }
88
93
 
89
94
  .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element {
90
- padding-left: 0;
95
+ position: relative;
96
+ right: 10px;
91
97
  }
92
98
 
93
99
  .e-recurrenceeditor.e-rtl .e-week-position {
94
- padding-left: 16px;
95
- right: 0;
100
+ position: relative;
101
+ right: -26px;
96
102
  }
97
103
 
98
104
  .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-label,
@@ -229,15 +235,25 @@
229
235
  }
230
236
 
231
237
  .e-bigger .e-recurrenceeditor .e-week-position {
238
+ min-width: 167px;
232
239
  padding-left: 55px;
233
240
  padding-right: 0;
234
241
  }
235
242
 
243
+ .e-bigger .e-recurrenceeditor .e-day-position {
244
+ min-width: 197px;
245
+ padding-left: 54px;
246
+ }
247
+
236
248
  .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
237
249
  font-size: 16px;
238
250
  margin-bottom: 0;
239
251
  }
240
252
 
253
+ .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
254
+ padding-right: 2px;
255
+ }
256
+
241
257
  .e-bigger .e-recurrenceeditor .e-end-on-label {
242
258
  margin-bottom: 0;
243
259
  }
@@ -36,8 +36,13 @@
36
36
  }
37
37
 
38
38
  .e-recurrenceeditor .e-recurrence-table .e-week-position {
39
+ min-width: 94px;
39
40
  position: relative;
40
- right: 16px;
41
+ right: 26px;
42
+ }
43
+
44
+ .e-recurrenceeditor .e-recurrence-table .e-day-position {
45
+ min-width: 120px;
41
46
  }
42
47
 
43
48
  .e-recurrenceeditor .e-recurrence-table .e-monthday-element {
@@ -87,12 +92,13 @@
87
92
  }
88
93
 
89
94
  .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element {
90
- padding-left: 0;
95
+ position: relative;
96
+ right: 10px;
91
97
  }
92
98
 
93
99
  .e-recurrenceeditor.e-rtl .e-week-position {
94
- padding-left: 16px;
95
- right: 0;
100
+ position: relative;
101
+ right: -26px;
96
102
  }
97
103
 
98
104
  .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-label,
@@ -229,15 +235,25 @@
229
235
  }
230
236
 
231
237
  .e-bigger .e-recurrenceeditor .e-week-position {
238
+ min-width: 167px;
232
239
  padding-left: 55px;
233
240
  padding-right: 0;
234
241
  }
235
242
 
243
+ .e-bigger .e-recurrenceeditor .e-day-position {
244
+ min-width: 197px;
245
+ padding-left: 54px;
246
+ }
247
+
236
248
  .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
237
249
  font-size: 16px;
238
250
  margin-bottom: 0;
239
251
  }
240
252
 
253
+ .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
254
+ padding-right: 2px;
255
+ }
256
+
241
257
  .e-bigger .e-recurrenceeditor .e-end-on-label {
242
258
  margin-bottom: 0;
243
259
  }