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

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 (308) 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 +90 -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 +98 -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 +102 -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 +98 -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 +91 -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 +732 -0
  21. package/fesm2015/syncfusion-ej2-angular-calendars.mjs.map +1 -0
  22. package/fesm2020/syncfusion-ej2-angular-calendars.mjs +732 -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 +741 -0
  55. package/styles/calendar/_material-dark-definition.scss +194 -0
  56. package/styles/calendar/_material-definition.scss +189 -0
  57. package/styles/calendar/_tailwind-dark-definition.scss +1 -0
  58. package/styles/calendar/_tailwind-definition.scss +262 -0
  59. package/styles/calendar/_theme.scss +533 -0
  60. package/styles/calendar/bootstrap-dark.scss +5 -1
  61. package/styles/calendar/bootstrap.scss +5 -1
  62. package/styles/calendar/bootstrap4.scss +5 -1
  63. package/styles/calendar/bootstrap5-dark.scss +5 -1
  64. package/styles/calendar/bootstrap5.scss +5 -1
  65. package/styles/calendar/fabric-dark.scss +5 -1
  66. package/styles/calendar/fabric.scss +5 -1
  67. package/styles/calendar/fluent-dark.scss +5 -1
  68. package/styles/calendar/fluent.scss +5 -1
  69. package/styles/calendar/highcontrast-light.scss +5 -1
  70. package/styles/calendar/highcontrast.scss +5 -1
  71. package/styles/calendar/icons/_bootstrap-dark.scss +13 -0
  72. package/styles/calendar/icons/_bootstrap.scss +13 -0
  73. package/styles/calendar/icons/_bootstrap4.scss +13 -0
  74. package/styles/calendar/icons/_bootstrap5-dark.scss +1 -0
  75. package/styles/calendar/icons/_bootstrap5.scss +13 -0
  76. package/styles/calendar/icons/_fabric-dark.scss +13 -0
  77. package/styles/calendar/icons/_fabric.scss +13 -0
  78. package/styles/calendar/icons/_fluent-dark.scss +1 -0
  79. package/styles/calendar/icons/_fluent.scss +13 -0
  80. package/styles/calendar/icons/_fusionnew.scss +13 -0
  81. package/styles/calendar/icons/_highcontrast-light.scss +13 -0
  82. package/styles/calendar/icons/_highcontrast.scss +13 -0
  83. package/styles/calendar/icons/_material-dark.scss +13 -0
  84. package/styles/calendar/icons/_material.scss +13 -0
  85. package/styles/calendar/icons/_material3.scss +13 -0
  86. package/styles/calendar/icons/_tailwind-dark.scss +1 -0
  87. package/styles/calendar/icons/_tailwind.scss +13 -0
  88. package/styles/calendar/material-dark.scss +5 -1
  89. package/styles/calendar/material.scss +5 -1
  90. package/styles/calendar/tailwind-dark.scss +5 -1
  91. package/styles/calendar/tailwind.scss +5 -1
  92. package/styles/datepicker/_all.scss +2 -0
  93. package/styles/datepicker/_bootstrap-dark-definition.scss +37 -0
  94. package/styles/datepicker/_bootstrap-definition.scss +34 -0
  95. package/styles/datepicker/_bootstrap4-definition.scss +40 -0
  96. package/styles/datepicker/_bootstrap5-dark-definition.scss +1 -0
  97. package/styles/datepicker/_bootstrap5-definition.scss +46 -0
  98. package/styles/datepicker/_fabric-dark-definition.scss +37 -0
  99. package/styles/datepicker/_fabric-definition.scss +34 -0
  100. package/styles/datepicker/_fluent-dark-definition.scss +1 -0
  101. package/styles/datepicker/_fluent-definition.scss +46 -0
  102. package/styles/datepicker/_fusionnew-definition.scss +46 -0
  103. package/styles/datepicker/_highcontrast-definition.scss +35 -0
  104. package/styles/datepicker/_highcontrast-light-definition.scss +38 -0
  105. package/styles/datepicker/_layout.scss +261 -0
  106. package/styles/datepicker/_material-dark-definition.scss +42 -0
  107. package/styles/datepicker/_material-definition.scss +39 -0
  108. package/styles/datepicker/_tailwind-dark-definition.scss +1 -0
  109. package/styles/datepicker/_tailwind-definition.scss +44 -0
  110. package/styles/datepicker/_theme.scss +54 -0
  111. package/styles/datepicker/bootstrap-dark.scss +7 -1
  112. package/styles/datepicker/bootstrap.scss +7 -1
  113. package/styles/datepicker/bootstrap4.scss +7 -1
  114. package/styles/datepicker/bootstrap5-dark.scss +7 -1
  115. package/styles/datepicker/bootstrap5.scss +7 -1
  116. package/styles/datepicker/fabric-dark.scss +7 -1
  117. package/styles/datepicker/fabric.scss +7 -1
  118. package/styles/datepicker/fluent-dark.scss +7 -1
  119. package/styles/datepicker/fluent.scss +7 -1
  120. package/styles/datepicker/highcontrast-light.scss +7 -1
  121. package/styles/datepicker/highcontrast.scss +7 -1
  122. package/styles/datepicker/icons/_bootstrap-dark.scss +52 -0
  123. package/styles/datepicker/icons/_bootstrap.scss +52 -0
  124. package/styles/datepicker/icons/_bootstrap4.scss +56 -0
  125. package/styles/datepicker/icons/_bootstrap5-dark.scss +1 -0
  126. package/styles/datepicker/icons/_bootstrap5.scss +56 -0
  127. package/styles/datepicker/icons/_fabric-dark.scss +52 -0
  128. package/styles/datepicker/icons/_fabric.scss +52 -0
  129. package/styles/datepicker/icons/_fluent-dark.scss +1 -0
  130. package/styles/datepicker/icons/_fluent.scss +56 -0
  131. package/styles/datepicker/icons/_fusionnew.scss +56 -0
  132. package/styles/datepicker/icons/_highcontrast-light.scss +52 -0
  133. package/styles/datepicker/icons/_highcontrast.scss +52 -0
  134. package/styles/datepicker/icons/_material-dark.scss +86 -0
  135. package/styles/datepicker/icons/_material.scss +86 -0
  136. package/styles/datepicker/icons/_material3.scss +56 -0
  137. package/styles/datepicker/icons/_tailwind-dark.scss +1 -0
  138. package/styles/datepicker/icons/_tailwind.scss +56 -0
  139. package/styles/datepicker/material-dark.scss +7 -1
  140. package/styles/datepicker/material.scss +7 -1
  141. package/styles/datepicker/tailwind-dark.scss +7 -1
  142. package/styles/datepicker/tailwind.scss +7 -1
  143. package/styles/daterangepicker/_all.scss +2 -0
  144. package/styles/daterangepicker/_bootstrap-dark-definition.scss +193 -0
  145. package/styles/daterangepicker/_bootstrap-definition.scss +193 -0
  146. package/styles/daterangepicker/_bootstrap4-definition.scss +203 -0
  147. package/styles/daterangepicker/_bootstrap5-dark-definition.scss +1 -0
  148. package/styles/daterangepicker/_bootstrap5-definition.scss +231 -0
  149. package/styles/daterangepicker/_fabric-dark-definition.scss +196 -0
  150. package/styles/daterangepicker/_fabric-definition.scss +193 -0
  151. package/styles/daterangepicker/_fluent-dark-definition.scss +1 -0
  152. package/styles/daterangepicker/_fluent-definition.scss +240 -0
  153. package/styles/daterangepicker/_fusionnew-definition.scss +230 -0
  154. package/styles/daterangepicker/_highcontrast-definition.scss +193 -0
  155. package/styles/daterangepicker/_highcontrast-light-definition.scss +196 -0
  156. package/styles/daterangepicker/_layout.scss +821 -0
  157. package/styles/daterangepicker/_material-dark-definition.scss +201 -0
  158. package/styles/daterangepicker/_material-definition.scss +201 -0
  159. package/styles/daterangepicker/_tailwind-dark-definition.scss +1 -0
  160. package/styles/daterangepicker/_tailwind-definition.scss +222 -0
  161. package/styles/daterangepicker/_theme.scss +435 -0
  162. package/styles/daterangepicker/bootstrap-dark.scss +7 -1
  163. package/styles/daterangepicker/bootstrap.scss +7 -1
  164. package/styles/daterangepicker/bootstrap4.scss +7 -1
  165. package/styles/daterangepicker/bootstrap5-dark.scss +7 -1
  166. package/styles/daterangepicker/bootstrap5.scss +7 -1
  167. package/styles/daterangepicker/fabric-dark.scss +7 -1
  168. package/styles/daterangepicker/fabric.scss +7 -1
  169. package/styles/daterangepicker/fluent-dark.scss +7 -1
  170. package/styles/daterangepicker/fluent.scss +7 -1
  171. package/styles/daterangepicker/highcontrast-light.scss +7 -1
  172. package/styles/daterangepicker/highcontrast.scss +7 -1
  173. package/styles/daterangepicker/icons/_bootstrap-dark.scss +65 -0
  174. package/styles/daterangepicker/icons/_bootstrap.scss +65 -0
  175. package/styles/daterangepicker/icons/_bootstrap4.scss +74 -0
  176. package/styles/daterangepicker/icons/_bootstrap5-dark.scss +1 -0
  177. package/styles/daterangepicker/icons/_bootstrap5.scss +72 -0
  178. package/styles/daterangepicker/icons/_fabric-dark.scss +65 -0
  179. package/styles/daterangepicker/icons/_fabric.scss +65 -0
  180. package/styles/daterangepicker/icons/_fluent-dark.scss +1 -0
  181. package/styles/daterangepicker/icons/_fluent.scss +72 -0
  182. package/styles/daterangepicker/icons/_fusionnew.scss +72 -0
  183. package/styles/daterangepicker/icons/_highcontrast-light.scss +65 -0
  184. package/styles/daterangepicker/icons/_highcontrast.scss +65 -0
  185. package/styles/daterangepicker/icons/_material-dark.scss +99 -0
  186. package/styles/daterangepicker/icons/_material.scss +99 -0
  187. package/styles/daterangepicker/icons/_material3.scss +99 -0
  188. package/styles/daterangepicker/icons/_tailwind-dark.scss +1 -0
  189. package/styles/daterangepicker/icons/_tailwind.scss +72 -0
  190. package/styles/daterangepicker/material-dark.scss +7 -1
  191. package/styles/daterangepicker/material.scss +7 -1
  192. package/styles/daterangepicker/tailwind-dark.scss +7 -1
  193. package/styles/daterangepicker/tailwind.scss +7 -1
  194. package/styles/datetimepicker/_all.scss +2 -0
  195. package/styles/datetimepicker/_bootstrap-dark-definition.scss +55 -0
  196. package/styles/datetimepicker/_bootstrap-definition.scss +54 -0
  197. package/styles/datetimepicker/_bootstrap4-definition.scss +60 -0
  198. package/styles/datetimepicker/_bootstrap5-dark-definition.scss +1 -0
  199. package/styles/datetimepicker/_bootstrap5-definition.scss +60 -0
  200. package/styles/datetimepicker/_fabric-dark-definition.scss +55 -0
  201. package/styles/datetimepicker/_fabric-definition.scss +52 -0
  202. package/styles/datetimepicker/_fluent-dark-definition.scss +1 -0
  203. package/styles/datetimepicker/_fluent-definition.scss +60 -0
  204. package/styles/datetimepicker/_fusionnew-definition.scss +60 -0
  205. package/styles/datetimepicker/_highcontrast-definition.scss +52 -0
  206. package/styles/datetimepicker/_highcontrast-light-definition.scss +55 -0
  207. package/styles/datetimepicker/_layout.scss +195 -0
  208. package/styles/datetimepicker/_material-dark-definition.scss +59 -0
  209. package/styles/datetimepicker/_material-definition.scss +57 -0
  210. package/styles/datetimepicker/_tailwind-dark-definition.scss +1 -0
  211. package/styles/datetimepicker/_tailwind-definition.scss +60 -0
  212. package/styles/datetimepicker/_theme.scss +70 -0
  213. package/styles/datetimepicker/bootstrap-dark.scss +8 -1
  214. package/styles/datetimepicker/bootstrap.scss +8 -1
  215. package/styles/datetimepicker/bootstrap4.scss +8 -1
  216. package/styles/datetimepicker/bootstrap5-dark.scss +8 -1
  217. package/styles/datetimepicker/bootstrap5.scss +8 -1
  218. package/styles/datetimepicker/fabric-dark.scss +8 -1
  219. package/styles/datetimepicker/fabric.scss +8 -1
  220. package/styles/datetimepicker/fluent-dark.scss +8 -1
  221. package/styles/datetimepicker/fluent.scss +8 -1
  222. package/styles/datetimepicker/highcontrast-light.scss +8 -1
  223. package/styles/datetimepicker/highcontrast.scss +8 -1
  224. package/styles/datetimepicker/icons/_bootstrap-dark.scss +11 -0
  225. package/styles/datetimepicker/icons/_bootstrap.scss +11 -0
  226. package/styles/datetimepicker/icons/_bootstrap4.scss +11 -0
  227. package/styles/datetimepicker/icons/_bootstrap5-dark.scss +1 -0
  228. package/styles/datetimepicker/icons/_bootstrap5.scss +11 -0
  229. package/styles/datetimepicker/icons/_fabric-dark.scss +11 -0
  230. package/styles/datetimepicker/icons/_fabric.scss +11 -0
  231. package/styles/datetimepicker/icons/_fluent-dark.scss +1 -0
  232. package/styles/datetimepicker/icons/_fluent.scss +11 -0
  233. package/styles/datetimepicker/icons/_fusionnew.scss +11 -0
  234. package/styles/datetimepicker/icons/_highcontrast-light.scss +11 -0
  235. package/styles/datetimepicker/icons/_highcontrast.scss +11 -0
  236. package/styles/datetimepicker/icons/_material-dark.scss +53 -0
  237. package/styles/datetimepicker/icons/_material.scss +62 -0
  238. package/styles/datetimepicker/icons/_material3.scss +11 -0
  239. package/styles/datetimepicker/icons/_tailwind-dark.scss +1 -0
  240. package/styles/datetimepicker/icons/_tailwind.scss +11 -0
  241. package/styles/datetimepicker/material-dark.scss +8 -1
  242. package/styles/datetimepicker/material.scss +8 -1
  243. package/styles/datetimepicker/tailwind-dark.scss +8 -1
  244. package/styles/datetimepicker/tailwind.scss +8 -1
  245. package/styles/timepicker/_all.scss +2 -0
  246. package/styles/timepicker/_bootstrap-dark-definition.scss +52 -0
  247. package/styles/timepicker/_bootstrap-definition.scss +49 -0
  248. package/styles/timepicker/_bootstrap4-definition.scss +57 -0
  249. package/styles/timepicker/_bootstrap5-dark-definition.scss +1 -0
  250. package/styles/timepicker/_bootstrap5-definition.scss +58 -0
  251. package/styles/timepicker/_fabric-dark-definition.scss +52 -0
  252. package/styles/timepicker/_fabric-definition.scss +49 -0
  253. package/styles/timepicker/_fluent-dark-definition.scss +1 -0
  254. package/styles/timepicker/_fluent-definition.scss +58 -0
  255. package/styles/timepicker/_fusionnew-definition.scss +58 -0
  256. package/styles/timepicker/_highcontrast-definition.scss +49 -0
  257. package/styles/timepicker/_highcontrast-light-definition.scss +52 -0
  258. package/styles/timepicker/_layout.scss +202 -0
  259. package/styles/timepicker/_material-dark-definition.scss +56 -0
  260. package/styles/timepicker/_material-definition.scss +53 -0
  261. package/styles/timepicker/_tailwind-dark-definition.scss +1 -0
  262. package/styles/timepicker/_tailwind-definition.scss +56 -0
  263. package/styles/timepicker/_theme.scss +100 -0
  264. package/styles/timepicker/bootstrap-dark.scss +6 -1
  265. package/styles/timepicker/bootstrap.scss +6 -1
  266. package/styles/timepicker/bootstrap4.scss +6 -1
  267. package/styles/timepicker/bootstrap5-dark.scss +6 -1
  268. package/styles/timepicker/bootstrap5.scss +6 -1
  269. package/styles/timepicker/fabric-dark.scss +6 -1
  270. package/styles/timepicker/fabric.scss +6 -1
  271. package/styles/timepicker/fluent-dark.scss +6 -1
  272. package/styles/timepicker/fluent.scss +6 -1
  273. package/styles/timepicker/highcontrast-light.scss +6 -1
  274. package/styles/timepicker/highcontrast.scss +6 -1
  275. package/styles/timepicker/icons/_bootstrap-dark.scss +11 -0
  276. package/styles/timepicker/icons/_bootstrap.scss +12 -0
  277. package/styles/timepicker/icons/_bootstrap4.scss +12 -0
  278. package/styles/timepicker/icons/_bootstrap5-dark.scss +1 -0
  279. package/styles/timepicker/icons/_bootstrap5.scss +12 -0
  280. package/styles/timepicker/icons/_fabric-dark.scss +12 -0
  281. package/styles/timepicker/icons/_fabric.scss +12 -0
  282. package/styles/timepicker/icons/_fluent-dark.scss +1 -0
  283. package/styles/timepicker/icons/_fluent.scss +12 -0
  284. package/styles/timepicker/icons/_fusionnew.scss +12 -0
  285. package/styles/timepicker/icons/_highcontrast-light.scss +12 -0
  286. package/styles/timepicker/icons/_highcontrast.scss +12 -0
  287. package/styles/timepicker/icons/_material-dark.scss +40 -0
  288. package/styles/timepicker/icons/_material.scss +42 -0
  289. package/styles/timepicker/icons/_material3.scss +12 -0
  290. package/styles/timepicker/icons/_tailwind-dark.scss +1 -0
  291. package/styles/timepicker/icons/_tailwind.scss +12 -0
  292. package/styles/timepicker/material-dark.scss +6 -1
  293. package/styles/timepicker/material.scss +6 -1
  294. package/styles/timepicker/tailwind-dark.scss +6 -1
  295. package/styles/timepicker/tailwind.scss +6 -1
  296. package/syncfusion-ej2-angular-calendars.d.ts +5 -0
  297. package/@syncfusion/ej2-angular-calendars.es5.js +0 -1028
  298. package/@syncfusion/ej2-angular-calendars.es5.js.map +0 -1
  299. package/@syncfusion/ej2-angular-calendars.js +0 -961
  300. package/@syncfusion/ej2-angular-calendars.js.map +0 -1
  301. package/CHANGELOG.md +0 -1351
  302. package/dist/ej2-angular-calendars.umd.js +0 -1073
  303. package/dist/ej2-angular-calendars.umd.js.map +0 -1
  304. package/dist/ej2-angular-calendars.umd.min.js +0 -11
  305. package/dist/ej2-angular-calendars.umd.min.js.map +0 -1
  306. package/ej2-angular-calendars.d.ts +0 -9
  307. package/ej2-angular-calendars.metadata.json +0 -1
  308. package/postinstall/tagchange.js +0 -18
@@ -0,0 +1,435 @@
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-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
+ }
258
+
259
+ #{if(&, '&', '*')} .e-cancel.e-flat:not(:hover) {
260
+ @if $skin-name == 'tailwind' {
261
+ /* stylelint-disable property-no-vendor-prefix */
262
+ -webkit-tap-highlight-color: transparent;
263
+ background-color: $range-cancel-flat-btn-bgcolor;
264
+ border-color: $range-cancel-flat-btn-border-color;
265
+ box-shadow: $range-cancel-flat-btn-box-shadow;
266
+ color: $range-cancel-flat-btn-color;
267
+ }
268
+ }
269
+
270
+ #{if(&, '&', '*')} .e-apply.e-flat.e-primary:not(:hover):not(:disabled) {
271
+ @if $skin-name == 'tailwind' {
272
+ -webkit-tap-highlight-color: transparent;
273
+ background-color: $range-apply-btn-primary-bgcolor;
274
+ border-color: $range-apply-btn-primary-border-color;
275
+ color: $range-apply-btn-primary-color;
276
+ }
277
+ }
278
+ }
279
+ }
280
+ }
281
+
282
+ //bigger style
283
+ .e-bigger #{&}.e-daterangepicker,
284
+ #{if(&, '&', '*')}.e-bigger#{&}.e-daterangepicker,
285
+ #{if(&, '&', '*')}.e-device#{&}.e-daterangepicker {
286
+ @if $skin-name == 'material' {
287
+ background-color: initial;
288
+ }
289
+ @else if $skin-name == 'Material3' {
290
+ background: initial;
291
+ }
292
+ @else {
293
+ background-color: $range-bg-color;
294
+ }
295
+ padding: $range-popup-padding;
296
+
297
+ #{if(&, '&', '*')} .e-calendar th {
298
+ color: $range-calendar-light-color;
299
+ }
300
+ #{if(&, '&', '*')} .e-start-btn,
301
+ #{if(&, '&', '*')} .e-end-btn {
302
+ background: $range-bg-color;
303
+ @if $skin-name == 'bootstrap4' {
304
+ color: $range-button-font-color;
305
+ }
306
+ @if $skin-name == 'bootstrap5'{
307
+ color: $range-button-font-color;
308
+ }
309
+ }
310
+ #{if(&, '&', '*')} .e-start-btn.e-active,
311
+ #{if(&, '&', '*')} .e-start-btn.e-active:active,
312
+ #{if(&, '&', '*')} .e-end-btn.e-active,
313
+ #{if(&, '&', '*')} .e-end-btn.e-active:active:not([disabled]),
314
+ #{if(&, '&', '*')} .e-start-btn.e-active:hover,
315
+ #{if(&, '&', '*')} .e-end-btn.e-active:hover {
316
+ background: $range-primary-color;
317
+ color: $range-primary-font-color;
318
+ }
319
+ }
320
+
321
+ // apply button override style changes
322
+ .e-daterangepicker.e-popup .e-footer .e-btn.e-apply.e-flat.e-primary,
323
+ .e-daterangepicker.e-popup .e-footer .e-css.e-btn.e-apply.e-flat.e-primary {
324
+ @if ($skin-name == 'bootstrap5' or $skin-name == 'FluentUI') {
325
+ background-color: $apply-buuton-bg;
326
+ border-color: $apply-buuton-bg-border-color;
327
+ color: $apply-buuton-text-color;
328
+ }
329
+ }
330
+
331
+ .e-daterangepicker.e-popup .e-footer .e-btn.e-apply.e-flat.e-primary:hover,
332
+ .e-daterangepicker.e-popup .e-footer .e-css.e-btn.e-apply.e-flat.e-primary:hover {
333
+ @if ($skin-name == 'bootstrap5' or $skin-name == 'FluentUI') {
334
+ background-color: $apply-buuton-hover-bg;
335
+ border-color: $apply-buuton-bg-border-hover-color;
336
+ color: $apply-buuton-text-hover-color;
337
+ }
338
+ }
339
+
340
+ .e-daterangepicker.e-popup .e-footer .e-btn.e-apply.e-flat.e-primary:active,
341
+ .e-daterangepicker.e-popup .e-footer .e-btn.e-apply.e-flat.e-primary.e-active,
342
+ .e-daterangepicker.e-popup .e-footer .e-css.e-btn.e-apply.e-flat.e-primary:active,
343
+ .e-daterangepicker.e-popup .e-footer .e-css.e-btn.e-apply.e-flat.e-primary.e-active {
344
+ @if ($skin-name == 'bootstrap5' or $skin-name == 'FluentUI') {
345
+ background-color: $apply-buuton-active-bg;
346
+ border-color: $apply-buuton-bg-border-active-color;
347
+ color: $apply-buuton-text-active-color;
348
+ }
349
+ }
350
+
351
+ .e-daterangepicker.e-popup .e-footer .e-btn.e-apply.e-flat.e-primary:disabled,
352
+ .e-daterangepicker.e-popup .e-footer .e-btn.e-apply.e-flat.e-primary:disabled,
353
+ .e-daterangepicker.e-popup .e-footer .e-css.e-btn.e-apply.e-flat.e-primary:disabled,
354
+ .e-daterangepicker.e-popup .e-footer .e-css.e-btn.e-apply.e-flat.e-primary:disabled {
355
+ @if ($skin-name == 'bootstrap5' or $skin-name == 'FluentUI') {
356
+ background-color: $range-apply-disabled-background-style;
357
+ border-color: $range-apply-disabled-border-style;
358
+ color: $range-apply-disabled-color;
359
+ }
360
+ }
361
+
362
+ // cancel button override style changes
363
+ .e-daterangepicker.e-popup .e-footer .e-btn.e-flat,
364
+ .e-daterangepicker.e-popup .e-footer .e-css.e-btn.e-flat {
365
+ @if ($skin-name == 'bootstrap5' or $skin-name == 'FluentUI') {
366
+ background-color: $cancel-buuton-bg;
367
+ border-color: $cancel-buuton-bg-border-color;
368
+ color: $cancel-buuton-text-color;
369
+ }
370
+ }
371
+
372
+ .e-daterangepicker.e-popup .e-footer .e-btn.e-flat:hover,
373
+ .e-daterangepicker.e-popup .e-footer .e-css.e-btn.e-flat:hover {
374
+ @if ($skin-name == 'bootstrap5' or $skin-name == 'FluentUI') {
375
+ background-color: $cancel-buuton-hover-bg;
376
+ border-color: $cancel-buuton-bg-border-hover-color;
377
+ color: $cancel-buuton-text-hover-color;
378
+ }
379
+ }
380
+
381
+ .e-daterangepicker.e-popup .e-footer .e-btn.e-flat:active,
382
+ .e-daterangepicker.e-popup .e-footer .e-btn.e-flat.e-active,
383
+ .e-daterangepicker.e-popup .e-footer .e-css.e-btn.e-flat:active,
384
+ .e-daterangepicker.e-popup .e-footer .e-css.e-btn.e-flat.e-active {
385
+ @if ($skin-name == 'bootstrap5' or $skin-name == 'FluentUI') {
386
+ background-color: $cancel-buuton-active-bg;
387
+ border-color: $cancel-buuton-bg-border-active-color;
388
+ color: $cancel-buuton-text-active-color;
389
+ }
390
+ }
391
+
392
+ .e-daterangepicker.e-popup .e-footer .e-btn.e-flat:disabled,
393
+ .e-daterangepicker.e-popup .e-footer .e-btn.e-flat:disabled,
394
+ .e-daterangepicker.e-popup .e-footer .e-css.e-btn.e-flat:disabled,
395
+ .e-daterangepicker.e-popup .e-footer .e-css.e-btn.e-flat:disabled {
396
+ @if ($skin-name == 'bootstrap5' or $skin-name == 'FluentUI') {
397
+ background-color: $range-cancel-disabled-background-style;
398
+ border-color: $range-cancel-disabled-border-style;
399
+ color: $range-cancel-disabled-color;
400
+ }
401
+ }
402
+ }
403
+
404
+ .e-daterangepicker.e-popup .e-calendar .e-content.e-month .e-today.e-range-hover span,
405
+ .e-bigger.e-small .e-calendar .e-content.e-month td.e-today.e-range-hover span.e-day {
406
+ @if $skin-name == 'FluentUI' {
407
+ line-height: $range-today-hover-line-height;
408
+ }
409
+ }
410
+
411
+ .e-daterangepicker.e-popup .e-calendar .e-content .e-other-month.e-today.e-range-hover span,
412
+ .e-bigger.e-small .e-calendar .e-content.e-month td.e-today.e-other-month.e-range-hover span.e-day {
413
+ @if $skin-name == 'FluentUI' {
414
+ line-height: $range-other-hover-line-height;
415
+ }
416
+ }
417
+
418
+ .e-small .e-calendar .e-content.e-month td.e-today.e-range-hover span.e-day,
419
+ .e-small .e-calendar .e-content.e-month td.e-other-month.e-today.e-range-hover span.e-day {
420
+ @if $skin-name == 'FluentUI' {
421
+ line-height: $range-small-today-hover-line-height;
422
+ }
423
+ }
424
+
425
+ .e-bigger .e-calendar .e-content.e-month td.e-today.e-range-hover span.e-day {
426
+ @if $skin-name == 'FluentUI' {
427
+ line-height: $range-bigger-today-hover-line-height;
428
+ }
429
+ }
430
+
431
+ .e-bigger .e-calendar .e-content.e-month td.e-other-month.e-today.e-range-hover span.e-day {
432
+ @if $skin-name == 'FluentUI' {
433
+ line-height: $range-bigger-other-hover-line-height;
434
+ }
435
+ }
@@ -1 +1,7 @@
1
- @import 'ej2-calendars/styles/daterangepicker/bootstrap-dark.scss';
1
+ @import 'ej2-base/styles/bootstrap-dark-definition.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/bootstrap-definition.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/bootstrap4-definition.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/bootstrap5-dark-definition.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/bootstrap5-definition.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/fabric-dark-definition.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/fabric-definition.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/fluent-dark-definition.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/fluent-definition.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/highcontrast-light-definition.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/highcontrast-definition.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,65 @@
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
+ }
@@ -0,0 +1,65 @@
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
+ }