@syncfusion/ej2-schedule 26.1.40 → 26.1.41-16103

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 (298) hide show
  1. package/.eslintrc.json +243 -260
  2. package/README.md +82 -82
  3. package/dist/ej2-schedule.umd.min.js +1 -10
  4. package/dist/ej2-schedule.umd.min.js.map +1 -1
  5. package/dist/es6/ej2-schedule.es2015.js +591 -244
  6. package/dist/es6/ej2-schedule.es2015.js.map +1 -1
  7. package/dist/es6/ej2-schedule.es5.js +1057 -703
  8. package/dist/es6/ej2-schedule.es5.js.map +1 -1
  9. package/helpers/e2e/index.js +3 -3
  10. package/helpers/e2e/recurrence-editor.js +13 -13
  11. package/helpers/e2e/schedule.js +13 -13
  12. package/license +9 -9
  13. package/package.json +79 -79
  14. package/src/recurrence-editor/date-generator.js +3 -0
  15. package/src/recurrence-editor/recurrence-editor-model.d.ts +65 -65
  16. package/src/recurrence-editor/recurrence-editor.js +19 -19
  17. package/src/schedule/actions/crud.js +22 -6
  18. package/src/schedule/actions/drag.d.ts +4 -0
  19. package/src/schedule/actions/drag.js +73 -34
  20. package/src/schedule/actions/keyboard.d.ts +1 -0
  21. package/src/schedule/actions/keyboard.js +45 -3
  22. package/src/schedule/actions/resize.js +34 -33
  23. package/src/schedule/actions/touch.js +4 -0
  24. package/src/schedule/actions/virtual-scroll.d.ts +6 -0
  25. package/src/schedule/actions/virtual-scroll.js +119 -34
  26. package/src/schedule/base/interface.d.ts +6 -2
  27. package/src/schedule/base/resource.js +5 -0
  28. package/src/schedule/base/schedule-model.d.ts +805 -805
  29. package/src/schedule/base/schedule.d.ts +26 -0
  30. package/src/schedule/base/schedule.js +63 -21
  31. package/src/schedule/base/util.d.ts +10 -5
  32. package/src/schedule/base/util.js +15 -10
  33. package/src/schedule/event-renderer/agenda-base.js +13 -13
  34. package/src/schedule/event-renderer/event-base.js +18 -3
  35. package/src/schedule/event-renderer/inline-edit.js +13 -5
  36. package/src/schedule/event-renderer/month.js +20 -17
  37. package/src/schedule/event-renderer/timeline-view.js +21 -18
  38. package/src/schedule/event-renderer/vertical-view.d.ts +2 -1
  39. package/src/schedule/event-renderer/vertical-view.js +65 -33
  40. package/src/schedule/event-renderer/year.js +20 -20
  41. package/src/schedule/exports/print.js +1 -0
  42. package/src/schedule/models/event-settings-model.d.ts +155 -155
  43. package/src/schedule/models/event-settings.js +19 -19
  44. package/src/schedule/models/field-options-model.d.ts +22 -22
  45. package/src/schedule/models/field-options.js +19 -19
  46. package/src/schedule/models/fields-model.d.ts +92 -92
  47. package/src/schedule/models/fields.js +19 -19
  48. package/src/schedule/models/group-model.d.ts +48 -48
  49. package/src/schedule/models/group.js +19 -19
  50. package/src/schedule/models/header-rows-model.d.ts +22 -22
  51. package/src/schedule/models/header-rows.js +19 -19
  52. package/src/schedule/models/quick-info-templates-model.d.ts +37 -37
  53. package/src/schedule/models/quick-info-templates.js +19 -19
  54. package/src/schedule/models/resources-model.d.ts +85 -85
  55. package/src/schedule/models/resources.js +19 -19
  56. package/src/schedule/models/time-scale-model.d.ts +40 -40
  57. package/src/schedule/models/time-scale.js +19 -19
  58. package/src/schedule/models/toolbar-model.d.ts +187 -187
  59. package/src/schedule/models/toolbar.js +19 -19
  60. package/src/schedule/models/views-model.d.ts +329 -329
  61. package/src/schedule/models/views.js +19 -19
  62. package/src/schedule/models/work-hours-model.d.ts +16 -16
  63. package/src/schedule/models/work-hours.js +19 -19
  64. package/src/schedule/popups/event-tooltip.js +2 -1
  65. package/src/schedule/popups/event-window.d.ts +1 -0
  66. package/src/schedule/popups/event-window.js +13 -10
  67. package/src/schedule/renderer/agenda.js +13 -13
  68. package/src/schedule/renderer/day.js +13 -13
  69. package/src/schedule/renderer/header-renderer.d.ts +1 -0
  70. package/src/schedule/renderer/header-renderer.js +20 -12
  71. package/src/schedule/renderer/month-agenda.js +13 -13
  72. package/src/schedule/renderer/month.js +19 -13
  73. package/src/schedule/renderer/timeline-header-row.js +1 -1
  74. package/src/schedule/renderer/timeline-month.js +13 -13
  75. package/src/schedule/renderer/timeline-view.js +22 -17
  76. package/src/schedule/renderer/timeline-year.js +19 -15
  77. package/src/schedule/renderer/vertical-view.js +33 -23
  78. package/src/schedule/renderer/view-base.d.ts +1 -0
  79. package/src/schedule/renderer/view-base.js +14 -1
  80. package/src/schedule/renderer/week.js +13 -13
  81. package/src/schedule/renderer/work-week.js +13 -13
  82. package/src/schedule/renderer/year.js +17 -17
  83. package/styles/bootstrap-dark-lite.css +4174 -0
  84. package/styles/bootstrap-dark-lite.scss +18 -0
  85. package/styles/bootstrap-dark.css +823 -595
  86. package/styles/bootstrap-dark.scss +3 -2
  87. package/styles/bootstrap-lite.css +4169 -0
  88. package/styles/bootstrap-lite.scss +18 -0
  89. package/styles/bootstrap.css +823 -595
  90. package/styles/bootstrap.scss +3 -2
  91. package/styles/bootstrap4-lite.css +4216 -0
  92. package/styles/bootstrap4-lite.scss +18 -0
  93. package/styles/bootstrap4.css +809 -636
  94. package/styles/bootstrap4.scss +3 -2
  95. package/styles/bootstrap5-dark-lite.css +4215 -0
  96. package/styles/bootstrap5-dark-lite.scss +18 -0
  97. package/styles/bootstrap5-dark.css +824 -596
  98. package/styles/bootstrap5-dark.scss +3 -2
  99. package/styles/bootstrap5-lite.css +4215 -0
  100. package/styles/bootstrap5-lite.scss +18 -0
  101. package/styles/bootstrap5.3-lite.css +4261 -0
  102. package/styles/bootstrap5.3-lite.scss +18 -0
  103. package/styles/bootstrap5.3.css +5023 -0
  104. package/styles/bootstrap5.3.scss +20 -0
  105. package/styles/bootstrap5.css +824 -596
  106. package/styles/bootstrap5.scss +3 -2
  107. package/styles/fabric-dark-lite.css +4144 -0
  108. package/styles/fabric-dark-lite.scss +18 -0
  109. package/styles/fabric-dark.css +830 -594
  110. package/styles/fabric-dark.scss +3 -2
  111. package/styles/fabric-lite.css +4141 -0
  112. package/styles/fabric-lite.scss +18 -0
  113. package/styles/fabric.css +830 -587
  114. package/styles/fabric.scss +3 -2
  115. package/styles/fluent-dark-lite.css +4207 -0
  116. package/styles/fluent-dark-lite.scss +18 -0
  117. package/styles/fluent-dark.css +828 -592
  118. package/styles/fluent-dark.scss +3 -2
  119. package/styles/fluent-lite.css +4207 -0
  120. package/styles/fluent-lite.scss +18 -0
  121. package/styles/fluent.css +828 -592
  122. package/styles/fluent.scss +3 -2
  123. package/styles/fluent2-lite.css +4427 -0
  124. package/styles/fluent2-lite.scss +18 -0
  125. package/styles/fluent2.css +863 -1627
  126. package/styles/fluent2.scss +3 -2
  127. package/styles/highcontrast-light-lite.css +4233 -0
  128. package/styles/highcontrast-light-lite.scss +18 -0
  129. package/styles/highcontrast-light.css +833 -583
  130. package/styles/highcontrast-light.scss +3 -2
  131. package/styles/highcontrast-lite.css +4242 -0
  132. package/styles/highcontrast-lite.scss +18 -0
  133. package/styles/highcontrast.css +834 -584
  134. package/styles/highcontrast.scss +3 -2
  135. package/styles/material-dark-lite.css +4221 -0
  136. package/styles/material-dark-lite.scss +18 -0
  137. package/styles/material-dark.css +839 -581
  138. package/styles/material-dark.scss +3 -2
  139. package/styles/material-lite.css +4247 -0
  140. package/styles/material-lite.scss +18 -0
  141. package/styles/material.css +836 -599
  142. package/styles/material.scss +3 -2
  143. package/styles/material3-dark-lite.css +4238 -0
  144. package/styles/material3-dark-lite.scss +18 -0
  145. package/styles/material3-dark.css +832 -656
  146. package/styles/material3-dark.scss +4 -3
  147. package/styles/material3-lite.css +4240 -0
  148. package/styles/material3-lite.scss +18 -0
  149. package/styles/material3.css +831 -709
  150. package/styles/material3.scss +4 -3
  151. package/styles/recurrence-editor/_all.scss +2 -2
  152. package/styles/recurrence-editor/_bds-definition.scss +14 -14
  153. package/styles/recurrence-editor/_bigger.scss +134 -0
  154. package/styles/recurrence-editor/_bootstrap-dark-definition.scss +14 -14
  155. package/styles/recurrence-editor/_bootstrap-definition.scss +14 -14
  156. package/styles/recurrence-editor/_bootstrap4-definition.scss +14 -14
  157. package/styles/recurrence-editor/_bootstrap5-definition.scss +14 -14
  158. package/styles/recurrence-editor/_bootstrap5.3-definition.scss +14 -14
  159. package/styles/recurrence-editor/_fabric-dark-definition.scss +14 -14
  160. package/styles/recurrence-editor/_fabric-definition.scss +14 -14
  161. package/styles/recurrence-editor/_fluent-definition.scss +14 -14
  162. package/styles/recurrence-editor/_fluent2-definition.scss +14 -14
  163. package/styles/recurrence-editor/_fusionnew-definition.scss +14 -14
  164. package/styles/recurrence-editor/_highcontrast-definition.scss +14 -14
  165. package/styles/recurrence-editor/_highcontrast-light-definition.scss +14 -14
  166. package/styles/recurrence-editor/_layout.scss +415 -525
  167. package/styles/recurrence-editor/_material-dark-definition.scss +14 -14
  168. package/styles/recurrence-editor/_material-definition.scss +14 -14
  169. package/styles/recurrence-editor/_material3-definition.scss +14 -14
  170. package/styles/recurrence-editor/_tailwind-definition.scss +14 -14
  171. package/styles/recurrence-editor/_theme.scss +1 -1
  172. package/styles/recurrence-editor/bootstrap-dark.css +87 -131
  173. package/styles/recurrence-editor/bootstrap-dark.scss +1 -0
  174. package/styles/recurrence-editor/bootstrap.css +87 -131
  175. package/styles/recurrence-editor/bootstrap.scss +1 -0
  176. package/styles/recurrence-editor/bootstrap4.css +87 -149
  177. package/styles/recurrence-editor/bootstrap4.scss +1 -0
  178. package/styles/recurrence-editor/bootstrap5-dark.css +87 -135
  179. package/styles/recurrence-editor/bootstrap5-dark.scss +1 -0
  180. package/styles/recurrence-editor/bootstrap5.3.css +501 -0
  181. package/styles/recurrence-editor/bootstrap5.3.scss +9 -0
  182. package/styles/recurrence-editor/bootstrap5.css +87 -135
  183. package/styles/recurrence-editor/bootstrap5.scss +1 -0
  184. package/styles/recurrence-editor/fabric-dark.css +87 -130
  185. package/styles/recurrence-editor/fabric-dark.scss +1 -0
  186. package/styles/recurrence-editor/fabric.css +87 -123
  187. package/styles/recurrence-editor/fabric.scss +1 -0
  188. package/styles/recurrence-editor/fluent-dark.css +87 -122
  189. package/styles/recurrence-editor/fluent-dark.scss +1 -0
  190. package/styles/recurrence-editor/fluent.css +87 -122
  191. package/styles/recurrence-editor/fluent.scss +1 -0
  192. package/styles/recurrence-editor/fluent2.css +94 -1148
  193. package/styles/recurrence-editor/fluent2.scss +1 -0
  194. package/styles/recurrence-editor/highcontrast-light.css +87 -118
  195. package/styles/recurrence-editor/highcontrast-light.scss +1 -0
  196. package/styles/recurrence-editor/highcontrast.css +87 -118
  197. package/styles/recurrence-editor/highcontrast.scss +1 -0
  198. package/styles/recurrence-editor/material-dark.css +87 -115
  199. package/styles/recurrence-editor/material-dark.scss +1 -0
  200. package/styles/recurrence-editor/material.css +87 -136
  201. package/styles/recurrence-editor/material.scss +1 -0
  202. package/styles/recurrence-editor/material3-dark.css +88 -194
  203. package/styles/recurrence-editor/material3-dark.scss +2 -1
  204. package/styles/recurrence-editor/material3.css +89 -249
  205. package/styles/recurrence-editor/material3.scss +2 -1
  206. package/styles/recurrence-editor/tailwind-dark.css +87 -116
  207. package/styles/recurrence-editor/tailwind-dark.scss +1 -0
  208. package/styles/recurrence-editor/tailwind.css +87 -116
  209. package/styles/recurrence-editor/tailwind.scss +1 -0
  210. package/styles/schedule/_all.scss +2 -2
  211. package/styles/schedule/_bds-definition.scss +272 -272
  212. package/styles/schedule/_bigger.scss +810 -0
  213. package/styles/schedule/_bootstrap-dark-definition.scss +270 -270
  214. package/styles/schedule/_bootstrap-definition.scss +270 -270
  215. package/styles/schedule/_bootstrap4-definition.scss +273 -273
  216. package/styles/schedule/_bootstrap5-definition.scss +274 -274
  217. package/styles/schedule/_bootstrap5.3-definition.scss +276 -273
  218. package/styles/schedule/_fabric-dark-definition.scss +271 -271
  219. package/styles/schedule/_fabric-definition.scss +270 -270
  220. package/styles/schedule/_fluent-definition.scss +276 -276
  221. package/styles/schedule/_fluent2-definition.scss +273 -273
  222. package/styles/schedule/_fusionnew-definition.scss +273 -273
  223. package/styles/schedule/_highcontrast-definition.scss +271 -271
  224. package/styles/schedule/_highcontrast-light-definition.scss +271 -271
  225. package/styles/schedule/_layout.scss +3787 -4218
  226. package/styles/schedule/_material-dark-definition.scss +270 -270
  227. package/styles/schedule/_material-definition.scss +270 -270
  228. package/styles/schedule/_material3-definition.scss +275 -275
  229. package/styles/schedule/_tailwind-definition.scss +271 -271
  230. package/styles/schedule/_theme.scss +589 -567
  231. package/styles/schedule/bootstrap-dark.css +706 -484
  232. package/styles/schedule/bootstrap-dark.scss +1 -0
  233. package/styles/schedule/bootstrap.css +706 -484
  234. package/styles/schedule/bootstrap.scss +1 -0
  235. package/styles/schedule/bootstrap4.css +699 -532
  236. package/styles/schedule/bootstrap4.scss +1 -0
  237. package/styles/schedule/bootstrap5-dark.css +714 -492
  238. package/styles/schedule/bootstrap5-dark.scss +1 -0
  239. package/styles/schedule/bootstrap5.3.css +4621 -0
  240. package/styles/schedule/bootstrap5.3.scss +17 -0
  241. package/styles/schedule/bootstrap5.css +714 -492
  242. package/styles/schedule/bootstrap5.scss +1 -0
  243. package/styles/schedule/fabric-dark.css +713 -483
  244. package/styles/schedule/fabric-dark.scss +1 -0
  245. package/styles/schedule/fabric.css +713 -476
  246. package/styles/schedule/fabric.scss +1 -0
  247. package/styles/schedule/fluent-dark.css +723 -493
  248. package/styles/schedule/fluent-dark.scss +1 -0
  249. package/styles/schedule/fluent.css +723 -493
  250. package/styles/schedule/fluent.scss +1 -0
  251. package/styles/schedule/fluent2.css +752 -1525
  252. package/styles/schedule/fluent2.scss +1 -0
  253. package/styles/schedule/highcontrast-light.css +721 -477
  254. package/styles/schedule/highcontrast-light.scss +1 -0
  255. package/styles/schedule/highcontrast.css +721 -477
  256. package/styles/schedule/highcontrast.scss +1 -0
  257. package/styles/schedule/icons/_bds.scss +220 -220
  258. package/styles/schedule/icons/_bootstrap-dark.scss +223 -223
  259. package/styles/schedule/icons/_bootstrap.scss +223 -223
  260. package/styles/schedule/icons/_bootstrap4.scss +217 -217
  261. package/styles/schedule/icons/_bootstrap5.3.scss +220 -220
  262. package/styles/schedule/icons/_bootstrap5.scss +220 -220
  263. package/styles/schedule/icons/_fabric-dark.scss +223 -223
  264. package/styles/schedule/icons/_fabric.scss +223 -223
  265. package/styles/schedule/icons/_fluent.scss +220 -220
  266. package/styles/schedule/icons/_fluent2.scss +220 -220
  267. package/styles/schedule/icons/_fusionnew.scss +220 -220
  268. package/styles/schedule/icons/_highcontrast-light.scss +223 -223
  269. package/styles/schedule/icons/_highcontrast.scss +223 -223
  270. package/styles/schedule/icons/_material-dark.scss +223 -223
  271. package/styles/schedule/icons/_material.scss +223 -223
  272. package/styles/schedule/icons/_material3.scss +220 -220
  273. package/styles/schedule/icons/_tailwind.scss +220 -220
  274. package/styles/schedule/material-dark.css +732 -480
  275. package/styles/schedule/material-dark.scss +1 -0
  276. package/styles/schedule/material.css +729 -498
  277. package/styles/schedule/material.scss +1 -0
  278. package/styles/schedule/material3-dark.css +713 -543
  279. package/styles/schedule/material3-dark.scss +2 -1
  280. package/styles/schedule/material3.css +714 -598
  281. package/styles/schedule/material3.scss +2 -1
  282. package/styles/schedule/tailwind-dark.css +725 -484
  283. package/styles/schedule/tailwind-dark.scss +1 -0
  284. package/styles/schedule/tailwind.css +725 -484
  285. package/styles/schedule/tailwind.scss +1 -0
  286. package/styles/tailwind-dark-lite.css +4184 -0
  287. package/styles/tailwind-dark-lite.scss +18 -0
  288. package/styles/tailwind-dark.css +832 -585
  289. package/styles/tailwind-dark.scss +3 -2
  290. package/styles/tailwind-lite.css +4184 -0
  291. package/styles/tailwind-lite.scss +18 -0
  292. package/styles/tailwind.css +832 -585
  293. package/styles/tailwind.scss +3 -2
  294. package/dist/ej2-schedule.min.js +0 -10
  295. package/dist/global/ej2-schedule.min.js +0 -11
  296. package/dist/global/ej2-schedule.min.js.map +0 -1
  297. package/dist/global/index.d.ts +0 -14
  298. package/tslint.json +0 -111
@@ -1,113 +1,6 @@
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
1
 
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 #000, 0 0 0 3px #fff;
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
- }
2
+
3
+
111
4
 
112
5
  .e-ddl.e-control-wrapper .e-ddl-icon::before {
113
6
  -webkit-transform: rotate(0deg);
@@ -157,52 +50,18 @@
157
50
  border-radius: 4px;
158
51
  }
159
52
 
160
- .e-bigger .e-popup.e-ddl-device-filter .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
161
- border-color: rgba(var(--color-sf-primary));
162
- }
163
-
164
- .e-bigger .e-popup.e-ddl-device-filter {
165
- margin-top: 0;
166
- }
167
-
168
- .e-bigger .e-ddl-device .e-input-group,
169
- .e-bigger .e-ddl-device .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
170
- background: rgba(0, 0, 0, 0.0001);
171
- border-width: 0;
172
- -webkit-box-shadow: none;
173
- box-shadow: none;
174
- margin-bottom: 0;
175
- }
176
-
177
- .e-bigger .e-ddl-device .e-input-group .e-back-icon,
178
- .e-bigger .e-ddl-device .e-input-group input.e-input,
179
- .e-bigger .e-ddl-device .e-input-group .e-clear-icon {
180
- background: rgba(0, 0, 0, 0.0001);
181
- }
182
-
183
53
  .e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon {
184
54
  margin: 0 6px;
185
55
  min-height: 30px;
186
56
  min-width: 30px;
187
57
  }
188
58
 
189
- .e-bigger .e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon,
190
- .e-bigger.e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon {
191
- min-height: 38px;
192
- min-width: 38px;
193
- }
194
-
195
59
  .e-small .e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon,
196
60
  .e-small.e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon {
197
61
  min-height: 22px;
198
62
  min-width: 22px;
199
63
  }
200
64
 
201
- .e-bigger .e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-filter,
202
- .e-bigger.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-filter {
203
- padding: 4px 16px 4px 0;
204
- }
205
-
206
65
  .e-input-group.e-ddl,
207
66
  .e-input-group.e-ddl .e-input,
208
67
  .e-input-group.e-ddl .e-ddl-icon {
@@ -232,31 +91,6 @@
232
91
  padding: 4px 5px 4px 12px;
233
92
  }
234
93
 
235
- .e-bigger.e-small .e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon,
236
- .e-bigger.e-small.e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon,
237
- .e-bigger .e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-small .e-clear-icon,
238
- .e-bigger.e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-small .e-clear-icon,
239
- .e-small .e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-bigger .e-clear-icon,
240
- .e-small.e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-bigger .e-clear-icon,
241
- .e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-bigger.e-small .e-clear-icon {
242
- min-height: 34px;
243
- min-width: 34px;
244
- }
245
-
246
- .e-bigger.e-small .e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group .e-input-filter,
247
- .e-bigger.e-small.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group .e-input-filter,
248
- .e-bigger .e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-small .e-input-filter,
249
- .e-bigger.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-small .e-input-filter,
250
- .e-small .e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-bigger .e-input-filter,
251
- .e-small.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-bigger .e-input-filter,
252
- .e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-bigger.e-small .e-input-filter {
253
- padding: 8px 16px;
254
- }
255
-
256
- .e-bigger.e-small .e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-input-focus .e-clear-icon {
257
- margin: 0 4px;
258
- }
259
-
260
94
  .e-ddl.e-popup.e-outline .e-filter-parent {
261
95
  padding: 4px 8px;
262
96
  }
@@ -421,86 +255,6 @@
421
255
  margin-bottom: 11px;
422
256
  }
423
257
 
424
- .e-bigger .e-recurrenceeditor {
425
- padding: 0;
426
- }
427
- .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-form-left {
428
- padding: 0 12px 11px 0;
429
- }
430
- .e-bigger .e-recurrenceeditor .e-form-left {
431
- padding: 0 12px 14px 0;
432
- }
433
- .e-bigger .e-recurrenceeditor .e-recurrence-table .e-monthday-element {
434
- padding-left: 70px;
435
- }
436
- .e-bigger .e-recurrenceeditor .e-week-position {
437
- min-width: 130px;
438
- right: 0;
439
- }
440
- .e-bigger .e-recurrenceeditor .e-day-position {
441
- min-width: 190px;
442
- padding-left: 54px;
443
- }
444
- .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
445
- font-size: 12px;
446
- margin-bottom: -1px;
447
- font-weight: 400;
448
- }
449
- .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
450
- padding-right: 16px;
451
- }
452
- .e-bigger .e-recurrenceeditor .e-end-on-label {
453
- margin-bottom: 0;
454
- }
455
- .e-bigger .e-recurrenceeditor .e-days .e-week-expander-label {
456
- font-size: 12px;
457
- margin-bottom: 8px;
458
- }
459
- .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-label {
460
- font-size: 12px;
461
- margin-bottom: 1px;
462
- }
463
- .e-bigger .e-recurrenceeditor .e-month-expander tr:first-child .e-input-wrapper,
464
- .e-bigger .e-recurrenceeditor .e-year-expander {
465
- margin-bottom: 11px;
466
- }
467
- .e-bigger .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
468
- width: 30px;
469
- }
470
- .e-bigger .e-recurrenceeditor .e-days button {
471
- height: 40px;
472
- width: 40px;
473
- }
474
- .e-bigger .e-recurrenceeditor.e-rtl .e-form-left,
475
- .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-form-left {
476
- padding: 0 0 10px 12px;
477
- }
478
- .e-bigger .e-recurrenceeditor.e-rtl .e-form-right,
479
- .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-form-right {
480
- padding: 0 12px 10px 0;
481
- }
482
- .e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element,
483
- .e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-day-position {
484
- padding: 0 64px 0 0;
485
- }
486
- .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-label,
487
- .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-non-week > .e-month-expander-label {
488
- padding-right: 0;
489
- }
490
- .e-bigger .e-recurrenceeditor.e-rtl .e-end-on-label {
491
- margin-bottom: 5px;
492
- }
493
- .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
494
- padding: 0 0 0 12px;
495
- }
496
- .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
497
- .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
498
- padding: 0 12px 0 0;
499
- }
500
- .e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-week-position {
501
- left: 0;
502
- }
503
-
504
258
  .e-device .e-recurrenceeditor .e-recurrence-table.e-repeat-content-wrapper td:last-child {
505
259
  width: 25%;
506
260
  }
@@ -655,4 +409,90 @@
655
409
  padding: 0 10px 0 0;
656
410
  }
657
411
  }
658
- /*! Recurrence-Editor component theme */
412
+ /*! Recurrence-Editor component theme */
413
+ .e-bigger .e-recurrenceeditor {
414
+ padding: 0;
415
+ }
416
+ .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-form-left {
417
+ padding: 0 12px 11px 0;
418
+ }
419
+ .e-bigger .e-recurrenceeditor .e-form-left {
420
+ padding: 0 12px 14px 0;
421
+ }
422
+ .e-bigger .e-recurrenceeditor .e-recurrence-table .e-monthday-element {
423
+ padding-left: 70px;
424
+ }
425
+ .e-bigger .e-recurrenceeditor .e-week-position {
426
+ min-width: 130px;
427
+ right: 0;
428
+ }
429
+ .e-bigger .e-recurrenceeditor .e-day-position {
430
+ min-width: 190px;
431
+ padding-left: 54px;
432
+ }
433
+ .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
434
+ font-size: 12px;
435
+ margin-bottom: -1px;
436
+ font-weight: 400;
437
+ }
438
+ .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
439
+ padding-right: 16px;
440
+ }
441
+ .e-bigger .e-recurrenceeditor .e-end-on-label {
442
+ margin-bottom: 0;
443
+ }
444
+ .e-bigger .e-recurrenceeditor .e-days .e-week-expander-label {
445
+ font-size: 12px;
446
+ margin-bottom: 8px;
447
+ }
448
+ .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-label {
449
+ font-size: 12px;
450
+ margin-bottom: 1px;
451
+ }
452
+ .e-bigger .e-recurrenceeditor .e-month-expander tr:first-child .e-input-wrapper,
453
+ .e-bigger .e-recurrenceeditor .e-year-expander {
454
+ margin-bottom: 11px;
455
+ }
456
+ .e-bigger .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
457
+ width: 30px;
458
+ }
459
+ .e-bigger .e-recurrenceeditor .e-days button {
460
+ height: 40px;
461
+ width: 40px;
462
+ }
463
+ .e-bigger .e-recurrenceeditor.e-rtl .e-form-left,
464
+ .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-form-left {
465
+ padding: 0 0 10px 12px;
466
+ }
467
+ .e-bigger .e-recurrenceeditor.e-rtl .e-form-right,
468
+ .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-form-right {
469
+ padding: 0 12px 10px 0;
470
+ }
471
+ .e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element,
472
+ .e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-day-position {
473
+ padding: 0 64px 0 0;
474
+ }
475
+ .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-label,
476
+ .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-non-week > .e-month-expander-label {
477
+ padding-right: 0;
478
+ }
479
+ .e-bigger .e-recurrenceeditor.e-rtl .e-end-on-label {
480
+ margin-bottom: 5px;
481
+ }
482
+ .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
483
+ padding: 0 0 0 12px;
484
+ }
485
+ .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
486
+ .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
487
+ padding: 0 12px 0 0;
488
+ }
489
+ .e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-week-position {
490
+ left: 0;
491
+ }
492
+ .e-bigger .e-device .e-recurrence-table .e-monthday-element,
493
+ .e-bigger .e-device .e-recurrence-table .e-day-position {
494
+ padding-left: 20px;
495
+ }
496
+ .e-bigger .e-device .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element {
497
+ padding: 0 20px 0 0;
498
+ }
@@ -1,4 +1,4 @@
1
-
1
+ @import 'ej2-base/styles/definition/material3.scss';
2
2
 
3
3
  @import 'ej2-inputs/styles/numerictextbox/material3-definition.scss';
4
4
  @import 'ej2-buttons/styles/button/material3-definition.scss';
@@ -7,3 +7,4 @@
7
7
  @import 'ej2-dropdowns/styles/drop-down-list/material3-definition.scss';
8
8
  @import 'material3-definition.scss';
9
9
  @import 'all.scss';
10
+ @import 'bigger.scss';
@@ -48,46 +48,11 @@
48
48
  margin-top: 2px;
49
49
  }
50
50
 
51
- .e-bigger .e-ddl.e-popup,
52
- .e-bigger.e-ddl.e-popup {
53
- border-radius: 6px;
54
- margin-top: 8px;
55
- }
56
-
57
- .e-bigger.e-small .e-ddl.e-popup,
58
- .e-small.e-bigger.e-ddl.e-popup {
59
- border-radius: 4px;
60
- margin-top: 6px;
61
- }
62
-
63
51
  .e-popup.e-ddl .e-dropdownbase {
64
52
  min-height: 26px;
65
53
  padding: 4px 0;
66
54
  }
67
55
 
68
- .e-bigger .e-popup.e-ddl-device-filter .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
69
- border-color: #4b5563;
70
- }
71
-
72
- .e-bigger .e-popup.e-ddl-device-filter {
73
- margin-top: 0;
74
- }
75
-
76
- .e-bigger .e-ddl-device .e-input-group,
77
- .e-bigger .e-ddl-device .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
78
- background: #374151;
79
- border-width: 0;
80
- -webkit-box-shadow: none;
81
- box-shadow: none;
82
- margin-bottom: 0;
83
- }
84
-
85
- .e-bigger .e-ddl-device .e-input-group .e-back-icon,
86
- .e-bigger .e-ddl-device .e-input-group input.e-input,
87
- .e-bigger .e-ddl-device .e-input-group .e-clear-icon {
88
- background-color: #374151;
89
- }
90
-
91
56
  .e-input-group.e-ddl,
92
57
  .e-input-group.e-ddl .e-input,
93
58
  .e-input-group.e-ddl .e-ddl-icon {
@@ -263,86 +228,6 @@
263
228
  margin-bottom: 11px;
264
229
  }
265
230
 
266
- .e-bigger .e-recurrenceeditor {
267
- padding: 0;
268
- }
269
- .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-form-left {
270
- padding: 0 12px 11px 0;
271
- }
272
- .e-bigger .e-recurrenceeditor .e-form-left {
273
- padding: 0 12px 14px 0;
274
- }
275
- .e-bigger .e-recurrenceeditor .e-recurrence-table .e-monthday-element {
276
- padding-left: 70px;
277
- }
278
- .e-bigger .e-recurrenceeditor .e-week-position {
279
- min-width: 130px;
280
- right: 0;
281
- }
282
- .e-bigger .e-recurrenceeditor .e-day-position {
283
- min-width: 197px;
284
- padding-left: 54px;
285
- }
286
- .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
287
- font-size: 16px;
288
- margin-bottom: 0;
289
- font-weight: 500;
290
- }
291
- .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
292
- padding-right: 2px;
293
- }
294
- .e-bigger .e-recurrenceeditor .e-end-on-label {
295
- margin-bottom: 0;
296
- }
297
- .e-bigger .e-recurrenceeditor .e-days .e-week-expander-label {
298
- font-size: 16px;
299
- margin-bottom: 8px;
300
- }
301
- .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-label {
302
- font-size: 16px;
303
- margin-bottom: 1px;
304
- }
305
- .e-bigger .e-recurrenceeditor .e-month-expander tr:first-child .e-input-wrapper,
306
- .e-bigger .e-recurrenceeditor .e-year-expander {
307
- margin-bottom: 11px;
308
- }
309
- .e-bigger .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
310
- width: 30px;
311
- }
312
- .e-bigger .e-recurrenceeditor .e-days button {
313
- height: 40px;
314
- width: 40px;
315
- }
316
- .e-bigger .e-recurrenceeditor.e-rtl .e-form-left,
317
- .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-form-left {
318
- padding: 0 0 10px 12px;
319
- }
320
- .e-bigger .e-recurrenceeditor.e-rtl .e-form-right,
321
- .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-form-right {
322
- padding: 0 12px 10px 0;
323
- }
324
- .e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element,
325
- .e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-day-position {
326
- padding: 0 64px 0 0;
327
- }
328
- .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-label,
329
- .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-non-week > .e-month-expander-label {
330
- padding-right: 0;
331
- }
332
- .e-bigger .e-recurrenceeditor.e-rtl .e-end-on-label {
333
- margin-bottom: 5px;
334
- }
335
- .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
336
- padding: 0 0 0 12px;
337
- }
338
- .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
339
- .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
340
- padding: 0 12px 0 0;
341
- }
342
- .e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-week-position {
343
- left: 0;
344
- }
345
-
346
231
  .e-device .e-recurrenceeditor .e-recurrence-table.e-repeat-content-wrapper td:last-child {
347
232
  width: 25%;
348
233
  }
@@ -497,4 +382,90 @@
497
382
  padding: 0 10px 0 0;
498
383
  }
499
384
  }
500
- /*! Recurrence-Editor component theme */
385
+ /*! Recurrence-Editor component theme */
386
+ .e-bigger .e-recurrenceeditor {
387
+ padding: 0;
388
+ }
389
+ .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-form-left {
390
+ padding: 0 12px 11px 0;
391
+ }
392
+ .e-bigger .e-recurrenceeditor .e-form-left {
393
+ padding: 0 12px 14px 0;
394
+ }
395
+ .e-bigger .e-recurrenceeditor .e-recurrence-table .e-monthday-element {
396
+ padding-left: 70px;
397
+ }
398
+ .e-bigger .e-recurrenceeditor .e-week-position {
399
+ min-width: 130px;
400
+ right: 0;
401
+ }
402
+ .e-bigger .e-recurrenceeditor .e-day-position {
403
+ min-width: 197px;
404
+ padding-left: 54px;
405
+ }
406
+ .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
407
+ font-size: 16px;
408
+ margin-bottom: 0;
409
+ font-weight: 500;
410
+ }
411
+ .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
412
+ padding-right: 2px;
413
+ }
414
+ .e-bigger .e-recurrenceeditor .e-end-on-label {
415
+ margin-bottom: 0;
416
+ }
417
+ .e-bigger .e-recurrenceeditor .e-days .e-week-expander-label {
418
+ font-size: 16px;
419
+ margin-bottom: 8px;
420
+ }
421
+ .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-label {
422
+ font-size: 16px;
423
+ margin-bottom: 1px;
424
+ }
425
+ .e-bigger .e-recurrenceeditor .e-month-expander tr:first-child .e-input-wrapper,
426
+ .e-bigger .e-recurrenceeditor .e-year-expander {
427
+ margin-bottom: 11px;
428
+ }
429
+ .e-bigger .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
430
+ width: 30px;
431
+ }
432
+ .e-bigger .e-recurrenceeditor .e-days button {
433
+ height: 40px;
434
+ width: 40px;
435
+ }
436
+ .e-bigger .e-recurrenceeditor.e-rtl .e-form-left,
437
+ .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-form-left {
438
+ padding: 0 0 10px 12px;
439
+ }
440
+ .e-bigger .e-recurrenceeditor.e-rtl .e-form-right,
441
+ .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-form-right {
442
+ padding: 0 12px 10px 0;
443
+ }
444
+ .e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element,
445
+ .e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-day-position {
446
+ padding: 0 64px 0 0;
447
+ }
448
+ .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-label,
449
+ .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-non-week > .e-month-expander-label {
450
+ padding-right: 0;
451
+ }
452
+ .e-bigger .e-recurrenceeditor.e-rtl .e-end-on-label {
453
+ margin-bottom: 5px;
454
+ }
455
+ .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
456
+ padding: 0 0 0 12px;
457
+ }
458
+ .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
459
+ .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
460
+ padding: 0 12px 0 0;
461
+ }
462
+ .e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-week-position {
463
+ left: 0;
464
+ }
465
+ .e-bigger .e-device .e-recurrence-table .e-monthday-element,
466
+ .e-bigger .e-device .e-recurrence-table .e-day-position {
467
+ padding-left: 20px;
468
+ }
469
+ .e-bigger .e-device .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element {
470
+ padding: 0 20px 0 0;
471
+ }
@@ -6,3 +6,4 @@
6
6
  @import 'ej2-dropdowns/styles/drop-down-list/tailwind-dark-definition.scss';
7
7
  @import 'tailwind-dark-definition.scss';
8
8
  @import 'all.scss';
9
+ @import 'bigger.scss';