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