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