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

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