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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (337) hide show
  1. package/esm2020/public_api.mjs +3 -0
  2. package/esm2020/src/calendar/calendar-all.module.mjs +29 -0
  3. package/esm2020/src/calendar/calendar.component.mjs +91 -0
  4. package/esm2020/src/calendar/calendar.module.mjs +25 -0
  5. package/esm2020/src/datepicker/datepicker-all.module.mjs +29 -0
  6. package/esm2020/src/datepicker/datepicker.component.mjs +99 -0
  7. package/esm2020/src/datepicker/datepicker.module.mjs +25 -0
  8. package/esm2020/src/daterangepicker/daterangepicker-all.module.mjs +23 -0
  9. package/esm2020/src/daterangepicker/daterangepicker.component.mjs +103 -0
  10. package/esm2020/src/daterangepicker/daterangepicker.module.mjs +34 -0
  11. package/esm2020/src/daterangepicker/presets.directive.mjs +58 -0
  12. package/esm2020/src/datetimepicker/datetimepicker-all.module.mjs +23 -0
  13. package/esm2020/src/datetimepicker/datetimepicker.component.mjs +99 -0
  14. package/esm2020/src/datetimepicker/datetimepicker.module.mjs +25 -0
  15. package/esm2020/src/index.mjs +18 -0
  16. package/esm2020/src/timepicker/timepicker-all.module.mjs +23 -0
  17. package/esm2020/src/timepicker/timepicker.component.mjs +92 -0
  18. package/esm2020/src/timepicker/timepicker.module.mjs +25 -0
  19. package/esm2020/syncfusion-ej2-angular-calendars.mjs +5 -0
  20. package/fesm2015/syncfusion-ej2-angular-calendars.mjs +737 -0
  21. package/fesm2015/syncfusion-ej2-angular-calendars.mjs.map +1 -0
  22. package/fesm2020/syncfusion-ej2-angular-calendars.mjs +737 -0
  23. package/fesm2020/syncfusion-ej2-angular-calendars.mjs.map +1 -0
  24. package/package.json +26 -12
  25. package/src/calendar/calendar-all.module.d.ts +6 -0
  26. package/src/calendar/calendar.component.d.ts +3 -0
  27. package/src/calendar/calendar.module.d.ts +6 -0
  28. package/src/datepicker/datepicker-all.module.d.ts +6 -0
  29. package/src/datepicker/datepicker.component.d.ts +3 -0
  30. package/src/datepicker/datepicker.module.d.ts +6 -0
  31. package/src/daterangepicker/daterangepicker-all.module.d.ts +6 -0
  32. package/src/daterangepicker/daterangepicker.component.d.ts +3 -0
  33. package/src/daterangepicker/daterangepicker.module.d.ts +7 -0
  34. package/src/daterangepicker/presets.directive.d.ts +5 -0
  35. package/src/datetimepicker/datetimepicker-all.module.d.ts +6 -0
  36. package/src/datetimepicker/datetimepicker.component.d.ts +3 -0
  37. package/src/datetimepicker/datetimepicker.module.d.ts +6 -0
  38. package/src/timepicker/timepicker-all.module.d.ts +6 -0
  39. package/src/timepicker/timepicker.component.d.ts +3 -0
  40. package/src/timepicker/timepicker.module.d.ts +6 -0
  41. package/styles/calendar/_all.scss +2 -0
  42. package/styles/calendar/_bootstrap-dark-definition.scss +228 -0
  43. package/styles/calendar/_bootstrap-definition.scss +228 -0
  44. package/styles/calendar/_bootstrap4-definition.scss +228 -0
  45. package/styles/calendar/_bootstrap5-dark-definition.scss +1 -0
  46. package/styles/calendar/_bootstrap5-definition.scss +250 -0
  47. package/styles/calendar/_fabric-dark-definition.scss +192 -0
  48. package/styles/calendar/_fabric-definition.scss +190 -0
  49. package/styles/calendar/_fluent-dark-definition.scss +1 -0
  50. package/styles/calendar/_fluent-definition.scss +252 -0
  51. package/styles/calendar/_fusionnew-definition.scss +250 -0
  52. package/styles/calendar/_highcontrast-definition.scss +189 -0
  53. package/styles/calendar/_highcontrast-light-definition.scss +192 -0
  54. package/styles/calendar/_layout.scss +786 -0
  55. package/styles/calendar/_material-dark-definition.scss +194 -0
  56. package/styles/calendar/_material-definition.scss +189 -0
  57. package/styles/calendar/_material3-dark-definition.scss +1 -0
  58. package/styles/calendar/_material3-definition.scss +195 -0
  59. package/styles/calendar/_tailwind-dark-definition.scss +1 -0
  60. package/styles/calendar/_tailwind-definition.scss +262 -0
  61. package/styles/calendar/_theme.scss +534 -0
  62. package/styles/calendar/bootstrap-dark.scss +5 -1
  63. package/styles/calendar/bootstrap.scss +5 -1
  64. package/styles/calendar/bootstrap4.scss +5 -1
  65. package/styles/calendar/bootstrap5-dark.scss +5 -1
  66. package/styles/calendar/bootstrap5.scss +5 -1
  67. package/styles/calendar/fabric-dark.scss +5 -1
  68. package/styles/calendar/fabric.scss +5 -1
  69. package/styles/calendar/fluent-dark.scss +5 -1
  70. package/styles/calendar/fluent.scss +5 -1
  71. package/styles/calendar/highcontrast-light.scss +5 -1
  72. package/styles/calendar/highcontrast.scss +5 -1
  73. package/styles/calendar/icons/_bootstrap-dark.scss +13 -0
  74. package/styles/calendar/icons/_bootstrap.scss +13 -0
  75. package/styles/calendar/icons/_bootstrap4.scss +13 -0
  76. package/styles/calendar/icons/_bootstrap5-dark.scss +1 -0
  77. package/styles/calendar/icons/_bootstrap5.scss +13 -0
  78. package/styles/calendar/icons/_fabric-dark.scss +13 -0
  79. package/styles/calendar/icons/_fabric.scss +13 -0
  80. package/styles/calendar/icons/_fluent-dark.scss +1 -0
  81. package/styles/calendar/icons/_fluent.scss +13 -0
  82. package/styles/calendar/icons/_fusionnew.scss +13 -0
  83. package/styles/calendar/icons/_highcontrast-light.scss +13 -0
  84. package/styles/calendar/icons/_highcontrast.scss +13 -0
  85. package/styles/calendar/icons/_material-dark.scss +13 -0
  86. package/styles/calendar/icons/_material.scss +13 -0
  87. package/styles/calendar/icons/_material3-dark.scss +1 -0
  88. package/styles/calendar/icons/_material3.scss +13 -0
  89. package/styles/calendar/icons/_tailwind-dark.scss +1 -0
  90. package/styles/calendar/icons/_tailwind.scss +13 -0
  91. package/styles/calendar/material-dark.scss +5 -1
  92. package/styles/calendar/material.scss +5 -1
  93. package/styles/calendar/material3-dark.scss +5 -1
  94. package/styles/calendar/material3.scss +5 -1
  95. package/styles/calendar/tailwind-dark.scss +5 -1
  96. package/styles/calendar/tailwind.scss +5 -1
  97. package/styles/datepicker/_all.scss +2 -0
  98. package/styles/datepicker/_bootstrap-dark-definition.scss +97 -0
  99. package/styles/datepicker/_bootstrap-definition.scss +96 -0
  100. package/styles/datepicker/_bootstrap4-definition.scss +101 -0
  101. package/styles/datepicker/_bootstrap5-dark-definition.scss +1 -0
  102. package/styles/datepicker/_bootstrap5-definition.scss +107 -0
  103. package/styles/datepicker/_fabric-dark-definition.scss +98 -0
  104. package/styles/datepicker/_fabric-definition.scss +95 -0
  105. package/styles/datepicker/_fluent-dark-definition.scss +1 -0
  106. package/styles/datepicker/_fluent-definition.scss +107 -0
  107. package/styles/datepicker/_fusionnew-definition.scss +107 -0
  108. package/styles/datepicker/_highcontrast-definition.scss +96 -0
  109. package/styles/datepicker/_highcontrast-light-definition.scss +99 -0
  110. package/styles/datepicker/_layout.scss +434 -0
  111. package/styles/datepicker/_material-dark-definition.scss +103 -0
  112. package/styles/datepicker/_material-definition.scss +100 -0
  113. package/styles/datepicker/_material3-dark-definition.scss +1 -0
  114. package/styles/datepicker/_material3-definition.scss +116 -0
  115. package/styles/datepicker/_tailwind-dark-definition.scss +1 -0
  116. package/styles/datepicker/_tailwind-definition.scss +105 -0
  117. package/styles/datepicker/_theme.scss +53 -0
  118. package/styles/datepicker/bootstrap-dark.scss +7 -1
  119. package/styles/datepicker/bootstrap.scss +7 -1
  120. package/styles/datepicker/bootstrap4.scss +7 -1
  121. package/styles/datepicker/bootstrap5-dark.scss +7 -1
  122. package/styles/datepicker/bootstrap5.scss +7 -1
  123. package/styles/datepicker/fabric-dark.scss +7 -1
  124. package/styles/datepicker/fabric.scss +7 -1
  125. package/styles/datepicker/fluent-dark.scss +7 -1
  126. package/styles/datepicker/fluent.scss +7 -1
  127. package/styles/datepicker/highcontrast-light.scss +7 -1
  128. package/styles/datepicker/highcontrast.scss +7 -1
  129. package/styles/datepicker/icons/_bootstrap-dark.scss +73 -0
  130. package/styles/datepicker/icons/_bootstrap.scss +72 -0
  131. package/styles/datepicker/icons/_bootstrap4.scss +76 -0
  132. package/styles/datepicker/icons/_bootstrap5-dark.scss +1 -0
  133. package/styles/datepicker/icons/_bootstrap5.scss +76 -0
  134. package/styles/datepicker/icons/_fabric-dark.scss +65 -0
  135. package/styles/datepicker/icons/_fabric.scss +65 -0
  136. package/styles/datepicker/icons/_fluent-dark.scss +1 -0
  137. package/styles/datepicker/icons/_fluent.scss +76 -0
  138. package/styles/datepicker/icons/_fusionnew.scss +76 -0
  139. package/styles/datepicker/icons/_highcontrast-light.scss +72 -0
  140. package/styles/datepicker/icons/_highcontrast.scss +72 -0
  141. package/styles/datepicker/icons/_material-dark.scss +99 -0
  142. package/styles/datepicker/icons/_material.scss +99 -0
  143. package/styles/datepicker/icons/_material3-dark.scss +1 -0
  144. package/styles/datepicker/icons/_material3.scss +79 -0
  145. package/styles/datepicker/icons/_tailwind-dark.scss +1 -0
  146. package/styles/datepicker/icons/_tailwind.scss +76 -0
  147. package/styles/datepicker/material-dark.scss +7 -1
  148. package/styles/datepicker/material.scss +7 -1
  149. package/styles/datepicker/material3-dark.scss +7 -1
  150. package/styles/datepicker/material3.scss +7 -1
  151. package/styles/datepicker/tailwind-dark.scss +7 -1
  152. package/styles/datepicker/tailwind.scss +7 -1
  153. package/styles/daterangepicker/_all.scss +2 -0
  154. package/styles/daterangepicker/_bootstrap-dark-definition.scss +258 -0
  155. package/styles/daterangepicker/_bootstrap-definition.scss +258 -0
  156. package/styles/daterangepicker/_bootstrap4-definition.scss +268 -0
  157. package/styles/daterangepicker/_bootstrap5-dark-definition.scss +1 -0
  158. package/styles/daterangepicker/_bootstrap5-definition.scss +296 -0
  159. package/styles/daterangepicker/_fabric-dark-definition.scss +261 -0
  160. package/styles/daterangepicker/_fabric-definition.scss +258 -0
  161. package/styles/daterangepicker/_fluent-dark-definition.scss +1 -0
  162. package/styles/daterangepicker/_fluent-definition.scss +305 -0
  163. package/styles/daterangepicker/_fusionnew-definition.scss +295 -0
  164. package/styles/daterangepicker/_highcontrast-definition.scss +258 -0
  165. package/styles/daterangepicker/_highcontrast-light-definition.scss +261 -0
  166. package/styles/daterangepicker/_layout.scss +1031 -0
  167. package/styles/daterangepicker/_material-dark-definition.scss +266 -0
  168. package/styles/daterangepicker/_material-definition.scss +266 -0
  169. package/styles/daterangepicker/_material3-dark-definition.scss +1 -0
  170. package/styles/daterangepicker/_material3-definition.scss +281 -0
  171. package/styles/daterangepicker/_tailwind-dark-definition.scss +1 -0
  172. package/styles/daterangepicker/_tailwind-definition.scss +287 -0
  173. package/styles/daterangepicker/_theme.scss +455 -0
  174. package/styles/daterangepicker/bootstrap-dark.scss +7 -1
  175. package/styles/daterangepicker/bootstrap.scss +7 -1
  176. package/styles/daterangepicker/bootstrap4.scss +7 -1
  177. package/styles/daterangepicker/bootstrap5-dark.scss +7 -1
  178. package/styles/daterangepicker/bootstrap5.scss +7 -1
  179. package/styles/daterangepicker/fabric-dark.scss +7 -1
  180. package/styles/daterangepicker/fabric.scss +7 -1
  181. package/styles/daterangepicker/fluent-dark.scss +7 -1
  182. package/styles/daterangepicker/fluent.scss +7 -1
  183. package/styles/daterangepicker/highcontrast-light.scss +7 -1
  184. package/styles/daterangepicker/highcontrast.scss +7 -1
  185. package/styles/daterangepicker/icons/_bootstrap-dark.scss +85 -0
  186. package/styles/daterangepicker/icons/_bootstrap.scss +85 -0
  187. package/styles/daterangepicker/icons/_bootstrap4.scss +94 -0
  188. package/styles/daterangepicker/icons/_bootstrap5-dark.scss +1 -0
  189. package/styles/daterangepicker/icons/_bootstrap5.scss +92 -0
  190. package/styles/daterangepicker/icons/_fabric-dark.scss +85 -0
  191. package/styles/daterangepicker/icons/_fabric.scss +85 -0
  192. package/styles/daterangepicker/icons/_fluent-dark.scss +1 -0
  193. package/styles/daterangepicker/icons/_fluent.scss +92 -0
  194. package/styles/daterangepicker/icons/_fusionnew.scss +92 -0
  195. package/styles/daterangepicker/icons/_highcontrast-light.scss +85 -0
  196. package/styles/daterangepicker/icons/_highcontrast.scss +85 -0
  197. package/styles/daterangepicker/icons/_material-dark.scss +119 -0
  198. package/styles/daterangepicker/icons/_material.scss +119 -0
  199. package/styles/daterangepicker/icons/_material3-dark.scss +1 -0
  200. package/styles/daterangepicker/icons/_material3.scss +129 -0
  201. package/styles/daterangepicker/icons/_tailwind-dark.scss +1 -0
  202. package/styles/daterangepicker/icons/_tailwind.scss +92 -0
  203. package/styles/daterangepicker/material-dark.scss +7 -1
  204. package/styles/daterangepicker/material.scss +7 -1
  205. package/styles/daterangepicker/material3-dark.scss +7 -1
  206. package/styles/daterangepicker/material3.scss +7 -1
  207. package/styles/daterangepicker/tailwind-dark.scss +7 -1
  208. package/styles/daterangepicker/tailwind.scss +7 -1
  209. package/styles/datetimepicker/_all.scss +2 -0
  210. package/styles/datetimepicker/_bootstrap-dark-definition.scss +60 -0
  211. package/styles/datetimepicker/_bootstrap-definition.scss +59 -0
  212. package/styles/datetimepicker/_bootstrap4-definition.scss +65 -0
  213. package/styles/datetimepicker/_bootstrap5-dark-definition.scss +1 -0
  214. package/styles/datetimepicker/_bootstrap5-definition.scss +65 -0
  215. package/styles/datetimepicker/_fabric-dark-definition.scss +60 -0
  216. package/styles/datetimepicker/_fabric-definition.scss +57 -0
  217. package/styles/datetimepicker/_fluent-dark-definition.scss +1 -0
  218. package/styles/datetimepicker/_fluent-definition.scss +65 -0
  219. package/styles/datetimepicker/_fusionnew-definition.scss +65 -0
  220. package/styles/datetimepicker/_highcontrast-definition.scss +57 -0
  221. package/styles/datetimepicker/_highcontrast-light-definition.scss +60 -0
  222. package/styles/datetimepicker/_layout.scss +238 -0
  223. package/styles/datetimepicker/_material-dark-definition.scss +64 -0
  224. package/styles/datetimepicker/_material-definition.scss +62 -0
  225. package/styles/datetimepicker/_material3-dark-definition.scss +1 -0
  226. package/styles/datetimepicker/_material3-definition.scss +71 -0
  227. package/styles/datetimepicker/_tailwind-dark-definition.scss +1 -0
  228. package/styles/datetimepicker/_tailwind-definition.scss +65 -0
  229. package/styles/datetimepicker/_theme.scss +70 -0
  230. package/styles/datetimepicker/bootstrap-dark.scss +8 -1
  231. package/styles/datetimepicker/bootstrap.scss +8 -1
  232. package/styles/datetimepicker/bootstrap4.scss +8 -1
  233. package/styles/datetimepicker/bootstrap5-dark.scss +8 -1
  234. package/styles/datetimepicker/bootstrap5.scss +8 -1
  235. package/styles/datetimepicker/fabric-dark.scss +8 -1
  236. package/styles/datetimepicker/fabric.scss +8 -1
  237. package/styles/datetimepicker/fluent-dark.scss +8 -1
  238. package/styles/datetimepicker/fluent.scss +8 -1
  239. package/styles/datetimepicker/highcontrast-light.scss +8 -1
  240. package/styles/datetimepicker/highcontrast.scss +8 -1
  241. package/styles/datetimepicker/icons/_bootstrap-dark.scss +11 -0
  242. package/styles/datetimepicker/icons/_bootstrap.scss +11 -0
  243. package/styles/datetimepicker/icons/_bootstrap4.scss +11 -0
  244. package/styles/datetimepicker/icons/_bootstrap5-dark.scss +1 -0
  245. package/styles/datetimepicker/icons/_bootstrap5.scss +11 -0
  246. package/styles/datetimepicker/icons/_fabric-dark.scss +11 -0
  247. package/styles/datetimepicker/icons/_fabric.scss +11 -0
  248. package/styles/datetimepicker/icons/_fluent-dark.scss +1 -0
  249. package/styles/datetimepicker/icons/_fluent.scss +11 -0
  250. package/styles/datetimepicker/icons/_fusionnew.scss +11 -0
  251. package/styles/datetimepicker/icons/_highcontrast-light.scss +11 -0
  252. package/styles/datetimepicker/icons/_highcontrast.scss +11 -0
  253. package/styles/datetimepicker/icons/_material-dark.scss +53 -0
  254. package/styles/datetimepicker/icons/_material.scss +62 -0
  255. package/styles/datetimepicker/icons/_material3-dark.scss +1 -0
  256. package/styles/datetimepicker/icons/_material3.scss +11 -0
  257. package/styles/datetimepicker/icons/_tailwind-dark.scss +1 -0
  258. package/styles/datetimepicker/icons/_tailwind.scss +11 -0
  259. package/styles/datetimepicker/material-dark.scss +8 -1
  260. package/styles/datetimepicker/material.scss +8 -1
  261. package/styles/datetimepicker/material3-dark.scss +8 -1
  262. package/styles/datetimepicker/material3.scss +8 -1
  263. package/styles/datetimepicker/tailwind-dark.scss +8 -1
  264. package/styles/datetimepicker/tailwind.scss +8 -1
  265. package/styles/material3-dark.css +0 -220
  266. package/styles/material3-dark.scss +1 -0
  267. package/styles/material3.css +0 -444
  268. package/styles/material3.scss +1 -0
  269. package/styles/timepicker/_all.scss +2 -0
  270. package/styles/timepicker/_bootstrap-dark-definition.scss +80 -0
  271. package/styles/timepicker/_bootstrap-definition.scss +77 -0
  272. package/styles/timepicker/_bootstrap4-definition.scss +85 -0
  273. package/styles/timepicker/_bootstrap5-dark-definition.scss +1 -0
  274. package/styles/timepicker/_bootstrap5-definition.scss +86 -0
  275. package/styles/timepicker/_fabric-dark-definition.scss +80 -0
  276. package/styles/timepicker/_fabric-definition.scss +77 -0
  277. package/styles/timepicker/_fluent-dark-definition.scss +1 -0
  278. package/styles/timepicker/_fluent-definition.scss +86 -0
  279. package/styles/timepicker/_fusionnew-definition.scss +86 -0
  280. package/styles/timepicker/_highcontrast-definition.scss +77 -0
  281. package/styles/timepicker/_highcontrast-light-definition.scss +80 -0
  282. package/styles/timepicker/_layout.scss +303 -0
  283. package/styles/timepicker/_material-dark-definition.scss +84 -0
  284. package/styles/timepicker/_material-definition.scss +81 -0
  285. package/styles/timepicker/_material3-dark-definition.scss +1 -0
  286. package/styles/timepicker/_material3-definition.scss +99 -0
  287. package/styles/timepicker/_tailwind-dark-definition.scss +1 -0
  288. package/styles/timepicker/_tailwind-definition.scss +84 -0
  289. package/styles/timepicker/_theme.scss +114 -0
  290. package/styles/timepicker/bootstrap-dark.scss +6 -1
  291. package/styles/timepicker/bootstrap.scss +6 -1
  292. package/styles/timepicker/bootstrap4.scss +6 -1
  293. package/styles/timepicker/bootstrap5-dark.scss +6 -1
  294. package/styles/timepicker/bootstrap5.scss +6 -1
  295. package/styles/timepicker/fabric-dark.scss +6 -1
  296. package/styles/timepicker/fabric.scss +6 -1
  297. package/styles/timepicker/fluent-dark.scss +6 -1
  298. package/styles/timepicker/fluent.scss +6 -1
  299. package/styles/timepicker/highcontrast-light.scss +6 -1
  300. package/styles/timepicker/highcontrast.scss +6 -1
  301. package/styles/timepicker/icons/_bootstrap-dark.scss +23 -0
  302. package/styles/timepicker/icons/_bootstrap.scss +24 -0
  303. package/styles/timepicker/icons/_bootstrap4.scss +24 -0
  304. package/styles/timepicker/icons/_bootstrap5-dark.scss +1 -0
  305. package/styles/timepicker/icons/_bootstrap5.scss +24 -0
  306. package/styles/timepicker/icons/_fabric-dark.scss +24 -0
  307. package/styles/timepicker/icons/_fabric.scss +24 -0
  308. package/styles/timepicker/icons/_fluent-dark.scss +1 -0
  309. package/styles/timepicker/icons/_fluent.scss +24 -0
  310. package/styles/timepicker/icons/_fusionnew.scss +24 -0
  311. package/styles/timepicker/icons/_highcontrast-light.scss +24 -0
  312. package/styles/timepicker/icons/_highcontrast.scss +24 -0
  313. package/styles/timepicker/icons/_material-dark.scss +52 -0
  314. package/styles/timepicker/icons/_material.scss +54 -0
  315. package/styles/timepicker/icons/_material3-dark.scss +1 -0
  316. package/styles/timepicker/icons/_material3.scss +24 -0
  317. package/styles/timepicker/icons/_tailwind-dark.scss +1 -0
  318. package/styles/timepicker/icons/_tailwind.scss +24 -0
  319. package/styles/timepicker/material-dark.scss +6 -1
  320. package/styles/timepicker/material.scss +6 -1
  321. package/styles/timepicker/material3-dark.scss +6 -1
  322. package/styles/timepicker/material3.scss +6 -1
  323. package/styles/timepicker/tailwind-dark.scss +6 -1
  324. package/styles/timepicker/tailwind.scss +6 -1
  325. package/syncfusion-ej2-angular-calendars.d.ts +5 -0
  326. package/@syncfusion/ej2-angular-calendars.es5.js +0 -1048
  327. package/@syncfusion/ej2-angular-calendars.es5.js.map +0 -1
  328. package/@syncfusion/ej2-angular-calendars.js +0 -981
  329. package/@syncfusion/ej2-angular-calendars.js.map +0 -1
  330. package/CHANGELOG.md +0 -1334
  331. package/dist/ej2-angular-calendars.umd.js +0 -1093
  332. package/dist/ej2-angular-calendars.umd.js.map +0 -1
  333. package/dist/ej2-angular-calendars.umd.min.js +0 -11
  334. package/dist/ej2-angular-calendars.umd.min.js.map +0 -1
  335. package/ej2-angular-calendars.d.ts +0 -9
  336. package/ej2-angular-calendars.metadata.json +0 -1
  337. package/postinstall/tagchange.js +0 -18
@@ -0,0 +1,455 @@
1
+ @include export-module('daterangepicker-theme') {
2
+
3
+ /*! daterangepicker theme */
4
+ .e-date-range-wrapper {
5
+ #{if(&, '&', '*')} .e-input-group-icon.e-icons.e-active {
6
+ @if $skin-name == 'bootstrap4' {
7
+ background: $range-icon-active-bg-color;
8
+ border-color: $range-active-border-color;
9
+ }
10
+ color: $range-active-icon-color;
11
+ }
12
+
13
+ #{if(&, '&', '*')}.e-input-group:not(.e-disabled) .e-input-group-icon.e-active:active {
14
+ color: $range-active-state-icon-color;
15
+ }
16
+ }
17
+
18
+ #{&}.e-daterangepicker,
19
+ .e-bigger.e-small #{&}.e-daterangepicker,
20
+ .e-bigger.e-small#{&}.e-daterangepicker {
21
+ #{if(&, '&', '*')}.e-popup {
22
+ background: $range-background;
23
+
24
+ #{if(&, '&', '*')} .e-calendar {
25
+ @if $skin-name != 'Material3' {
26
+ background-color: $range-background;
27
+ }
28
+ @if $skin-name == 'Material3' {
29
+ background: $range-background;
30
+ }
31
+
32
+ #{if(&, '&', '*')} .e-header .e-title,
33
+ #{if(&, '&', '*')} .e-header .e-title:hover {
34
+ color: $range-calendar-header-dark-color;
35
+ text-decoration: none;
36
+ }
37
+ #{if(&, '&', '*')} .e-content .e-range-hover {
38
+ @if $skin-name != 'Material3' {
39
+ background-color: $range-hover-color;
40
+ }
41
+ @if $skin-name == 'Material3' {
42
+ background: $range-hover-color;
43
+ }
44
+ color: $range-calendar-dark-color;
45
+ }
46
+ #{if(&, '&', '*')} .e-content .e-start-date.e-selected,
47
+ #{if(&, '&', '*')} .e-content .e-end-date.e-selected {
48
+ @if $skin-name == 'FluentUI' {
49
+ background-color: $range-hover-color;
50
+ color: $range-calendar-dark-color;
51
+ }
52
+ }
53
+ #{if(&, '&', '*')} .e-content.e-month .e-today.e-range-hover span {
54
+ @if $skin-name != 'tailwind' and $skin-name != 'Material3' {
55
+ background-color: $range-today-color;
56
+ border: $range-today-border-color;
57
+ color: $range-calendar-today-color;
58
+ }
59
+ @if $skin-name == 'Material3' {
60
+ background: $range-today-color;
61
+ border: $range-today-border-color;
62
+ color: $range-calendar-today-color;
63
+ }
64
+ @if $skin-name == 'FluentUI' {
65
+ box-shadow: $range-today-hover-box-shadow;
66
+ }
67
+ }
68
+ #{if(&, '&', '*')} .e-content .e-range-hover span {
69
+ @if $skin-name != 'tailwind' and $skin-name != 'Material3' {
70
+ background: $range-hover-color;
71
+ border: $range-calendar-selection-border;
72
+ color: $range-calendar-dark-color;
73
+ }
74
+ @if $skin-name == 'Material3' {
75
+ background: $range-hover-bg-color;
76
+ border: $range-calendar-selection-border;
77
+ color: $range-calendar-dark-color;
78
+ }
79
+ }
80
+
81
+ #{if(&, '&', '*')} .e-content .e-range-hover:not(.e-other-month) span {
82
+ @if $skin-name == 'tailwind' {
83
+ background: $range-hover-color;
84
+ border: $range-calendar-selection-border;
85
+ color: $range-calendar-dark-color;
86
+ }
87
+ }
88
+ #{if(&, '&', '*')} .e-range-hover:not(.e-selected):hover span.e-day,
89
+ #{if(&, '&', '*')} .e-range-hover.e-focused-date:not(.e-selected) span.e-day,
90
+ #{if(&, '&', '*')} .e-range-hover.e-focused-date.e-today span.e-day {
91
+ @if $skin-name != 'tailwind' and $skin-name != 'Material3' {
92
+ background-color: $range-hover-content-color;
93
+ border: $range-calendar-hover-border-color;
94
+ color: $range-calendar-dark-color;
95
+ }
96
+ @if $skin-name == 'Material3' {
97
+ background: $range-hover-content-color;
98
+ border: $range-calendar-hover-border-color;
99
+ color: $range-calendar-dark-color;
100
+ }
101
+ }
102
+ #{if(&, '&', '*')} .e-range-hover.e-today:hover span.e-day,
103
+ #{if(&, '&', '*')} .e-range-hover.e-focused-date.e-today span.e-day,
104
+ #{if(&, '&', '*')} .e-range-hover.e-start-date.e-selected.e-today span.e-day,
105
+ #{if(&, '&', '*')} .e-range-hover.e-end-date.e-selected.e-today span.e-day {
106
+ @if $skin-name != 'tailwind' {
107
+ border: $range-calendar-active-border;
108
+ }
109
+ }
110
+ #{if(&, '&', '*')} .e-range-hover.e-selected.e-today:hover span.e-day {
111
+ @if $skin-name != 'tailwind' {
112
+ border: $range-calendar-today-start-color;
113
+ }
114
+ }
115
+ #{if(&, '&', '*')} .e-content .e-other-month.e-range-hover,
116
+ #{if(&, '&', '*')} .e-content .e-other-month.e-today.e-range-hover span,
117
+ #{if(&, '&', '*')} .e-content .e-other-month.e-range-hover span,
118
+ #{if(&, '&', '*')} .e-content .e-other-month.e-range-hover:hover span.e-day,
119
+ #{if(&, '&', '*')} .e-content .e-other-month.e-selected,
120
+ #{if(&, '&', '*')} .e-content .e-other-month.e-selected span {
121
+ @if $skin-name != 'tailwind' and $skin-name != 'Material3' {
122
+ background-color: $range-other-hover-color;
123
+ border: $range-calendar-other-month-border;
124
+ color: $range-other-month-date;
125
+ }
126
+ @if $skin-name == 'Material3' {
127
+ background: $range-other-hover-color;
128
+ border: $range-calendar-other-month-border;
129
+ color: $range-other-month-date;
130
+ }
131
+ }
132
+ #{if(&, '&', '*')} .e-content .e-other-month.e-range-hover,
133
+ #{if(&, '&', '*')} .e-content .e-other-month.e-today.e-range-hover span,
134
+ #{if(&, '&', '*')} .e-content .e-other-month.e-range-hover span,
135
+ #{if(&, '&', '*')} .e-content .e-other-month.e-range-hover:hover span.e-day {
136
+ @if $skin-name == 'tailwind' {
137
+ background-color: $range-other-hover-color;
138
+ border: $range-calendar-other-month-border;
139
+ color: $range-other-month-date;
140
+ }
141
+ }
142
+ #{if(&, '&', '*')} .e-content .e-other-month.e-range-hover,
143
+ #{if(&, '&', '*')} .e-content .e-other-month.e-selected {
144
+ @if $skin-name != 'tailwind' and $skin-name != 'Material3' {
145
+ background-color: $range-other-hover-color;
146
+ border: $range-calendar-other-normal-border;
147
+ color: $range-other-month-date;
148
+ }
149
+ @if $skin-name == 'Material3' {
150
+ background: $range-other-hover-color;
151
+ border: $range-calendar-other-normal-border;
152
+ color: $range-other-month-date;
153
+ }
154
+ }
155
+ #{if(&, '&', '*')} .e-content .e-other-month.e-range-hover {
156
+ @if $skin-name == 'tailwind' {
157
+ background-color: $range-other-hover-color;
158
+ border: $range-calendar-other-normal-border;
159
+ color: $range-other-month-date;
160
+ }
161
+ }
162
+ #{if(&, '&', '*')} .e-end-date.e-selected.e-range-hover span.e-day,
163
+ #{if(&, '&', '*')} .e-start-date.e-selected.e-range-hover span.e-day {
164
+ @if $skin-name != 'Material3' {
165
+ background-color: $range-selection-bg;
166
+ }
167
+ @if $skin-name == 'Material3' {
168
+ background: $range-selection-bg;
169
+ }
170
+ color: $range-active-font-color;
171
+ @if ($skin-name == 'FluentUI') {
172
+ border-radius: $range-selected-hover-radius;
173
+ box-shadow: $range-value-none;
174
+ }
175
+ }
176
+ #{if(&, '&', '*')} .e-start-date.e-selected span.e-day,
177
+ #{if(&, '&', '*')} .e-end-date.e-selected span.e-day {
178
+ @if ($skin-name == 'FluentUI') {
179
+ background-color: $range-selection-bg;
180
+ border-radius: $range-selected-hover-radius;
181
+ box-shadow: $range-value-none;
182
+ color: $range-active-font-color;
183
+ }
184
+ }
185
+ #{if(&, '&', '*')} .e-end-date.e-selected.e-range-hover.e-other-month span.e-day,
186
+ #{if(&, '&', '*')} .e-start-date.e-selected.e-range-hover.e-other-month span.e-day {
187
+ @if ($skin-name == 'tailwind') {
188
+ background-color: $range-selection-bg;
189
+ color: $range-active-font-color;
190
+ }
191
+ }
192
+ #{if(&, '&', '*')} .e-start-date.e-selected.e-range-hover.e-today span.e-day {
193
+ @if $skin-name != 'Material3' {
194
+ background-color: $range-selection-bg;
195
+ }
196
+ @if $skin-name == 'Material3' {
197
+ background: $range-selection-bg;
198
+ }
199
+ color: $range-active-font-color;
200
+ }
201
+ #{if(&, '&', '*')} .e-other-month.e-selected span {
202
+ color: $range-primary-font-color;
203
+ }
204
+ }
205
+ #{if(&, '&', '*')} .e-presets {
206
+ @if $skin-name != 'Material3' {
207
+ background-color: $range-presets-bg;
208
+ }
209
+ @if $skin-name == 'Material3' {
210
+ background: $range-presets-bg;
211
+ }
212
+ color: $range-preset-normal-font-color;
213
+
214
+ #{if(&, '&', '*')} .e-list-item.e-active {
215
+ @if $skin-name != 'Material3' {
216
+ background-color: $range-presets-bg-color;
217
+ }
218
+ @if $skin-name == 'Material3' {
219
+ background: $range-presets-bg-active-color;
220
+ }
221
+ color: $range-presets-font-color;
222
+ }
223
+ #{if(&, '&', '*')} .e-list-item.e-hover {
224
+ @if $skin-name != 'Material3' {
225
+ background-color: $range-presets-hover-bg;
226
+ }
227
+ @if $skin-name == 'Material3' {
228
+ background: $range-presets-hover-bg;
229
+ }
230
+ color: $range-list-hover-color;
231
+ }
232
+ }
233
+ #{if(&, '&', '*')} .e-start-label,
234
+ #{if(&, '&', '*')} .e-end-label {
235
+ color: $range-calendar-header-text-color;
236
+ }
237
+ #{if(&, '&', '*')} .e-change-icon {
238
+ color: $range-change-icon-color;
239
+ }
240
+ #{if(&, '&', '*')} .e-day-span {
241
+ color: $range-calendar-medium-color;
242
+ }
243
+ #{if(&, '&', '*')} .e-separator {
244
+ @if $skin-name != 'Material3' {
245
+ background-color: $range-separator-color;
246
+ }
247
+ @if $skin-name == 'Material3' {
248
+ background: $range-separator-color;
249
+ }
250
+ }
251
+ #{if(&, '&', '*')} .e-footer {
252
+ @if $skin-name != 'Material3' {
253
+ background-color: $range-footer-background;
254
+ }
255
+ @if $skin-name == 'Material3' {
256
+ background: $range-footer-background;
257
+ border-bottom-left-radius: $range-popup-border-radius;
258
+ border-bottom-right-radius: $range-popup-border-radius;
259
+ }
260
+
261
+ #{if(&, '&', '*')} .e-cancel.e-flat:not(:hover) {
262
+ @if $skin-name == 'tailwind' {
263
+ /* stylelint-disable property-no-vendor-prefix */
264
+ -webkit-tap-highlight-color: transparent;
265
+ background-color: $range-cancel-flat-btn-bgcolor;
266
+ border-color: $range-cancel-flat-btn-border-color;
267
+ box-shadow: $range-cancel-flat-btn-box-shadow;
268
+ color: $range-cancel-flat-btn-color;
269
+ }
270
+ }
271
+
272
+ #{if(&, '&', '*')} .e-apply.e-flat.e-primary:not(:hover):not(:disabled) {
273
+ @if $skin-name == 'tailwind' {
274
+ -webkit-tap-highlight-color: transparent;
275
+ background-color: $range-apply-btn-primary-bgcolor;
276
+ border-color: $range-apply-btn-primary-border-color;
277
+ color: $range-apply-btn-primary-color;
278
+ }
279
+ }
280
+ }
281
+ }
282
+ }
283
+
284
+ //bigger style
285
+ .e-bigger #{&}.e-daterangepicker,
286
+ #{if(&, '&', '*')}.e-bigger#{&}.e-daterangepicker,
287
+ #{if(&, '&', '*')}.e-device#{&}.e-daterangepicker {
288
+ @if $skin-name == 'material' {
289
+ background-color: initial;
290
+ }
291
+ @else if $skin-name == 'Material3' {
292
+ background: initial;
293
+ }
294
+ @else if $skin-name == 'bootstrap-dark' {
295
+ background-color: $range-background;
296
+ }
297
+ @else {
298
+ background-color: $range-bg-color;
299
+ }
300
+ padding: $range-popup-padding;
301
+
302
+ #{if(&, '&', '*')} .e-calendar th {
303
+ color: $range-calendar-light-color;
304
+ }
305
+ #{if(&, '&', '*')} .e-start-btn,
306
+ #{if(&, '&', '*')} .e-end-btn {
307
+ background: $range-bg-color;
308
+ @if $skin-name == 'bootstrap4' {
309
+ color: $range-button-font-color;
310
+ }
311
+ @if $skin-name == 'bootstrap5'{
312
+ color: $range-button-font-color;
313
+ }
314
+ }
315
+ #{if(&, '&', '*')} .e-start-btn.e-active,
316
+ #{if(&, '&', '*')} .e-start-btn.e-active:active,
317
+ #{if(&, '&', '*')} .e-end-btn.e-active,
318
+ #{if(&, '&', '*')} .e-end-btn.e-active:active:not([disabled]),
319
+ #{if(&, '&', '*')} .e-start-btn.e-active:hover,
320
+ #{if(&, '&', '*')} .e-end-btn.e-active:hover {
321
+ background: $range-primary-color;
322
+ color: $range-primary-font-color;
323
+ }
324
+ }
325
+
326
+ // apply button override style changes
327
+ .e-daterangepicker.e-popup .e-footer .e-btn.e-apply.e-flat.e-primary,
328
+ .e-daterangepicker.e-popup .e-footer .e-css.e-btn.e-apply.e-flat.e-primary {
329
+ @if ($skin-name == 'bootstrap5' or $skin-name == 'FluentUI') {
330
+ background-color: $apply-buuton-bg;
331
+ border-color: $apply-buuton-bg-border-color;
332
+ color: $apply-buuton-text-color;
333
+ }
334
+ }
335
+
336
+ .e-daterangepicker.e-popup .e-footer .e-btn.e-apply.e-flat.e-primary:hover,
337
+ .e-daterangepicker.e-popup .e-footer .e-css.e-btn.e-apply.e-flat.e-primary:hover {
338
+ @if ($skin-name == 'bootstrap5' or $skin-name == 'FluentUI') {
339
+ background-color: $apply-buuton-hover-bg;
340
+ border-color: $apply-buuton-bg-border-hover-color;
341
+ color: $apply-buuton-text-hover-color;
342
+ }
343
+ }
344
+
345
+ .e-daterangepicker.e-popup .e-footer .e-btn.e-apply.e-flat.e-primary:active,
346
+ .e-daterangepicker.e-popup .e-footer .e-btn.e-apply.e-flat.e-primary.e-active,
347
+ .e-daterangepicker.e-popup .e-footer .e-css.e-btn.e-apply.e-flat.e-primary:active,
348
+ .e-daterangepicker.e-popup .e-footer .e-css.e-btn.e-apply.e-flat.e-primary.e-active {
349
+ @if ($skin-name == 'bootstrap5' or $skin-name == 'FluentUI') {
350
+ background-color: $apply-buuton-active-bg;
351
+ border-color: $apply-buuton-bg-border-active-color;
352
+ color: $apply-buuton-text-active-color;
353
+ }
354
+ }
355
+
356
+ .e-daterangepicker.e-popup .e-footer .e-btn.e-apply.e-flat.e-primary:disabled,
357
+ .e-daterangepicker.e-popup .e-footer .e-btn.e-apply.e-flat.e-primary:disabled,
358
+ .e-daterangepicker.e-popup .e-footer .e-css.e-btn.e-apply.e-flat.e-primary:disabled,
359
+ .e-daterangepicker.e-popup .e-footer .e-css.e-btn.e-apply.e-flat.e-primary:disabled {
360
+ @if ($skin-name == 'bootstrap5' or $skin-name == 'FluentUI') {
361
+ background-color: $range-apply-disabled-background-style;
362
+ border-color: $range-apply-disabled-border-style;
363
+ color: $range-apply-disabled-color;
364
+ }
365
+ }
366
+
367
+ // cancel button override style changes
368
+ .e-daterangepicker.e-popup .e-footer .e-btn.e-flat,
369
+ .e-daterangepicker.e-popup .e-footer .e-css.e-btn.e-flat {
370
+ @if ($skin-name == 'bootstrap5' or $skin-name == 'FluentUI') {
371
+ background-color: $cancel-buuton-bg;
372
+ border-color: $cancel-buuton-bg-border-color;
373
+ color: $cancel-buuton-text-color;
374
+ }
375
+ }
376
+
377
+ .e-daterangepicker.e-popup .e-footer .e-btn.e-flat:hover,
378
+ .e-daterangepicker.e-popup .e-footer .e-css.e-btn.e-flat:hover {
379
+ @if ($skin-name == 'bootstrap5' or $skin-name == 'FluentUI') {
380
+ background-color: $cancel-buuton-hover-bg;
381
+ border-color: $cancel-buuton-bg-border-hover-color;
382
+ color: $cancel-buuton-text-hover-color;
383
+ }
384
+ }
385
+
386
+ .e-daterangepicker.e-popup .e-footer .e-btn.e-flat:active,
387
+ .e-daterangepicker.e-popup .e-footer .e-btn.e-flat.e-active,
388
+ .e-daterangepicker.e-popup .e-footer .e-css.e-btn.e-flat:active,
389
+ .e-daterangepicker.e-popup .e-footer .e-css.e-btn.e-flat.e-active {
390
+ @if ($skin-name == 'bootstrap5' or $skin-name == 'FluentUI') {
391
+ background-color: $cancel-buuton-active-bg;
392
+ border-color: $cancel-buuton-bg-border-active-color;
393
+ color: $cancel-buuton-text-active-color;
394
+ }
395
+ }
396
+
397
+ .e-daterangepicker.e-popup .e-footer .e-btn.e-flat:disabled,
398
+ .e-daterangepicker.e-popup .e-footer .e-btn.e-flat:disabled,
399
+ .e-daterangepicker.e-popup .e-footer .e-css.e-btn.e-flat:disabled,
400
+ .e-daterangepicker.e-popup .e-footer .e-css.e-btn.e-flat:disabled {
401
+ @if ($skin-name == 'bootstrap5' or $skin-name == 'FluentUI') {
402
+ background-color: $range-cancel-disabled-background-style;
403
+ border-color: $range-cancel-disabled-border-style;
404
+ color: $range-cancel-disabled-color;
405
+ }
406
+ }
407
+ }
408
+
409
+ .e-daterangepicker.e-popup .e-calendar .e-content.e-month .e-today.e-range-hover span,
410
+ .e-bigger.e-small .e-calendar .e-content.e-month td.e-today.e-range-hover span.e-day {
411
+ @if $skin-name == 'FluentUI' {
412
+ line-height: $range-today-hover-line-height;
413
+ }
414
+ }
415
+
416
+ .e-daterangepicker.e-popup .e-calendar .e-content .e-other-month.e-today.e-range-hover span,
417
+ .e-bigger.e-small .e-calendar .e-content.e-month td.e-today.e-other-month.e-range-hover span.e-day {
418
+ @if $skin-name == 'FluentUI' {
419
+ line-height: $range-other-hover-line-height;
420
+ }
421
+ }
422
+
423
+ .e-small .e-calendar .e-content.e-month td.e-today.e-range-hover span.e-day,
424
+ .e-small .e-calendar .e-content.e-month td.e-other-month.e-today.e-range-hover span.e-day {
425
+ @if $skin-name == 'FluentUI' {
426
+ line-height: $range-small-today-hover-line-height;
427
+ }
428
+ }
429
+
430
+ .e-bigger .e-calendar .e-content.e-month td.e-today.e-range-hover span.e-day {
431
+ @if $skin-name == 'FluentUI' {
432
+ line-height: $range-bigger-today-hover-line-height;
433
+ }
434
+ }
435
+
436
+ .e-bigger .e-calendar .e-content.e-month td.e-other-month.e-today.e-range-hover span.e-day {
437
+ @if $skin-name == 'FluentUI' {
438
+ line-height: $range-bigger-other-hover-line-height;
439
+ }
440
+ }
441
+
442
+ .e-daterangepick-mob-popup-wrap {
443
+
444
+ #{if( &, '&', '*')} .e-daterangepicker.e-popup.e-popup-expand {
445
+
446
+ #{if(&, '&', '*')} .e-model-header {
447
+ background-color: $modal-range-header-bg-color;
448
+ color: $modal-range-header-text-color;
449
+
450
+ #{if(&, '&', '*')} .e-popup-close {
451
+ color: $modal-range-header-text-color;
452
+ }
453
+ }
454
+ }
455
+ }
@@ -1 +1,7 @@
1
- @import 'ej2-calendars/styles/daterangepicker/bootstrap-dark.scss';
1
+ @import 'ej2-base/styles/definition/bootstrap-dark.scss';
2
+ @import 'ej2-inputs/styles/input/bootstrap-dark-definition.scss';
3
+ @import 'ej2-popups/styles/popup/bootstrap-dark-definition.scss';
4
+ @import '../calendar/bootstrap-dark-definition.scss';
5
+ @import 'bootstrap-dark-definition.scss';
6
+ @import 'icons/bootstrap-dark.scss';
7
+ @import 'all.scss';
@@ -1 +1,7 @@
1
- @import 'ej2-calendars/styles/daterangepicker/bootstrap.scss';
1
+ @import 'ej2-base/styles/definition/bootstrap.scss';
2
+ @import 'ej2-inputs/styles/input/bootstrap-definition.scss';
3
+ @import 'ej2-popups/styles/popup/bootstrap-definition.scss';
4
+ @import '../calendar/bootstrap-definition.scss';
5
+ @import 'bootstrap-definition.scss';
6
+ @import 'icons/bootstrap.scss';
7
+ @import 'all.scss';
@@ -1 +1,7 @@
1
- @import 'ej2-calendars/styles/daterangepicker/bootstrap4.scss';
1
+ @import 'ej2-base/styles/definition/bootstrap4.scss';
2
+ @import 'ej2-inputs/styles/input/bootstrap4-definition.scss';
3
+ @import 'ej2-popups/styles/popup/bootstrap4-definition.scss';
4
+ @import '../calendar/bootstrap4-definition.scss';
5
+ @import 'bootstrap4-definition.scss';
6
+ @import 'icons/bootstrap4.scss';
7
+ @import 'all.scss';
@@ -1 +1,7 @@
1
- @import 'ej2-calendars/styles/daterangepicker/bootstrap5-dark.scss';
1
+ @import 'ej2-base/styles/definition/bootstrap5-dark.scss';
2
+ @import 'ej2-inputs/styles/input/bootstrap5-dark-definition.scss';
3
+ @import 'ej2-popups/styles/popup/bootstrap5-dark-definition.scss';
4
+ @import '../calendar/bootstrap5-dark-definition.scss';
5
+ @import 'bootstrap5-dark-definition.scss';
6
+ @import 'icons/bootstrap5-dark.scss';
7
+ @import 'all.scss';
@@ -1 +1,7 @@
1
- @import 'ej2-calendars/styles/daterangepicker/bootstrap5.scss';
1
+ @import 'ej2-base/styles/definition/bootstrap5.scss';
2
+ @import 'ej2-inputs/styles/input/bootstrap5-definition.scss';
3
+ @import 'ej2-popups/styles/popup/bootstrap5-definition.scss';
4
+ @import '../calendar/bootstrap5-definition.scss';
5
+ @import 'bootstrap5-definition.scss';
6
+ @import 'icons/bootstrap5.scss';
7
+ @import 'all.scss';
@@ -1 +1,7 @@
1
- @import 'ej2-calendars/styles/daterangepicker/fabric-dark.scss';
1
+ @import 'ej2-base/styles/definition/fabric-dark.scss';
2
+ @import 'ej2-inputs/styles/input/fabric-dark-definition.scss';
3
+ @import 'ej2-popups/styles/popup/fabric-dark-definition.scss';
4
+ @import '../calendar/fabric-dark-definition.scss';
5
+ @import 'fabric-dark-definition.scss';
6
+ @import 'icons/fabric-dark.scss';
7
+ @import 'all.scss';
@@ -1 +1,7 @@
1
- @import 'ej2-calendars/styles/daterangepicker/fabric.scss';
1
+ @import 'ej2-base/styles/definition/fabric.scss';
2
+ @import 'ej2-inputs/styles/input/fabric-definition.scss';
3
+ @import 'ej2-popups/styles/popup/fabric-definition.scss';
4
+ @import '../calendar/fabric-definition.scss';
5
+ @import 'fabric-definition.scss';
6
+ @import 'icons/fabric.scss';
7
+ @import 'all.scss';
@@ -1 +1,7 @@
1
- @import 'ej2-calendars/styles/daterangepicker/fluent-dark.scss';
1
+ @import 'ej2-base/styles/definition/fluent-dark.scss';
2
+ @import 'ej2-inputs/styles/input/fluent-dark-definition.scss';
3
+ @import 'ej2-popups/styles/popup/fluent-dark-definition.scss';
4
+ @import '../calendar/fluent-dark-definition.scss';
5
+ @import 'fluent-dark-definition.scss';
6
+ @import 'icons/fluent-dark.scss';
7
+ @import 'all.scss';
@@ -1 +1,7 @@
1
- @import 'ej2-calendars/styles/daterangepicker/fluent.scss';
1
+ @import 'ej2-base/styles/definition/fluent.scss';
2
+ @import 'ej2-inputs/styles/input/fluent-definition.scss';
3
+ @import 'ej2-popups/styles/popup/fluent-definition.scss';
4
+ @import '../calendar/fluent-definition.scss';
5
+ @import 'fluent-definition.scss';
6
+ @import 'icons/fluent.scss';
7
+ @import 'all.scss';
@@ -1 +1,7 @@
1
- @import 'ej2-calendars/styles/daterangepicker/highcontrast-light.scss';
1
+ @import 'ej2-base/styles/definition/highcontrast-light.scss';
2
+ @import 'ej2-inputs/styles/input/highcontrast-light-definition.scss';
3
+ @import 'ej2-popups/styles/popup/highcontrast-light-definition.scss';
4
+ @import '../calendar/highcontrast-light-definition.scss';
5
+ @import 'highcontrast-light-definition.scss';
6
+ @import 'icons/highcontrast-light.scss';
7
+ @import 'all.scss';
@@ -1 +1,7 @@
1
- @import 'ej2-calendars/styles/daterangepicker/highcontrast.scss';
1
+ @import 'ej2-base/styles/definition/highcontrast.scss';
2
+ @import 'ej2-inputs/styles/input/highcontrast-definition.scss';
3
+ @import 'ej2-popups/styles/popup/highcontrast-definition.scss';
4
+ @import '../calendar/highcontrast-definition.scss';
5
+ @import 'highcontrast-definition.scss';
6
+ @import 'icons/highcontrast.scss';
7
+ @import 'all.scss';
@@ -0,0 +1,85 @@
1
+ @include export-module('daterangepicker-bootstrap-icons') {
2
+
3
+ /*! component icons */
4
+ .e-input-group-icon.e-range-icon,
5
+ #{if(&, '&', '*')}.e-control-wrapper .e-input-group-icon.e-range-icon {
6
+ font-size: $range-icon-font-size;
7
+ margin: $range-icon-margin;
8
+ outline: none;
9
+
10
+ #{if(&, '&', '*')}::before {
11
+ content: '\e243';
12
+ font-family: 'e-icons';
13
+ }
14
+
15
+ #{if(&, '&', '*')}:focus {
16
+ background: $range-icon-hover-color;
17
+ border-radius: $range-icon-border-radius;
18
+ }
19
+ }
20
+
21
+ .e-daterangepicker {
22
+ #{if(&, '&', '*')} .e-calendar .e-header .e-date-icon-next::before {
23
+ content: '\e913';
24
+ }
25
+ #{if(&, '&', '*')} .e-calendar .e-header .e-date-icon-prev::before {
26
+ content: '\e904';
27
+ }
28
+ #{if(&, '&', '*')} .e-change-icon::before {
29
+ content: '\e85f';
30
+ }
31
+ #{if(&, '&', '*')} .e-calendar.e-rtl .e-header .e-date-icon-next::before {
32
+ content: '\e98f';
33
+ }
34
+ #{if(&, '&', '*')} .e-calendar.e-rtl .e-header .e-date-icon-prev::before {
35
+ content: '\e85c';
36
+ }
37
+ #{if(&, '&', '*')}.e-rtl .e-start-end .e-change-icon::before {
38
+ content: '\e85b';
39
+ }
40
+ }
41
+
42
+ .e-bigger {
43
+ #{if(&, '&', '*')} .e-input-group-icon.e-range-icon,
44
+ #{if(&, '&', '*')}.e-control-wrapper .e-input-group-icon.e-range-icon,
45
+ #{if(&, '&', '*')} .e-control-wrapper .e-input-group-icon.e-range-icon {
46
+ font-size: $range-bigger-icon-font-size;
47
+ margin: $range-icon-bigger-margin;
48
+ outline: none;
49
+ }
50
+ }
51
+
52
+ // mouse small icon
53
+ .e-small .e-input-group-icon.e-range-icon,
54
+ #{if(&, '&', '*')}.e-control-wrapper.e-small .e-input-group-icon.e-range-icon,
55
+ #{if(&, '&', '*')}.e-small .e-control-wrapper .e-input-group-icon.e-range-icon {
56
+ font-size: $range-small-icon-font-size;
57
+ }
58
+
59
+ // Touch small icon
60
+ .e-small.e-bigger .e-input-group-icon.e-range-icon,
61
+ #{if(&, '&', '*')}.e-control-wrapper.e-small.e-bigger .e-input-group-icon.e-range-icon,
62
+ #{if(&, '&', '*')}.e-small.e-bigger .e-control-wrapper .e-input-group-icon.e-range-icon {
63
+ font-size: $range-bigger-small-icon-font-size;
64
+ }
65
+
66
+ .e-daterangepick-mob-popup-wrap {
67
+
68
+ #{if(&, '&', '*')} .e-daterangepicker.e-popup-expand {
69
+
70
+ #{if(&, '&', '*')} .e-range-header,
71
+ #{if(&, '&', '*')} .e-model-header {
72
+
73
+ #{if(&, '&', '*')} .e-popup-close::before {
74
+ content: '\e7fc';
75
+ font-family: 'e-icons';
76
+ }
77
+
78
+ #{if(&, '&', '*')} .e-apply::before {
79
+ content: '\e7ff';
80
+ font-family: 'e-icons';
81
+ }
82
+ }
83
+ }
84
+ }
85
+ }