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

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 (173) hide show
  1. package/README.md +47 -121
  2. package/esm2020/public_api.mjs +3 -0
  3. package/esm2020/src/index.mjs +11 -0
  4. package/esm2020/src/recurrence-editor/recurrenceeditor-all.module.mjs +23 -0
  5. package/esm2020/src/recurrence-editor/recurrenceeditor.component.mjs +59 -0
  6. package/esm2020/src/recurrence-editor/recurrenceeditor.module.mjs +25 -0
  7. package/esm2020/src/schedule/headerrows.directive.mjs +66 -0
  8. package/esm2020/src/schedule/resources.directive.mjs +58 -0
  9. package/esm2020/src/schedule/schedule-all.module.mjs +74 -0
  10. package/esm2020/src/schedule/schedule.component.mjs +283 -0
  11. package/esm2020/src/schedule/schedule.module.mjs +52 -0
  12. package/esm2020/src/schedule/views.directive.mjs +126 -0
  13. package/esm2020/syncfusion-ej2-angular-schedule.mjs +5 -0
  14. package/fesm2015/syncfusion-ej2-angular-schedule.mjs +733 -0
  15. package/fesm2015/syncfusion-ej2-angular-schedule.mjs.map +1 -0
  16. package/fesm2020/syncfusion-ej2-angular-schedule.mjs +733 -0
  17. package/fesm2020/syncfusion-ej2-angular-schedule.mjs.map +1 -0
  18. package/package.json +45 -22
  19. package/schematics/utils/lib-details.d.ts +2 -2
  20. package/src/recurrence-editor/recurrenceeditor-all.module.d.ts +6 -0
  21. package/src/recurrence-editor/recurrenceeditor.component.d.ts +3 -0
  22. package/src/recurrence-editor/recurrenceeditor.module.d.ts +6 -0
  23. package/src/schedule/headerrows.directive.d.ts +5 -0
  24. package/src/schedule/resources.directive.d.ts +5 -0
  25. package/src/schedule/schedule-all.module.d.ts +6 -0
  26. package/src/schedule/schedule.component.d.ts +3 -0
  27. package/src/schedule/schedule.module.d.ts +9 -0
  28. package/src/schedule/views.directive.d.ts +6 -6
  29. package/styles/bootstrap-dark.css +106 -369
  30. package/styles/bootstrap.css +104 -368
  31. package/styles/bootstrap4.css +146 -380
  32. package/styles/bootstrap5-dark.css +142 -344
  33. package/styles/bootstrap5.css +142 -344
  34. package/styles/fabric-dark.css +106 -335
  35. package/styles/fabric.css +111 -321
  36. package/styles/fluent-dark.css +107 -400
  37. package/styles/fluent.css +107 -400
  38. package/styles/highcontrast-light.css +103 -412
  39. package/styles/highcontrast.css +118 -404
  40. package/styles/material-dark.css +115 -367
  41. package/styles/material.css +115 -409
  42. package/styles/recurrence-editor/_all.scss +2 -0
  43. package/styles/recurrence-editor/_bootstrap-dark-definition.scss +13 -0
  44. package/styles/recurrence-editor/_bootstrap-definition.scss +13 -0
  45. package/styles/recurrence-editor/_bootstrap4-definition.scss +13 -0
  46. package/styles/recurrence-editor/_bootstrap5-dark-definition.scss +1 -0
  47. package/styles/recurrence-editor/_bootstrap5-definition.scss +13 -0
  48. package/styles/recurrence-editor/_fabric-dark-definition.scss +13 -0
  49. package/styles/recurrence-editor/_fabric-definition.scss +13 -0
  50. package/styles/recurrence-editor/_fluent-dark-definition.scss +1 -0
  51. package/styles/recurrence-editor/_fluent-definition.scss +13 -0
  52. package/styles/recurrence-editor/_fusionnew-definition.scss +13 -0
  53. package/styles/recurrence-editor/_highcontrast-definition.scss +13 -0
  54. package/styles/recurrence-editor/_highcontrast-light-definition.scss +13 -0
  55. package/styles/recurrence-editor/_layout.scss +534 -0
  56. package/styles/recurrence-editor/_material-dark-definition.scss +13 -0
  57. package/styles/recurrence-editor/_material-definition.scss +13 -0
  58. package/styles/recurrence-editor/_material3-definition.scss +13 -0
  59. package/styles/recurrence-editor/_tailwind-dark-definition.scss +1 -0
  60. package/styles/recurrence-editor/_tailwind-definition.scss +13 -0
  61. package/styles/recurrence-editor/_theme.scss +1 -0
  62. package/styles/recurrence-editor/bootstrap-dark.css +33 -142
  63. package/styles/recurrence-editor/bootstrap-dark.scss +3 -1
  64. package/styles/recurrence-editor/bootstrap.css +33 -142
  65. package/styles/recurrence-editor/bootstrap.scss +3 -1
  66. package/styles/recurrence-editor/bootstrap4.css +33 -176
  67. package/styles/recurrence-editor/bootstrap4.scss +3 -1
  68. package/styles/recurrence-editor/bootstrap5-dark.css +33 -183
  69. package/styles/recurrence-editor/bootstrap5-dark.scss +3 -1
  70. package/styles/recurrence-editor/bootstrap5.css +33 -183
  71. package/styles/recurrence-editor/bootstrap5.scss +3 -1
  72. package/styles/recurrence-editor/fabric-dark.css +33 -118
  73. package/styles/recurrence-editor/fabric-dark.scss +3 -1
  74. package/styles/recurrence-editor/fabric.css +33 -111
  75. package/styles/recurrence-editor/fabric.scss +3 -1
  76. package/styles/recurrence-editor/fluent-dark.css +33 -163
  77. package/styles/recurrence-editor/fluent-dark.scss +3 -1
  78. package/styles/recurrence-editor/fluent.css +33 -163
  79. package/styles/recurrence-editor/fluent.scss +3 -1
  80. package/styles/recurrence-editor/highcontrast-light.css +33 -115
  81. package/styles/recurrence-editor/highcontrast-light.scss +3 -1
  82. package/styles/recurrence-editor/highcontrast.css +33 -115
  83. package/styles/recurrence-editor/highcontrast.scss +3 -1
  84. package/styles/recurrence-editor/material-dark.css +33 -143
  85. package/styles/recurrence-editor/material-dark.scss +3 -1
  86. package/styles/recurrence-editor/material.css +33 -168
  87. package/styles/recurrence-editor/material.scss +3 -1
  88. package/styles/recurrence-editor/tailwind-dark.css +33 -131
  89. package/styles/recurrence-editor/tailwind-dark.scss +3 -1
  90. package/styles/recurrence-editor/tailwind.css +33 -131
  91. package/styles/recurrence-editor/tailwind.scss +3 -1
  92. package/styles/schedule/_all.scss +2 -0
  93. package/styles/schedule/_bootstrap-dark-definition.scss +213 -0
  94. package/styles/schedule/_bootstrap-definition.scss +213 -0
  95. package/styles/schedule/_bootstrap4-definition.scss +215 -0
  96. package/styles/schedule/_bootstrap5-dark-definition.scss +1 -0
  97. package/styles/schedule/_bootstrap5-definition.scss +224 -0
  98. package/styles/schedule/_fabric-dark-definition.scss +213 -0
  99. package/styles/schedule/_fabric-definition.scss +213 -0
  100. package/styles/schedule/_fluent-dark-definition.scss +1 -0
  101. package/styles/schedule/_fluent-definition.scss +220 -0
  102. package/styles/schedule/_fusionnew-definition.scss +224 -0
  103. package/styles/schedule/_highcontrast-definition.scss +214 -0
  104. package/styles/schedule/_highcontrast-light-definition.scss +214 -0
  105. package/styles/schedule/_layout.scss +4489 -0
  106. package/styles/schedule/_material-dark-definition.scss +213 -0
  107. package/styles/schedule/_material-definition.scss +213 -0
  108. package/styles/schedule/_material3-definition.scss +224 -0
  109. package/styles/schedule/_tailwind-dark-definition.scss +1 -0
  110. package/styles/schedule/_tailwind-definition.scss +217 -0
  111. package/styles/schedule/_theme.scss +510 -0
  112. package/styles/schedule/bootstrap-dark.css +73 -332
  113. package/styles/schedule/bootstrap-dark.scss +5 -1
  114. package/styles/schedule/bootstrap.css +71 -331
  115. package/styles/schedule/bootstrap.scss +5 -1
  116. package/styles/schedule/bootstrap4.css +113 -343
  117. package/styles/schedule/bootstrap4.scss +5 -1
  118. package/styles/schedule/bootstrap5-dark.css +109 -307
  119. package/styles/schedule/bootstrap5-dark.scss +4 -1
  120. package/styles/schedule/bootstrap5.css +109 -307
  121. package/styles/schedule/bootstrap5.scss +5 -1
  122. package/styles/schedule/fabric-dark.css +73 -298
  123. package/styles/schedule/fabric-dark.scss +5 -1
  124. package/styles/schedule/fabric.css +78 -284
  125. package/styles/schedule/fabric.scss +5 -1
  126. package/styles/schedule/fluent-dark.css +74 -363
  127. package/styles/schedule/fluent-dark.scss +4 -1
  128. package/styles/schedule/fluent.css +74 -363
  129. package/styles/schedule/fluent.scss +5 -1
  130. package/styles/schedule/highcontrast-light.css +70 -375
  131. package/styles/schedule/highcontrast-light.scss +5 -1
  132. package/styles/schedule/highcontrast.css +85 -367
  133. package/styles/schedule/highcontrast.scss +5 -1
  134. package/styles/schedule/icons/_bootstrap-dark.scss +231 -0
  135. package/styles/schedule/icons/_bootstrap.scss +231 -0
  136. package/styles/schedule/icons/_bootstrap4.scss +231 -0
  137. package/styles/schedule/icons/_bootstrap5-dark.scss +1 -0
  138. package/styles/schedule/icons/_bootstrap5.scss +231 -0
  139. package/styles/schedule/icons/_fabric-dark.scss +231 -0
  140. package/styles/schedule/icons/_fabric.scss +231 -0
  141. package/styles/schedule/icons/_fluent-dark.scss +1 -0
  142. package/styles/schedule/icons/_fluent.scss +231 -0
  143. package/styles/schedule/icons/_fusionnew.scss +231 -0
  144. package/styles/schedule/icons/_highcontrast-light.scss +231 -0
  145. package/styles/schedule/icons/_highcontrast.scss +231 -0
  146. package/styles/schedule/icons/_material-dark.scss +231 -0
  147. package/styles/schedule/icons/_material.scss +231 -0
  148. package/styles/schedule/icons/_material3.scss +231 -0
  149. package/styles/schedule/icons/_tailwind-dark.scss +1 -0
  150. package/styles/schedule/icons/_tailwind.scss +231 -0
  151. package/styles/schedule/material-dark.css +82 -330
  152. package/styles/schedule/material-dark.scss +5 -1
  153. package/styles/schedule/material.css +82 -372
  154. package/styles/schedule/material.scss +5 -1
  155. package/styles/schedule/tailwind-dark.css +111 -246
  156. package/styles/schedule/tailwind-dark.scss +4 -1
  157. package/styles/schedule/tailwind.css +111 -246
  158. package/styles/schedule/tailwind.scss +5 -1
  159. package/styles/tailwind-dark.css +145 -284
  160. package/styles/tailwind.css +145 -284
  161. package/syncfusion-ej2-angular-schedule.d.ts +5 -0
  162. package/@syncfusion/ej2-angular-schedule.es5.js +0 -840
  163. package/@syncfusion/ej2-angular-schedule.es5.js.map +0 -1
  164. package/@syncfusion/ej2-angular-schedule.js +0 -788
  165. package/@syncfusion/ej2-angular-schedule.js.map +0 -1
  166. package/CHANGELOG.md +0 -1589
  167. package/dist/ej2-angular-schedule.umd.js +0 -980
  168. package/dist/ej2-angular-schedule.umd.js.map +0 -1
  169. package/dist/ej2-angular-schedule.umd.min.js +0 -11
  170. package/dist/ej2-angular-schedule.umd.min.js.map +0 -1
  171. package/ej2-angular-schedule.d.ts +0 -6
  172. package/ej2-angular-schedule.metadata.json +0 -1
  173. package/postinstall/tagchange.js +0 -18
@@ -0,0 +1,13 @@
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: 90px !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;
@@ -0,0 +1,13 @@
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: 130px !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;
@@ -0,0 +1 @@
1
+ @import './tailwind-definition.scss';
@@ -0,0 +1,13 @@
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: 130px !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;
@@ -0,0 +1 @@
1
+ /*! Recurrence-Editor component theme */
@@ -1,108 +1,3 @@
1
- .e-popup.e-ddl {
2
- border-radius: 4px;
3
- box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
4
- margin-top: 3px;
5
- }
6
- .e-popup.e-ddl .e-input-group {
7
- width: auto;
8
- }
9
- .e-popup.e-ddl .e-input-group input {
10
- line-height: 15px;
11
- }
12
-
13
- .e-popup.e-ddl .e-dropdownbase {
14
- min-height: 26px;
15
- }
16
-
17
- .e-popup.e-ddl .e-filter-parent .e-input-group {
18
- display: -ms-flexbox;
19
- display: flex;
20
- width: auto;
21
- }
22
- .e-popup.e-ddl .e-filter-parent .e-input-group .e-back-icon {
23
- border: 0;
24
- }
25
-
26
- .e-bigger .e-popup.e-ddl-device-filter {
27
- margin-top: 0;
28
- }
29
-
30
- .e-bigger .e-popup.e-ddl .e-list-item, .e-bigger .e-popup.e-ddl .e-list-group-item, .e-bigger .e-popup.e-ddl .e-fixed-head {
31
- font-size: 15px;
32
- line-height: 40px;
33
- padding-left: 0;
34
- text-indent: 24px;
35
- }
36
-
37
- .e-bigger .e-popup.e-ddl .e-dd-group .e-list-item {
38
- padding-left: 4px;
39
- }
40
-
41
- .e-bigger .e-popup.e-ddl .e-input-group {
42
- padding: 4px 0;
43
- }
44
-
45
- .e-bigger .e-popup.e-ddl .e-input-group input, .e-bigger .e-popup.e-ddl .e-input-group input.e-input {
46
- height: 38px;
47
- }
48
-
49
- .e-bigger .e-popup.e-ddl .e-dropdownbase {
50
- min-height: 40px;
51
- }
52
-
53
- .e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:active,
54
- .e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:hover,
55
- .e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-ddl-icon:active,
56
- .e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-ddl-icon:hover,
57
- .e-ddl.e-popup .e-input-group:not(.e-disabled) .e-clear-icon:active,
58
- .e-ddl.e-popup .e-input-group:not(.e-disabled) .e-clear-icon:hover,
59
- .e-ddl.e-popup .e-input-group:not(.e-disabled) .e-back-icon:active,
60
- .e-ddl.e-popup .e-input-group:not(.e-disabled) .e-back-icon:hover {
61
- background: transparent;
62
- color: #f0f0f0;
63
- }
64
-
65
- .e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon,
66
- .e-input-group.e-disabled.e-ddl .e-control.e-dropdownlist ~ .e-input-group-icon,
67
- .e-control.e-dropdownlist .e-input-group.e-disabled.e-ddl .e-input-group-icon,
68
- .e-control.e-dropdownlist .e-input-group.e-ddl .e-input-group-icon {
69
- border: 0;
70
- }
71
-
72
- .e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-input-group-icon:active,
73
- .e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-input-group-icon:active,
74
- .e-ddl.e-popup .e-input-group:not(.e-disabled) .e-back-icon:active,
75
- .e-ddl.e-popup .e-input-group:not(.e-disabled) .e-clear-icon:active {
76
- box-shadow: none;
77
- }
78
-
79
- .e-ddl.e-popup .e-filter-parent {
80
- border-bottom: 1px solid #484848;
81
- }
82
-
83
- .e-bigger.e-small .e-ddl.e-popup .e-list-item, .e-bigger.e-small .e-ddl.e-popup .e-list-group-item, .e-bigger.e-small .e-ddl.e-popup .e-fixed-head {
84
- font-size: 14px;
85
- line-height: 34px;
86
- padding-left: 0;
87
- text-indent: 16px;
88
- }
89
-
90
- .e-bigger.e-small .e-ddl.e-popup .e-dd-group .e-list-item {
91
- padding-left: 4px;
92
- }
93
-
94
- .e-bigger.e-small .e-ddl.e-popup .e-input-group {
95
- padding: 4px 0;
96
- }
97
-
98
- .e-bigger.e-small .e-ddl.e-popup .e-input-group input, .e-bigger.e-small .e-ddl.e-popup .e-input-group input.e-input {
99
- height: 30px;
100
- }
101
-
102
- .e-bigger.e-small .e-popup.e-ddl .e-dropdownbase {
103
- min-height: 34px;
104
- }
105
-
106
1
  /*! recurrence editor theme wise definitions*/
107
2
  /*! Recurrence-Editor component layout */
108
3
  .e-recurrenceeditor .e-editor {
@@ -110,7 +5,8 @@
110
5
  display: flex;
111
6
  -ms-flex-flow: row wrap;
112
7
  flex-flow: row wrap;
113
- margin: 0 auto;
8
+ margin-left: auto;
9
+ margin-right: auto;
114
10
  max-width: 1240px;
115
11
  }
116
12
  .e-recurrenceeditor .e-recurrence-table {
@@ -151,7 +47,7 @@
151
47
  }
152
48
  .e-recurrenceeditor .e-form-right,
153
49
  .e-recurrenceeditor .e-input-wrapper-side.e-form-right {
154
- padding: 0 0 10px;
50
+ padding: 0 0 10px 8px;
155
51
  }
156
52
  .e-recurrenceeditor .e-input-wrapper {
157
53
  float: left;
@@ -192,11 +88,13 @@
192
88
  margin-bottom: 5px;
193
89
  }
194
90
  .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
195
- padding: 0 0 0 8px;
91
+ padding-left: 8px;
92
+ padding-right: 0;
196
93
  }
197
94
  .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
198
95
  .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
199
- padding: 0 8px 0 0;
96
+ padding-left: 0;
97
+ padding-right: 8px;
200
98
  }
201
99
  .e-recurrenceeditor.e-rtl .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
202
100
  width: 30px;
@@ -224,10 +122,10 @@
224
122
  margin-bottom: 11px;
225
123
  }
226
124
  .e-recurrenceeditor .e-month-expander tr:first-child .e-input-wrapper {
227
- padding-bottom: 11px;
125
+ margin-bottom: 11px;
228
126
  }
229
127
  .e-recurrenceeditor .e-month-expander-checkbox-wrapper.e-input-wrapper {
230
- padding-top: 3px;
128
+ margin-top: -3px;
231
129
  }
232
130
  .e-recurrenceeditor .e-month-expander-checkbox-wrapper.e-input-wrapper .e-month-type .e-label {
233
131
  display: none;
@@ -277,7 +175,7 @@
277
175
  }
278
176
  .e-bigger .e-recurrenceeditor .e-form-right,
279
177
  .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-form-right {
280
- padding: 0 0 10px;
178
+ padding: 0 0 10px 12px;
281
179
  }
282
180
  .e-bigger .e-recurrenceeditor .e-input-wrapper-side .e-days .e-form-left {
283
181
  padding-bottom: 6px;
@@ -336,7 +234,8 @@
336
234
  }
337
235
  .e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element,
338
236
  .e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-day-position {
339
- padding: 0 64px 0 0;
237
+ padding-left: 0;
238
+ padding-right: 64px;
340
239
  }
341
240
  .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-label,
342
241
  .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-non-week > .e-month-expander-label {
@@ -346,11 +245,13 @@
346
245
  margin-bottom: 5px;
347
246
  }
348
247
  .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
349
- padding: 0 0 0 12px;
248
+ padding-left: 12px;
249
+ padding-right: 0;
350
250
  }
351
251
  .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
352
252
  .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
353
- padding: 0 12px 0 0;
253
+ padding-left: 0;
254
+ padding-right: 12px;
354
255
  }
355
256
  .e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-week-position {
356
257
  left: 0;
@@ -382,7 +283,8 @@
382
283
  }
383
284
  .e-device .e-recurrenceeditor .e-input-wrapper.e-end-on-date,
384
285
  .e-device .e-recurrenceeditor .e-input-wrapper.e-end-on-count {
385
- padding: 0 0 0 10px;
286
+ padding-left: 10px;
287
+ padding-right: 0;
386
288
  }
387
289
  .e-device .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
388
290
  padding-right: 10px;
@@ -403,25 +305,23 @@
403
305
  .e-device .e-recurrenceeditor .e-recurrence-table .e-day-position {
404
306
  padding-left: 20px;
405
307
  }
406
- .e-device .e-recurrenceeditor .e-recurrence-table .e-monthday-element {
407
- margin-left: 20px;
408
- }
409
308
  .e-device .e-recurrenceeditor .e-week-position {
410
309
  right: 0;
411
- padding-right: 10px;
412
310
  }
413
311
  .e-device .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
414
312
  padding-right: 0;
415
313
  }
416
314
  .e-device .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
417
315
  .e-device .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
418
- padding: 0 10px 0 0;
316
+ padding-left: 0;
317
+ padding-right: 10px;
419
318
  }
420
319
  .e-device .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element {
421
- padding: 0 20px 0 0;
320
+ padding-left: 0;
422
321
  }
423
322
  .e-device .e-recurrenceeditor.e-rtl .e-recurrence-table .e-day-position {
424
- padding: 0 50px 0 0;
323
+ padding-right: 20px;
324
+ padding-left: 0;
425
325
  }
426
326
  .e-device .e-recurrenceeditor.e-rtl .e-week-position {
427
327
  left: 0;
@@ -438,14 +338,6 @@
438
338
  padding: 16px 8px;
439
339
  }
440
340
 
441
- @media (max-width: 1024px) {
442
- .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on {
443
- width: 100%;
444
- }
445
- .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week {
446
- width: 65%;
447
- }
448
- }
449
341
  @media (max-width: 580px) {
450
342
  .e-recurrenceeditor {
451
343
  margin-left: auto;
@@ -460,7 +352,7 @@
460
352
  margin-top: 0;
461
353
  }
462
354
  .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week > .e-month-expander-label,
463
- .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on .e-end-on-label {
355
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on .e-end-on-label {
464
356
  margin-bottom: 7px;
465
357
  }
466
358
  .e-recurrenceeditor .e-editor > div {
@@ -476,35 +368,34 @@
476
368
  width: 50%;
477
369
  }
478
370
  .e-recurrenceeditor .e-editor .e-form-left,
479
- .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-form-left {
371
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-form-left {
480
372
  padding: 0 0 10px;
481
373
  }
482
374
  .e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-date,
483
- .e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-count {
484
- padding: 0 0 0 10px;
375
+ .e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-count {
376
+ padding-left: 10px;
377
+ padding-right: 0;
485
378
  }
486
379
  .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on .e-end-on-left {
487
380
  padding-right: 10px;
488
381
  }
489
382
  .e-recurrenceeditor .e-editor .e-form-right,
490
- .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-form-right {
383
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-form-right {
491
384
  padding-left: 0;
492
385
  }
493
386
  .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-days {
494
387
  width: 100%;
495
388
  }
496
389
  .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week {
497
- width: 65%;
498
- }
499
- .e-recurrenceeditor .e-editor .e-recurrence-table .e-day-position {
500
- padding-left: 50px;
390
+ width: 100%;
501
391
  }
502
392
  .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
503
393
  padding-right: 0;
504
394
  }
505
395
  .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
506
- .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
507
- padding: 0 10px 0 0;
396
+ .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
397
+ padding-left: 0;
398
+ padding-right: 10px;
508
399
  }
509
400
  }
510
401
  /*! 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,108 +1,3 @@
1
- .e-popup.e-ddl {
2
- border-radius: 4px;
3
- box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
4
- margin-top: 3px;
5
- }
6
- .e-popup.e-ddl .e-input-group {
7
- width: auto;
8
- }
9
- .e-popup.e-ddl .e-input-group input {
10
- line-height: 15px;
11
- }
12
-
13
- .e-popup.e-ddl .e-dropdownbase {
14
- min-height: 26px;
15
- }
16
-
17
- .e-popup.e-ddl .e-filter-parent .e-input-group {
18
- display: -ms-flexbox;
19
- display: flex;
20
- width: auto;
21
- }
22
- .e-popup.e-ddl .e-filter-parent .e-input-group .e-back-icon {
23
- border: 0;
24
- }
25
-
26
- .e-bigger .e-popup.e-ddl-device-filter {
27
- margin-top: 0;
28
- }
29
-
30
- .e-bigger .e-popup.e-ddl .e-list-item, .e-bigger .e-popup.e-ddl .e-list-group-item, .e-bigger .e-popup.e-ddl .e-fixed-head {
31
- font-size: 15px;
32
- line-height: 40px;
33
- padding-left: 0;
34
- text-indent: 24px;
35
- }
36
-
37
- .e-bigger .e-popup.e-ddl .e-dd-group .e-list-item {
38
- padding-left: 4px;
39
- }
40
-
41
- .e-bigger .e-popup.e-ddl .e-input-group {
42
- padding: 4px 0;
43
- }
44
-
45
- .e-bigger .e-popup.e-ddl .e-input-group input, .e-bigger .e-popup.e-ddl .e-input-group input.e-input {
46
- height: 38px;
47
- }
48
-
49
- .e-bigger .e-popup.e-ddl .e-dropdownbase {
50
- min-height: 40px;
51
- }
52
-
53
- .e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:active,
54
- .e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:hover,
55
- .e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-ddl-icon:active,
56
- .e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-ddl-icon:hover,
57
- .e-ddl.e-popup .e-input-group:not(.e-disabled) .e-clear-icon:active,
58
- .e-ddl.e-popup .e-input-group:not(.e-disabled) .e-clear-icon:hover,
59
- .e-ddl.e-popup .e-input-group:not(.e-disabled) .e-back-icon:active,
60
- .e-ddl.e-popup .e-input-group:not(.e-disabled) .e-back-icon:hover {
61
- background: transparent;
62
- color: #333;
63
- }
64
-
65
- .e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon,
66
- .e-input-group.e-disabled.e-ddl .e-control.e-dropdownlist ~ .e-input-group-icon,
67
- .e-control.e-dropdownlist .e-input-group.e-disabled.e-ddl .e-input-group-icon,
68
- .e-control.e-dropdownlist .e-input-group.e-ddl .e-input-group-icon {
69
- border: 0;
70
- }
71
-
72
- .e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-input-group-icon:active,
73
- .e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-input-group-icon:active,
74
- .e-ddl.e-popup .e-input-group:not(.e-disabled) .e-back-icon:active,
75
- .e-ddl.e-popup .e-input-group:not(.e-disabled) .e-clear-icon:active {
76
- box-shadow: none;
77
- }
78
-
79
- .e-ddl.e-popup .e-filter-parent {
80
- border-bottom: 1px solid #ccc;
81
- }
82
-
83
- .e-bigger.e-small .e-ddl.e-popup .e-list-item, .e-bigger.e-small .e-ddl.e-popup .e-list-group-item, .e-bigger.e-small .e-ddl.e-popup .e-fixed-head {
84
- font-size: 14px;
85
- line-height: 34px;
86
- padding-left: 0;
87
- text-indent: 16px;
88
- }
89
-
90
- .e-bigger.e-small .e-ddl.e-popup .e-dd-group .e-list-item {
91
- padding-left: 4px;
92
- }
93
-
94
- .e-bigger.e-small .e-ddl.e-popup .e-input-group {
95
- padding: 4px 0;
96
- }
97
-
98
- .e-bigger.e-small .e-ddl.e-popup .e-input-group input, .e-bigger.e-small .e-ddl.e-popup .e-input-group input.e-input {
99
- height: 30px;
100
- }
101
-
102
- .e-bigger.e-small .e-popup.e-ddl .e-dropdownbase {
103
- min-height: 34px;
104
- }
105
-
106
1
  /*! recurrence editor theme wise definitions*/
107
2
  /*! Recurrence-Editor component layout */
108
3
  .e-recurrenceeditor .e-editor {
@@ -110,7 +5,8 @@
110
5
  display: flex;
111
6
  -ms-flex-flow: row wrap;
112
7
  flex-flow: row wrap;
113
- margin: 0 auto;
8
+ margin-left: auto;
9
+ margin-right: auto;
114
10
  max-width: 1240px;
115
11
  }
116
12
  .e-recurrenceeditor .e-recurrence-table {
@@ -151,7 +47,7 @@
151
47
  }
152
48
  .e-recurrenceeditor .e-form-right,
153
49
  .e-recurrenceeditor .e-input-wrapper-side.e-form-right {
154
- padding: 0 0 10px;
50
+ padding: 0 0 10px 8px;
155
51
  }
156
52
  .e-recurrenceeditor .e-input-wrapper {
157
53
  float: left;
@@ -192,11 +88,13 @@
192
88
  margin-bottom: 5px;
193
89
  }
194
90
  .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
195
- padding: 0 0 0 8px;
91
+ padding-left: 8px;
92
+ padding-right: 0;
196
93
  }
197
94
  .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
198
95
  .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
199
- padding: 0 8px 0 0;
96
+ padding-left: 0;
97
+ padding-right: 8px;
200
98
  }
201
99
  .e-recurrenceeditor.e-rtl .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
202
100
  width: 30px;
@@ -224,10 +122,10 @@
224
122
  margin-bottom: 11px;
225
123
  }
226
124
  .e-recurrenceeditor .e-month-expander tr:first-child .e-input-wrapper {
227
- padding-bottom: 11px;
125
+ margin-bottom: 11px;
228
126
  }
229
127
  .e-recurrenceeditor .e-month-expander-checkbox-wrapper.e-input-wrapper {
230
- padding-top: 3px;
128
+ margin-top: -3px;
231
129
  }
232
130
  .e-recurrenceeditor .e-month-expander-checkbox-wrapper.e-input-wrapper .e-month-type .e-label {
233
131
  display: none;
@@ -277,7 +175,7 @@
277
175
  }
278
176
  .e-bigger .e-recurrenceeditor .e-form-right,
279
177
  .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-form-right {
280
- padding: 0 0 10px;
178
+ padding: 0 0 10px 12px;
281
179
  }
282
180
  .e-bigger .e-recurrenceeditor .e-input-wrapper-side .e-days .e-form-left {
283
181
  padding-bottom: 6px;
@@ -336,7 +234,8 @@
336
234
  }
337
235
  .e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element,
338
236
  .e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-day-position {
339
- padding: 0 64px 0 0;
237
+ padding-left: 0;
238
+ padding-right: 64px;
340
239
  }
341
240
  .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-label,
342
241
  .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-non-week > .e-month-expander-label {
@@ -346,11 +245,13 @@
346
245
  margin-bottom: 5px;
347
246
  }
348
247
  .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
349
- padding: 0 0 0 12px;
248
+ padding-left: 12px;
249
+ padding-right: 0;
350
250
  }
351
251
  .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
352
252
  .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
353
- padding: 0 12px 0 0;
253
+ padding-left: 0;
254
+ padding-right: 12px;
354
255
  }
355
256
  .e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-week-position {
356
257
  left: 0;
@@ -382,7 +283,8 @@
382
283
  }
383
284
  .e-device .e-recurrenceeditor .e-input-wrapper.e-end-on-date,
384
285
  .e-device .e-recurrenceeditor .e-input-wrapper.e-end-on-count {
385
- padding: 0 0 0 10px;
286
+ padding-left: 10px;
287
+ padding-right: 0;
386
288
  }
387
289
  .e-device .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
388
290
  padding-right: 10px;
@@ -403,25 +305,23 @@
403
305
  .e-device .e-recurrenceeditor .e-recurrence-table .e-day-position {
404
306
  padding-left: 20px;
405
307
  }
406
- .e-device .e-recurrenceeditor .e-recurrence-table .e-monthday-element {
407
- margin-left: 20px;
408
- }
409
308
  .e-device .e-recurrenceeditor .e-week-position {
410
309
  right: 0;
411
- padding-right: 10px;
412
310
  }
413
311
  .e-device .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
414
312
  padding-right: 0;
415
313
  }
416
314
  .e-device .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
417
315
  .e-device .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
418
- padding: 0 10px 0 0;
316
+ padding-left: 0;
317
+ padding-right: 10px;
419
318
  }
420
319
  .e-device .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element {
421
- padding: 0 20px 0 0;
320
+ padding-left: 0;
422
321
  }
423
322
  .e-device .e-recurrenceeditor.e-rtl .e-recurrence-table .e-day-position {
424
- padding: 0 50px 0 0;
323
+ padding-right: 20px;
324
+ padding-left: 0;
425
325
  }
426
326
  .e-device .e-recurrenceeditor.e-rtl .e-week-position {
427
327
  left: 0;
@@ -438,14 +338,6 @@
438
338
  padding: 16px 8px;
439
339
  }
440
340
 
441
- @media (max-width: 1024px) {
442
- .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on {
443
- width: 100%;
444
- }
445
- .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week {
446
- width: 65%;
447
- }
448
- }
449
341
  @media (max-width: 580px) {
450
342
  .e-recurrenceeditor {
451
343
  margin-left: auto;
@@ -460,7 +352,7 @@
460
352
  margin-top: 0;
461
353
  }
462
354
  .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week > .e-month-expander-label,
463
- .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on .e-end-on-label {
355
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on .e-end-on-label {
464
356
  margin-bottom: 7px;
465
357
  }
466
358
  .e-recurrenceeditor .e-editor > div {
@@ -476,35 +368,34 @@
476
368
  width: 50%;
477
369
  }
478
370
  .e-recurrenceeditor .e-editor .e-form-left,
479
- .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-form-left {
371
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-form-left {
480
372
  padding: 0 0 10px;
481
373
  }
482
374
  .e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-date,
483
- .e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-count {
484
- padding: 0 0 0 10px;
375
+ .e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-count {
376
+ padding-left: 10px;
377
+ padding-right: 0;
485
378
  }
486
379
  .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on .e-end-on-left {
487
380
  padding-right: 10px;
488
381
  }
489
382
  .e-recurrenceeditor .e-editor .e-form-right,
490
- .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-form-right {
383
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-form-right {
491
384
  padding-left: 0;
492
385
  }
493
386
  .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-days {
494
387
  width: 100%;
495
388
  }
496
389
  .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week {
497
- width: 65%;
498
- }
499
- .e-recurrenceeditor .e-editor .e-recurrence-table .e-day-position {
500
- padding-left: 50px;
390
+ width: 100%;
501
391
  }
502
392
  .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
503
393
  padding-right: 0;
504
394
  }
505
395
  .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
506
- .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
507
- padding: 0 10px 0 0;
396
+ .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
397
+ padding-left: 0;
398
+ padding-right: 10px;
508
399
  }
509
400
  }
510
401
  /*! Recurrence-Editor component theme */
@@ -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';