@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
@@ -0,0 +1,1030 @@
1
+ @include export-module('daterangepicker-layout') {
2
+
3
+ /*! daterangepicker layout */
4
+ .e-input-group.e-control-wrapper.e-date-range-wrapper.e-non-edit.e-input-focus .e-input:focus ~ .e-clear-icon,
5
+ .e-float-input.e-control-wrapper.e-input-group.e-date-range-wrapper.e-non-edit.e-input-focus input:focus ~ .e-clear-icon {
6
+ display: flex;
7
+ }
8
+
9
+ // Hidden element styles
10
+ .e-float-input.e-input-group.e-control-wrapper.e-date-range-wrapper .e-daterange-hidden,
11
+ .e-input-group.e-control-wrapper.e-date-range-wrapper .e-daterange-hidden,
12
+ .e-float-input.e-control-wrapper.e-date-range-wrapper .e-daterange-hidden,
13
+ .e-float-input.e-input-group.e-control-wrapper.e-date-range-wrapper.e-input-focus .e-daterange-hidden,
14
+ .e-input-group.e-control-wrapper.e-date-range-wrapper.e-input-focus .e-daterange-hidden,
15
+ .e-float-input.e-control-wrapper.e-date-range-wrapper.e-input-focus .e-daterange-hidden {
16
+ border: 0;
17
+ height: 0;
18
+ margin: 0;
19
+ padding: 0;
20
+ text-indent: 0;
21
+ visibility: hidden;
22
+ width: 0;
23
+ }
24
+
25
+ #{&}.e-daterangepicker,
26
+ .e-bigger.e-small #{&}.e-daterangepicker {
27
+ #{if(&, '&', '*')}.e-popup {
28
+ border: $range-popup-border;
29
+ border-radius: $range-popup-border-radius;
30
+ box-shadow: $range-box-shadow;
31
+ max-height: $range-max-height;
32
+ max-width: $range-max-width;
33
+
34
+ #{if(&, '&', '*')}.e-daterange-day-header-lg {
35
+ max-width: $range-lg-day-header-format-width;
36
+ }
37
+ #{if(&, '&', '*')}.e-preset-wrapper {
38
+ min-width: $range-preset-min-width;
39
+
40
+ #{if(&, '&', '*')} .e-presets {
41
+ max-height: $range-value-none;
42
+ }
43
+ }
44
+ #{if(&, '&', '*')} .e-range-header {
45
+ background: $range-header-bg-color;
46
+ padding: $range-control-header-margin;
47
+ width: $range-control-header-width;
48
+ @if $skin-name == 'tailwind' {
49
+ border-radius: $range-popup-header-border-radius;
50
+ }
51
+ @if $skin-name == 'Material3' {
52
+ border-top-left-radius: $range-popup-border-radius;
53
+ }
54
+
55
+ #{if(&, '&', '*')} .e-start-label,
56
+ #{if(&, '&', '*')} .e-end-label {
57
+ cursor: $range-cursor-default-style;
58
+ display: $range-inline-block-style;
59
+ font-size: $range-header-label-size;
60
+ overflow: $range-visibility-hidden;
61
+ text-align: $range-align-center;
62
+ text-decoration: $range-value-none;
63
+ text-overflow: $range-text-overflow;
64
+ user-select: $range-browser-select-none;
65
+ white-space: $range-text-nowrap;
66
+ width: $range-start-end-label-width;
67
+ @if $skin-name == 'Material3' {
68
+ font-weight: $font-weight-medium;
69
+ }
70
+ }
71
+ #{if(&, '&', '*')} .e-change-icon {
72
+ font-size: $range-font-size;
73
+ font-weight: $range-font-weight-bold;
74
+ text-align: $range-align-center;
75
+ width: $range-change-icon-width;
76
+ }
77
+ #{if(&, '&', '*')} .e-day-span {
78
+ direction: $range-direction-left;
79
+ font-size: $range-calendar-small-font-size;
80
+ height: $range-day-span-height;
81
+ margin: $range-indicator-margin;
82
+ text-align: $range-align-center;
83
+ user-select: $range-browser-select-none;
84
+ width: $range-indicator-label-width;
85
+ }
86
+ #{if(&, '&', '*')} .e-start-end {
87
+ align-items: $range-align-center;
88
+ display: $range-flex-style;
89
+ height: $range-start-end-container-height;
90
+ }
91
+ }
92
+ #{if(&, '&', '*')} .e-separator {
93
+ @if ($skin-name != 'FluentUI') {
94
+ height: $range-separator-height;
95
+ margin: $range-separator-margin;
96
+ }
97
+ }
98
+ #{if(&, '&', '*')} .e-calendar {
99
+ border: $range-calendar-border;
100
+ margin: $range-calendar-margin;
101
+ @if ($skin-name != 'FluentUI') {
102
+ padding: $range-calendar-popup-padding;
103
+ }
104
+
105
+ #{if(&, '&', '*')} .e-content table {
106
+ @if ($skin-name != 'FluentUI') {
107
+ padding: $range-calendar-normal-table-padding;
108
+ }
109
+ }
110
+ #{if(&, '&', '*')} .e-header {
111
+ #{if(&, '&', '*')} .e-title {
112
+ cursor: $range-cursor-pointer-style;
113
+ line-height: $range-normal-nav-icon-height;
114
+ @if ($skin-name != 'FluentUI') {
115
+ width: $range-control-header-width;
116
+ float: $range-float-none;
117
+ font-weight: $range-font-weight-normal;
118
+ margin-left: $range-value-zero;
119
+ }
120
+ }
121
+ #{if(&, '&', '*')}.e-month,
122
+ #{if(&, '&', '*')}.e-year,
123
+ #{if(&, '&', '*')}.e-decade {
124
+ @if ($skin-name != 'FluentUI') {
125
+ padding: $range-calendar-header-padding;
126
+ }
127
+ }
128
+ #{if(&, '&', '*')} .e-next {
129
+ @if ($skin-name != 'FluentUI') {
130
+ float: $range-float-right;
131
+ }
132
+ }
133
+ #{if(&, '&', '*')} .e-prev {
134
+ @if ($skin-name != 'FluentUI') {
135
+ float: $range-float-left;
136
+ }
137
+ }
138
+ #{if(&, '&', '*')} .e-next,
139
+ #{if(&, '&', '*')} .e-prev {
140
+ height: $range-normal-nav-icon-height;
141
+ width: $range-normal-nav-icon-width;
142
+ }
143
+ #{if(&, '&', '*')} .e-next span,
144
+ #{if(&, '&', '*')} .e-prev span {
145
+ padding: $range-icon-normal-padding;
146
+ }
147
+ }
148
+ #{if(&, '&', '*')} .e-start-date.e-selected.e-range-hover {
149
+ border-radius: $range-hover-start-radius;
150
+ }
151
+ #{if(&, '&', '*')} .e-end-date.e-selected.e-range-hover {
152
+ border-radius: $range-hover-end-radius;
153
+ }
154
+ #{if(&, '&', '*')} .e-start-date.e-selected {
155
+ @if ($skin-name == 'FluentUI') {
156
+ border-radius: $range-hover-start-radius;
157
+ }
158
+ }
159
+ #{if(&, '&', '*')} .e-end-date.e-selected {
160
+ @if ($skin-name == 'FluentUI') {
161
+ border-radius: $range-hover-end-radius;
162
+ }
163
+ }
164
+ #{if(&, '&', '*')} .e-end-date.e-selected.e-range-hover span.e-day,
165
+ #{if(&, '&', '*')} .e-start-date.e-selected.e-range-hover span.e-day {
166
+ border: $range-calendar-hover-border;
167
+ }
168
+ }
169
+ #{if(&, '&', '*')} .e-footer {
170
+ align-items: $range-align-center;
171
+ @if ($skin-name != 'FluentUI') {
172
+ border-top: $range-border-value;
173
+ }
174
+ clear: $range-float-clear;
175
+ display: $range-flex-style;
176
+ flex-direction: $range-flex-direction-row-reverse;
177
+ height: $range-footer-height;
178
+ @if $skin-name == 'tailwind' {
179
+ border-radius: $range-popup-footer-border-radius;
180
+ }
181
+ }
182
+ #{if(&, '&', '*')} .e-footer .e-btn {
183
+ font-weight: $range-btn-font-weight;
184
+ height: $range-btn-normal-height;
185
+ line-height: $range-btn-normal-line-height;
186
+ overflow: $range-visibility-hidden;
187
+ padding: $range-btn-padding;
188
+ text-overflow: $range-text-overflow;
189
+ }
190
+ #{if(&, '&', '*')} .e-footer .e-btn.e-apply {
191
+ margin: $range-normal-footer-margin;
192
+ }
193
+ #{if(&, '&', '*')} .e-date-range-container {
194
+ float: $range-float-left;
195
+
196
+ #{if(&, '&', '*')}.e-range-border {
197
+ border-right: $range-border-value;
198
+ }
199
+ }
200
+ #{if(&, '&', '*')} .e-calendar-container {
201
+ display: $range-flex-style;
202
+
203
+ #{if(&, '&', '*')} .e-left-container,
204
+ #{if(&, '&', '*')} .e-right-container {
205
+ float: $range-float-left;
206
+ }
207
+ #{if(&, '&', '*')} .e-left-container {
208
+ @if $skin-name != 'FluentUI' {
209
+ border-right: $range-border-value;
210
+ }
211
+ @if $skin-name == 'tailwind' {
212
+ border-right: $range-container-border-value;
213
+ }
214
+ }
215
+ }
216
+ #{if(&, '&', '*')} .e-presets {
217
+ max-height: $range-presets-height;
218
+ overflow: auto;
219
+ width: $range-width-auto;
220
+
221
+ #{if(&, '&', '*')} .e-list-item {
222
+ border-radius: $range-list-border-radius;
223
+ cursor: $range-cursor-pointer-style;
224
+ line-height: $range-list-item-height;
225
+ overflow: $range-visibility-hidden;
226
+ padding: $range-list-item-padding;
227
+ white-space: $range-text-nowrap;
228
+ text-overflow: $range-text-overflow;
229
+ }
230
+ #{if(&, '&', '*')} .e-list-parent {
231
+ margin: $range-value-zero;
232
+ max-width: $range-presets-width;
233
+ padding: $range-value-zero;
234
+ }
235
+ #{if(&, '&', '*')} .e-text-content {
236
+ line-height: $range-list-item-line-height;
237
+ }
238
+ #{if(&, '&', '*')} .e-ul {
239
+
240
+ #{if(&, '&', '*')} li.e-list-item {
241
+ font-size: $range-presets-normal-list-font-size;
242
+ height: $range-preset-normal-list-height;
243
+ line-height: $range-preset-normal-list-height;
244
+ &.e-active:first-child {
245
+ @if $skin-name == 'Material3' {
246
+ border-top-right-radius: $range-popup-border-radius;
247
+ border-top-left-radius: $range-popup-border-radius;
248
+ }
249
+ }
250
+ }
251
+ }
252
+ }
253
+ #{if(&, '&', '*')} .e-hide-range {
254
+ display: $range-display-none;
255
+ }
256
+ }
257
+ #{if(&, '&', '*')}.e-rtl {
258
+ #{if(&, '&', '*')} .e-date-range-container {
259
+ float: $range-float-right;
260
+
261
+ #{if(&, '&', '*')}.e-range-border {
262
+ border-left: $range-border-value;
263
+ border-right: $range-value-zero;
264
+ }
265
+ #{if(&, '&', '*')} .e-left-container {
266
+ @if $skin-name != 'FluentUI' {
267
+ border-left: $range-border-value;
268
+ border-right: $range-value-zero;
269
+ }
270
+ @if $skin-name == 'tailwind' {
271
+ border-left: $range-container-border-value;
272
+ }
273
+ }
274
+ #{if(&, '&', '*')} .e-calendar {
275
+ #{if(&, '&', '*')} .e-next {
276
+ float: $range-float-left;
277
+ }
278
+ #{if(&, '&', '*')} .e-prev {
279
+ @if ($skin-name != 'FluentUI') {
280
+ float: $range-float-right;
281
+ }
282
+ }
283
+ #{if(&, '&', '*')} .e-start-date.e-selected.e-range-hover {
284
+ border-radius: $range-hover-end-radius;
285
+ @if ($skin-name == 'FluentUI') {
286
+ box-shadow: $selected-range-box-shadow;
287
+ }
288
+ }
289
+ #{if(&, '&', '*')} .e-end-date.e-selected.e-range-hover {
290
+ border-radius: $range-hover-start-radius;
291
+ @if ($skin-name == 'FluentUI') {
292
+ box-shadow: $selected-range-box-shadow;
293
+ }
294
+ }
295
+ }
296
+ }
297
+ #{if(&, '&', '*')} .e-footer {
298
+ flex-direction: $range-flex-direction-row;
299
+ justify-content: $range-flex-justify-content;
300
+
301
+ #{if(&, '&', '*')} .e-btn.e-cancel {
302
+ margin: $range-normal-rtl-footer-margin;
303
+ }
304
+ #{if(&, '&', '*')} .e-btn.e-apply {
305
+ margin-left: $range-value-zero;
306
+ }
307
+ }
308
+ }
309
+ }
310
+
311
+ .e-bigger #{&}.e-daterangepicker.e-range-modal,
312
+ #{if(&, '&', '*')}.e-device#{&}.e-daterangepicker.e-range-modal {
313
+ @if $skin-name != 'Material3' {
314
+ background-color: $range-overlay;
315
+ }
316
+ @if $skin-name == 'Material3' {
317
+ background: $range-overlay;
318
+ }
319
+ height: 100%;
320
+ left: 0;
321
+ opacity: .5;
322
+ pointer-events: auto;
323
+ position: fixed;
324
+ top: 0;
325
+ width: 100%;
326
+ z-index: 999;
327
+ }
328
+
329
+ .e-bigger.e-small #{&}.e-daterangepicker #{&}.e-calendar {
330
+ max-width: $calendar-bigger-small-max-width;
331
+ }
332
+
333
+ //bigger style
334
+
335
+ .e-bigger #{&}.e-daterangepicker,
336
+ #{if(&, '&', '*')}.e-bigger#{&}.e-daterangepicker,
337
+ #{if(&, '&', '*')}.e-device#{&}.e-daterangepicker {
338
+ #{if(&, '&', '*')}.e-popup {
339
+ @if $skin-name == 'material' or $skin-name == 'bootstrap'{
340
+ background-color: $range-background;
341
+ }
342
+ @if $skin-name == 'Material3' {
343
+ background: $range-background;
344
+ }
345
+
346
+ #{if(&, '&', '*')} .e-start-label,
347
+ #{if(&, '&', '*')} .e-end-label {
348
+ @if $skin-name == 'tailwind' or $skin-name == 'FluentUI' {
349
+ font-size: $range-bigger-header-label-size;
350
+ }
351
+ }
352
+
353
+ #{if(&, '&', '*')} .e-day-span {
354
+ @if $skin-name == 'tailwind' or $skin-name == 'FluentUI' {
355
+ font-size: $range-bigger-indicator-label-size;
356
+ }
357
+ }
358
+
359
+ #{if(&, '&', '*')}.e-preset-wrapper {
360
+ max-width: $range-bigger-max-width;
361
+ min-width: $range-width-auto;
362
+
363
+ #{if(&, '&', '*')} .e-presets {
364
+ max-height: $range-value-none;
365
+ }
366
+ }
367
+ #{if(&, '&', '*')} .e-range-header {
368
+ @if $skin-name == 'bootstrap4' or $skin-name == 'bootstrap5' {
369
+ margin: $range-control-bigger-header-margin;
370
+ }
371
+
372
+ @if $skin-name == 'tailwind' {
373
+ padding: $range-control-bigger-header-margin;
374
+ }
375
+ width: $range-control-header-width;
376
+
377
+ #{if(&, '&', '*')} .e-change-icon {
378
+ @if $skin-name == 'bootstrap4' or $skin-name == 'bootstrap5' or $skin-name == 'tailwind' {
379
+ font-size: $range-bigger-change-icon-size;
380
+ }
381
+ }
382
+
383
+ #{if(&, '&', '*')} .e-start-end {
384
+ align-items: $range-align-center;
385
+ cursor: $range-cursor-pointer-style;
386
+ display: $range-flex-style;
387
+ height: $range-device-header-container-height;
388
+ justify-content: $range-align-center;
389
+ user-select: $range-browser-select-none;
390
+ width: $range-device-header-container-width;
391
+
392
+ #{if(&, '&', '*')} .e-start-btn,
393
+ #{if(&, '&', '*')} .e-end-btn {
394
+ border: $range-btn-border-value;
395
+ box-shadow: $range-box-shadow-none;
396
+ font-size: $range-calendar-btn-font-size;
397
+ font-weight: $range-range-btn-font-weight;
398
+ height: $range-btn-height;
399
+ line-height: $range-device-btn-line-height;
400
+ max-width: $range-header-btn-max-width;
401
+ overflow: $range-visibility-hidden;
402
+ padding: $range-sart-end-btn-padding;
403
+ text-overflow: $range-text-overflow;
404
+ width: $range-btn-width;
405
+ }
406
+ #{if(&, '&', '*')} .e-end-btn {
407
+ border-left: $range-value-zero;
408
+ border-radius: $range-btn-right-radius;
409
+ }
410
+ #{if(&, '&', '*')} .e-start-btn {
411
+ border-radius: $range-btn-left-radius;
412
+ }
413
+ #{if(&, '&', '*')} .e-start-btn:hover,
414
+ #{if(&, '&', '*')} .e-end-btn:hover:not([disabled]) {
415
+ box-shadow: $range-box-shadow-none;
416
+ }
417
+ #{if(&, '&', '*')} .e-start-btn.e-active,
418
+ #{if(&, '&', '*')} .e-start-btn.e-active:active,
419
+ #{if(&, '&', '*')} .e-end-btn.e-active,
420
+ #{if(&, '&', '*')} .e-end-btn.e-active:active:not([disabled]),
421
+ #{if(&, '&', '*')} .e-start-btn.e-active:hover,
422
+ #{if(&, '&', '*')} .e-end-btn.e-active:hover {
423
+ box-shadow: $range-box-shadow-none;
424
+ }
425
+ #{if(&, '&', '*')} .e-start-btn,
426
+ #{if(&, '&', '*')} .e-end-btn {
427
+ max-width: $range-header-btn-bigger-max-width;
428
+ }
429
+ }
430
+ }
431
+ #{if(&, '&', '*')} .e-presets {
432
+ max-height: $range-bigger-presets-height;
433
+
434
+ #{if(&, '&', '*')}.e-preset-wrapper {
435
+ max-height: $range-value-none;
436
+ }
437
+
438
+ #{if(&, '&', '*')} ul {
439
+ max-width: $range-value-none;
440
+
441
+ #{if(&, '&', '*')} li.e-list-item {
442
+ font-size: $range-presets-bigger-list-font-size;
443
+ height: $range-preset-bigger-list-height;
444
+ line-height: $range-preset-bigger-list-height;
445
+ padding: $range-device-list-item-padding;
446
+ }
447
+ }
448
+ }
449
+ }
450
+ #{if(&, '&', '*')} .e-calendar {
451
+ max-width: $range-calendar-bigger-max;
452
+ @if ($skin-name != 'FluentUI') {
453
+ padding: $range-bigger-calendar-popup-padding;
454
+ }
455
+
456
+ #{if(&, '&', '*')} .e-content table {
457
+ @if ($skin-name != 'FluentUI') {
458
+ padding: $range-calendar-bigger-table-padding;
459
+ }
460
+ }
461
+ #{if(&, '&', '*')} .e-header {
462
+ @if ($skin-name == 'FluentUI') {
463
+ padding: 8px 16px;
464
+ }
465
+
466
+ #{if(&, '&', '*')} .e-next,
467
+ #{if(&, '&', '*')} .e-prev {
468
+ height: $range-bigger-nav-icon-height;
469
+ width: $range-bigger-nav-icon-width;
470
+
471
+ #{if(&, '&', '*')} span {
472
+ padding: $range-icon-bigger-padding;
473
+ }
474
+ }
475
+
476
+ #{if(&, '&', '*')} .e-title {
477
+ cursor: $range-cursor-pointer-style;
478
+ line-height: $range-bigger-nav-icon-height;
479
+ }
480
+ #{if(&, '&', '*')}.e-month,
481
+ #{if(&, '&', '*')}.e-year,
482
+ #{if(&, '&', '*')}.e-decade {
483
+ @if ($skin-name != 'FluentUI') {
484
+ padding: $range-e-bigger-header-padding;
485
+ }
486
+ }
487
+ }
488
+ }
489
+ #{if(&, '&', '*')} .e-footer {
490
+ height: $range-bigger-footer-height;
491
+
492
+ #{if(&, '&', '*')} .e-btn {
493
+ height: $range-btn-bigger-height;
494
+ line-height: $range-btn-bigger-line-height;
495
+ overflow: $range-visibility-hidden;
496
+ }
497
+ #{if(&, '&', '*')} .e-btn.e-apply {
498
+ margin: $range-bigger-footer-margin;
499
+ }
500
+ }
501
+ #{if(&, '&', '*')}.e-rtl.e-popup {
502
+ #{if(&, '&', '*')} .e-range-header .e-start-end {
503
+ #{if(&, '&', '*')} .e-end-btn {
504
+ border: $range-btn-border-value;
505
+ border-radius: $range-btn-left-radius;
506
+ border-right: $range-value-zero;
507
+ }
508
+ #{if(&, '&', '*')} .e-start-btn {
509
+ border-radius: $range-btn-right-radius;
510
+ }
511
+ }
512
+ #{if(&, '&', '*')} .e-footer {
513
+ #{if(&, '&', '*')}.e-btn.e-cancel {
514
+ margin: $range-bigger-rtl-footer-margin;
515
+ }
516
+ #{if(&, '&', '*')} .e-btn.e-apply {
517
+ margin-left: $range-value-zero;
518
+ }
519
+ }
520
+ }
521
+ #{if(&, '&', '*')}.e-device {
522
+ #{if(&, '&', '*')}.e-popup {
523
+ max-width: $range-device-max-width;
524
+
525
+ #{if(&, '&', '*')} .e-range-header {
526
+ margin: $range-device-control-header-margin;
527
+ padding: $range-device-control-header-padding;
528
+
529
+ #{if(&, '&', '*')} .e-day-span {
530
+ @if $skin-name == 'tailwind' {
531
+ height: $range-device-indicator-height;
532
+ line-height: $range-device-indicator-height;
533
+ }
534
+ margin: $range-device-indicator-margin;
535
+
536
+ @if $skin-name == 'fluentUI' or $skin-name == 'bootstrap5' or $skin-name == 'bootstrap4' {
537
+ margin-bottom: 0;
538
+ }
539
+ }
540
+ }
541
+ }
542
+ }
543
+ }
544
+
545
+ .e-small #{&}.e-daterangepicker,
546
+ #{if(&, '&', '*')}.e-small#{&}.e-daterangepicker {
547
+ #{if(&, '&', '*')}.e-popup {
548
+ #{if(&, '&', '*')} .e-range-header {
549
+ @if $skin-name != 'tailwind' {
550
+ margin: $range-control-small-header-margin;
551
+ }
552
+
553
+ @if $skin-name == 'tailwind' {
554
+ padding: $range-control-bigger-header-margin;
555
+ }
556
+
557
+ #{if(&, '&', '*')} .e-start-label,
558
+ #{if(&, '&', '*')} .e-end-label {
559
+ font-size: $range-small-header-label-size;
560
+ }
561
+
562
+ #{if(&, '&', '*')} .e-change-icon {
563
+ font-size: $range-small-font-size;
564
+ }
565
+
566
+ #{if(&, '&', '*')} .e-start-end {
567
+ height: $range-start-end-container-small-height;
568
+ }
569
+
570
+ #{if(&, '&', '*')} .e-day-span {
571
+ font-size: $range-calendar-mouse-small-font-size;
572
+ margin: $range-indicator-small-margin;
573
+ }
574
+
575
+ #{if(&, '&', '*')} .e-separator {
576
+ @if ($skin-name != 'FluentUI') {
577
+ margin: $range-separator-small-margin;
578
+ }
579
+ }
580
+ }
581
+
582
+ #{if(&, '&', '*')} .e-footer .e-btn.e-apply {
583
+ margin: $range-small-footer-margin;
584
+ }
585
+
586
+ #{if(&, '&', '*')}.e-preset-wrapper .e-presets .e-list-parent.e-ul {
587
+ #{if(&, '&', '*')} .e-list-item {
588
+ font-size: $range-presets-small-list-font-size;
589
+ height: $range-preset-small-list-height;
590
+ line-height: $range-preset-small-list-height;
591
+ }
592
+ }
593
+ }
594
+ }
595
+ .e-daterangepicker .e-calendar .e-month .e-selected span.e-day,
596
+ .e-daterangepicker.e-bigger.e-small .e-calendar .e-month .e-selected span.e-day {
597
+ @if $skin-name == 'FluentUI' {
598
+ height: 25px;
599
+ width: 25px;
600
+ line-height: 25px;
601
+ }
602
+ }
603
+ .e-daterangepicker.e-bigger .e-calendar .e-month .e-selected span.e-day {
604
+ @if $skin-name == 'FluentUI' {
605
+ height: 29px;
606
+ width: 29px;
607
+ line-height: 29px;
608
+ }
609
+ }
610
+ .e-daterangepicker.e-small .e-calendar .e-month .e-selected span.e-day {
611
+ @if $skin-name == 'FluentUI' {
612
+ height: 21px;
613
+ width: 21px;
614
+ line-height: 21px;
615
+ }
616
+ }
617
+ }
618
+
619
+ /* stylelint-disable */
620
+ .e-range-overflow {
621
+ overflow: hidden;
622
+ }
623
+
624
+ .e-daterangepick-mob-popup-wrap {
625
+ align-items: center;
626
+ display: flex;
627
+ flex-direction: column;
628
+ height: 100%;
629
+ justify-content: center;
630
+ left: 0;
631
+ max-height: 100%;
632
+ position: fixed;
633
+ top: 0;
634
+ width: 100%;
635
+ z-index: 1002;
636
+
637
+ .e-daterangepicker.e-popup.e-control.e-lib.e-device.e-popup-open {
638
+ position: relative;
639
+ top:0 !important;
640
+ left: 0 !important;
641
+ }
642
+
643
+ .e-daterangepicker.e-popup.e-popup-expand.e-control.e-lib.e-device.e-popup-open {
644
+ min-height:100%;
645
+ min-width: 100%;
646
+ height:100%;
647
+ width:100%;
648
+ }
649
+ }
650
+
651
+ .e-content-placeholder.e-daterangepicker.e-placeholder-daterangepicker {
652
+ background-size: 250px 33px;
653
+ min-height: 33px;
654
+ }
655
+
656
+ .e-bigger .e-content-placeholder.e-daterangepicker.e-placeholder-daterangepicker,
657
+ .e-bigger.e-content-placeholder.e-daterangepicker.e-placeholder-daterangepicker {
658
+ background-size: 250px 40px;
659
+ min-height: 40px;
660
+ }
661
+
662
+ .e-daterangepick-mob-popup-wrap {
663
+
664
+ #{if( &, '&', '*')} .e-daterangepicker.e-popup.e-popup-expand {
665
+
666
+ #{if(&, '&', '*')} .e-date-range-container {
667
+ min-height: $modal-range-portrait-calendar-min-height;
668
+ min-width: $modal-range-portrait-calendar-min-width;
669
+ height: $modal-range-portrait-calendar-height;
670
+ width: $modal-range-portrait-calendar-width;
671
+
672
+ #{if(&, '&', '*')} .e-range-header {
673
+ height: $modal-range-portrait-header-height;
674
+ padding: $modal-range-portrait-header-padding;
675
+ margin: 0;
676
+ color: $range-calendar-header-dark-color;
677
+
678
+ #{if(&, '&', '*')} .e-model-header-wrapper {
679
+ @media (max-device-width: 768px) {
680
+ font-size: $range-header-font-size;
681
+ }
682
+
683
+ @media (min-device-width: 768px) {
684
+ font-size: $modal-range-tablet-font-size;
685
+ }
686
+
687
+ #{if(&, '&', '*')} .e-apply {
688
+ float: $modal-range-portrait-icon-float;
689
+ }
690
+ }
691
+
692
+ #{if(&, '&', '*')} .e-start-end {
693
+ margin: $modal-range-start-end-margin;
694
+ }
695
+ }
696
+ #{if(&, '&', '*')} .e-calendar {
697
+ @media (max-height: 600px) {
698
+ min-height: $modal-range-portrait-calendar-height;
699
+ height: $modal-range-portrait-calendar-height;
700
+ }
701
+ @media (min-height: 600px) {
702
+ min-height: $modal-range-landscape-calendar-height;
703
+ height: $modal-range-landscape-calendar-height;
704
+ }
705
+ min-width: $modal-range-portrait-calendar-min-width;
706
+ width: $modal-range-portrait-calendar-width;
707
+ padding: $modal-range-calendar-padding;
708
+ overflow: $modal-range-calendar-overflow;
709
+
710
+ #{if(&, '&', '*')} .e-header.e-month,
711
+ #{if(&, '&', '*')} .e-header.e-year,
712
+ #{if(&, '&', '*')} .e-header.e-decade {
713
+ height: $modal-range-portrait-header-month-height;
714
+ border-style: $modal-range-calendar-header-border-style;
715
+ border-width: $modal-range-calendar-header-border-width;
716
+ border-color: $range-separator-color;
717
+ padding: $modal-range-portrait-month-header-padding;
718
+ line-height: $modal-range-month-header-line-height;
719
+
720
+ #{if(&, '&', '*')} .e-prev {
721
+ height: $modal-range-prev-next-icon-size;
722
+ width: $modal-range-prev-next-icon-size;
723
+ @if ($skin-name == 'Material3') {
724
+ vertical-align: inherit;
725
+ font-size: $modal-range-tablet-font-size
726
+ }
727
+ @media screen and (orientation: landscape) {
728
+ @if ($skin-name == 'Material3') {
729
+ vertical-align: inherit;
730
+ }
731
+ }
732
+
733
+ #{if(&, '&', '*')} span {
734
+ @media (min-device-width: 768px) {
735
+ font-size: 18px;
736
+ padding: 11px;
737
+ }
738
+ }
739
+ }
740
+ #{if(&, '&', '*')} .e-next {
741
+ height: $modal-range-prev-next-icon-size;
742
+ width: $modal-range-prev-next-icon-size;
743
+
744
+ #{if(&, '&', '*')} span {
745
+ padding: $modal-range-prev-next-icon-padding;
746
+ line-height: $modal-range-prev-next-icon-line-height;
747
+ @media (min-device-width: 768px) {
748
+ font-size: $modal-range-tablet-font-size;
749
+ }
750
+ }
751
+ }
752
+
753
+ #{if(&, '&', '*')} .e-title {
754
+ @media (max-height: 600px) {
755
+ @if ($skin-name =='Material3') {
756
+ margin-left: $modal-header-month-name-left-landscape-width;
757
+ position: absolute;
758
+ text-align: center;
759
+ vertical-align: middle;
760
+ width: $modal-header-month-name-width;
761
+ line-height: $modal-month-name-line-height;
762
+ }
763
+
764
+ line-height: $modal-range-month-landscape-title-line-height;
765
+ }
766
+
767
+ @media (min-height: 600px) {
768
+ @if ($skin-name == 'Material3') {
769
+ margin-left: $modal-header-month-name-left-width;
770
+ position: absolute;
771
+ text-align: center;
772
+ vertical-align: middle;
773
+ width: $modal-header-month-name-width;
774
+ line-height: $modal-month-name-line-height;
775
+ }
776
+ line-height: $modal-range-month-header-title-line-height;
777
+ }
778
+
779
+ @media (min-device-width: 768px) {
780
+ font-size: $modal-range-tablet-font-size;
781
+ }
782
+ }
783
+ }
784
+
785
+ #{if(&, '&', '*')} th {
786
+ @media (min-device-width: 768px) {
787
+ font-size: $modal-range-tablet-font-size;
788
+ height: $modal-range-calendar-th-size;
789
+ }
790
+ }
791
+
792
+ #{if(&, '&', '*')} .e-content span.e-day {
793
+ @media (min-device-width: 768px) {
794
+ font-size: $modal-range-tablet-font-size;
795
+ height: $modal-range-tablet-content-size;
796
+ width: $modal-range-tablet-content-size;
797
+ line-height: $modal-range-tablet-content-size;
798
+ }
799
+ }
800
+ #{if(&, '&', '*')} .e-start-date.e-selected.e-range-hover,
801
+ #{if(&, '&', '*')} .e-end-date.e-selected.e-range-hover {
802
+ border-radius: $modal-range-range-hover-radius;
803
+ }
804
+ }
805
+ }
806
+
807
+ #{if( &, '&', '*')} .e-calendar-holder {
808
+ height: 100%;
809
+
810
+ #{if( &, '&', '*')} .e-calendar-container {
811
+ @media (max-height: 600px) {
812
+ min-height: 78vh;
813
+ height: 78vh;
814
+ }
815
+
816
+ #{if( &, '&', '*')} .e-calendar {
817
+ @media (max-height: 600px) {
818
+ min-height: 78vh;
819
+ height: 78vh;
820
+ }
821
+ }
822
+ }
823
+ }
824
+
825
+ #{if(&, '&', '*')} .e-calendar-container {
826
+ @media (max-height: 600px) {
827
+ min-height: $modal-range-portrait-calendar-height;
828
+ height: $modal-range-portrait-calendar-height;
829
+ }
830
+ @media (min-height: 600px) {
831
+ min-height: $modal-range-landscape-calendar-height;
832
+ height: $modal-range-landscape-calendar-height;
833
+ }
834
+ }
835
+
836
+
837
+ #{if(&, '&', '*')} .e-separator {
838
+ margin: 0;
839
+ }
840
+
841
+ #{if( &, '&', '*')} .e-content.e-month {
842
+ height: $modal-range-portrait-calendar-content-height;
843
+
844
+ table {
845
+ padding: $modal-range-table-padding;
846
+ height: $modal-range-portrait-calendar-tabel-height;
847
+ border-spacing: $modal-range-calendar-overflow;
848
+ }
849
+ }
850
+ #{if( &, '&', '*')} .e-footer{
851
+ display: $modal-range-footer-display;
852
+ }
853
+
854
+ #{if(&, '&', '*')} .e-presets {
855
+ max-height: $modal-range-presets-portrait-height;
856
+ height: $modal-range-presets-portrait-height;
857
+ #{if(&, '&', '*')} ul {
858
+ height: $modal-range-portrait-calendar-height;
859
+
860
+ #{if(&, '&', '*')} li.e-list-item {
861
+ font-size: $range-header-font-size;
862
+
863
+ @media (min-device-width: 768px) {
864
+ font-size: 18px;
865
+ }
866
+ }
867
+ }
868
+ }
869
+
870
+ #{if(&, '&', '*')} .e-range-mob-popup-wrap {
871
+ position: relative;
872
+ height:100%;
873
+
874
+ #{if(&, '&', '*')} .e-model-header {
875
+ height: $modal-range-presets-header-height;
876
+ padding: $modal-range-header-padding;
877
+ display: $modal-range-header-display-style;
878
+ align-items: $modal-range-header-content-align;
879
+ font-size: $modal-range-header-portrait-font-size;
880
+ border-bottom: none;
881
+ @media (min-device-width: 768px) {
882
+ font-size: $modal-range-header-landscape-font-size;
883
+ }
884
+
885
+ #{if(&, '&', '*')} .e-popup-close {
886
+ float: $modal-close-icon-float;
887
+ padding: $modal-portrait-content-padding;
888
+ }
889
+
890
+ #{if(&, '&', '*')} .e-model-title {
891
+ padding: $modal-portrait-content-padding;
892
+ text-transform: $modal-range-header-title-transform;
893
+ }
894
+ }
895
+ }
896
+ }
897
+ }
898
+
899
+
900
+ @media screen and (orientation: landscape) {
901
+
902
+ .e-daterangepick-mob-popup-wrap {
903
+
904
+ #{if( &, '&', '*')} .e-daterangepicker.e-popup.e-popup-expand {
905
+
906
+ #{if( &, '&', '*')} .e-date-range-container .e-range-header .e-model-header-wrapper .e-btn {
907
+ padding: 0;
908
+ @media (min-device-width: 768px) {
909
+ font-size: $modal-range-header-landscape-font-size;
910
+ }
911
+ }
912
+
913
+ #{if( &, '&', '*')} .e-calendar-holder {
914
+
915
+ #{if(&, '&', '*')} .e-calendar-container {
916
+ @media (min-height: 600px) {
917
+ min-height: 70vh;
918
+ height: 70vh;
919
+ }
920
+
921
+ @media (max-height: 600px) {
922
+ min-height: 65%;
923
+ height: 65%;
924
+ }
925
+
926
+ #{if(&, '&', '*')} .e-calendar {
927
+ @media (min-height: 600px) {
928
+ min-height: 70vh;
929
+ height: 70vh;
930
+ }
931
+ }
932
+
933
+ #{if(&, '&', '*')} .e-content.e-month,
934
+ #{if(&, '&', '*')} .e-content.e-year,
935
+ #{if(&, '&', '*')} .e-content.e-decade {
936
+ @media (max-height: 600px) {
937
+ height: 50vh;
938
+ }
939
+ }
940
+ }
941
+ }
942
+
943
+ #{if(&, '&', '*')} .e-presets {
944
+ max-height: $modal-range-presets-landscape-height;
945
+ height: $modal-range-presets-landscape-height;
946
+ }
947
+
948
+ #{if(&, '&', '*')} .e-range-mob-popup-wrap {
949
+
950
+ #{if(&, '&', '*')} .e-model-header {
951
+ height: $modal-range-header-landscape-height;
952
+ font-size: $modal-range-header-landscape-font-size;
953
+
954
+ #{if(&, '&', '*')} .e-popup-close {
955
+ padding: $modal-landscape-padding;
956
+ }
957
+
958
+ #{if(&, '&', '*')} .e-model-title {
959
+ padding: $modal-landscape-padding;
960
+ }
961
+ }
962
+ }
963
+
964
+ #{if( &, '&', '*')} .e-date-range-container .e-range-header {
965
+ @media (max-height: 600px) {
966
+ height: $modal-range-landscape-header-height;
967
+ }
968
+
969
+ @media (min-height: 600px) {
970
+ height: $modal-range-landscape-header-big-height;
971
+ }
972
+ width: $modal-range-portrait-calendar-width;
973
+
974
+ #{if(&, '&', '*')} .e-start-end {
975
+ margin: $modal-range-calendar-padding;
976
+ height: $modal-range-start-end-size;
977
+
978
+ @media (min-height: 600px) {
979
+ margin: $modal-range-start-end-tablet-margin;
980
+ }
981
+ }
982
+
983
+ #{if(&, '&', '*')} .e-day-span {
984
+ margin: 8px 0;
985
+ font-size: 16px;
986
+ }
987
+
988
+ }
989
+
990
+ #{if(&, '&', '*')} .e-calendar-container {
991
+ @media (min-height: 600px) {
992
+ min-height: $modal-range-landscape-container-height;
993
+ height: $modal-range-landscape-container-height;
994
+ }
995
+ }
996
+
997
+ #{if(&, '&', '*')} .e-content.e-month,
998
+ #{if(&, '&', '*')} .e-content.e-year,
999
+ #{if(&, '&', '*')} .e-content.e-decade {
1000
+ @media (max-height: 600px) {
1001
+ height: $modal-range-header-height;
1002
+ }
1003
+
1004
+ @media (min-height: 600px) {
1005
+ height: $modal-range-tablet-header-height;
1006
+ }
1007
+ overflow-y: $modal-range-landscape-conetent-overflow;
1008
+
1009
+ table {
1010
+
1011
+ @media (min-height: 600px) {
1012
+ height: $modal-range-tablet-header-height;
1013
+ }
1014
+ display: $modal-range-table-display;
1015
+ border-spacing: $modal-range-calendar-overflow;
1016
+ }
1017
+ }
1018
+ }
1019
+ }
1020
+ }
1021
+
1022
+ .e-outline.e-float-input.e-control-wrapper label.e-float-text.e-label-bottom span.e-float-text-content.e-float-text-overflow.e-date-time-icon {
1023
+ width: calc(100% - 80px);
1024
+ }
1025
+
1026
+ .e-outline.e-float-input.e-static-clear.e-control-wrapper label.e-float-text.e-label-bottom span.e-float-text-content.e-float-text-overflow.e-date-time-icon {
1027
+ width: calc(100% - 110px);
1028
+ }
1029
+
1030
+ /* stylelint-enable */