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

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