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