@syncfusion/ej2-angular-schedule 20.2.50-ngcc → 20.2.50

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