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

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