@syncfusion/ej2-angular-calendars 20.4.51-ngcc → 20.4.51

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 (313) hide show
  1. package/esm2020/public_api.mjs +3 -0
  2. package/esm2020/src/calendar/calendar-all.module.mjs +29 -0
  3. package/esm2020/src/calendar/calendar.component.mjs +90 -0
  4. package/esm2020/src/calendar/calendar.module.mjs +25 -0
  5. package/esm2020/src/datepicker/datepicker-all.module.mjs +29 -0
  6. package/esm2020/src/datepicker/datepicker.component.mjs +98 -0
  7. package/esm2020/src/datepicker/datepicker.module.mjs +25 -0
  8. package/esm2020/src/daterangepicker/daterangepicker-all.module.mjs +23 -0
  9. package/esm2020/src/daterangepicker/daterangepicker.component.mjs +102 -0
  10. package/esm2020/src/daterangepicker/daterangepicker.module.mjs +34 -0
  11. package/esm2020/src/daterangepicker/presets.directive.mjs +58 -0
  12. package/esm2020/src/datetimepicker/datetimepicker-all.module.mjs +23 -0
  13. package/esm2020/src/datetimepicker/datetimepicker.component.mjs +98 -0
  14. package/esm2020/src/datetimepicker/datetimepicker.module.mjs +25 -0
  15. package/esm2020/src/index.mjs +18 -0
  16. package/esm2020/src/timepicker/timepicker-all.module.mjs +23 -0
  17. package/esm2020/src/timepicker/timepicker.component.mjs +91 -0
  18. package/esm2020/src/timepicker/timepicker.module.mjs +25 -0
  19. package/esm2020/syncfusion-ej2-angular-calendars.mjs +5 -0
  20. package/fesm2015/syncfusion-ej2-angular-calendars.mjs +732 -0
  21. package/fesm2015/syncfusion-ej2-angular-calendars.mjs.map +1 -0
  22. package/fesm2020/syncfusion-ej2-angular-calendars.mjs +732 -0
  23. package/fesm2020/syncfusion-ej2-angular-calendars.mjs.map +1 -0
  24. package/package.json +26 -12
  25. package/src/calendar/calendar-all.module.d.ts +6 -0
  26. package/src/calendar/calendar.component.d.ts +3 -0
  27. package/src/calendar/calendar.module.d.ts +6 -0
  28. package/src/datepicker/datepicker-all.module.d.ts +6 -0
  29. package/src/datepicker/datepicker.component.d.ts +3 -0
  30. package/src/datepicker/datepicker.module.d.ts +6 -0
  31. package/src/daterangepicker/daterangepicker-all.module.d.ts +6 -0
  32. package/src/daterangepicker/daterangepicker.component.d.ts +3 -0
  33. package/src/daterangepicker/daterangepicker.module.d.ts +7 -0
  34. package/src/daterangepicker/presets.directive.d.ts +5 -0
  35. package/src/datetimepicker/datetimepicker-all.module.d.ts +6 -0
  36. package/src/datetimepicker/datetimepicker.component.d.ts +3 -0
  37. package/src/datetimepicker/datetimepicker.module.d.ts +6 -0
  38. package/src/timepicker/timepicker-all.module.d.ts +6 -0
  39. package/src/timepicker/timepicker.component.d.ts +3 -0
  40. package/src/timepicker/timepicker.module.d.ts +6 -0
  41. package/styles/calendar/_all.scss +2 -0
  42. package/styles/calendar/_bootstrap-dark-definition.scss +228 -0
  43. package/styles/calendar/_bootstrap-definition.scss +228 -0
  44. package/styles/calendar/_bootstrap4-definition.scss +228 -0
  45. package/styles/calendar/_bootstrap5-dark-definition.scss +1 -0
  46. package/styles/calendar/_bootstrap5-definition.scss +250 -0
  47. package/styles/calendar/_fabric-dark-definition.scss +190 -0
  48. package/styles/calendar/_fabric-definition.scss +188 -0
  49. package/styles/calendar/_fluent-dark-definition.scss +1 -0
  50. package/styles/calendar/_fluent-definition.scss +252 -0
  51. package/styles/calendar/_fusionnew-definition.scss +250 -0
  52. package/styles/calendar/_highcontrast-definition.scss +187 -0
  53. package/styles/calendar/_highcontrast-light-definition.scss +190 -0
  54. package/styles/calendar/_layout.scss +694 -0
  55. package/styles/calendar/_material-dark-definition.scss +192 -0
  56. package/styles/calendar/_material-definition.scss +187 -0
  57. package/styles/calendar/_material3-definition.scss +250 -0
  58. package/styles/calendar/_tailwind-dark-definition.scss +1 -0
  59. package/styles/calendar/_tailwind-definition.scss +262 -0
  60. package/styles/calendar/_theme.scss +472 -0
  61. package/styles/calendar/bootstrap-dark.scss +5 -1
  62. package/styles/calendar/bootstrap.scss +5 -1
  63. package/styles/calendar/bootstrap4.scss +5 -1
  64. package/styles/calendar/bootstrap5-dark.scss +5 -1
  65. package/styles/calendar/bootstrap5.scss +5 -1
  66. package/styles/calendar/fabric-dark.scss +5 -1
  67. package/styles/calendar/fabric.scss +5 -1
  68. package/styles/calendar/fluent-dark.scss +5 -1
  69. package/styles/calendar/fluent.scss +5 -1
  70. package/styles/calendar/highcontrast-light.scss +5 -1
  71. package/styles/calendar/highcontrast.scss +5 -1
  72. package/styles/calendar/icons/_bootstrap-dark.scss +13 -0
  73. package/styles/calendar/icons/_bootstrap.scss +13 -0
  74. package/styles/calendar/icons/_bootstrap4.scss +13 -0
  75. package/styles/calendar/icons/_bootstrap5-dark.scss +1 -0
  76. package/styles/calendar/icons/_bootstrap5.scss +13 -0
  77. package/styles/calendar/icons/_fabric-dark.scss +13 -0
  78. package/styles/calendar/icons/_fabric.scss +13 -0
  79. package/styles/calendar/icons/_fluent-dark.scss +1 -0
  80. package/styles/calendar/icons/_fluent.scss +13 -0
  81. package/styles/calendar/icons/_fusionnew.scss +13 -0
  82. package/styles/calendar/icons/_highcontrast-light.scss +13 -0
  83. package/styles/calendar/icons/_highcontrast.scss +13 -0
  84. package/styles/calendar/icons/_material-dark.scss +13 -0
  85. package/styles/calendar/icons/_material.scss +13 -0
  86. package/styles/calendar/icons/_material3.scss +13 -0
  87. package/styles/calendar/icons/_tailwind-dark.scss +1 -0
  88. package/styles/calendar/icons/_tailwind.scss +13 -0
  89. package/styles/calendar/material-dark.scss +5 -1
  90. package/styles/calendar/material.scss +5 -1
  91. package/styles/calendar/tailwind-dark.scss +5 -1
  92. package/styles/calendar/tailwind.scss +5 -1
  93. package/styles/datepicker/_all.scss +2 -0
  94. package/styles/datepicker/_bootstrap-dark-definition.scss +37 -0
  95. package/styles/datepicker/_bootstrap-definition.scss +34 -0
  96. package/styles/datepicker/_bootstrap4-definition.scss +40 -0
  97. package/styles/datepicker/_bootstrap5-dark-definition.scss +1 -0
  98. package/styles/datepicker/_bootstrap5-definition.scss +46 -0
  99. package/styles/datepicker/_fabric-dark-definition.scss +37 -0
  100. package/styles/datepicker/_fabric-definition.scss +34 -0
  101. package/styles/datepicker/_fluent-dark-definition.scss +1 -0
  102. package/styles/datepicker/_fluent-definition.scss +46 -0
  103. package/styles/datepicker/_fusionnew-definition.scss +46 -0
  104. package/styles/datepicker/_highcontrast-definition.scss +35 -0
  105. package/styles/datepicker/_highcontrast-light-definition.scss +38 -0
  106. package/styles/datepicker/_layout.scss +251 -0
  107. package/styles/datepicker/_material-dark-definition.scss +42 -0
  108. package/styles/datepicker/_material-definition.scss +39 -0
  109. package/styles/datepicker/_material3-definition.scss +46 -0
  110. package/styles/datepicker/_tailwind-dark-definition.scss +1 -0
  111. package/styles/datepicker/_tailwind-definition.scss +44 -0
  112. package/styles/datepicker/_theme.scss +44 -0
  113. package/styles/datepicker/bootstrap-dark.scss +7 -1
  114. package/styles/datepicker/bootstrap.scss +7 -1
  115. package/styles/datepicker/bootstrap4.scss +7 -1
  116. package/styles/datepicker/bootstrap5-dark.scss +7 -1
  117. package/styles/datepicker/bootstrap5.scss +7 -1
  118. package/styles/datepicker/fabric-dark.scss +7 -1
  119. package/styles/datepicker/fabric.scss +7 -1
  120. package/styles/datepicker/fluent-dark.scss +7 -1
  121. package/styles/datepicker/fluent.scss +7 -1
  122. package/styles/datepicker/highcontrast-light.scss +7 -1
  123. package/styles/datepicker/highcontrast.scss +7 -1
  124. package/styles/datepicker/icons/_bootstrap-dark.scss +52 -0
  125. package/styles/datepicker/icons/_bootstrap.scss +52 -0
  126. package/styles/datepicker/icons/_bootstrap4.scss +56 -0
  127. package/styles/datepicker/icons/_bootstrap5-dark.scss +1 -0
  128. package/styles/datepicker/icons/_bootstrap5.scss +56 -0
  129. package/styles/datepicker/icons/_fabric-dark.scss +52 -0
  130. package/styles/datepicker/icons/_fabric.scss +52 -0
  131. package/styles/datepicker/icons/_fluent-dark.scss +1 -0
  132. package/styles/datepicker/icons/_fluent.scss +56 -0
  133. package/styles/datepicker/icons/_fusionnew.scss +56 -0
  134. package/styles/datepicker/icons/_highcontrast-light.scss +52 -0
  135. package/styles/datepicker/icons/_highcontrast.scss +52 -0
  136. package/styles/datepicker/icons/_material-dark.scss +86 -0
  137. package/styles/datepicker/icons/_material.scss +86 -0
  138. package/styles/datepicker/icons/_material3.scss +56 -0
  139. package/styles/datepicker/icons/_tailwind-dark.scss +1 -0
  140. package/styles/datepicker/icons/_tailwind.scss +56 -0
  141. package/styles/datepicker/material-dark.scss +7 -1
  142. package/styles/datepicker/material.scss +7 -1
  143. package/styles/datepicker/tailwind-dark.scss +7 -1
  144. package/styles/datepicker/tailwind.scss +7 -1
  145. package/styles/daterangepicker/_all.scss +2 -0
  146. package/styles/daterangepicker/_bootstrap-dark-definition.scss +193 -0
  147. package/styles/daterangepicker/_bootstrap-definition.scss +193 -0
  148. package/styles/daterangepicker/_bootstrap4-definition.scss +203 -0
  149. package/styles/daterangepicker/_bootstrap5-dark-definition.scss +1 -0
  150. package/styles/daterangepicker/_bootstrap5-definition.scss +231 -0
  151. package/styles/daterangepicker/_fabric-dark-definition.scss +196 -0
  152. package/styles/daterangepicker/_fabric-definition.scss +193 -0
  153. package/styles/daterangepicker/_fluent-dark-definition.scss +1 -0
  154. package/styles/daterangepicker/_fluent-definition.scss +240 -0
  155. package/styles/daterangepicker/_fusionnew-definition.scss +230 -0
  156. package/styles/daterangepicker/_highcontrast-definition.scss +193 -0
  157. package/styles/daterangepicker/_highcontrast-light-definition.scss +196 -0
  158. package/styles/daterangepicker/_layout.scss +773 -0
  159. package/styles/daterangepicker/_material-dark-definition.scss +201 -0
  160. package/styles/daterangepicker/_material-definition.scss +201 -0
  161. package/styles/daterangepicker/_material3-definition.scss +230 -0
  162. package/styles/daterangepicker/_tailwind-dark-definition.scss +1 -0
  163. package/styles/daterangepicker/_tailwind-definition.scss +222 -0
  164. package/styles/daterangepicker/_theme.scss +357 -0
  165. package/styles/daterangepicker/bootstrap-dark.scss +7 -1
  166. package/styles/daterangepicker/bootstrap.scss +7 -1
  167. package/styles/daterangepicker/bootstrap4.scss +7 -1
  168. package/styles/daterangepicker/bootstrap5-dark.scss +7 -1
  169. package/styles/daterangepicker/bootstrap5.scss +7 -1
  170. package/styles/daterangepicker/fabric-dark.scss +7 -1
  171. package/styles/daterangepicker/fabric.scss +7 -1
  172. package/styles/daterangepicker/fluent-dark.scss +7 -1
  173. package/styles/daterangepicker/fluent.scss +7 -1
  174. package/styles/daterangepicker/highcontrast-light.scss +7 -1
  175. package/styles/daterangepicker/highcontrast.scss +7 -1
  176. package/styles/daterangepicker/icons/_bootstrap-dark.scss +65 -0
  177. package/styles/daterangepicker/icons/_bootstrap.scss +65 -0
  178. package/styles/daterangepicker/icons/_bootstrap4.scss +74 -0
  179. package/styles/daterangepicker/icons/_bootstrap5-dark.scss +1 -0
  180. package/styles/daterangepicker/icons/_bootstrap5.scss +72 -0
  181. package/styles/daterangepicker/icons/_fabric-dark.scss +65 -0
  182. package/styles/daterangepicker/icons/_fabric.scss +65 -0
  183. package/styles/daterangepicker/icons/_fluent-dark.scss +1 -0
  184. package/styles/daterangepicker/icons/_fluent.scss +72 -0
  185. package/styles/daterangepicker/icons/_fusionnew.scss +72 -0
  186. package/styles/daterangepicker/icons/_highcontrast-light.scss +65 -0
  187. package/styles/daterangepicker/icons/_highcontrast.scss +65 -0
  188. package/styles/daterangepicker/icons/_material-dark.scss +99 -0
  189. package/styles/daterangepicker/icons/_material.scss +99 -0
  190. package/styles/daterangepicker/icons/_material3.scss +72 -0
  191. package/styles/daterangepicker/icons/_tailwind-dark.scss +1 -0
  192. package/styles/daterangepicker/icons/_tailwind.scss +72 -0
  193. package/styles/daterangepicker/material-dark.scss +7 -1
  194. package/styles/daterangepicker/material.scss +7 -1
  195. package/styles/daterangepicker/tailwind-dark.scss +7 -1
  196. package/styles/daterangepicker/tailwind.scss +7 -1
  197. package/styles/datetimepicker/_all.scss +2 -0
  198. package/styles/datetimepicker/_bootstrap-dark-definition.scss +55 -0
  199. package/styles/datetimepicker/_bootstrap-definition.scss +54 -0
  200. package/styles/datetimepicker/_bootstrap4-definition.scss +60 -0
  201. package/styles/datetimepicker/_bootstrap5-dark-definition.scss +1 -0
  202. package/styles/datetimepicker/_bootstrap5-definition.scss +60 -0
  203. package/styles/datetimepicker/_fabric-dark-definition.scss +55 -0
  204. package/styles/datetimepicker/_fabric-definition.scss +52 -0
  205. package/styles/datetimepicker/_fluent-dark-definition.scss +1 -0
  206. package/styles/datetimepicker/_fluent-definition.scss +60 -0
  207. package/styles/datetimepicker/_fusionnew-definition.scss +60 -0
  208. package/styles/datetimepicker/_highcontrast-definition.scss +52 -0
  209. package/styles/datetimepicker/_highcontrast-light-definition.scss +55 -0
  210. package/styles/datetimepicker/_layout.scss +190 -0
  211. package/styles/datetimepicker/_material-dark-definition.scss +59 -0
  212. package/styles/datetimepicker/_material-definition.scss +57 -0
  213. package/styles/datetimepicker/_material3-definition.scss +60 -0
  214. package/styles/datetimepicker/_tailwind-dark-definition.scss +1 -0
  215. package/styles/datetimepicker/_tailwind-definition.scss +60 -0
  216. package/styles/datetimepicker/_theme.scss +50 -0
  217. package/styles/datetimepicker/bootstrap-dark.scss +8 -1
  218. package/styles/datetimepicker/bootstrap.scss +8 -1
  219. package/styles/datetimepicker/bootstrap4.scss +8 -1
  220. package/styles/datetimepicker/bootstrap5-dark.scss +8 -1
  221. package/styles/datetimepicker/bootstrap5.scss +8 -1
  222. package/styles/datetimepicker/fabric-dark.scss +8 -1
  223. package/styles/datetimepicker/fabric.scss +8 -1
  224. package/styles/datetimepicker/fluent-dark.scss +8 -1
  225. package/styles/datetimepicker/fluent.scss +8 -1
  226. package/styles/datetimepicker/highcontrast-light.scss +8 -1
  227. package/styles/datetimepicker/highcontrast.scss +8 -1
  228. package/styles/datetimepicker/icons/_bootstrap-dark.scss +11 -0
  229. package/styles/datetimepicker/icons/_bootstrap.scss +11 -0
  230. package/styles/datetimepicker/icons/_bootstrap4.scss +11 -0
  231. package/styles/datetimepicker/icons/_bootstrap5-dark.scss +1 -0
  232. package/styles/datetimepicker/icons/_bootstrap5.scss +11 -0
  233. package/styles/datetimepicker/icons/_fabric-dark.scss +11 -0
  234. package/styles/datetimepicker/icons/_fabric.scss +11 -0
  235. package/styles/datetimepicker/icons/_fluent-dark.scss +1 -0
  236. package/styles/datetimepicker/icons/_fluent.scss +11 -0
  237. package/styles/datetimepicker/icons/_fusionnew.scss +11 -0
  238. package/styles/datetimepicker/icons/_highcontrast-light.scss +11 -0
  239. package/styles/datetimepicker/icons/_highcontrast.scss +11 -0
  240. package/styles/datetimepicker/icons/_material-dark.scss +53 -0
  241. package/styles/datetimepicker/icons/_material.scss +62 -0
  242. package/styles/datetimepicker/icons/_material3.scss +11 -0
  243. package/styles/datetimepicker/icons/_tailwind-dark.scss +1 -0
  244. package/styles/datetimepicker/icons/_tailwind.scss +11 -0
  245. package/styles/datetimepicker/material-dark.scss +8 -1
  246. package/styles/datetimepicker/material.scss +8 -1
  247. package/styles/datetimepicker/tailwind-dark.scss +8 -1
  248. package/styles/datetimepicker/tailwind.scss +8 -1
  249. package/styles/timepicker/_all.scss +2 -0
  250. package/styles/timepicker/_bootstrap-dark-definition.scss +51 -0
  251. package/styles/timepicker/_bootstrap-definition.scss +48 -0
  252. package/styles/timepicker/_bootstrap4-definition.scss +56 -0
  253. package/styles/timepicker/_bootstrap5-dark-definition.scss +1 -0
  254. package/styles/timepicker/_bootstrap5-definition.scss +57 -0
  255. package/styles/timepicker/_fabric-dark-definition.scss +51 -0
  256. package/styles/timepicker/_fabric-definition.scss +48 -0
  257. package/styles/timepicker/_fluent-dark-definition.scss +1 -0
  258. package/styles/timepicker/_fluent-definition.scss +57 -0
  259. package/styles/timepicker/_fusionnew-definition.scss +57 -0
  260. package/styles/timepicker/_highcontrast-definition.scss +48 -0
  261. package/styles/timepicker/_highcontrast-light-definition.scss +51 -0
  262. package/styles/timepicker/_layout.scss +194 -0
  263. package/styles/timepicker/_material-dark-definition.scss +55 -0
  264. package/styles/timepicker/_material-definition.scss +52 -0
  265. package/styles/timepicker/_material3-definition.scss +57 -0
  266. package/styles/timepicker/_tailwind-dark-definition.scss +1 -0
  267. package/styles/timepicker/_tailwind-definition.scss +55 -0
  268. package/styles/timepicker/_theme.scss +70 -0
  269. package/styles/timepicker/bootstrap-dark.scss +6 -1
  270. package/styles/timepicker/bootstrap.scss +6 -1
  271. package/styles/timepicker/bootstrap4.scss +6 -1
  272. package/styles/timepicker/bootstrap5-dark.scss +6 -1
  273. package/styles/timepicker/bootstrap5.scss +6 -1
  274. package/styles/timepicker/fabric-dark.scss +6 -1
  275. package/styles/timepicker/fabric.scss +6 -1
  276. package/styles/timepicker/fluent-dark.scss +6 -1
  277. package/styles/timepicker/fluent.scss +6 -1
  278. package/styles/timepicker/highcontrast-light.scss +6 -1
  279. package/styles/timepicker/highcontrast.scss +6 -1
  280. package/styles/timepicker/icons/_bootstrap-dark.scss +11 -0
  281. package/styles/timepicker/icons/_bootstrap.scss +12 -0
  282. package/styles/timepicker/icons/_bootstrap4.scss +12 -0
  283. package/styles/timepicker/icons/_bootstrap5-dark.scss +1 -0
  284. package/styles/timepicker/icons/_bootstrap5.scss +12 -0
  285. package/styles/timepicker/icons/_fabric-dark.scss +12 -0
  286. package/styles/timepicker/icons/_fabric.scss +12 -0
  287. package/styles/timepicker/icons/_fluent-dark.scss +1 -0
  288. package/styles/timepicker/icons/_fluent.scss +12 -0
  289. package/styles/timepicker/icons/_fusionnew.scss +12 -0
  290. package/styles/timepicker/icons/_highcontrast-light.scss +12 -0
  291. package/styles/timepicker/icons/_highcontrast.scss +12 -0
  292. package/styles/timepicker/icons/_material-dark.scss +40 -0
  293. package/styles/timepicker/icons/_material.scss +42 -0
  294. package/styles/timepicker/icons/_material3.scss +12 -0
  295. package/styles/timepicker/icons/_tailwind-dark.scss +1 -0
  296. package/styles/timepicker/icons/_tailwind.scss +12 -0
  297. package/styles/timepicker/material-dark.scss +6 -1
  298. package/styles/timepicker/material.scss +6 -1
  299. package/styles/timepicker/tailwind-dark.scss +6 -1
  300. package/styles/timepicker/tailwind.scss +6 -1
  301. package/syncfusion-ej2-angular-calendars.d.ts +5 -0
  302. package/@syncfusion/ej2-angular-calendars.es5.js +0 -1028
  303. package/@syncfusion/ej2-angular-calendars.es5.js.map +0 -1
  304. package/@syncfusion/ej2-angular-calendars.js +0 -961
  305. package/@syncfusion/ej2-angular-calendars.js.map +0 -1
  306. package/CHANGELOG.md +0 -1352
  307. package/dist/ej2-angular-calendars.umd.js +0 -1073
  308. package/dist/ej2-angular-calendars.umd.js.map +0 -1
  309. package/dist/ej2-angular-calendars.umd.min.js +0 -11
  310. package/dist/ej2-angular-calendars.umd.min.js.map +0 -1
  311. package/ej2-angular-calendars.d.ts +0 -9
  312. package/ej2-angular-calendars.metadata.json +0 -1
  313. package/postinstall/tagchange.js +0 -18
@@ -0,0 +1,472 @@
1
+ @include export-module('calendar-theme') {
2
+ #{&}.e-calendar,
3
+ .e-bigger.e-small #{&}.e-calendar {
4
+ background-color: $calendar-bg-color;
5
+ border: $calendar-border-style;
6
+ box-shadow: $calendar-box-shadow;
7
+ #{if(&, '&', '*')} .e-date-icon-prev,
8
+ #{if(&, '&', '*')} .e-date-icon-next {
9
+ color: $calendar-header-icon-color;
10
+ }
11
+ #{if(&, '&', '*')} th {
12
+ border-bottom: 0;
13
+ color: $calendar-week-header-font-color;
14
+ }
15
+ @at-root {
16
+ #{if(&, '&', '*')} .e-header {
17
+ border-bottom: 0;
18
+ #{if(&, '&', '*')} a {
19
+ #{if(&, '&', '*')} span {
20
+ border: $calendar-default-border-color;
21
+ color: $calendar-icon-font-color;
22
+ }
23
+ }
24
+ #{if(&, '&', '*')} .e-title {
25
+ color: $calendar-title-font-color;
26
+ }
27
+ #{if(&, '&', '*')} .e-title:hover {
28
+ color: $calendar-title-hover-color;
29
+ cursor: pointer;
30
+ text-decoration: $calendar-title-decoration-style;
31
+ }
32
+
33
+ #{if(&, '&', '*')} .e-prev:hover > span,
34
+ #{if(&, '&', '*')} .e-next:hover > span {
35
+ border: $calendar-icon-hover-border-color;
36
+ color: $calendar-icon-hover-color;
37
+ cursor: pointer;
38
+ }
39
+
40
+ #{if(&, '&', '*')} .e-prev:hover,
41
+ #{if(&, '&', '*')} .e-next:hover {
42
+ background: $calendar-icon-hover-bg-color;
43
+ }
44
+
45
+ #{if(&, '&', '*')} .e-prev:active,
46
+ #{if(&, '&', '*')} .e-next:active {
47
+ background: $calendar-active-state-icon-bg-color;
48
+ color: $calendar-active-font-color;
49
+ }
50
+ #{if(&, '&', '*')} button.e-prev:active span,
51
+ #{if(&, '&', '*')} button.e-next:active span {
52
+ border: $calendar-selected-border-color;
53
+ color: $calendar-active-icon-color;
54
+ }
55
+ #{if(&, '&', '*')}.e-decade .e-title {
56
+ color: $calendar-light-font;
57
+ cursor: default;
58
+ }
59
+ #{if(&, '&', '*')} .e-next.e-disabled span,
60
+ #{if(&, '&', '*')} .e-prev.e-disabled span {
61
+ color: $calendar-disable-font-color;
62
+ font-weight: $calendar-disable-font-weight-style;
63
+ }
64
+ #{if(&, '&', '*')} .e-next.e-disabled,
65
+ #{if(&, '&', '*')} .e-prev.e-disabled {
66
+ opacity: $calendar-disable-opacity;
67
+ }
68
+ }
69
+ #{if(&, '&', '*')} .e-content {
70
+ #{if(&, '&', '*')}.e-decade tr:first-child .e-cell:first-child span.e-day,
71
+ #{if(&, '&', '*')}.e-decade tr:last-child .e-cell:last-child span.e-day {
72
+ color: $calendar-other-decade-cell-color;
73
+ }
74
+ #{if(&, '&', '*')}.e-decade tr:first-child .e-cell:first-child.e-selected span.e-day,
75
+ #{if(&, '&', '*')}.e-decade tr:last-child .e-cell:last-child.e-selected span.e-day {
76
+ color: $calendar-active-font-color;
77
+ }
78
+ #{if(&, '&', '*')}.e-decade tr:first-child .e-cell.e-disabled:first-child span.e-day,
79
+ #{if(&, '&', '*')}.e-decade tr:last-child .e-cell.e-disabled:last-child span.e-day {
80
+ color: $calendar-disable-font-color;
81
+ }
82
+ #{if(&, '&', '*')}.e-year td:hover span.e-day,
83
+ #{if(&, '&', '*')}.e-decade td:hover span.e-day {
84
+ background-color: $calendar-hover-color;
85
+ }
86
+ #{if(&, '&', '*')}.e-year td.e-selected:hover span.e-day,
87
+ #{if(&, '&', '*')}.e-decade td.e-selected:hover span.e-day {
88
+ background-color: $calendar-yeardecade-selected-hover-bg;
89
+ }
90
+
91
+ #{if(&, '&', '*')}.e-year td > span.e-day,
92
+ #{if(&, '&', '*')}.e-decade td > span.e-day {
93
+ background: $calendar-yeardecade-bg-color;
94
+ }
95
+
96
+ #{if(&, '&', '*')} .e-week-number span {
97
+ color: $calendar-week-number-color-style;
98
+ }
99
+
100
+ #{if(&, '&', '*')} td.e-focused-date span.e-day,
101
+ #{if(&, '&', '*')} td.e-focused-date:hover span.e-day,
102
+ #{if(&, '&', '*')} td.e-focused-date:focus span.e-day {
103
+ background: $calendar-focused-date-bg-style;
104
+ border: $calendar-focus-border-color;
105
+ border-radius: $calendar-border-radius;
106
+ box-shadow: $calendar-focus-box-shadow;
107
+ @if ($skin-name == 'FluentUI') {
108
+ background: none;
109
+ border-radius: $calendar-focused-state-border-radius;
110
+ box-shadow: $calendar-focused-state-box-shadow;
111
+ }
112
+ }
113
+ #{if(&, '&', '*')} td.e-focused-date:hover span.e-day {
114
+ background-color: $calendar-hover-color;
115
+ border: $calendar-hover-border-color;
116
+ border-radius: $calendar-border-radius;
117
+ color: $calendar-text-color;
118
+ }
119
+ #{if(&, '&', '*')} td.e-today span.e-day,
120
+ #{if(&, '&', '*')} td.e-focused-date.e-today span.e-day {
121
+ background: $calendar-today-bg-style;
122
+ border: $calendar-today-border-color;
123
+ border-radius: $calendar-border-radius;
124
+ box-shadow: $calendar-today-box-shadow;
125
+ color: $calendar-today-color;
126
+ @if ($skin-name == 'FluentUI') {
127
+ border-radius: $calendar-border-selected-radius;
128
+ }
129
+ }
130
+ #{if(&, '&', '*')} td.e-focused-date.e-today span.e-day {
131
+ background: $calendar-focused-today-bg-style;
132
+ border: $calendar-focused-today-border-style;
133
+ box-shadow: $calendar-focused-today-box-shadow;
134
+ color: $calendar-today-focused-font-color;
135
+ }
136
+ #{if(&, '&', '*')} td.e-today:focus span.e-day,
137
+ #{if(&, '&', '*')} td.e-focused-date.e-today:focus span.e-day {
138
+ background-color: $calendar-focus-bg-color;
139
+ border: $calendar-focus-border-color;
140
+ border-radius: $calendar-border-radius;
141
+ color: $calendar-today-focus-color;
142
+ @if ($skin-name == 'FluentUI') {
143
+ background-color: $calendar-focused-today-bg-style;
144
+ border-radius: $calendar-border-selected-radius;
145
+ }
146
+ }
147
+ #{if(&, '&', '*')} td.e-today:hover span.e-day,
148
+ #{if(&, '&', '*')} td.e-focused-date.e-today:hover span.e-day,
149
+ #{if(&, '&', '*')} td.e-focused-date.e-today:focus span.e-day {
150
+ background-color: $calendar-hover-color;
151
+ border: $calendar-today-border-color;
152
+ color: $calendar-today-focus-color;
153
+ @if ($skin-name == 'FluentUI') {
154
+ background-color: $calendar-today-bg-style;
155
+ border-radius: $calendar-border-selected-radius;
156
+ }
157
+ }
158
+ #{if(&, '&', '*')} td.e-today.e-selected span.e-day {
159
+ background-color: $calendar-active-bg-color;
160
+ border: $calendar-active-bg-border-color;
161
+ @if ($skin-name == 'material' or $skin-name == 'material-dark') {
162
+ box-shadow: $calendar-selected-box-shadow;
163
+ }
164
+ @else {
165
+ box-shadow: $calendar-active-bg-box-shadow;
166
+ }
167
+ color: $calendar-active-today-font-color;
168
+ }
169
+ #{if(&, '&', '*')} td.e-today.e-selected:hover span.e-day,
170
+ #{if(&, '&', '*')} td.e-selected:hover span.e-day,
171
+ #{if(&, '&', '*')} td.e-selected.e-focused-date span.e-day {
172
+ background-color: $calendar-active-hover-bg-color;
173
+ color: $calendar-active-today-hover-font-color;
174
+ @if ($skin-name == 'FluentUI') {
175
+ background-color: $calendar-focused-today-bg-style;
176
+ border-radius: $calendar-border-selected-radius;
177
+ color: $calendar-today-color;
178
+ }
179
+ }
180
+ #{if(&, '&', '*')} span {
181
+ color: $calendar-text-color;
182
+ }
183
+ #{if(&, '&', '*')} .e-disabled span.e-day:hover {
184
+ background: $calendar-none-style;
185
+ border: 0;
186
+ color: $calendar-disable-font-color;
187
+ }
188
+ #{if(&, '&', '*')} .e-other-month:hover span.e-day {
189
+ @if ($skin-name != 'fabric-dark') {
190
+ color: $calendar-other-month-date-hover-bg;
191
+ }
192
+ }
193
+ #{if(&, '&', '*')} .e-other-month span.e-day,
194
+ #{if(&, '&', '*')} .e-other-month.e-today span.e-day {
195
+ color: $calendar-other-month-date;
196
+ }
197
+ #{if(&, '&', '*')} .e-other-month.e-today:hover span.e-day {
198
+ background-color: $calendar-hover-color;
199
+ color: $calendar-other-month-date;
200
+ @if ($skin-name == 'FluentUI') {
201
+ background: $calendar-today-bg-style;
202
+ border: $calendar-today-border-color;
203
+ border-radius: $calendar-border-selected-radius;
204
+ box-shadow: $calendar-today-box-shadow;
205
+ color: $calendar-today-color;
206
+ }
207
+ }
208
+ #{if(&, '&', '*')} thead {
209
+ background: $calendar-week-header-bg-style;
210
+ border-bottom: 0;
211
+ }
212
+ #{if(&, '&', '*')} td:hover span.e-day,
213
+ #{if(&, '&', '*')} td:focus span.e-day {
214
+ background-color: $calendar-hover-color;
215
+ border: $calendar-hover-border-color;
216
+ border-radius: $calendar-border-radius;
217
+ color: $calendar-hover-text;
218
+ }
219
+ #{if(&, '&', '*')} td:focus span.e-day {
220
+ background-color: $calendar-focus-bg-color;
221
+ border: $calendar-focus-border-color;
222
+ border-radius: $calendar-border-radius;
223
+ color: $calendar-text-color;
224
+ @if ($skin-name == 'FluentUI') {
225
+ border-radius: $calendar-border-selected-radius;
226
+ }
227
+ }
228
+ #{if(&, '&', '*')} td.e-disabled span.e-day,
229
+ #{if(&, '&', '*')} td.e-disabled:hover span.e-day,
230
+ #{if(&, '&', '*')} td.e-disabled:focus span.e-day {
231
+ background: $calendar-none-style;
232
+ border: $calendar-none-style;
233
+ color: $calendar-disable-font-color;
234
+ }
235
+ #{if(&, '&', '*')} td.e-today.e-disabled.e-overlay span.e-day,
236
+ #{if(&, '&', '*')} td.e-today.e-disabled.e-overlay:hover span.e-day,
237
+ #{if(&, '&', '*')} td.e-today.e-disabled.e-overlay:focus span.e-day {
238
+ @if ($skin-name == 'FluentUI') {
239
+ background-color: $calendar-focused-today-bg-style;
240
+ border-radius: $calendar-border-selected-radius;
241
+ color: $calendar-today-color;
242
+ }
243
+ }
244
+ #{if(&, '&', '*')} td.e-selected span.e-day {
245
+ background-color: $calendar-active-bg-color;
246
+ border: $calendar-selected-border-color;
247
+ border-radius: $calendar-border-radius;
248
+ color: $calendar-active-font-color;
249
+ }
250
+ #{if(&, '&', '*')} td.e-selected:not(.e-focused-date) span.e-day {
251
+ @if ($skin-name == 'FluentUI') {
252
+ box-shadow: $calendar-selected-box-shadow;
253
+ }
254
+ }
255
+ #{if(&, '&', '*')} .e-footer {
256
+ color: $calendar-active-bg-color;
257
+ }
258
+ #{if(&, '&', '*')} td.e-today.e-selected.e-focused-date span.e-day,
259
+ #{if(&, '&', '*')} td.e-today.e-selected:hover span.e-day,
260
+ #{if(&, '&', '*')} td.e-today.e-selected span.e-day {
261
+ @if ($skin-name == 'FluentUI') {
262
+ background-color: $calendar-focused-today-bg-style;
263
+ border-radius: $calendar-border-selected-radius;
264
+ color: $calendar-today-color;
265
+ }
266
+ }
267
+ #{if(&, '&', '*')} td.e-today.e-selected.e-focused-date {
268
+ @if ($skin-name == 'FluentUI') {
269
+ background-color: $calendar-active-bg-color;
270
+ border-radius: $calendar-focused-state-border-radius;
271
+ box-shadow: $calendar-focused-state-box-shadow;
272
+ }
273
+ }
274
+ #{if(&, '&', '*')} td.e-today.e-selected {
275
+ @if ($skin-name == 'FluentUI') {
276
+ background-color: $calendar-active-bg-color;
277
+ border-radius: $calendar-wrapper-border-radius;
278
+ box-shadow: $calendar-selected-box-shadow;
279
+ }
280
+ }
281
+ #{if(&, '&', '*')} td.e-selected:hover span.e-day {
282
+ @if ($skin-name == 'FluentUI') {
283
+ background-color: $calendar-active-bg-color;
284
+ border: $calendar-selected-border-color;
285
+ border-radius: $calendar-border-radius;
286
+ color: $calendar-active-font-color;
287
+ }
288
+ }
289
+ #{if(&, '&', '*')} td.e-selected.e-focused-date span.e-day {
290
+ @if ($skin-name == 'FluentUI') {
291
+ background-color: $calendar-active-bg-color;
292
+ border: $calendar-selected-border-color;
293
+ border-radius: $calendar-focused-state-border-radius;
294
+ color: $calendar-active-font-color;
295
+ }
296
+ }
297
+ #{if(&, '&', '*')}.e-month td.e-today span.e-day {
298
+ @if ($skin-name == 'FluentUI') {
299
+ color: $calendar-today-focused-font-color;
300
+ }
301
+ }
302
+ #{if(&, '&', '*')}.e-year td.e-selected > span.e-day,
303
+ #{if(&, '&', '*')}.e-decade td.e-selected > span.e-day,
304
+ #{if(&, '&', '*')}.e-year td.e-selected:hover > span.e-day,
305
+ #{if(&, '&', '*')}.e-decade td.e-selected:hover > span.e-day {
306
+ @if ($skin-name == 'FluentUI') {
307
+ background-color: $calendar-selected-month-bg-color;
308
+ color: $calendar-week-header-font-color;
309
+ }
310
+ }
311
+ #{if(&, '&', '*')}.e-year td.e-focused-date > span.e-day,
312
+ #{if(&, '&', '*')}.e-decade td.e-focused-date > span.e-day {
313
+ @if ($skin-name == 'FluentUI') {
314
+ background: $calendar-none-style;
315
+ border-radius: 0;
316
+ box-shadow: $calendar-focused-state-month-box-shadow;
317
+ }
318
+ }
319
+ #{if(&, '&', '*')} td.e-focused-date.e-today {
320
+ @if ($skin-name == 'FluentUI') {
321
+ border-radius: $calendar-focused-state-border-radius;
322
+ box-shadow: $calendar-focused-state-box-shadow;
323
+ }
324
+ }
325
+ #{if(&, '&', '*')} td.e-focused-date:hover span.e-day {
326
+ @if ($skin-name == 'FluentUI') {
327
+ border-radius: $calendar-focused-state-border-radius;
328
+ }
329
+ }
330
+ #{if(&, '&', '*')}.e-year td.e-focused-date:hover > span.e-day,
331
+ #{if(&, '&', '*')}.e-decade td.e-focused-date:hover > span.e-day {
332
+ @if ($skin-name == 'FluentUI') {
333
+ background: $calendar-hover-color;
334
+ border-radius: 0;
335
+ box-shadow: $calendar-focused-state-month-box-shadow;
336
+ }
337
+ }
338
+ }
339
+ }
340
+ #{if(&, '&', '*')}.e-device {
341
+ #{if(&, '&', '*')} .e-prev:hover,
342
+ #{if(&, '&', '*')} .e-next:hover,
343
+ #{if(&, '&', '*')} .e-prev:active,
344
+ #{if(&, '&', '*')} .e-next:active,
345
+ #{if(&, '&', '*')} .e-prev:focus,
346
+ #{if(&, '&', '*')} .e-next:focus {
347
+ background: $calendar-device-icon-hover-bg-color;
348
+ }
349
+ #{if(&, '&', '*')} button.e-prev:active span,
350
+ #{if(&, '&', '*')} button.e-next:active span {
351
+ color: $calendar-header-icon-color;
352
+ }
353
+ }
354
+
355
+ #{if(&, '&', '*')} .e-footer-container {
356
+ #{if(&, '&', '*')} .e-btn.e-today.e-flat.e-primary:not(:hover) {
357
+ @if $skin-name == 'tailwind' {
358
+ /* stylelint-disable property-no-vendor-prefix */
359
+ -webkit-tap-highlight-color: transparent;
360
+ background-color: $calendar-today-btn-primary-bgcolor;
361
+ border-color: $calendar-today-btn-primary-border-color;
362
+ color: $calendar-today-btn-primary-color;
363
+ }
364
+ }
365
+
366
+ #{if(&, '&', '*')} .e-btn.e-today.e-flat.e-primary.e-disabled {
367
+ @if $skin-name == 'tailwind' {
368
+ -webkit-tap-highlight-color: transparent;
369
+ background-color: $calendar-today-btn-primary-disabled-bgcolor;
370
+ border-color: $calendar-today-btn-primary-disabled-border-color;
371
+ color: $calendar-today-btn-primary-disabled-color;
372
+ }
373
+ }
374
+ }
375
+ }
376
+
377
+ .e-small#{&}.e-calendar,
378
+ .e-small #{&}.e-calendar {
379
+ #{if(&, '&', '*')} .e-header {
380
+ #{if(&, '&', '*')} .e-title {
381
+ color: $calendar-small-title-font-color;
382
+ }
383
+ }
384
+ }
385
+
386
+ #{&}.e-calendar.e-disabled {
387
+ #{if(&, '&', '*')} .e-footer-container {
388
+ #{if(&, '&', '*')} .e-btn.e-today.e-flat.e-primary {
389
+ @if $skin-name == 'tailwind' {
390
+ -webkit-tap-highlight-color: transparent;
391
+ background-color: $calendar-today-btn-primary-disabled-bgcolor;
392
+ border-color: $calendar-today-btn-primary-disabled-border-color;
393
+ color: $calendar-today-btn-primary-disabled-color;
394
+ }
395
+ }
396
+ }
397
+ }
398
+
399
+ .e-zoomin {
400
+ animation: animatezoom .3s;
401
+ }
402
+
403
+ @keyframes animatezoom {
404
+ from {
405
+ transform: scale(0);
406
+ }
407
+
408
+ to {
409
+ transform: scale(1);
410
+ }
411
+ }
412
+
413
+ .e-calendar .e-btn.e-today.e-flat.e-primary,
414
+ .e-calendar .e-css.e-btn.e-today.e-flat.e-primary {
415
+ @if $skin-name == 'bootstrap5' or $skin-name == 'FluentUI' {
416
+ background-color: $today-button-bg;
417
+ border: 0;
418
+ border-color: $today-button-bg-border-color;
419
+ color: $today-button-text-color;
420
+ }
421
+ }
422
+
423
+ .e-calendar .e-btn.e-today.e-flat.e-primary:hover,
424
+ .e-calendar .e-css.e-btn.e-today.e-flat.e-primary:hover {
425
+ @if $skin-name == 'bootstrap5' or $skin-name == 'FluentUI' {
426
+ background-color: $today-button-hover-bg;
427
+ border-color: $today-button-bg-border-hover-color;
428
+ color: $today-button-text-hover-color;
429
+ }
430
+ }
431
+
432
+ .e-calendar .e-btn.e-today.e-flat.e-primary:active,
433
+ .e-calendar .e-btn.e-today.e-flat.e-primary.e-active,
434
+ .e-calendar .e-css.e-btn.e-today.e-flat.e-primary:active,
435
+ .e-calendar .e-css.e-btn.e-today.e-flat.e-primary.e-active {
436
+ @if $skin-name == 'bootstrap5' or $skin-name == 'FluentUI' {
437
+ background-color: $today-button-active-bg;
438
+ border-color: $today-button-bg-border-active-color;
439
+ color: $today-button-text-active-color;
440
+ }
441
+ @if $skin-name == 'FluentUI' {
442
+ border: $calendar-none-style;
443
+ outline: $calendar-none-style;
444
+ }
445
+ }
446
+
447
+ .e-calendar .e-btn.e-today.e-flat.e-primary:focus,
448
+ .e-calendar .e-btn.e-today.e-flat.e-primary.e-focus,
449
+ .e-calendar .e-css.e-btn.e-today.e-flat.e-primary:focus,
450
+ .e-calendar .e-css.e-btn.e-today.e-flat.e-primary.e-focus {
451
+ @if $skin-name == 'FluentUI' {
452
+ background-color: $today-button-active-bg;
453
+ border: $calendar-none-style;
454
+ border-color: $today-button-bg-border-active-color;
455
+ color: $today-button-text-active-color;
456
+ outline: $calendar-none-style;
457
+ }
458
+ }
459
+
460
+ .e-calendar .e-btn.e-today.e-flat.e-primary.e-disabled,
461
+ .e-calendar .e-btn.e-today.e-flat.e-primary.e-disabled,
462
+ .e-calendar .e-css.e-btn.e-today.e-flat.e-primary.e-disabled,
463
+ .e-calendar .e-css.e-btn.e-today.e-flat.e-primary.e-disabled {
464
+ @if $skin-name == 'bootstrap5' {
465
+ background-color: $calendar-today-disabled-background-style;
466
+ border-color: $calendar-today-disabled-border-style;
467
+ }
468
+ @if $skin-name == 'bootstrap5' or $skin-name == 'FluentUI' {
469
+ color: $calendar-today-disabled-color;
470
+ }
471
+ }
472
+ }
@@ -1 +1,5 @@
1
- @import 'ej2-calendars/styles/calendar/bootstrap-dark.scss';
1
+ @import 'ej2-base/styles/bootstrap-dark-definition.scss';
2
+ @import 'ej2-buttons/styles/button/bootstrap-dark-definition.scss';
3
+ @import 'bootstrap-dark-definition.scss';
4
+ @import 'icons/bootstrap-dark.scss';
5
+ @import 'all.scss';
@@ -1 +1,5 @@
1
- @import 'ej2-calendars/styles/calendar/bootstrap.scss';
1
+ @import 'ej2-base/styles/bootstrap-definition.scss';
2
+ @import 'ej2-buttons/styles/button/bootstrap-definition.scss';
3
+ @import 'bootstrap-definition.scss';
4
+ @import 'icons/bootstrap.scss';
5
+ @import 'all.scss';
@@ -1 +1,5 @@
1
- @import 'ej2-calendars/styles/calendar/bootstrap4.scss';
1
+ @import 'ej2-base/styles/bootstrap4-definition.scss';
2
+ @import 'ej2-buttons/styles/button/bootstrap4-definition.scss';
3
+ @import 'bootstrap4-definition.scss';
4
+ @import 'icons/bootstrap4.scss';
5
+ @import 'all.scss';
@@ -1 +1,5 @@
1
- @import 'ej2-calendars/styles/calendar/bootstrap5-dark.scss';
1
+ @import 'ej2-base/styles/bootstrap5-dark-definition.scss';
2
+ @import 'ej2-buttons/styles/button/bootstrap5-dark-definition.scss';
3
+ @import 'bootstrap5-dark-definition.scss';
4
+ @import 'icons/bootstrap5-dark.scss';
5
+ @import 'all.scss';
@@ -1 +1,5 @@
1
- @import 'ej2-calendars/styles/calendar/bootstrap5.scss';
1
+ @import 'ej2-base/styles/bootstrap5-definition.scss';
2
+ @import 'ej2-buttons/styles/button/bootstrap5-definition.scss';
3
+ @import 'bootstrap5-definition.scss';
4
+ @import 'icons/bootstrap5.scss';
5
+ @import 'all.scss';
@@ -1 +1,5 @@
1
- @import 'ej2-calendars/styles/calendar/fabric-dark.scss';
1
+ @import 'ej2-base/styles/fabric-dark-definition.scss';
2
+ @import 'ej2-buttons/styles/button/fabric-dark-definition.scss';
3
+ @import 'fabric-dark-definition.scss';
4
+ @import 'icons/fabric-dark.scss';
5
+ @import 'all.scss';
@@ -1 +1,5 @@
1
- @import 'ej2-calendars/styles/calendar/fabric.scss';
1
+ @import 'ej2-base/styles/fabric-definition.scss';
2
+ @import 'ej2-buttons/styles/button/fabric-definition.scss';
3
+ @import 'fabric-definition.scss';
4
+ @import 'icons/fabric.scss';
5
+ @import 'all.scss';
@@ -1 +1,5 @@
1
- @import 'ej2-calendars/styles/calendar/fluent-dark.scss';
1
+ @import 'ej2-base/styles/fluent-dark-definition.scss';
2
+ @import 'ej2-buttons/styles/button/fluent-dark-definition.scss';
3
+ @import 'fluent-dark-definition.scss';
4
+ @import 'icons/fluent-dark.scss';
5
+ @import 'all.scss';
@@ -1 +1,5 @@
1
- @import 'ej2-calendars/styles/calendar/fluent.scss';
1
+ @import 'ej2-base/styles/fluent-definition.scss';
2
+ @import 'ej2-buttons/styles/button/fluent-definition.scss';
3
+ @import 'fluent-definition.scss';
4
+ @import 'icons/fluent.scss';
5
+ @import 'all.scss';
@@ -1 +1,5 @@
1
- @import 'ej2-calendars/styles/calendar/highcontrast-light.scss';
1
+ @import 'ej2-base/styles/highcontrast-light-definition.scss';
2
+ @import 'ej2-buttons/styles/button/highcontrast-light-definition.scss';
3
+ @import 'highcontrast-light-definition.scss';
4
+ @import 'icons/highcontrast-light.scss';
5
+ @import 'all.scss';
@@ -1 +1,5 @@
1
- @import 'ej2-calendars/styles/calendar/highcontrast.scss';
1
+ @import 'ej2-base/styles/highcontrast-definition.scss';
2
+ @import 'ej2-buttons/styles/button/highcontrast-definition.scss';
3
+ @import 'highcontrast-definition.scss';
4
+ @import 'icons/highcontrast.scss';
5
+ @import 'all.scss';
@@ -0,0 +1,13 @@
1
+ @include export-module('calendar-material-icons') {
2
+
3
+ /*! component icons */
4
+ .e-calendar .e-header {
5
+ #{if(&, '&', '*')} .e-date-icon-prev::before {
6
+ content: '\e910';
7
+ }
8
+
9
+ #{if(&, '&', '*')} .e-date-icon-next::before {
10
+ content: '\e916';
11
+ }
12
+ }
13
+ }
@@ -0,0 +1,13 @@
1
+ @include export-module('calendar-material-icons') {
2
+
3
+ /*! component icons */
4
+ .e-calendar .e-header {
5
+ #{if(&, '&', '*')} .e-date-icon-prev::before {
6
+ content: '\e910';
7
+ }
8
+
9
+ #{if(&, '&', '*')} .e-date-icon-next::before {
10
+ content: '\e916';
11
+ }
12
+ }
13
+ }
@@ -0,0 +1,13 @@
1
+ @include export-module('calendar-bootstrap4-icons') {
2
+
3
+ /*! component icons */
4
+ .e-calendar .e-header {
5
+ #{if(&, '&', '*')} .e-date-icon-prev::before {
6
+ content: '\e734';
7
+ }
8
+
9
+ #{if(&, '&', '*')} .e-date-icon-next::before {
10
+ content: '\e705';
11
+ }
12
+ }
13
+ }
@@ -0,0 +1 @@
1
+ @import './bootstrap5.scss';
@@ -0,0 +1,13 @@
1
+ @include export-module('calendar-bootstrap5-icons') {
2
+
3
+ /*! component icons */
4
+ .e-calendar .e-header {
5
+ #{if(&, '&', '*')} .e-date-icon-prev::before {
6
+ content: '\e776';
7
+ }
8
+
9
+ #{if(&, '&', '*')} .e-date-icon-next::before {
10
+ content: '\e729';
11
+ }
12
+ }
13
+ }
@@ -0,0 +1,13 @@
1
+ @include export-module('calendar-fabric-icons') {
2
+
3
+ /*! component icons */
4
+ .e-calendar .e-header {
5
+ #{if(&, '&', '*')} .e-date-icon-prev::before {
6
+ content: '\e85e';
7
+ }
8
+
9
+ #{if(&, '&', '*')} .e-date-icon-next::before {
10
+ content: '\e84f';
11
+ }
12
+ }
13
+ }
@@ -0,0 +1,13 @@
1
+ @include export-module('calendar-fabric-icons') {
2
+
3
+ /*! component icons */
4
+ .e-calendar .e-header {
5
+ #{if(&, '&', '*')} .e-date-icon-prev::before {
6
+ content: '\e85e';
7
+ }
8
+
9
+ #{if(&, '&', '*')} .e-date-icon-next::before {
10
+ content: '\e84f';
11
+ }
12
+ }
13
+ }
@@ -0,0 +1 @@
1
+ @import './fluent.scss';
@@ -0,0 +1,13 @@
1
+ @include export-module('calendar-fluent-icons') {
2
+
3
+ /*! component icons */
4
+ .e-calendar .e-header {
5
+ #{if(&, '&', '*')} .e-date-icon-prev::before {
6
+ content: '\e7df';
7
+ }
8
+
9
+ #{if(&, '&', '*')} .e-date-icon-next::before {
10
+ content: '\e7d8';
11
+ }
12
+ }
13
+ }