@syncfusion/ej2-schedule 30.2.4-744881 → 30.2.7

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 (310) hide show
  1. package/.eslintrc.json +262 -243
  2. package/.gitleaksignore +4 -4
  3. package/README.md +83 -83
  4. package/aceconfig.js +17 -0
  5. package/dist/ej2-schedule.min.js +10 -0
  6. package/dist/ej2-schedule.umd.min.js +10 -1
  7. package/dist/ej2-schedule.umd.min.js.map +1 -1
  8. package/dist/es6/ej2-schedule.es2015.js +79 -75
  9. package/dist/es6/ej2-schedule.es2015.js.map +1 -1
  10. package/dist/es6/ej2-schedule.es5.js +544 -540
  11. package/dist/es6/ej2-schedule.es5.js.map +1 -1
  12. package/dist/global/ej2-schedule.min.js +11 -0
  13. package/dist/global/ej2-schedule.min.js.map +1 -0
  14. package/dist/global/index.d.ts +14 -0
  15. package/helpers/e2e/index.js +3 -3
  16. package/helpers/e2e/recurrence-editor.js +13 -13
  17. package/helpers/e2e/schedule.js +13 -13
  18. package/license +9 -9
  19. package/package.json +42 -42
  20. package/src/recurrence-editor/recurrence-editor-model.d.ts +75 -75
  21. package/src/recurrence-editor/recurrence-editor.js +19 -19
  22. package/src/schedule/actions/drag.js +13 -13
  23. package/src/schedule/actions/keyboard.js +11 -11
  24. package/src/schedule/actions/resize.js +14 -13
  25. package/src/schedule/actions/virtual-scroll.js +3 -0
  26. package/src/schedule/base/interface.d.ts +2 -2
  27. package/src/schedule/base/schedule-model.d.ts +864 -864
  28. package/src/schedule/base/schedule.js +19 -19
  29. package/src/schedule/event-renderer/agenda-base.js +13 -13
  30. package/src/schedule/event-renderer/month.js +13 -13
  31. package/src/schedule/event-renderer/timeline-view.js +13 -13
  32. package/src/schedule/event-renderer/vertical-view.js +13 -13
  33. package/src/schedule/event-renderer/year.js +13 -13
  34. package/src/schedule/models/event-settings-model.d.ts +156 -156
  35. package/src/schedule/models/event-settings.js +19 -19
  36. package/src/schedule/models/field-options-model.d.ts +22 -22
  37. package/src/schedule/models/field-options.js +19 -19
  38. package/src/schedule/models/fields-model.d.ts +92 -92
  39. package/src/schedule/models/fields.js +19 -19
  40. package/src/schedule/models/group-model.d.ts +48 -48
  41. package/src/schedule/models/group.js +19 -19
  42. package/src/schedule/models/header-rows-model.d.ts +22 -22
  43. package/src/schedule/models/header-rows.js +19 -19
  44. package/src/schedule/models/quick-info-templates-model.d.ts +37 -37
  45. package/src/schedule/models/quick-info-templates.js +19 -19
  46. package/src/schedule/models/resources-model.d.ts +85 -85
  47. package/src/schedule/models/resources.js +19 -19
  48. package/src/schedule/models/time-scale-model.d.ts +40 -40
  49. package/src/schedule/models/time-scale.js +19 -19
  50. package/src/schedule/models/toolbar-model.d.ts +187 -187
  51. package/src/schedule/models/toolbar.js +19 -19
  52. package/src/schedule/models/views-model.d.ts +361 -361
  53. package/src/schedule/models/views.js +19 -19
  54. package/src/schedule/models/work-hours-model.d.ts +16 -16
  55. package/src/schedule/models/work-hours.js +19 -19
  56. package/src/schedule/renderer/agenda.js +13 -13
  57. package/src/schedule/renderer/day.js +13 -13
  58. package/src/schedule/renderer/header-renderer.js +11 -11
  59. package/src/schedule/renderer/month-agenda.js +13 -13
  60. package/src/schedule/renderer/month.js +13 -13
  61. package/src/schedule/renderer/timeline-month.js +13 -13
  62. package/src/schedule/renderer/timeline-view.js +13 -13
  63. package/src/schedule/renderer/timeline-year.js +13 -13
  64. package/src/schedule/renderer/vertical-view.js +13 -13
  65. package/src/schedule/renderer/week.js +13 -13
  66. package/src/schedule/renderer/work-week.js +13 -13
  67. package/src/schedule/renderer/year.js +13 -13
  68. package/styles/bds-lite.css +4446 -0
  69. package/styles/bds-lite.scss +18 -0
  70. package/styles/bds.css +5198 -0
  71. package/styles/bds.scss +20 -0
  72. package/styles/bootstrap-dark-lite.css +4228 -0
  73. package/styles/bootstrap-dark-lite.scss +18 -0
  74. package/styles/bootstrap-dark.css +4980 -0
  75. package/styles/bootstrap-dark.scss +20 -0
  76. package/styles/bootstrap-lite.css +4223 -0
  77. package/styles/bootstrap-lite.scss +18 -0
  78. package/styles/bootstrap.css +4975 -0
  79. package/styles/bootstrap.scss +20 -0
  80. package/styles/bootstrap4-lite.css +4270 -0
  81. package/styles/bootstrap4-lite.scss +18 -0
  82. package/styles/bootstrap4.css +5022 -0
  83. package/styles/bootstrap4.scss +20 -0
  84. package/styles/bootstrap5-dark-lite.css +4273 -0
  85. package/styles/bootstrap5-dark-lite.scss +18 -0
  86. package/styles/bootstrap5-dark.css +5025 -0
  87. package/styles/bootstrap5-dark.scss +20 -0
  88. package/styles/bootstrap5-lite.css +4273 -0
  89. package/styles/bootstrap5-lite.scss +18 -0
  90. package/styles/bootstrap5.3-lite.css +4319 -0
  91. package/styles/bootstrap5.3-lite.scss +18 -0
  92. package/styles/bootstrap5.3.css +5071 -0
  93. package/styles/bootstrap5.3.scss +20 -0
  94. package/styles/bootstrap5.css +5025 -0
  95. package/styles/bootstrap5.scss +20 -0
  96. package/styles/fabric-dark-lite.css +4198 -0
  97. package/styles/fabric-dark-lite.scss +18 -0
  98. package/styles/fabric-dark.css +4950 -0
  99. package/styles/fabric-dark.scss +20 -0
  100. package/styles/fabric-lite.css +4195 -0
  101. package/styles/fabric-lite.scss +18 -0
  102. package/styles/fabric.css +4947 -0
  103. package/styles/fabric.scss +20 -0
  104. package/styles/fluent-dark-lite.css +4261 -0
  105. package/styles/fluent-dark-lite.scss +18 -0
  106. package/styles/fluent-dark.css +5013 -0
  107. package/styles/fluent-dark.scss +20 -0
  108. package/styles/fluent-lite.css +4261 -0
  109. package/styles/fluent-lite.scss +18 -0
  110. package/styles/fluent.css +5013 -0
  111. package/styles/fluent.scss +20 -0
  112. package/styles/fluent2-lite.css +4505 -0
  113. package/styles/fluent2-lite.scss +18 -0
  114. package/styles/fluent2.css +5261 -0
  115. package/styles/fluent2.scss +20 -0
  116. package/styles/highcontrast-light-lite.css +4287 -0
  117. package/styles/highcontrast-light-lite.scss +18 -0
  118. package/styles/highcontrast-light.css +5039 -0
  119. package/styles/highcontrast-light.scss +20 -0
  120. package/styles/highcontrast-lite.css +4296 -0
  121. package/styles/highcontrast-lite.scss +18 -0
  122. package/styles/highcontrast.css +5048 -0
  123. package/styles/highcontrast.scss +20 -0
  124. package/styles/material-dark-lite.css +4275 -0
  125. package/styles/material-dark-lite.scss +18 -0
  126. package/styles/material-dark.css +5027 -0
  127. package/styles/material-dark.scss +20 -0
  128. package/styles/material-lite.css +4310 -0
  129. package/styles/material-lite.scss +18 -0
  130. package/styles/material.css +5062 -0
  131. package/styles/material.scss +20 -0
  132. package/styles/material3-dark-lite.css +4292 -0
  133. package/styles/material3-dark-lite.scss +18 -0
  134. package/styles/material3-dark.css +5045 -0
  135. package/styles/material3-dark.scss +21 -1
  136. package/styles/material3-lite.css +4294 -0
  137. package/styles/material3-lite.scss +18 -0
  138. package/styles/material3.css +5045 -0
  139. package/styles/material3.scss +21 -1
  140. package/styles/recurrence-editor/_all.scss +2 -0
  141. package/styles/recurrence-editor/_bds-definition.scss +14 -0
  142. package/styles/recurrence-editor/_bigger.scss +133 -0
  143. package/styles/recurrence-editor/_bootstrap-dark-definition.scss +14 -0
  144. package/styles/recurrence-editor/_bootstrap-definition.scss +14 -0
  145. package/styles/recurrence-editor/_bootstrap4-definition.scss +14 -0
  146. package/styles/recurrence-editor/_bootstrap5-dark-definition.scss +1 -0
  147. package/styles/recurrence-editor/_bootstrap5-definition.scss +14 -0
  148. package/styles/recurrence-editor/_bootstrap5.3-definition.scss +14 -0
  149. package/styles/recurrence-editor/_fabric-dark-definition.scss +14 -0
  150. package/styles/recurrence-editor/_fabric-definition.scss +14 -0
  151. package/styles/recurrence-editor/_fluent-dark-definition.scss +1 -0
  152. package/styles/recurrence-editor/_fluent-definition.scss +14 -0
  153. package/styles/recurrence-editor/_fluent2-definition.scss +14 -0
  154. package/styles/recurrence-editor/_fusionnew-definition.scss +14 -0
  155. package/styles/recurrence-editor/_highcontrast-definition.scss +14 -0
  156. package/styles/recurrence-editor/_highcontrast-light-definition.scss +14 -0
  157. package/styles/recurrence-editor/_layout.scss +420 -0
  158. package/styles/recurrence-editor/_material-dark-definition.scss +14 -0
  159. package/styles/recurrence-editor/_material-definition.scss +14 -0
  160. package/styles/recurrence-editor/_material3-dark-definition.scss +1 -0
  161. package/styles/recurrence-editor/_material3-definition.scss +14 -0
  162. package/styles/recurrence-editor/_tailwind-dark-definition.scss +1 -0
  163. package/styles/recurrence-editor/_tailwind-definition.scss +14 -0
  164. package/styles/recurrence-editor/_tailwind3-definition.scss +14 -0
  165. package/styles/recurrence-editor/_theme.scss +1 -0
  166. package/styles/recurrence-editor/bds.css +537 -0
  167. package/styles/recurrence-editor/bds.scss +9 -0
  168. package/styles/recurrence-editor/bootstrap-dark.css +462 -0
  169. package/styles/recurrence-editor/bootstrap-dark.scss +9 -0
  170. package/styles/recurrence-editor/bootstrap.css +462 -0
  171. package/styles/recurrence-editor/bootstrap.scss +9 -0
  172. package/styles/recurrence-editor/bootstrap4.css +490 -0
  173. package/styles/recurrence-editor/bootstrap4.scss +9 -0
  174. package/styles/recurrence-editor/bootstrap5-dark.css +500 -0
  175. package/styles/recurrence-editor/bootstrap5-dark.scss +9 -0
  176. package/styles/recurrence-editor/bootstrap5.3.css +504 -0
  177. package/styles/recurrence-editor/bootstrap5.3.scss +9 -0
  178. package/styles/recurrence-editor/bootstrap5.css +500 -0
  179. package/styles/recurrence-editor/bootstrap5.scss +9 -0
  180. package/styles/recurrence-editor/fabric-dark.css +438 -0
  181. package/styles/recurrence-editor/fabric-dark.scss +9 -0
  182. package/styles/recurrence-editor/fabric.css +438 -0
  183. package/styles/recurrence-editor/fabric.scss +9 -0
  184. package/styles/recurrence-editor/fluent-dark.css +493 -0
  185. package/styles/recurrence-editor/fluent-dark.scss +9 -0
  186. package/styles/recurrence-editor/fluent.css +493 -0
  187. package/styles/recurrence-editor/fluent.scss +9 -0
  188. package/styles/recurrence-editor/fluent2.css +483 -0
  189. package/styles/recurrence-editor/fluent2.scss +9 -0
  190. package/styles/recurrence-editor/highcontrast-light.css +447 -0
  191. package/styles/recurrence-editor/highcontrast-light.scss +9 -0
  192. package/styles/recurrence-editor/highcontrast.css +447 -0
  193. package/styles/recurrence-editor/highcontrast.scss +9 -0
  194. package/styles/recurrence-editor/material-dark.css +487 -0
  195. package/styles/recurrence-editor/material-dark.scss +9 -0
  196. package/styles/recurrence-editor/material.css +491 -0
  197. package/styles/recurrence-editor/material.scss +9 -0
  198. package/styles/recurrence-editor/material3-dark.css +499 -0
  199. package/styles/recurrence-editor/material3-dark.scss +10 -0
  200. package/styles/recurrence-editor/material3.css +501 -0
  201. package/styles/recurrence-editor/material3.scss +10 -0
  202. package/styles/recurrence-editor/tailwind-dark.css +474 -0
  203. package/styles/recurrence-editor/tailwind-dark.scss +9 -0
  204. package/styles/recurrence-editor/tailwind.css +474 -0
  205. package/styles/recurrence-editor/tailwind.scss +9 -0
  206. package/styles/recurrence-editor/tailwind3.css +504 -0
  207. package/styles/recurrence-editor/tailwind3.scss +9 -0
  208. package/styles/schedule/_all.scss +2 -0
  209. package/styles/schedule/_bds-definition.scss +274 -0
  210. package/styles/schedule/_bigger.scss +801 -0
  211. package/styles/schedule/_bootstrap-dark-definition.scss +274 -0
  212. package/styles/schedule/_bootstrap-definition.scss +274 -0
  213. package/styles/schedule/_bootstrap4-definition.scss +277 -0
  214. package/styles/schedule/_bootstrap5-dark-definition.scss +1 -0
  215. package/styles/schedule/_bootstrap5-definition.scss +278 -0
  216. package/styles/schedule/_bootstrap5.3-definition.scss +278 -0
  217. package/styles/schedule/_fabric-dark-definition.scss +273 -0
  218. package/styles/schedule/_fabric-definition.scss +274 -0
  219. package/styles/schedule/_fluent-dark-definition.scss +1 -0
  220. package/styles/schedule/_fluent-definition.scss +278 -0
  221. package/styles/schedule/_fluent2-definition.scss +275 -0
  222. package/styles/schedule/_fusionnew-definition.scss +275 -0
  223. package/styles/schedule/_highcontrast-definition.scss +275 -0
  224. package/styles/schedule/_highcontrast-light-definition.scss +275 -0
  225. package/styles/schedule/_layout.scss +3870 -0
  226. package/styles/schedule/_material-dark-definition.scss +272 -0
  227. package/styles/schedule/_material-definition.scss +272 -0
  228. package/styles/schedule/_material3-dark-definition.scss +1 -0
  229. package/styles/schedule/_material3-definition.scss +277 -0
  230. package/styles/schedule/_tailwind-dark-definition.scss +1 -0
  231. package/styles/schedule/_tailwind-definition.scss +273 -0
  232. package/styles/schedule/_tailwind3-definition.scss +278 -0
  233. package/styles/schedule/_theme.scss +585 -0
  234. package/styles/schedule/bds.css +4793 -0
  235. package/styles/schedule/bds.scss +17 -0
  236. package/styles/schedule/bootstrap-dark.css +4575 -0
  237. package/styles/schedule/bootstrap-dark.scss +17 -0
  238. package/styles/schedule/bootstrap.css +4570 -0
  239. package/styles/schedule/bootstrap.scss +17 -0
  240. package/styles/schedule/bootstrap4.css +4617 -0
  241. package/styles/schedule/bootstrap4.scss +17 -0
  242. package/styles/schedule/bootstrap5-dark.css +4620 -0
  243. package/styles/schedule/bootstrap5-dark.scss +16 -0
  244. package/styles/schedule/bootstrap5.3.css +4666 -0
  245. package/styles/schedule/bootstrap5.3.scss +17 -0
  246. package/styles/schedule/bootstrap5.css +4620 -0
  247. package/styles/schedule/bootstrap5.scss +17 -0
  248. package/styles/schedule/fabric-dark.css +4545 -0
  249. package/styles/schedule/fabric-dark.scss +17 -0
  250. package/styles/schedule/fabric.css +4542 -0
  251. package/styles/schedule/fabric.scss +17 -0
  252. package/styles/schedule/fluent-dark.css +4608 -0
  253. package/styles/schedule/fluent-dark.scss +16 -0
  254. package/styles/schedule/fluent.css +4608 -0
  255. package/styles/schedule/fluent.scss +17 -0
  256. package/styles/schedule/fluent2.css +4853 -0
  257. package/styles/schedule/fluent2.scss +17 -0
  258. package/styles/schedule/highcontrast-light.css +4634 -0
  259. package/styles/schedule/highcontrast-light.scss +17 -0
  260. package/styles/schedule/highcontrast.css +4643 -0
  261. package/styles/schedule/highcontrast.scss +17 -0
  262. package/styles/schedule/icons/_bds.scss +220 -0
  263. package/styles/schedule/icons/_bootstrap-dark.scss +223 -0
  264. package/styles/schedule/icons/_bootstrap.scss +223 -0
  265. package/styles/schedule/icons/_bootstrap4.scss +217 -0
  266. package/styles/schedule/icons/_bootstrap5-dark.scss +1 -0
  267. package/styles/schedule/icons/_bootstrap5.3.scss +220 -0
  268. package/styles/schedule/icons/_bootstrap5.scss +220 -0
  269. package/styles/schedule/icons/_fabric-dark.scss +223 -0
  270. package/styles/schedule/icons/_fabric.scss +223 -0
  271. package/styles/schedule/icons/_fluent-dark.scss +1 -0
  272. package/styles/schedule/icons/_fluent.scss +220 -0
  273. package/styles/schedule/icons/_fluent2.scss +220 -0
  274. package/styles/schedule/icons/_fusionnew.scss +220 -0
  275. package/styles/schedule/icons/_highcontrast-light.scss +223 -0
  276. package/styles/schedule/icons/_highcontrast.scss +223 -0
  277. package/styles/schedule/icons/_material-dark.scss +223 -0
  278. package/styles/schedule/icons/_material.scss +223 -0
  279. package/styles/schedule/icons/_material3-dark.scss +1 -0
  280. package/styles/schedule/icons/_material3.scss +220 -0
  281. package/styles/schedule/icons/_tailwind-dark.scss +1 -0
  282. package/styles/schedule/icons/_tailwind.scss +220 -0
  283. package/styles/schedule/icons/_tailwind3.scss +220 -0
  284. package/styles/schedule/material-dark.css +4622 -0
  285. package/styles/schedule/material-dark.scss +17 -0
  286. package/styles/schedule/material.css +4657 -0
  287. package/styles/schedule/material.scss +17 -0
  288. package/styles/schedule/material3-dark.css +4640 -0
  289. package/styles/schedule/material3-dark.scss +17 -0
  290. package/styles/schedule/material3.css +4642 -0
  291. package/styles/schedule/material3.scss +18 -0
  292. package/styles/schedule/tailwind-dark.css +4585 -0
  293. package/styles/schedule/tailwind-dark.scss +16 -0
  294. package/styles/schedule/tailwind.css +4585 -0
  295. package/styles/schedule/tailwind.scss +17 -0
  296. package/styles/schedule/tailwind3.css +4632 -0
  297. package/styles/schedule/tailwind3.scss +17 -0
  298. package/styles/tailwind-dark-lite.css +4238 -0
  299. package/styles/tailwind-dark-lite.scss +18 -0
  300. package/styles/tailwind-dark.css +4990 -0
  301. package/styles/tailwind-dark.scss +20 -0
  302. package/styles/tailwind-lite.css +4238 -0
  303. package/styles/tailwind-lite.scss +18 -0
  304. package/styles/tailwind.css +4990 -0
  305. package/styles/tailwind.scss +20 -0
  306. package/styles/tailwind3-lite.css +4285 -0
  307. package/styles/tailwind3-lite.scss +18 -0
  308. package/styles/tailwind3.css +5037 -0
  309. package/styles/tailwind3.scss +20 -0
  310. package/tslint.json +111 -0
@@ -0,0 +1,537 @@
1
+
2
+
3
+
4
+
5
+ /* stylelint-disable */
6
+ .e-btn.e-primary:focus {
7
+ -webkit-box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px var(--color-sf-brand-solid-shadow) !important;
8
+ box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px var(--color-sf-brand-solid-shadow) !important;
9
+ }
10
+
11
+ .e-btn.e-success:focus {
12
+ -webkit-box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px rgba(23, 177, 105, 0.24) !important;
13
+ box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px rgba(23, 177, 105, 0.24) !important;
14
+ }
15
+
16
+ .e-btn.e-info:focus {
17
+ -webkit-box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px var(--color-sf-brand-solid-shadow) !important;
18
+ box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px var(--color-sf-brand-solid-shadow) !important;
19
+ }
20
+
21
+ .e-btn.e-warning:focus {
22
+ -webkit-box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px rgba(247, 143, 8, 0.24) !important;
23
+ box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px rgba(247, 143, 8, 0.24) !important;
24
+ }
25
+
26
+ .e-btn.e-danger:focus {
27
+ -webkit-box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px rgba(240, 68, 55, 0.24) !important;
28
+ box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px rgba(240, 68, 55, 0.24) !important;
29
+ }
30
+
31
+ .e-btn.e-outline.e-info {
32
+ background: transparent !important;
33
+ border-color: var(--color-sf-utility-info-border-color) !important;
34
+ color: var(--color-sf-utility-info-text) !important;
35
+ }
36
+
37
+ .e-btn.e-outline.e-info:hover {
38
+ background: var(--color-sf-utility-info-bg-color-hover) !important;
39
+ border-color: var(--color-sf-utility-info-border-color) !important;
40
+ color: var(--color-sf-utility-info-text-hover) !important;
41
+ }
42
+
43
+ .e-btn.e-outline.e-info:active {
44
+ background: var(--color-sf-utility-info-bg-color-pressed) !important;
45
+ border-color: var(--color-sf-utility-info-border-color) !important;
46
+ color: var(--color-sf-utility-info-text-hover) !important;
47
+ }
48
+
49
+ .e-btn.e-flat.e-info {
50
+ color: var(--color-sf-utility-info-text) !important;
51
+ }
52
+
53
+ .e-bigger .e-btn,
54
+ .e-bigger .e-btn,
55
+ .e-bigger .e-css.e-btn,
56
+ .e-bigger.e-css.e-btn {
57
+ font-size: 14px;
58
+ line-height: 1.572em;
59
+ padding: 8px 15px;
60
+ border-radius: 8px !important;
61
+ font-weight: 600;
62
+ }
63
+
64
+ .e-ddl.e-control-wrapper .e-ddl-icon::before {
65
+ -webkit-transform: rotate(0deg);
66
+ transform: rotate(0deg);
67
+ -webkit-transition: -webkit-transform 300ms ease;
68
+ transition: -webkit-transform 300ms ease;
69
+ transition: transform 300ms ease;
70
+ transition: transform 300ms ease, -webkit-transform 300ms ease;
71
+ }
72
+
73
+ .e-ddl.e-control-wrapper.e-icon-anim .e-ddl-icon::before {
74
+ -webkit-transform: rotate(180deg);
75
+ transform: rotate(180deg);
76
+ -webkit-transition: -webkit-transform 300ms ease;
77
+ transition: -webkit-transform 300ms ease;
78
+ transition: transform 300ms ease;
79
+ transition: transform 300ms ease, -webkit-transform 300ms ease;
80
+ }
81
+
82
+ .e-dropdownbase .e-list-item.e-active.e-hover {
83
+ color: var(--color-sf-text-primary);
84
+ }
85
+
86
+ .e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:active,
87
+ .e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:hover,
88
+ .e-input-group:not(.e-disabled) .e-back-icon:active,
89
+ .e-input-group:not(.e-disabled) .e-back-icon:hover,
90
+ .e-popup.e-ddl .e-input-group:not(.e-disabled) .e-clear-icon:active,
91
+ .e-popup.e-ddl .e-input-group:not(.e-disabled) .e-clear-icon:hover {
92
+ background: transparent;
93
+ }
94
+
95
+ .e-input-group .e-ddl-icon:not(:active)::after {
96
+ -webkit-animation: none;
97
+ animation: none;
98
+ }
99
+
100
+ .e-ddl.e-popup {
101
+ border: 0;
102
+ border-radius: 8px;
103
+ -webkit-box-shadow: 0 12px 16px -4px rgba(16, 24, 40, 0.08), 0 4px 6px -2px rgba(16, 24, 40, 0.05);
104
+ box-shadow: 0 12px 16px -4px rgba(16, 24, 40, 0.08), 0 4px 6px -2px rgba(16, 24, 40, 0.05);
105
+ margin-top: 4px;
106
+ }
107
+
108
+ .e-small .e-ddl.e-popup,
109
+ .e-small.e-ddl.e-popup {
110
+ border-radius: 4px;
111
+ margin-top: 2px;
112
+ }
113
+
114
+ .e-popup.e-ddl .e-dropdownbase {
115
+ min-height: 26px;
116
+ padding: 4px 6px;
117
+ }
118
+
119
+ .e-input-group.e-ddl,
120
+ .e-input-group.e-ddl .e-input,
121
+ .e-input-group.e-ddl .e-ddl-icon {
122
+ background: var(--color-sf-bg-primary);
123
+ }
124
+
125
+ .e-ddl.e-ddl-device.e-ddl-device-filter .e-input-group:hover:not(.e-disabled):not(.e-float-icon-left),
126
+ .e-ddl.e-ddl-device.e-ddl-device-filter .e-input-group.e-control-wrapper:hover:not(.e-disabled):not(.e-float-icon-left) {
127
+ border-bottom-width: 0;
128
+ }
129
+
130
+ .e-ddl.e-popup.e-outline .e-filter-parent {
131
+ padding: 4px 8px;
132
+ }
133
+
134
+ .e-recurrenceeditor .e-editor {
135
+ display: -webkit-box;
136
+ display: -ms-flexbox;
137
+ display: flex;
138
+ -webkit-box-orient: horizontal;
139
+ -webkit-box-direction: normal;
140
+ -ms-flex-flow: row wrap;
141
+ flex-flow: row wrap;
142
+ margin: 0 auto;
143
+ max-width: 1240px;
144
+ }
145
+ .e-recurrenceeditor .e-recurrence-table {
146
+ table-layout: fixed;
147
+ width: 100%;
148
+ }
149
+ .e-recurrenceeditor .e-recurrence-table.e-repeat-content-wrapper td:last-child {
150
+ width: 27%;
151
+ }
152
+ .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
153
+ width: 24%;
154
+ }
155
+ .e-recurrenceeditor .e-recurrence-table .e-repeat-content {
156
+ display: inline-block;
157
+ font-weight: normal;
158
+ padding: 18px 0 0 8px;
159
+ }
160
+ .e-recurrenceeditor .e-recurrence-table .e-input-wrapper {
161
+ float: none;
162
+ width: 100%;
163
+ }
164
+ .e-recurrenceeditor .e-recurrence-table .e-week-position {
165
+ min-width: 94px;
166
+ position: relative;
167
+ right: 20px;
168
+ }
169
+ .e-recurrenceeditor .e-recurrence-table .e-day-position {
170
+ min-width: 120px;
171
+ }
172
+ .e-recurrenceeditor .e-recurrence-table .e-monthday-element {
173
+ padding-left: 10px;
174
+ }
175
+ .e-recurrenceeditor .e-input-wrapper-side.e-form-left {
176
+ padding: 0 8px 16px 0;
177
+ }
178
+ .e-recurrenceeditor .e-form-left {
179
+ padding: 0 8px 16px 0;
180
+ }
181
+ .e-recurrenceeditor .e-form-right,
182
+ .e-recurrenceeditor .e-input-wrapper-side.e-form-right {
183
+ padding: 0 0 10px;
184
+ }
185
+ .e-recurrenceeditor .e-input-wrapper {
186
+ float: left;
187
+ width: 50%;
188
+ }
189
+ .e-recurrenceeditor .e-input-wrapper div {
190
+ margin-bottom: 2.5%;
191
+ }
192
+ .e-recurrenceeditor .e-input-wrapper.e-end-on-date,
193
+ .e-recurrenceeditor .e-input-wrapper.e-end-on-count {
194
+ padding-right: 0;
195
+ margin-top: 24px;
196
+ }
197
+ .e-recurrenceeditor.e-rtl .e-end-on > div,
198
+ .e-recurrenceeditor.e-rtl .e-month-expander > div > div {
199
+ float: right;
200
+ }
201
+ .e-recurrenceeditor.e-rtl .e-form-left,
202
+ .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-form-left {
203
+ padding: 0 0 10px 8px;
204
+ }
205
+ .e-recurrenceeditor.e-rtl .e-form-right,
206
+ .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-form-right {
207
+ padding: 0 8px 10px 0;
208
+ }
209
+ .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element {
210
+ position: relative;
211
+ right: 10px;
212
+ }
213
+ .e-recurrenceeditor.e-rtl .e-week-position {
214
+ left: 20px;
215
+ right: 0;
216
+ }
217
+ .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-label,
218
+ .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-non-week > .e-month-expander-label {
219
+ padding-right: 0;
220
+ }
221
+ .e-recurrenceeditor.e-rtl .e-end-on-label {
222
+ margin-bottom: 5px;
223
+ }
224
+ .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
225
+ padding: 0 0 0 8px;
226
+ }
227
+ .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
228
+ .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
229
+ padding: 0 8px 0 0;
230
+ }
231
+ .e-recurrenceeditor.e-rtl .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
232
+ width: 30px;
233
+ }
234
+ .e-recurrenceeditor .e-days .e-week-expander-label {
235
+ font-size: 12px;
236
+ font-weight: 500;
237
+ margin-bottom: 8px;
238
+ }
239
+ .e-recurrenceeditor .e-days button {
240
+ border-radius: 50%;
241
+ -webkit-box-orient: horizontal;
242
+ -webkit-box-direction: normal;
243
+ -ms-flex-flow: row wrap;
244
+ flex-flow: row wrap;
245
+ height: 35px;
246
+ margin: 0 8px 10px;
247
+ width: 35px;
248
+ }
249
+ .e-recurrenceeditor .e-hide-recurrence-element {
250
+ display: none;
251
+ }
252
+ .e-recurrenceeditor .e-half-space {
253
+ width: 20%;
254
+ }
255
+ .e-recurrenceeditor .e-year-expander {
256
+ margin-bottom: 11px;
257
+ }
258
+ .e-recurrenceeditor .e-month-expander tr:first-child .e-input-wrapper {
259
+ padding-bottom: 11px;
260
+ }
261
+ .e-recurrenceeditor .e-month-expander-checkbox-wrapper.e-input-wrapper {
262
+ padding-top: 3px;
263
+ }
264
+ .e-recurrenceeditor .e-month-expander-checkbox-wrapper.e-input-wrapper .e-month-type .e-label {
265
+ display: none;
266
+ }
267
+ .e-recurrenceeditor .e-input-wrapper.e-month-expander-checkbox-wrapper.e-repeat-on-week-selector {
268
+ min-width: 30px;
269
+ margin-bottom: 18px;
270
+ }
271
+ .e-recurrenceeditor .e-input-wrapper-side {
272
+ float: left;
273
+ padding: 16px 20px 0;
274
+ width: 50%;
275
+ }
276
+ .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
277
+ padding-right: 16px;
278
+ }
279
+ .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-input-wrapper {
280
+ margin: 0;
281
+ }
282
+ .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
283
+ font-size: 12px;
284
+ font-weight: 500;
285
+ margin-bottom: 6px;
286
+ padding-right: 16px;
287
+ }
288
+ .e-recurrenceeditor .e-input-wrapper-side .e-days .e-form-left {
289
+ padding-bottom: 6px;
290
+ }
291
+ .e-recurrenceeditor .e-input-wrapper-side .e-non-week .e-form-left {
292
+ padding-bottom: 12px;
293
+ }
294
+ .e-recurrenceeditor .e-input-wrapper-side.e-form-right {
295
+ margin-bottom: 11px;
296
+ }
297
+
298
+ .e-device .e-recurrenceeditor .e-recurrence-table.e-repeat-content-wrapper td:last-child {
299
+ width: 25%;
300
+ }
301
+ .e-device .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
302
+ width: 20%;
303
+ }
304
+ .e-device .e-recurrenceeditor .e-week-expander-label {
305
+ margin-bottom: 6px;
306
+ }
307
+ .e-device .e-recurrenceeditor .e-month-expander-label {
308
+ font-size: 12px;
309
+ margin-bottom: 5px;
310
+ }
311
+ .e-device .e-recurrenceeditor .e-footer-content {
312
+ padding: 12px;
313
+ }
314
+ .e-device .e-recurrenceeditor .e-form-left,
315
+ .e-device .e-recurrenceeditor .e-input-wrapper-side.e-form-left {
316
+ padding: 0 3px 10px 0;
317
+ }
318
+ .e-device .e-recurrenceeditor .e-form-right,
319
+ .e-device .e-recurrenceeditor .e-input-wrapper-side.e-form-right {
320
+ padding: 0 0 10px 3px;
321
+ }
322
+ .e-device .e-recurrenceeditor .e-input-wrapper.e-end-on-date,
323
+ .e-device .e-recurrenceeditor .e-input-wrapper.e-end-on-count {
324
+ padding: 0 0 0 10px;
325
+ }
326
+ .e-device .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
327
+ padding-right: 10px;
328
+ }
329
+ .e-device .e-recurrenceeditor.e-end-on {
330
+ padding-right: 0;
331
+ }
332
+ .e-device .e-recurrenceeditor.e-end-on .e-end-on-label {
333
+ float: none;
334
+ font-size: 12px;
335
+ font-weight: 500;
336
+ margin-bottom: 7px;
337
+ }
338
+ .e-device .e-recurrenceeditor.e-end-on .e-end-on-left {
339
+ padding-right: 0;
340
+ }
341
+ .e-device .e-recurrenceeditor .e-recurrence-table .e-monthday-element,
342
+ .e-device .e-recurrenceeditor .e-recurrence-table .e-day-position {
343
+ padding-left: 20px;
344
+ }
345
+ .e-device .e-recurrenceeditor .e-recurrence-table .e-monthday-element {
346
+ margin-left: 20px;
347
+ }
348
+ .e-device .e-recurrenceeditor .e-week-position {
349
+ right: 0;
350
+ padding-right: 10px;
351
+ }
352
+ .e-device .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
353
+ padding-right: 0;
354
+ }
355
+ .e-device .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
356
+ .e-device .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
357
+ padding: 0 10px 0 0;
358
+ }
359
+ .e-device .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element {
360
+ padding: 0 20px 0 0;
361
+ }
362
+ .e-device .e-recurrenceeditor.e-rtl .e-recurrence-table .e-day-position {
363
+ padding: 0 50px 0 0;
364
+ }
365
+ .e-device .e-recurrenceeditor.e-rtl .e-week-position {
366
+ left: 0;
367
+ }
368
+ .e-device.e-recurrence-dialog .e-dlg-header-content {
369
+ background: none;
370
+ -webkit-box-shadow: none;
371
+ box-shadow: none;
372
+ padding-bottom: 10px;
373
+ }
374
+ .e-device.e-recurrence-dialog .e-editor .e-input-wrapper-side.e-end-on .e-end-on-label {
375
+ margin-bottom: 7px;
376
+ }
377
+ .e-device.e-recurrence-dialog .e-footer-content {
378
+ padding: 16px 8px;
379
+ }
380
+
381
+ @media (max-width: 1024px) {
382
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on {
383
+ width: 100%;
384
+ }
385
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week {
386
+ width: 65%;
387
+ }
388
+ }
389
+ @media (max-width: 580px) {
390
+ .e-recurrenceeditor {
391
+ margin-left: auto;
392
+ margin-right: auto;
393
+ width: 100%;
394
+ }
395
+ .e-recurrenceeditor .e-editor {
396
+ -webkit-box-orient: vertical;
397
+ -webkit-box-direction: normal;
398
+ -ms-flex-direction: column;
399
+ flex-direction: column;
400
+ }
401
+ .e-recurrenceeditor .e-editor > .e-input-wrapper.e-form-left {
402
+ margin-top: 0;
403
+ }
404
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week > .e-month-expander-label,
405
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on .e-end-on-label {
406
+ margin-bottom: 6px;
407
+ }
408
+ .e-recurrenceeditor .e-editor > div {
409
+ margin-top: 20px;
410
+ }
411
+ .e-recurrenceeditor .e-editor > .e-input-wrapper {
412
+ width: 100%;
413
+ }
414
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on {
415
+ width: 100%;
416
+ }
417
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on .e-input-wrapper {
418
+ width: 50%;
419
+ }
420
+ .e-recurrenceeditor .e-editor .e-form-left,
421
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-form-left {
422
+ padding: 0 0 10px;
423
+ }
424
+ .e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-date,
425
+ .e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-count {
426
+ padding: 0 0 0 10px;
427
+ }
428
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on .e-end-on-left {
429
+ padding-right: 10px;
430
+ }
431
+ .e-recurrenceeditor .e-editor .e-form-right,
432
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-form-right {
433
+ padding-left: 0;
434
+ }
435
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-days {
436
+ width: 100%;
437
+ }
438
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week {
439
+ width: 65%;
440
+ }
441
+ .e-recurrenceeditor .e-editor .e-recurrence-table .e-day-position {
442
+ padding-left: 59px;
443
+ }
444
+ .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
445
+ padding-right: 0;
446
+ }
447
+ .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
448
+ .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
449
+ padding: 0 10px 0 0;
450
+ }
451
+ }
452
+ /*! Recurrence-Editor component theme */
453
+ .e-bigger .e-recurrenceeditor {
454
+ padding: 0;
455
+ }
456
+ .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-form-left {
457
+ padding: 0 12px 11px 0;
458
+ }
459
+ .e-bigger .e-recurrenceeditor .e-form-left {
460
+ padding: 0 12px 14px 0;
461
+ }
462
+ .e-bigger .e-recurrenceeditor .e-recurrence-table .e-monthday-element {
463
+ padding-left: 50px;
464
+ }
465
+ .e-bigger .e-recurrenceeditor .e-week-position {
466
+ min-width: 130px;
467
+ right: 0;
468
+ }
469
+ .e-bigger .e-recurrenceeditor .e-day-position {
470
+ min-width: 197px;
471
+ padding-left: 54px;
472
+ }
473
+ .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
474
+ font-size: 16px;
475
+ margin-bottom: 0;
476
+ font-weight: 500;
477
+ }
478
+ .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
479
+ padding-right: 2px;
480
+ }
481
+ .e-bigger .e-recurrenceeditor .e-end-on-label {
482
+ margin-bottom: 0;
483
+ }
484
+ .e-bigger .e-recurrenceeditor .e-days .e-week-expander-label {
485
+ font-size: 16px;
486
+ margin-bottom: 8px;
487
+ }
488
+ .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-label {
489
+ font-size: 16px;
490
+ margin-bottom: 1px;
491
+ }
492
+ .e-bigger .e-recurrenceeditor .e-month-expander tr:first-child .e-input-wrapper,
493
+ .e-bigger .e-recurrenceeditor .e-year-expander {
494
+ margin-bottom: 11px;
495
+ }
496
+ .e-bigger .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
497
+ width: 30px;
498
+ }
499
+ .e-bigger .e-recurrenceeditor .e-days button {
500
+ height: 40px;
501
+ width: 40px;
502
+ }
503
+ .e-bigger .e-recurrenceeditor.e-rtl .e-form-left,
504
+ .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-form-left {
505
+ padding: 0 0 10px 12px;
506
+ }
507
+ .e-bigger .e-recurrenceeditor.e-rtl .e-form-right,
508
+ .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-form-right {
509
+ padding: 0 12px 10px 0;
510
+ }
511
+ .e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element,
512
+ .e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-day-position {
513
+ padding: 0 64px 0 0;
514
+ }
515
+ .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-label,
516
+ .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-non-week > .e-month-expander-label {
517
+ padding-right: 0;
518
+ }
519
+ .e-bigger .e-recurrenceeditor.e-rtl .e-end-on-label {
520
+ margin-bottom: 5px;
521
+ }
522
+ .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
523
+ padding: 0 0 0 12px;
524
+ }
525
+ .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
526
+ .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
527
+ padding: 0 12px 0 0;
528
+ }
529
+ .e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-week-position {
530
+ left: 0;
531
+ }
532
+ .e-bigger .e-device .e-recurrence-table .e-monthday-element {
533
+ padding-left: 20px;
534
+ }
535
+ .e-bigger .e-device .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element {
536
+ padding: 0 20px 0 0;
537
+ }
@@ -0,0 +1,9 @@
1
+ @import 'ej2-base/styles/definition/bds.scss';
2
+ @import 'ej2-inputs/styles/numerictextbox/bds-definition.scss';
3
+ @import 'ej2-buttons/styles/button/bds-definition.scss';
4
+ @import 'ej2-buttons/styles/radio-button/bds-definition.scss';
5
+ @import 'ej2-calendars/styles/datepicker/bds-definition.scss';
6
+ @import 'ej2-dropdowns/styles/drop-down-list/bds-definition.scss';
7
+ @import 'bds-definition.scss';
8
+ @import 'all.scss';
9
+ @import 'bigger.scss';