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