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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (437) 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/bootstrap-dark.css +2952 -1
  42. package/styles/bootstrap.css +2960 -1
  43. package/styles/bootstrap4.css +2988 -1
  44. package/styles/bootstrap5-dark.css +3118 -1
  45. package/styles/bootstrap5.css +3118 -1
  46. package/styles/calendar/_all.scss +2 -0
  47. package/styles/calendar/_bootstrap-dark-definition.scss +228 -0
  48. package/styles/calendar/_bootstrap-definition.scss +228 -0
  49. package/styles/calendar/_bootstrap4-definition.scss +228 -0
  50. package/styles/calendar/_bootstrap5-dark-definition.scss +1 -0
  51. package/styles/calendar/_bootstrap5-definition.scss +250 -0
  52. package/styles/calendar/_fabric-dark-definition.scss +192 -0
  53. package/styles/calendar/_fabric-definition.scss +190 -0
  54. package/styles/calendar/_fluent-dark-definition.scss +1 -0
  55. package/styles/calendar/_fluent-definition.scss +252 -0
  56. package/styles/calendar/_fusionnew-definition.scss +250 -0
  57. package/styles/calendar/_highcontrast-definition.scss +189 -0
  58. package/styles/calendar/_highcontrast-light-definition.scss +192 -0
  59. package/styles/calendar/_layout.scss +786 -0
  60. package/styles/calendar/_material-dark-definition.scss +194 -0
  61. package/styles/calendar/_material-definition.scss +189 -0
  62. package/styles/calendar/_material3-dark-definition.scss +1 -0
  63. package/styles/calendar/_material3-definition.scss +195 -0
  64. package/styles/calendar/_tailwind-dark-definition.scss +1 -0
  65. package/styles/calendar/_tailwind-definition.scss +262 -0
  66. package/styles/calendar/_theme.scss +534 -0
  67. package/styles/calendar/bootstrap-dark.css +824 -1
  68. package/styles/calendar/bootstrap-dark.scss +5 -1
  69. package/styles/calendar/bootstrap.css +825 -1
  70. package/styles/calendar/bootstrap.scss +5 -1
  71. package/styles/calendar/bootstrap4.css +825 -1
  72. package/styles/calendar/bootstrap4.scss +5 -1
  73. package/styles/calendar/bootstrap5-dark.css +894 -1
  74. package/styles/calendar/bootstrap5-dark.scss +5 -1
  75. package/styles/calendar/bootstrap5.css +894 -1
  76. package/styles/calendar/bootstrap5.scss +5 -1
  77. package/styles/calendar/fabric-dark.css +830 -1
  78. package/styles/calendar/fabric-dark.scss +5 -1
  79. package/styles/calendar/fabric.css +835 -1
  80. package/styles/calendar/fabric.scss +5 -1
  81. package/styles/calendar/fluent-dark.css +1000 -1
  82. package/styles/calendar/fluent-dark.scss +5 -1
  83. package/styles/calendar/fluent.css +1000 -1
  84. package/styles/calendar/fluent.scss +5 -1
  85. package/styles/calendar/highcontrast-light.css +825 -1
  86. package/styles/calendar/highcontrast-light.scss +5 -1
  87. package/styles/calendar/highcontrast.css +835 -1
  88. package/styles/calendar/highcontrast.scss +5 -1
  89. package/styles/calendar/icons/_bootstrap-dark.scss +13 -0
  90. package/styles/calendar/icons/_bootstrap.scss +13 -0
  91. package/styles/calendar/icons/_bootstrap4.scss +13 -0
  92. package/styles/calendar/icons/_bootstrap5-dark.scss +1 -0
  93. package/styles/calendar/icons/_bootstrap5.scss +13 -0
  94. package/styles/calendar/icons/_fabric-dark.scss +13 -0
  95. package/styles/calendar/icons/_fabric.scss +13 -0
  96. package/styles/calendar/icons/_fluent-dark.scss +1 -0
  97. package/styles/calendar/icons/_fluent.scss +13 -0
  98. package/styles/calendar/icons/_fusionnew.scss +13 -0
  99. package/styles/calendar/icons/_highcontrast-light.scss +13 -0
  100. package/styles/calendar/icons/_highcontrast.scss +13 -0
  101. package/styles/calendar/icons/_material-dark.scss +13 -0
  102. package/styles/calendar/icons/_material.scss +13 -0
  103. package/styles/calendar/icons/_material3-dark.scss +1 -0
  104. package/styles/calendar/icons/_material3.scss +13 -0
  105. package/styles/calendar/icons/_tailwind-dark.scss +1 -0
  106. package/styles/calendar/icons/_tailwind.scss +13 -0
  107. package/styles/calendar/material-dark.css +834 -1
  108. package/styles/calendar/material-dark.scss +5 -1
  109. package/styles/calendar/material.css +835 -1
  110. package/styles/calendar/material.scss +5 -1
  111. package/styles/calendar/material3-dark.css +894 -1
  112. package/styles/calendar/material3-dark.scss +5 -1
  113. package/styles/calendar/material3.css +950 -1
  114. package/styles/calendar/material3.scss +5 -1
  115. package/styles/calendar/tailwind-dark.css +927 -1
  116. package/styles/calendar/tailwind-dark.scss +5 -1
  117. package/styles/calendar/tailwind.css +927 -1
  118. package/styles/calendar/tailwind.scss +5 -1
  119. package/styles/datepicker/_all.scss +2 -0
  120. package/styles/datepicker/_bootstrap-dark-definition.scss +97 -0
  121. package/styles/datepicker/_bootstrap-definition.scss +96 -0
  122. package/styles/datepicker/_bootstrap4-definition.scss +101 -0
  123. package/styles/datepicker/_bootstrap5-dark-definition.scss +1 -0
  124. package/styles/datepicker/_bootstrap5-definition.scss +107 -0
  125. package/styles/datepicker/_fabric-dark-definition.scss +98 -0
  126. package/styles/datepicker/_fabric-definition.scss +95 -0
  127. package/styles/datepicker/_fluent-dark-definition.scss +1 -0
  128. package/styles/datepicker/_fluent-definition.scss +107 -0
  129. package/styles/datepicker/_fusionnew-definition.scss +107 -0
  130. package/styles/datepicker/_highcontrast-definition.scss +96 -0
  131. package/styles/datepicker/_highcontrast-light-definition.scss +99 -0
  132. package/styles/datepicker/_layout.scss +434 -0
  133. package/styles/datepicker/_material-dark-definition.scss +103 -0
  134. package/styles/datepicker/_material-definition.scss +100 -0
  135. package/styles/datepicker/_material3-dark-definition.scss +1 -0
  136. package/styles/datepicker/_material3-definition.scss +116 -0
  137. package/styles/datepicker/_tailwind-dark-definition.scss +1 -0
  138. package/styles/datepicker/_tailwind-definition.scss +105 -0
  139. package/styles/datepicker/_theme.scss +53 -0
  140. package/styles/datepicker/bootstrap-dark.css +449 -1
  141. package/styles/datepicker/bootstrap-dark.scss +7 -1
  142. package/styles/datepicker/bootstrap.css +450 -1
  143. package/styles/datepicker/bootstrap.scss +7 -1
  144. package/styles/datepicker/bootstrap4.css +462 -1
  145. package/styles/datepicker/bootstrap4.scss +7 -1
  146. package/styles/datepicker/bootstrap5-dark.css +460 -1
  147. package/styles/datepicker/bootstrap5-dark.scss +7 -1
  148. package/styles/datepicker/bootstrap5.css +460 -1
  149. package/styles/datepicker/bootstrap5.scss +7 -1
  150. package/styles/datepicker/fabric-dark.css +442 -1
  151. package/styles/datepicker/fabric-dark.scss +7 -1
  152. package/styles/datepicker/fabric.css +443 -1
  153. package/styles/datepicker/fabric.scss +7 -1
  154. package/styles/datepicker/fluent-dark.css +460 -1
  155. package/styles/datepicker/fluent-dark.scss +7 -1
  156. package/styles/datepicker/fluent.css +460 -1
  157. package/styles/datepicker/fluent.scss +7 -1
  158. package/styles/datepicker/highcontrast-light.css +455 -1
  159. package/styles/datepicker/highcontrast-light.scss +7 -1
  160. package/styles/datepicker/highcontrast.css +456 -1
  161. package/styles/datepicker/highcontrast.scss +7 -1
  162. package/styles/datepicker/icons/_bootstrap-dark.scss +73 -0
  163. package/styles/datepicker/icons/_bootstrap.scss +72 -0
  164. package/styles/datepicker/icons/_bootstrap4.scss +76 -0
  165. package/styles/datepicker/icons/_bootstrap5-dark.scss +1 -0
  166. package/styles/datepicker/icons/_bootstrap5.scss +76 -0
  167. package/styles/datepicker/icons/_fabric-dark.scss +65 -0
  168. package/styles/datepicker/icons/_fabric.scss +65 -0
  169. package/styles/datepicker/icons/_fluent-dark.scss +1 -0
  170. package/styles/datepicker/icons/_fluent.scss +76 -0
  171. package/styles/datepicker/icons/_fusionnew.scss +76 -0
  172. package/styles/datepicker/icons/_highcontrast-light.scss +72 -0
  173. package/styles/datepicker/icons/_highcontrast.scss +72 -0
  174. package/styles/datepicker/icons/_material-dark.scss +99 -0
  175. package/styles/datepicker/icons/_material.scss +99 -0
  176. package/styles/datepicker/icons/_material3-dark.scss +1 -0
  177. package/styles/datepicker/icons/_material3.scss +79 -0
  178. package/styles/datepicker/icons/_tailwind-dark.scss +1 -0
  179. package/styles/datepicker/icons/_tailwind.scss +76 -0
  180. package/styles/datepicker/material-dark.css +491 -1
  181. package/styles/datepicker/material-dark.scss +7 -1
  182. package/styles/datepicker/material.css +500 -1
  183. package/styles/datepicker/material.scss +7 -1
  184. package/styles/datepicker/material3-dark.css +539 -1
  185. package/styles/datepicker/material3-dark.scss +7 -1
  186. package/styles/datepicker/material3.css +595 -1
  187. package/styles/datepicker/material3.scss +7 -1
  188. package/styles/datepicker/tailwind-dark.css +465 -1
  189. package/styles/datepicker/tailwind-dark.scss +7 -1
  190. package/styles/datepicker/tailwind.css +465 -1
  191. package/styles/datepicker/tailwind.scss +7 -1
  192. package/styles/daterangepicker/_all.scss +2 -0
  193. package/styles/daterangepicker/_bootstrap-dark-definition.scss +258 -0
  194. package/styles/daterangepicker/_bootstrap-definition.scss +258 -0
  195. package/styles/daterangepicker/_bootstrap4-definition.scss +268 -0
  196. package/styles/daterangepicker/_bootstrap5-dark-definition.scss +1 -0
  197. package/styles/daterangepicker/_bootstrap5-definition.scss +296 -0
  198. package/styles/daterangepicker/_fabric-dark-definition.scss +261 -0
  199. package/styles/daterangepicker/_fabric-definition.scss +258 -0
  200. package/styles/daterangepicker/_fluent-dark-definition.scss +1 -0
  201. package/styles/daterangepicker/_fluent-definition.scss +322 -0
  202. package/styles/daterangepicker/_fusionnew-definition.scss +295 -0
  203. package/styles/daterangepicker/_highcontrast-definition.scss +258 -0
  204. package/styles/daterangepicker/_highcontrast-light-definition.scss +261 -0
  205. package/styles/daterangepicker/_layout.scss +1030 -0
  206. package/styles/daterangepicker/_material-dark-definition.scss +266 -0
  207. package/styles/daterangepicker/_material-definition.scss +266 -0
  208. package/styles/daterangepicker/_material3-dark-definition.scss +1 -0
  209. package/styles/daterangepicker/_material3-definition.scss +282 -0
  210. package/styles/daterangepicker/_tailwind-dark-definition.scss +1 -0
  211. package/styles/daterangepicker/_tailwind-definition.scss +287 -0
  212. package/styles/daterangepicker/_theme.scss +455 -0
  213. package/styles/daterangepicker/bootstrap-dark.css +1177 -1
  214. package/styles/daterangepicker/bootstrap-dark.scss +7 -1
  215. package/styles/daterangepicker/bootstrap.css +1183 -1
  216. package/styles/daterangepicker/bootstrap.scss +7 -1
  217. package/styles/daterangepicker/bootstrap4.css +1195 -1
  218. package/styles/daterangepicker/bootstrap4.scss +7 -1
  219. package/styles/daterangepicker/bootstrap5-dark.css +1257 -1
  220. package/styles/daterangepicker/bootstrap5-dark.scss +7 -1
  221. package/styles/daterangepicker/bootstrap5.css +1257 -1
  222. package/styles/daterangepicker/bootstrap5.scss +7 -1
  223. package/styles/daterangepicker/fabric-dark.css +1177 -1
  224. package/styles/daterangepicker/fabric-dark.scss +7 -1
  225. package/styles/daterangepicker/fabric.css +1178 -1
  226. package/styles/daterangepicker/fabric.scss +7 -1
  227. package/styles/daterangepicker/fluent-dark.css +1295 -1
  228. package/styles/daterangepicker/fluent-dark.scss +7 -1
  229. package/styles/daterangepicker/fluent.css +1295 -1
  230. package/styles/daterangepicker/fluent.scss +7 -1
  231. package/styles/daterangepicker/highcontrast-light.css +1177 -1
  232. package/styles/daterangepicker/highcontrast-light.scss +7 -1
  233. package/styles/daterangepicker/highcontrast.css +1178 -1
  234. package/styles/daterangepicker/highcontrast.scss +7 -1
  235. package/styles/daterangepicker/icons/_bootstrap-dark.scss +85 -0
  236. package/styles/daterangepicker/icons/_bootstrap.scss +85 -0
  237. package/styles/daterangepicker/icons/_bootstrap4.scss +94 -0
  238. package/styles/daterangepicker/icons/_bootstrap5-dark.scss +1 -0
  239. package/styles/daterangepicker/icons/_bootstrap5.scss +92 -0
  240. package/styles/daterangepicker/icons/_fabric-dark.scss +85 -0
  241. package/styles/daterangepicker/icons/_fabric.scss +85 -0
  242. package/styles/daterangepicker/icons/_fluent-dark.scss +1 -0
  243. package/styles/daterangepicker/icons/_fluent.scss +92 -0
  244. package/styles/daterangepicker/icons/_fusionnew.scss +92 -0
  245. package/styles/daterangepicker/icons/_highcontrast-light.scss +85 -0
  246. package/styles/daterangepicker/icons/_highcontrast.scss +85 -0
  247. package/styles/daterangepicker/icons/_material-dark.scss +119 -0
  248. package/styles/daterangepicker/icons/_material.scss +119 -0
  249. package/styles/daterangepicker/icons/_material3-dark.scss +1 -0
  250. package/styles/daterangepicker/icons/_material3.scss +129 -0
  251. package/styles/daterangepicker/icons/_tailwind-dark.scss +1 -0
  252. package/styles/daterangepicker/icons/_tailwind.scss +92 -0
  253. package/styles/daterangepicker/material-dark.css +1215 -1
  254. package/styles/daterangepicker/material-dark.scss +7 -1
  255. package/styles/daterangepicker/material.css +1229 -1
  256. package/styles/daterangepicker/material.scss +7 -1
  257. package/styles/daterangepicker/material3-dark.css +1322 -1
  258. package/styles/daterangepicker/material3-dark.scss +7 -1
  259. package/styles/daterangepicker/material3.css +1378 -1
  260. package/styles/daterangepicker/material3.scss +7 -1
  261. package/styles/daterangepicker/tailwind-dark.css +1196 -1
  262. package/styles/daterangepicker/tailwind-dark.scss +7 -1
  263. package/styles/daterangepicker/tailwind.css +1196 -1
  264. package/styles/daterangepicker/tailwind.scss +7 -1
  265. package/styles/datetimepicker/_all.scss +2 -0
  266. package/styles/datetimepicker/_bootstrap-dark-definition.scss +60 -0
  267. package/styles/datetimepicker/_bootstrap-definition.scss +59 -0
  268. package/styles/datetimepicker/_bootstrap4-definition.scss +65 -0
  269. package/styles/datetimepicker/_bootstrap5-dark-definition.scss +1 -0
  270. package/styles/datetimepicker/_bootstrap5-definition.scss +65 -0
  271. package/styles/datetimepicker/_fabric-dark-definition.scss +60 -0
  272. package/styles/datetimepicker/_fabric-definition.scss +57 -0
  273. package/styles/datetimepicker/_fluent-dark-definition.scss +1 -0
  274. package/styles/datetimepicker/_fluent-definition.scss +65 -0
  275. package/styles/datetimepicker/_fusionnew-definition.scss +65 -0
  276. package/styles/datetimepicker/_highcontrast-definition.scss +57 -0
  277. package/styles/datetimepicker/_highcontrast-light-definition.scss +60 -0
  278. package/styles/datetimepicker/_layout.scss +238 -0
  279. package/styles/datetimepicker/_material-dark-definition.scss +64 -0
  280. package/styles/datetimepicker/_material-definition.scss +62 -0
  281. package/styles/datetimepicker/_material3-dark-definition.scss +1 -0
  282. package/styles/datetimepicker/_material3-definition.scss +71 -0
  283. package/styles/datetimepicker/_tailwind-dark-definition.scss +1 -0
  284. package/styles/datetimepicker/_tailwind-definition.scss +65 -0
  285. package/styles/datetimepicker/_theme.scss +70 -0
  286. package/styles/datetimepicker/bootstrap-dark.css +190 -1
  287. package/styles/datetimepicker/bootstrap-dark.scss +8 -1
  288. package/styles/datetimepicker/bootstrap.css +190 -1
  289. package/styles/datetimepicker/bootstrap.scss +8 -1
  290. package/styles/datetimepicker/bootstrap4.css +192 -1
  291. package/styles/datetimepicker/bootstrap4.scss +8 -1
  292. package/styles/datetimepicker/bootstrap5-dark.css +191 -1
  293. package/styles/datetimepicker/bootstrap5-dark.scss +8 -1
  294. package/styles/datetimepicker/bootstrap5.css +191 -1
  295. package/styles/datetimepicker/bootstrap5.scss +8 -1
  296. package/styles/datetimepicker/fabric-dark.css +190 -1
  297. package/styles/datetimepicker/fabric-dark.scss +8 -1
  298. package/styles/datetimepicker/fabric.css +190 -1
  299. package/styles/datetimepicker/fabric.scss +8 -1
  300. package/styles/datetimepicker/fluent-dark.css +191 -1
  301. package/styles/datetimepicker/fluent-dark.scss +8 -1
  302. package/styles/datetimepicker/fluent.css +191 -1
  303. package/styles/datetimepicker/fluent.scss +8 -1
  304. package/styles/datetimepicker/highcontrast-light.css +190 -1
  305. package/styles/datetimepicker/highcontrast-light.scss +8 -1
  306. package/styles/datetimepicker/highcontrast.css +190 -1
  307. package/styles/datetimepicker/highcontrast.scss +8 -1
  308. package/styles/datetimepicker/icons/_bootstrap-dark.scss +11 -0
  309. package/styles/datetimepicker/icons/_bootstrap.scss +11 -0
  310. package/styles/datetimepicker/icons/_bootstrap4.scss +11 -0
  311. package/styles/datetimepicker/icons/_bootstrap5-dark.scss +1 -0
  312. package/styles/datetimepicker/icons/_bootstrap5.scss +11 -0
  313. package/styles/datetimepicker/icons/_fabric-dark.scss +11 -0
  314. package/styles/datetimepicker/icons/_fabric.scss +11 -0
  315. package/styles/datetimepicker/icons/_fluent-dark.scss +1 -0
  316. package/styles/datetimepicker/icons/_fluent.scss +11 -0
  317. package/styles/datetimepicker/icons/_fusionnew.scss +11 -0
  318. package/styles/datetimepicker/icons/_highcontrast-light.scss +11 -0
  319. package/styles/datetimepicker/icons/_highcontrast.scss +11 -0
  320. package/styles/datetimepicker/icons/_material-dark.scss +53 -0
  321. package/styles/datetimepicker/icons/_material.scss +62 -0
  322. package/styles/datetimepicker/icons/_material3-dark.scss +1 -0
  323. package/styles/datetimepicker/icons/_material3.scss +11 -0
  324. package/styles/datetimepicker/icons/_tailwind-dark.scss +1 -0
  325. package/styles/datetimepicker/icons/_tailwind.scss +11 -0
  326. package/styles/datetimepicker/material-dark.css +240 -1
  327. package/styles/datetimepicker/material-dark.scss +8 -1
  328. package/styles/datetimepicker/material.css +257 -1
  329. package/styles/datetimepicker/material.scss +8 -1
  330. package/styles/datetimepicker/material3-dark.css +282 -1
  331. package/styles/datetimepicker/material3-dark.scss +8 -1
  332. package/styles/datetimepicker/material3.css +338 -1
  333. package/styles/datetimepicker/material3.scss +8 -1
  334. package/styles/datetimepicker/tailwind-dark.css +191 -1
  335. package/styles/datetimepicker/tailwind-dark.scss +8 -1
  336. package/styles/datetimepicker/tailwind.css +191 -1
  337. package/styles/datetimepicker/tailwind.scss +8 -1
  338. package/styles/fabric-dark.css +2951 -1
  339. package/styles/fabric.css +2958 -1
  340. package/styles/fluent-dark.css +3260 -1
  341. package/styles/fluent.css +3260 -1
  342. package/styles/highcontrast-light.css +2959 -1
  343. package/styles/highcontrast.css +2971 -1
  344. package/styles/material-dark.css +3130 -1
  345. package/styles/material.css +3179 -1
  346. package/styles/material3-dark.css +3218 -1
  347. package/styles/material3-dark.scss +1 -0
  348. package/styles/material3.css +3274 -1
  349. package/styles/material3.scss +1 -0
  350. package/styles/tailwind-dark.css +3092 -1
  351. package/styles/tailwind.css +3092 -1
  352. package/styles/timepicker/_all.scss +2 -0
  353. package/styles/timepicker/_bootstrap-dark-definition.scss +80 -0
  354. package/styles/timepicker/_bootstrap-definition.scss +77 -0
  355. package/styles/timepicker/_bootstrap4-definition.scss +85 -0
  356. package/styles/timepicker/_bootstrap5-dark-definition.scss +1 -0
  357. package/styles/timepicker/_bootstrap5-definition.scss +86 -0
  358. package/styles/timepicker/_fabric-dark-definition.scss +80 -0
  359. package/styles/timepicker/_fabric-definition.scss +77 -0
  360. package/styles/timepicker/_fluent-dark-definition.scss +1 -0
  361. package/styles/timepicker/_fluent-definition.scss +86 -0
  362. package/styles/timepicker/_fusionnew-definition.scss +86 -0
  363. package/styles/timepicker/_highcontrast-definition.scss +77 -0
  364. package/styles/timepicker/_highcontrast-light-definition.scss +80 -0
  365. package/styles/timepicker/_layout.scss +303 -0
  366. package/styles/timepicker/_material-dark-definition.scss +84 -0
  367. package/styles/timepicker/_material-definition.scss +81 -0
  368. package/styles/timepicker/_material3-dark-definition.scss +1 -0
  369. package/styles/timepicker/_material3-definition.scss +99 -0
  370. package/styles/timepicker/_tailwind-dark-definition.scss +1 -0
  371. package/styles/timepicker/_tailwind-definition.scss +84 -0
  372. package/styles/timepicker/_theme.scss +114 -0
  373. package/styles/timepicker/bootstrap-dark.css +309 -1
  374. package/styles/timepicker/bootstrap-dark.scss +6 -1
  375. package/styles/timepicker/bootstrap.css +309 -1
  376. package/styles/timepicker/bootstrap.scss +6 -1
  377. package/styles/timepicker/bootstrap4.css +311 -1
  378. package/styles/timepicker/bootstrap4.scss +6 -1
  379. package/styles/timepicker/bootstrap5-dark.css +312 -1
  380. package/styles/timepicker/bootstrap5-dark.scss +6 -1
  381. package/styles/timepicker/bootstrap5.css +312 -1
  382. package/styles/timepicker/bootstrap5.scss +6 -1
  383. package/styles/timepicker/fabric-dark.css +309 -1
  384. package/styles/timepicker/fabric-dark.scss +6 -1
  385. package/styles/timepicker/fabric.css +309 -1
  386. package/styles/timepicker/fabric.scss +6 -1
  387. package/styles/timepicker/fluent-dark.css +310 -1
  388. package/styles/timepicker/fluent-dark.scss +6 -1
  389. package/styles/timepicker/fluent.css +310 -1
  390. package/styles/timepicker/fluent.scss +6 -1
  391. package/styles/timepicker/highcontrast-light.css +309 -1
  392. package/styles/timepicker/highcontrast-light.scss +6 -1
  393. package/styles/timepicker/highcontrast.css +309 -1
  394. package/styles/timepicker/highcontrast.scss +6 -1
  395. package/styles/timepicker/icons/_bootstrap-dark.scss +23 -0
  396. package/styles/timepicker/icons/_bootstrap.scss +24 -0
  397. package/styles/timepicker/icons/_bootstrap4.scss +24 -0
  398. package/styles/timepicker/icons/_bootstrap5-dark.scss +1 -0
  399. package/styles/timepicker/icons/_bootstrap5.scss +24 -0
  400. package/styles/timepicker/icons/_fabric-dark.scss +24 -0
  401. package/styles/timepicker/icons/_fabric.scss +24 -0
  402. package/styles/timepicker/icons/_fluent-dark.scss +1 -0
  403. package/styles/timepicker/icons/_fluent.scss +24 -0
  404. package/styles/timepicker/icons/_fusionnew.scss +24 -0
  405. package/styles/timepicker/icons/_highcontrast-light.scss +24 -0
  406. package/styles/timepicker/icons/_highcontrast.scss +24 -0
  407. package/styles/timepicker/icons/_material-dark.scss +52 -0
  408. package/styles/timepicker/icons/_material.scss +54 -0
  409. package/styles/timepicker/icons/_material3-dark.scss +1 -0
  410. package/styles/timepicker/icons/_material3.scss +24 -0
  411. package/styles/timepicker/icons/_tailwind-dark.scss +1 -0
  412. package/styles/timepicker/icons/_tailwind.scss +24 -0
  413. package/styles/timepicker/material-dark.css +347 -1
  414. package/styles/timepicker/material-dark.scss +6 -1
  415. package/styles/timepicker/material.css +355 -1
  416. package/styles/timepicker/material.scss +6 -1
  417. package/styles/timepicker/material3-dark.css +398 -1
  418. package/styles/timepicker/material3-dark.scss +6 -1
  419. package/styles/timepicker/material3.css +454 -1
  420. package/styles/timepicker/material3.scss +6 -1
  421. package/styles/timepicker/tailwind-dark.css +310 -1
  422. package/styles/timepicker/tailwind-dark.scss +6 -1
  423. package/styles/timepicker/tailwind.css +310 -1
  424. package/styles/timepicker/tailwind.scss +6 -1
  425. package/syncfusion-ej2-angular-calendars.d.ts +5 -0
  426. package/@syncfusion/ej2-angular-calendars.es5.js +0 -1048
  427. package/@syncfusion/ej2-angular-calendars.es5.js.map +0 -1
  428. package/@syncfusion/ej2-angular-calendars.js +0 -981
  429. package/@syncfusion/ej2-angular-calendars.js.map +0 -1
  430. package/CHANGELOG.md +0 -1334
  431. package/dist/ej2-angular-calendars.umd.js +0 -1093
  432. package/dist/ej2-angular-calendars.umd.js.map +0 -1
  433. package/dist/ej2-angular-calendars.umd.min.js +0 -11
  434. package/dist/ej2-angular-calendars.umd.min.js.map +0 -1
  435. package/ej2-angular-calendars.d.ts +0 -9
  436. package/ej2-angular-calendars.metadata.json +0 -1
  437. package/postinstall/tagchange.js +0 -18
@@ -1 +1,456 @@
1
- @import '@syncfusion/ej2-calendars/styles/datepicker/highcontrast.css';
1
+ /* stylelint-disable property-no-vendor-prefix */
2
+ /*! calendar fabric theme variables */
3
+ /*! component icons */
4
+ .e-input-group-icon.e-date-icon,
5
+ *.e-control-wrapper .e-input-group-icon.e-date-icon {
6
+ font-size: 16px;
7
+ margin: 0;
8
+ outline: none;
9
+ }
10
+ .e-input-group-icon.e-date-icon::before,
11
+ *.e-control-wrapper .e-input-group-icon.e-date-icon::before {
12
+ content: "\e93a";
13
+ font-family: "e-icons";
14
+ }
15
+ .e-input-group-icon.e-date-icon:focus,
16
+ *.e-control-wrapper .e-input-group-icon.e-date-icon:focus {
17
+ background: #685708;
18
+ border-radius: 0;
19
+ }
20
+
21
+ .e-bigger .e-input-group-icon.e-date-icon,
22
+ *.e-control-wrapper.e-bigger .e-input-group-icon.e-date-icon,
23
+ *.e-bigger .e-control-wrapper .e-input-group-icon.e-date-icon {
24
+ font-size: 18px;
25
+ margin: 0;
26
+ }
27
+ .e-bigger .e-input-group-icon.e-date-icon::before,
28
+ *.e-control-wrapper.e-bigger .e-input-group-icon.e-date-icon::before,
29
+ *.e-bigger .e-control-wrapper .e-input-group-icon.e-date-icon::before {
30
+ content: "\e93a";
31
+ font-family: "e-icons";
32
+ }
33
+ .e-bigger .e-input-group-icon.e-date-icon:focus,
34
+ *.e-control-wrapper.e-bigger .e-input-group-icon.e-date-icon:focus,
35
+ *.e-bigger .e-control-wrapper .e-input-group-icon.e-date-icon:focus {
36
+ background: #685708;
37
+ border-radius: 0;
38
+ }
39
+
40
+ .e-small .e-input-group-icon.e-date-icon,
41
+ *.e-control-wrapper.e-small .e-input-group-icon.e-date-icon,
42
+ *.e-small .e-control-wrapper .e-input-group-icon.e-date-icon {
43
+ font-size: 14px;
44
+ }
45
+
46
+ .e-small.e-bigger .e-input-group-icon.e-date-icon,
47
+ *.e-control-wrapper.e-small.e-bigger .e-input-group-icon.e-date-icon,
48
+ *.e-small.e-bigger .e-control-wrapper .e-input-group-icon.e-date-icon {
49
+ font-size: 18px;
50
+ }
51
+
52
+ .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-model-header .e-popup-close::before {
53
+ content: "\e7fc";
54
+ font-family: "e-icons";
55
+ }
56
+ .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header .e-date-icon-next::before {
57
+ content: "\e85c";
58
+ }
59
+ .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header .e-date-icon-prev::before {
60
+ content: "\e98f";
61
+ }
62
+
63
+ .e-input-group.e-control-wrapper.e-date-wrapper.e-non-edit.e-input-focus .e-input:focus ~ .e-clear-icon,
64
+ .e-float-input.e-control-wrapper.e-input-group.e-date-wrapper.e-non-edit.e-input-focus input:focus ~ .e-clear-icon {
65
+ display: -ms-flexbox;
66
+ display: flex;
67
+ }
68
+
69
+ .e-datepicker .e-calendar .e-content table tbody tr.e-month-hide:last-child {
70
+ display: table-row;
71
+ }
72
+ .e-datepicker.e-popup-wrapper {
73
+ border-radius: 0;
74
+ overflow-y: hidden;
75
+ pointer-events: auto;
76
+ }
77
+ .e-datepicker.e-date-modal {
78
+ background-color: rgba(0, 0, 0, 0.6);
79
+ height: 100%;
80
+ left: 0;
81
+ opacity: 0.5;
82
+ pointer-events: auto;
83
+ position: fixed;
84
+ top: 0;
85
+ width: 100%;
86
+ z-index: 999;
87
+ }
88
+ .e-datepicker .e-model-header {
89
+ background-color: #000;
90
+ color: #fff;
91
+ cursor: default;
92
+ display: block;
93
+ padding: 10px 10px 10px 15px;
94
+ }
95
+ .e-datepicker .e-model-header .e-model-year {
96
+ font-size: 14px;
97
+ font-weight: 500;
98
+ line-height: 32px;
99
+ margin: 0;
100
+ }
101
+ .e-datepicker .e-model-month, .e-datepicker .e-model-day {
102
+ font-size: 20px;
103
+ font-weight: 500;
104
+ line-height: 32px;
105
+ margin: 0;
106
+ }
107
+
108
+ /* stylelint-disable */
109
+ .e-date-overflow {
110
+ overflow: hidden !important;
111
+ }
112
+
113
+ .e-datepick-mob-popup-wrap {
114
+ -ms-flex-align: center;
115
+ align-items: center;
116
+ display: -ms-flexbox;
117
+ display: flex;
118
+ -ms-flex-direction: column;
119
+ flex-direction: column;
120
+ height: 100%;
121
+ -ms-flex-pack: center;
122
+ justify-content: center;
123
+ left: 0;
124
+ max-height: 100%;
125
+ position: fixed;
126
+ top: 0;
127
+ width: 100%;
128
+ z-index: 1002;
129
+ }
130
+ .e-datepick-mob-popup-wrap .e-datepicker.e-popup-wrapper.e-lib.e-popup.e-control.e-popup-open {
131
+ position: relative;
132
+ top: 0 !important;
133
+ left: 0 !important;
134
+ }
135
+ .e-datepick-mob-popup-wrap .e-datepicker.e-popup-wrapper.e-popup-expand.e-lib.e-popup.e-control.e-popup-open {
136
+ min-width: 100%;
137
+ min-height: 100%;
138
+ }
139
+
140
+ .e-content-placeholder.e-datepicker.e-placeholder-datepicker {
141
+ background-size: 250px 33px;
142
+ min-height: 33px;
143
+ }
144
+
145
+ .e-bigger .e-content-placeholder.e-datepicker.e-placeholder-datepicker,
146
+ .e-bigger.e-content-placeholder.e-datepicker.e-placeholder-datepicker {
147
+ background-size: 250px 40px;
148
+ min-height: 40px;
149
+ }
150
+
151
+ @media screen and (orientation: landscape) {
152
+ .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-content.e-month td.e-today span.e-day {
153
+ line-height: 64px;
154
+ }
155
+ }
156
+ .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand {
157
+ border-radius: 0;
158
+ }
159
+ .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-model-header.e-blazor-device {
160
+ height: 15vh;
161
+ }
162
+ .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-model-header.e-blazor-device .e-popup-close {
163
+ float: right;
164
+ }
165
+ .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-model-header.e-blazor-device {
166
+ height: 15vh;
167
+ }
168
+ .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-model-header.e-blazor-device .e-popup-close {
169
+ float: right;
170
+ }
171
+ .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-model-header {
172
+ height: 20vh;
173
+ padding: 2vh 6vw;
174
+ }
175
+ .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-model-header .e-day-wrapper {
176
+ margin: 12vh 0 0 0;
177
+ }
178
+ .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-model-header .e-popup-close {
179
+ color: inherit;
180
+ float: left;
181
+ font-size: 18px;
182
+ }
183
+ @media (min-device-width: 768px) {
184
+ .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-model-header .e-popup-close {
185
+ font-size: 18px;
186
+ }
187
+ }
188
+ .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-model-header .e-btn.e-flat.e-popup-close {
189
+ background: transparent;
190
+ border-color: transparent;
191
+ box-shadow: none;
192
+ font-weight: 400;
193
+ padding: 0;
194
+ }
195
+ .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-model-header .e-today.e-flat.e-primary {
196
+ color: inherit;
197
+ float: right;
198
+ }
199
+ @media (min-device-width: 768px) {
200
+ .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-model-header .e-today.e-flat.e-primary {
201
+ font-size: 18px;
202
+ }
203
+ }
204
+ .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-model-month, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-model-day {
205
+ font-size: 5vw;
206
+ line-height: 6vw;
207
+ }
208
+ .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar {
209
+ min-width: 100%;
210
+ min-height: 100%;
211
+ height: 100%;
212
+ }
213
+ .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-month, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-year, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-decade {
214
+ height: 10vh;
215
+ border-style: solid;
216
+ border-width: 1px 0;
217
+ border-color: #969696;
218
+ padding: 2vh 2vw;
219
+ line-height: 5vh;
220
+ }
221
+ .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-month .e-title, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-year .e-title, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-decade .e-title {
222
+ margin-left: 22vw;
223
+ position: absolute;
224
+ text-align: center;
225
+ vertical-align: middle;
226
+ width: 50vw;
227
+ line-height: inherit;
228
+ }
229
+ @media (min-device-width: 768px) {
230
+ .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-month .e-title, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-year .e-title, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-decade .e-title {
231
+ font-size: 18px;
232
+ }
233
+ }
234
+ .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-month .e-prev, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-year .e-prev, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-decade .e-prev {
235
+ margin-right: 75vw;
236
+ vertical-align: inherit;
237
+ height: 35px;
238
+ width: 35px;
239
+ }
240
+ @media (min-device-width: 768px) {
241
+ .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-month .e-prev, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-year .e-prev, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-decade .e-prev {
242
+ height: 55px;
243
+ width: 55px;
244
+ }
245
+ }
246
+ .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-month .e-prev .e-icons, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-year .e-prev .e-icons, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-decade .e-prev .e-icons {
247
+ vertical-align: inherit;
248
+ }
249
+ @media (min-device-width: 768px) {
250
+ .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-month .e-prev .e-icons, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-year .e-prev .e-icons, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-decade .e-prev .e-icons {
251
+ font-size: 18px;
252
+ }
253
+ }
254
+ .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-month .e-next, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-year .e-next, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-decade .e-next {
255
+ margin-right: 0;
256
+ vertical-align: inherit;
257
+ height: 35px;
258
+ width: 35px;
259
+ }
260
+ @media (min-device-width: 768px) {
261
+ .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-month .e-next, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-year .e-next, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-decade .e-next {
262
+ height: 55px;
263
+ width: 55px;
264
+ }
265
+ }
266
+ .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-month .e-next .e-icons, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-year .e-next .e-icons, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-decade .e-next .e-icons {
267
+ vertical-align: inherit;
268
+ }
269
+ @media (min-device-width: 768px) {
270
+ .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-month .e-next .e-icons, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-year .e-next .e-icons, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-decade .e-next .e-icons {
271
+ font-size: 18px;
272
+ }
273
+ }
274
+ .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-month .e-icon-container, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-year .e-icon-container, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-decade .e-icon-container {
275
+ float: none;
276
+ }
277
+ @media (min-device-width: 768px) {
278
+ .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar th {
279
+ font-size: 18px;
280
+ height: 48px;
281
+ }
282
+ }
283
+ @media (min-device-width: 768px) {
284
+ .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-content span.e-day {
285
+ font-size: 18px;
286
+ height: 64px;
287
+ width: 64px;
288
+ line-height: 64px;
289
+ }
290
+ }
291
+ .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar-cell-container {
292
+ height: 79vh;
293
+ }
294
+ .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-footer-container {
295
+ display: none;
296
+ }
297
+ .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-content.e-month {
298
+ height: 69vh;
299
+ }
300
+ .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-content.e-month table {
301
+ height: 69vh;
302
+ }
303
+
304
+ @media screen and (orientation: landscape) {
305
+ .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-model-header.e-blazor-device {
306
+ height: 25vh;
307
+ }
308
+ .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-model-header.e-blazor-device .e-popup-close {
309
+ float: right;
310
+ }
311
+ .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar-cell-container .e-content.e-month, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar-cell-container .e-content.e-year, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar-cell-container .e-content.e-decade {
312
+ overflow-y: auto;
313
+ }
314
+ }
315
+ @media screen and (orientation: landscape) and (max-height: 600px) {
316
+ .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar-cell-container .e-content.e-month, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar-cell-container .e-content.e-year, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar-cell-container .e-content.e-decade {
317
+ height: 50vh;
318
+ }
319
+ }
320
+ @media screen and (orientation: landscape) and (min-height: 600px) {
321
+ .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar-cell-container .e-content.e-month, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar-cell-container .e-content.e-year, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar-cell-container .e-content.e-decade {
322
+ height: 60vh;
323
+ }
324
+ }
325
+ @media screen and (orientation: landscape) and (min-height: 600px) {
326
+ .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar-cell-container .e-content.e-month table, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar-cell-container .e-content.e-year table, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar-cell-container .e-content.e-decade table {
327
+ height: 60vh;
328
+ }
329
+ }
330
+ @media screen and (orientation: landscape) and (min-height: 600px) {
331
+ .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar-cell-container .e-footer-container {
332
+ padding: 10px 0;
333
+ height: 10%;
334
+ font-size: 24px;
335
+ }
336
+ }
337
+ @media screen and (orientation: landscape) {
338
+ .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-model-header {
339
+ width: 100%;
340
+ }
341
+ }
342
+ @media screen and (orientation: landscape) and (max-height: 600px) {
343
+ .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-model-header {
344
+ height: 30vh;
345
+ }
346
+ }
347
+ @media screen and (orientation: landscape) and (min-height: 600px) {
348
+ .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-model-header {
349
+ height: 25vh;
350
+ }
351
+ }
352
+ @media screen and (orientation: landscape) {
353
+ .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-model-header .e-popup-close {
354
+ float: left;
355
+ }
356
+ }
357
+ @media screen and (orientation: landscape) {
358
+ .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-model-header .e-day-wrapper {
359
+ margin: 12vh 0 0 0;
360
+ }
361
+ }
362
+ @media screen and (orientation: landscape) {
363
+ .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-model-header .e-model-month, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-model-header .e-model-day {
364
+ font-size: 4vw;
365
+ }
366
+ }
367
+ @media screen and (orientation: landscape) {
368
+ .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-month .e-prev, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-year .e-prev, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-decade .e-prev {
369
+ margin-right: 82vw;
370
+ }
371
+ }
372
+ @media screen and (orientation: landscape) and (max-height: 600px) {
373
+ .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-month .e-title, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-year .e-title, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-decade .e-title {
374
+ line-height: 12vh;
375
+ }
376
+ }
377
+ @media screen and (orientation: landscape) and (min-height: 600px) {
378
+ .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-month .e-title, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-year .e-title, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-decade .e-title {
379
+ line-height: inherit;
380
+ }
381
+ }
382
+ @media screen and (orientation: landscape) {
383
+ .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-content.e-month, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-content.e-year, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-content.e-decade {
384
+ overflow-y: auto;
385
+ }
386
+ }
387
+ @media screen and (orientation: landscape) and (max-height: 600px) {
388
+ .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-content.e-month, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-content.e-year, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-content.e-decade {
389
+ height: 60vh;
390
+ }
391
+ }
392
+ @media screen and (orientation: landscape) and (min-height: 600px) {
393
+ .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-content.e-month, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-content.e-year, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-content.e-decade {
394
+ height: 65vh;
395
+ }
396
+ }
397
+ @media screen and (orientation: landscape) {
398
+ .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar {
399
+ display: block;
400
+ max-width: 100%;
401
+ overflow: visible;
402
+ }
403
+ }
404
+ @media screen and (orientation: landscape) {
405
+ .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar-cell-container {
406
+ height: 70%;
407
+ width: 100%;
408
+ }
409
+ }
410
+ @media screen and (orientation: landscape) {
411
+ .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar.e-device .e-month table tbody {
412
+ display: table-row-group;
413
+ }
414
+ }
415
+ @media screen and (orientation: landscape) and (max-height: 600px) {
416
+ .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-content.e-month table, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-content.e-decade table, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-content.e-year table {
417
+ height: 69vh;
418
+ }
419
+ }
420
+ @media screen and (orientation: landscape) and (min-height: 600px) {
421
+ .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-content.e-month table, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-content.e-decade table, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-content.e-year table {
422
+ height: 65vh;
423
+ }
424
+ }
425
+ /* stylelint-enable */
426
+ .e-datepicker.e-popup-wrapper,
427
+ .e-bigger.e-small .e-datepicker.e-popup-wrapper,
428
+ .e-bigger .e-datepicker.e-popup-wrapper,
429
+ .e-small .e-datepicker.e-popup-wrapper,
430
+ .e-bigger.e-small.e-datepicker.e-popup-wrapper,
431
+ .e-bigger.e-datepicker.e-popup-wrapper,
432
+ .e-small.e-datepicker.e-popup-wrapper {
433
+ border: 1px solid #969696;
434
+ box-shadow: none;
435
+ }
436
+ .e-datepicker .e-calendar,
437
+ .e-bigger.e-small .e-datepicker .e-calendar,
438
+ .e-bigger .e-datepicker .e-calendar,
439
+ .e-small .e-datepicker .e-calendar,
440
+ .e-bigger.e-small.e-datepicker .e-calendar,
441
+ .e-bigger.e-datepicker .e-calendar,
442
+ .e-small.e-datepicker .e-calendar {
443
+ background-color: #000;
444
+ border: none;
445
+ }
446
+
447
+ *.e-input-group.e-date-wrapper.e-dateinput-active:active:not(.e-success):not(.e-warning):not(.e-error) {
448
+ border: 2px solid #fff;
449
+ }
450
+
451
+ .e-date-wrapper span.e-input-group-icon.e-date-icon.e-icons.e-active {
452
+ color: #fff;
453
+ }
454
+ .e-date-wrapper span.e-input-group-icon.e-date-icon.e-icons.e-active {
455
+ color: #fff;
456
+ }
@@ -1 +1,7 @@
1
- @import 'ej2-calendars/styles/datepicker/highcontrast.scss';
1
+ @import 'ej2-base/styles/definition/highcontrast.scss';
2
+ @import 'ej2-inputs/styles/input/highcontrast-definition.scss';
3
+ @import 'ej2-popups/styles/popup/highcontrast-definition.scss';
4
+ @import '../calendar/highcontrast-definition.scss';
5
+ @import 'highcontrast-definition.scss';
6
+ @import 'icons/highcontrast.scss';
7
+ @import 'all.scss';
@@ -0,0 +1,73 @@
1
+ @include export-module('datepicker-bootstrap-icons') {
2
+
3
+ /*! component icons */
4
+
5
+ .e-input-group-icon.e-date-icon,
6
+ #{if(&, '&', '*')}.e-control-wrapper .e-input-group-icon.e-date-icon {
7
+ font-size: $datepicker-icon-font-size;
8
+ margin: $datepicker-icon-normal-margin;
9
+ outline: none;
10
+
11
+ #{if(&, '&', '*')}::before {
12
+ content: '\e960';
13
+ font-family: 'e-icons';
14
+ }
15
+
16
+ #{if(&, '&', '*')}:focus {
17
+ background: $datepicker-icon-hover-color;
18
+ border-radius: $datepicker-icon-border-radius;
19
+ }
20
+ }
21
+
22
+ .e-bigger .e-input-group-icon.e-date-icon,
23
+ #{if(&, '&', '*')}.e-control-wrapper.e-bigger .e-input-group-icon.e-date-icon,
24
+ #{if(&, '&', '*')}.e-bigger .e-control-wrapper .e-input-group-icon.e-date-icon {
25
+ font-size: $datepicker-bigger-icon-font-size;
26
+ margin: $datepicker-icon-bigger-margin;
27
+
28
+ #{if(&, '&', '*')}::before {
29
+ content: '\e960';
30
+ font-family: 'e-icons';
31
+ }
32
+
33
+ #{if(&, '&', '*')}:focus {
34
+ background: $datepicker-icon-hover-color;
35
+ border-radius: $datepicker-icon-border-radius;
36
+ }
37
+ }
38
+
39
+ // mouse small icon
40
+ .e-small .e-input-group-icon.e-date-icon,
41
+ #{if(&, '&', '*')}.e-control-wrapper.e-small .e-input-group-icon.e-date-icon,
42
+ #{if(&, '&', '*')}.e-small .e-control-wrapper .e-input-group-icon.e-date-icon {
43
+ font-size: $datepicker-small-icon-font-size;
44
+ }
45
+
46
+ // Touch small icon
47
+ .e-small.e-bigger .e-input-group-icon.e-date-icon,
48
+ #{if(&, '&', '*')}.e-control-wrapper.e-small.e-bigger .e-input-group-icon.e-date-icon,
49
+ #{if(&, '&', '*')}.e-small.e-bigger .e-control-wrapper .e-input-group-icon.e-date-icon {
50
+ font-size: $datepicker-bigger-small-icon-font-size;
51
+ }
52
+
53
+ .e-datepick-mob-popup-wrap {
54
+
55
+ #{if(&, '&', '*')} .e-datepicker.e-popup-expand {
56
+
57
+ #{if(&, '&', '*')} .e-model-header {
58
+
59
+ #{if(&, '&', '*')} .e-popup-close::before {
60
+ content: '\e7fc';
61
+ font-family: 'e-icons';
62
+ }
63
+ }
64
+
65
+ #{if(&, '&', '*')} .e-calendar .e-header .e-date-icon-next::before {
66
+ content: '\e913';
67
+ }
68
+ #{if(&, '&', '*')} .e-calendar .e-header .e-date-icon-prev::before {
69
+ content: '\e904';
70
+ }
71
+ }
72
+ }
73
+ }
@@ -0,0 +1,72 @@
1
+ @include export-module('datepicker-bootstrap-icons') {
2
+
3
+ /*! component icons */
4
+
5
+ .e-input-group-icon.e-date-icon,
6
+ #{if(&, '&', '*')}.e-control-wrapper .e-input-group-icon.e-date-icon {
7
+ font-size: $datepicker-icon-font-size;
8
+ margin: $datepicker-icon-normal-margin;
9
+ outline: none;
10
+
11
+ #{if(&, '&', '*')}::before {
12
+ content: '\e960';
13
+ font-family: 'e-icons';
14
+ }
15
+
16
+ #{if(&, '&', '*')}:focus {
17
+ background: $datepicker-icon-hover-color;
18
+ border-radius: $datepicker-icon-border-radius;
19
+ }
20
+ }
21
+
22
+ .e-bigger .e-input-group-icon.e-date-icon,
23
+ #{if(&, '&', '*')}.e-control-wrapper.e-bigger .e-input-group-icon.e-date-icon,
24
+ #{if(&, '&', '*')}.e-bigger .e-control-wrapper .e-input-group-icon.e-date-icon {
25
+ font-size: $datepicker-bigger-icon-font-size;
26
+ margin: $datepicker-icon-bigger-margin;
27
+
28
+ #{if(&, '&', '*')}::before {
29
+ content: '\e960';
30
+ font-family: 'e-icons';
31
+ }
32
+
33
+ #{if(&, '&', '*')}:focus {
34
+ background: $datepicker-icon-hover-color;
35
+ border-radius: $datepicker-icon-border-radius;
36
+ }
37
+ }
38
+
39
+ // mouse small icon
40
+ .e-small .e-input-group-icon.e-date-icon,
41
+ #{if(&, '&', '*')}.e-control-wrapper.e-small .e-input-group-icon.e-date-icon,
42
+ #{if(&, '&', '*')}.e-small .e-control-wrapper .e-input-group-icon.e-date-icon {
43
+ font-size: $datepicker-small-icon-font-size;
44
+ }
45
+
46
+ // Touch small icon
47
+ .e-small.e-bigger .e-input-group-icon.e-date-icon,
48
+ #{if(&, '&', '*')}.e-control-wrapper.e-small.e-bigger .e-input-group-icon.e-date-icon,
49
+ #{if(&, '&', '*')}.e-small.e-bigger .e-control-wrapper .e-input-group-icon.e-date-icon {
50
+ font-size: $datepicker-bigger-small-icon-font-size;
51
+ }
52
+ .e-datepick-mob-popup-wrap {
53
+
54
+ #{if(&, '&', '*')} .e-datepicker.e-popup-expand {
55
+
56
+ #{if(&, '&', '*')} .e-model-header {
57
+
58
+ #{if(&, '&', '*')} .e-popup-close::before {
59
+ content: '\e7fc';
60
+ font-family: 'e-icons';
61
+ }
62
+ }
63
+
64
+ #{if(&, '&', '*')} .e-calendar .e-header .e-date-icon-next::before {
65
+ content: '\e913';
66
+ }
67
+ #{if(&, '&', '*')} .e-calendar .e-header .e-date-icon-prev::before {
68
+ content: '\e904';
69
+ }
70
+ }
71
+ }
72
+ }
@@ -0,0 +1,76 @@
1
+ @include export-module('datepicker-bootstrap4-icons') {
2
+
3
+ /*! component icons */
4
+
5
+ .e-input-group-icon.e-date-icon,
6
+ #{if(&, '&', '*')}.e-control-wrapper .e-input-group-icon.e-date-icon {
7
+ font-size: $datepicker-icon-font-size;
8
+ margin: $datepicker-icon-normal-margin;
9
+ min-height: $datepicker-icon-container-min-height;
10
+ min-width: $datepicker-icon-container-min-width;
11
+ outline: none;
12
+
13
+ #{if(&, '&', '*')}::before {
14
+ content: '\e7be';
15
+ font-family: 'e-icons';
16
+ }
17
+
18
+ #{if(&, '&', '*')}:focus {
19
+ background: $datepicker-icon-hover-color;
20
+ border-radius: $datepicker-icon-border-radius;
21
+ }
22
+ }
23
+
24
+ .e-bigger .e-input-group-icon.e-date-icon,
25
+ #{if(&, '&', '*')}.e-control-wrapper.e-bigger .e-input-group-icon.e-date-icon,
26
+ #{if(&, '&', '*')}.e-bigger .e-control-wrapper .e-input-group-icon.e-date-icon {
27
+ font-size: $datepicker-bigger-icon-font-size;
28
+ margin: $datepicker-icon-bigger-margin;
29
+ min-height: $datepicker-bigger-icon-container-min-height;
30
+ min-width: $datepicker-bigger-icon-container-min-width;
31
+
32
+ #{if(&, '&', '*')}::before {
33
+ content: '\e7be';
34
+ font-family: 'e-icons';
35
+ }
36
+
37
+ #{if(&, '&', '*')}:focus {
38
+ background: $datepicker-icon-hover-color;
39
+ border-radius: $datepicker-icon-border-radius;
40
+ }
41
+ }
42
+
43
+ // mouse small icon
44
+ .e-small .e-input-group-icon.e-date-icon,
45
+ #{if(&, '&', '*')}.e-control-wrapper.e-small .e-input-group-icon.e-date-icon,
46
+ #{if(&, '&', '*')}.e-small .e-control-wrapper .e-input-group-icon.e-date-icon {
47
+ font-size: $datepicker-small-icon-font-size;
48
+ }
49
+
50
+ // Touch small icon
51
+ .e-small.e-bigger .e-input-group-icon.e-date-icon,
52
+ #{if(&, '&', '*')}.e-control-wrapper.e-small.e-bigger .e-input-group-icon.e-date-icon,
53
+ #{if(&, '&', '*')}.e-small.e-bigger .e-control-wrapper .e-input-group-icon.e-date-icon {
54
+ font-size: $datepicker-bigger-small-icon-font-size;
55
+ }
56
+ .e-datepick-mob-popup-wrap {
57
+
58
+ #{if(&, '&', '*')} .e-datepicker.e-popup-expand {
59
+
60
+ #{if(&, '&', '*')} .e-model-header {
61
+
62
+ #{if(&, '&', '*')} .e-popup-close::before {
63
+ content: '\e745';
64
+ font-family: 'e-icons';
65
+ }
66
+ }
67
+
68
+ #{if(&, '&', '*')} .e-calendar .e-header .e-date-icon-next::before {
69
+ content: '\e76a';
70
+ }
71
+ #{if(&, '&', '*')} .e-calendar .e-header .e-date-icon-prev::before {
72
+ content: '\e70d';
73
+ }
74
+ }
75
+ }
76
+ }
@@ -0,0 +1 @@
1
+ @import './bootstrap5.scss';