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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (338) hide show
  1. package/esm2020/public_api.mjs +3 -0
  2. package/esm2020/src/calendar/calendar-all.module.mjs +29 -0
  3. package/esm2020/src/calendar/calendar.component.mjs +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 +27 -13
  25. package/schematics/utils/lib-details.d.ts +2 -2
  26. package/src/calendar/calendar-all.module.d.ts +6 -0
  27. package/src/calendar/calendar.component.d.ts +3 -0
  28. package/src/calendar/calendar.module.d.ts +6 -0
  29. package/src/datepicker/datepicker-all.module.d.ts +6 -0
  30. package/src/datepicker/datepicker.component.d.ts +3 -0
  31. package/src/datepicker/datepicker.module.d.ts +6 -0
  32. package/src/daterangepicker/daterangepicker-all.module.d.ts +6 -0
  33. package/src/daterangepicker/daterangepicker.component.d.ts +3 -0
  34. package/src/daterangepicker/daterangepicker.module.d.ts +7 -0
  35. package/src/daterangepicker/presets.directive.d.ts +5 -0
  36. package/src/datetimepicker/datetimepicker-all.module.d.ts +6 -0
  37. package/src/datetimepicker/datetimepicker.component.d.ts +3 -0
  38. package/src/datetimepicker/datetimepicker.module.d.ts +6 -0
  39. package/src/timepicker/timepicker-all.module.d.ts +6 -0
  40. package/src/timepicker/timepicker.component.d.ts +3 -0
  41. package/src/timepicker/timepicker.module.d.ts +6 -0
  42. package/styles/calendar/_all.scss +2 -0
  43. package/styles/calendar/_bootstrap-dark-definition.scss +228 -0
  44. package/styles/calendar/_bootstrap-definition.scss +228 -0
  45. package/styles/calendar/_bootstrap4-definition.scss +228 -0
  46. package/styles/calendar/_bootstrap5-dark-definition.scss +1 -0
  47. package/styles/calendar/_bootstrap5-definition.scss +250 -0
  48. package/styles/calendar/_fabric-dark-definition.scss +192 -0
  49. package/styles/calendar/_fabric-definition.scss +190 -0
  50. package/styles/calendar/_fluent-dark-definition.scss +1 -0
  51. package/styles/calendar/_fluent-definition.scss +252 -0
  52. package/styles/calendar/_fusionnew-definition.scss +250 -0
  53. package/styles/calendar/_highcontrast-definition.scss +189 -0
  54. package/styles/calendar/_highcontrast-light-definition.scss +192 -0
  55. package/styles/calendar/_layout.scss +786 -0
  56. package/styles/calendar/_material-dark-definition.scss +194 -0
  57. package/styles/calendar/_material-definition.scss +189 -0
  58. package/styles/calendar/_material3-dark-definition.scss +1 -0
  59. package/styles/calendar/_material3-definition.scss +195 -0
  60. package/styles/calendar/_tailwind-dark-definition.scss +1 -0
  61. package/styles/calendar/_tailwind-definition.scss +262 -0
  62. package/styles/calendar/_theme.scss +534 -0
  63. package/styles/calendar/bootstrap-dark.scss +5 -1
  64. package/styles/calendar/bootstrap.scss +5 -1
  65. package/styles/calendar/bootstrap4.scss +5 -1
  66. package/styles/calendar/bootstrap5-dark.scss +5 -1
  67. package/styles/calendar/bootstrap5.scss +5 -1
  68. package/styles/calendar/fabric-dark.scss +5 -1
  69. package/styles/calendar/fabric.scss +5 -1
  70. package/styles/calendar/fluent-dark.scss +5 -1
  71. package/styles/calendar/fluent.scss +5 -1
  72. package/styles/calendar/highcontrast-light.scss +5 -1
  73. package/styles/calendar/highcontrast.scss +5 -1
  74. package/styles/calendar/icons/_bootstrap-dark.scss +13 -0
  75. package/styles/calendar/icons/_bootstrap.scss +13 -0
  76. package/styles/calendar/icons/_bootstrap4.scss +13 -0
  77. package/styles/calendar/icons/_bootstrap5-dark.scss +1 -0
  78. package/styles/calendar/icons/_bootstrap5.scss +13 -0
  79. package/styles/calendar/icons/_fabric-dark.scss +13 -0
  80. package/styles/calendar/icons/_fabric.scss +13 -0
  81. package/styles/calendar/icons/_fluent-dark.scss +1 -0
  82. package/styles/calendar/icons/_fluent.scss +13 -0
  83. package/styles/calendar/icons/_fusionnew.scss +13 -0
  84. package/styles/calendar/icons/_highcontrast-light.scss +13 -0
  85. package/styles/calendar/icons/_highcontrast.scss +13 -0
  86. package/styles/calendar/icons/_material-dark.scss +13 -0
  87. package/styles/calendar/icons/_material.scss +13 -0
  88. package/styles/calendar/icons/_material3-dark.scss +1 -0
  89. package/styles/calendar/icons/_material3.scss +13 -0
  90. package/styles/calendar/icons/_tailwind-dark.scss +1 -0
  91. package/styles/calendar/icons/_tailwind.scss +13 -0
  92. package/styles/calendar/material-dark.scss +5 -1
  93. package/styles/calendar/material.scss +5 -1
  94. package/styles/calendar/material3-dark.scss +5 -1
  95. package/styles/calendar/material3.scss +5 -1
  96. package/styles/calendar/tailwind-dark.scss +5 -1
  97. package/styles/calendar/tailwind.scss +5 -1
  98. package/styles/datepicker/_all.scss +2 -0
  99. package/styles/datepicker/_bootstrap-dark-definition.scss +97 -0
  100. package/styles/datepicker/_bootstrap-definition.scss +96 -0
  101. package/styles/datepicker/_bootstrap4-definition.scss +101 -0
  102. package/styles/datepicker/_bootstrap5-dark-definition.scss +1 -0
  103. package/styles/datepicker/_bootstrap5-definition.scss +107 -0
  104. package/styles/datepicker/_fabric-dark-definition.scss +98 -0
  105. package/styles/datepicker/_fabric-definition.scss +95 -0
  106. package/styles/datepicker/_fluent-dark-definition.scss +1 -0
  107. package/styles/datepicker/_fluent-definition.scss +107 -0
  108. package/styles/datepicker/_fusionnew-definition.scss +107 -0
  109. package/styles/datepicker/_highcontrast-definition.scss +96 -0
  110. package/styles/datepicker/_highcontrast-light-definition.scss +99 -0
  111. package/styles/datepicker/_layout.scss +409 -0
  112. package/styles/datepicker/_material-dark-definition.scss +103 -0
  113. package/styles/datepicker/_material-definition.scss +100 -0
  114. package/styles/datepicker/_material3-dark-definition.scss +1 -0
  115. package/styles/datepicker/_material3-definition.scss +116 -0
  116. package/styles/datepicker/_tailwind-dark-definition.scss +1 -0
  117. package/styles/datepicker/_tailwind-definition.scss +105 -0
  118. package/styles/datepicker/_theme.scss +53 -0
  119. package/styles/datepicker/bootstrap-dark.scss +7 -1
  120. package/styles/datepicker/bootstrap.scss +7 -1
  121. package/styles/datepicker/bootstrap4.scss +7 -1
  122. package/styles/datepicker/bootstrap5-dark.scss +7 -1
  123. package/styles/datepicker/bootstrap5.scss +7 -1
  124. package/styles/datepicker/fabric-dark.scss +7 -1
  125. package/styles/datepicker/fabric.scss +7 -1
  126. package/styles/datepicker/fluent-dark.scss +7 -1
  127. package/styles/datepicker/fluent.scss +7 -1
  128. package/styles/datepicker/highcontrast-light.scss +7 -1
  129. package/styles/datepicker/highcontrast.scss +7 -1
  130. package/styles/datepicker/icons/_bootstrap-dark.scss +73 -0
  131. package/styles/datepicker/icons/_bootstrap.scss +72 -0
  132. package/styles/datepicker/icons/_bootstrap4.scss +76 -0
  133. package/styles/datepicker/icons/_bootstrap5-dark.scss +1 -0
  134. package/styles/datepicker/icons/_bootstrap5.scss +76 -0
  135. package/styles/datepicker/icons/_fabric-dark.scss +65 -0
  136. package/styles/datepicker/icons/_fabric.scss +65 -0
  137. package/styles/datepicker/icons/_fluent-dark.scss +1 -0
  138. package/styles/datepicker/icons/_fluent.scss +76 -0
  139. package/styles/datepicker/icons/_fusionnew.scss +76 -0
  140. package/styles/datepicker/icons/_highcontrast-light.scss +72 -0
  141. package/styles/datepicker/icons/_highcontrast.scss +72 -0
  142. package/styles/datepicker/icons/_material-dark.scss +99 -0
  143. package/styles/datepicker/icons/_material.scss +99 -0
  144. package/styles/datepicker/icons/_material3-dark.scss +1 -0
  145. package/styles/datepicker/icons/_material3.scss +79 -0
  146. package/styles/datepicker/icons/_tailwind-dark.scss +1 -0
  147. package/styles/datepicker/icons/_tailwind.scss +76 -0
  148. package/styles/datepicker/material-dark.scss +7 -1
  149. package/styles/datepicker/material.scss +7 -1
  150. package/styles/datepicker/material3-dark.scss +7 -1
  151. package/styles/datepicker/material3.scss +7 -1
  152. package/styles/datepicker/tailwind-dark.scss +7 -1
  153. package/styles/datepicker/tailwind.scss +7 -1
  154. package/styles/daterangepicker/_all.scss +2 -0
  155. package/styles/daterangepicker/_bootstrap-dark-definition.scss +258 -0
  156. package/styles/daterangepicker/_bootstrap-definition.scss +258 -0
  157. package/styles/daterangepicker/_bootstrap4-definition.scss +268 -0
  158. package/styles/daterangepicker/_bootstrap5-dark-definition.scss +1 -0
  159. package/styles/daterangepicker/_bootstrap5-definition.scss +296 -0
  160. package/styles/daterangepicker/_fabric-dark-definition.scss +261 -0
  161. package/styles/daterangepicker/_fabric-definition.scss +258 -0
  162. package/styles/daterangepicker/_fluent-dark-definition.scss +1 -0
  163. package/styles/daterangepicker/_fluent-definition.scss +305 -0
  164. package/styles/daterangepicker/_fusionnew-definition.scss +295 -0
  165. package/styles/daterangepicker/_highcontrast-definition.scss +258 -0
  166. package/styles/daterangepicker/_highcontrast-light-definition.scss +261 -0
  167. package/styles/daterangepicker/_layout.scss +1002 -0
  168. package/styles/daterangepicker/_material-dark-definition.scss +266 -0
  169. package/styles/daterangepicker/_material-definition.scss +266 -0
  170. package/styles/daterangepicker/_material3-dark-definition.scss +1 -0
  171. package/styles/daterangepicker/_material3-definition.scss +278 -0
  172. package/styles/daterangepicker/_tailwind-dark-definition.scss +1 -0
  173. package/styles/daterangepicker/_tailwind-definition.scss +287 -0
  174. package/styles/daterangepicker/_theme.scss +455 -0
  175. package/styles/daterangepicker/bootstrap-dark.scss +7 -1
  176. package/styles/daterangepicker/bootstrap.scss +7 -1
  177. package/styles/daterangepicker/bootstrap4.scss +7 -1
  178. package/styles/daterangepicker/bootstrap5-dark.scss +7 -1
  179. package/styles/daterangepicker/bootstrap5.scss +7 -1
  180. package/styles/daterangepicker/fabric-dark.scss +7 -1
  181. package/styles/daterangepicker/fabric.scss +7 -1
  182. package/styles/daterangepicker/fluent-dark.scss +7 -1
  183. package/styles/daterangepicker/fluent.scss +7 -1
  184. package/styles/daterangepicker/highcontrast-light.scss +7 -1
  185. package/styles/daterangepicker/highcontrast.scss +7 -1
  186. package/styles/daterangepicker/icons/_bootstrap-dark.scss +85 -0
  187. package/styles/daterangepicker/icons/_bootstrap.scss +85 -0
  188. package/styles/daterangepicker/icons/_bootstrap4.scss +94 -0
  189. package/styles/daterangepicker/icons/_bootstrap5-dark.scss +1 -0
  190. package/styles/daterangepicker/icons/_bootstrap5.scss +92 -0
  191. package/styles/daterangepicker/icons/_fabric-dark.scss +85 -0
  192. package/styles/daterangepicker/icons/_fabric.scss +85 -0
  193. package/styles/daterangepicker/icons/_fluent-dark.scss +1 -0
  194. package/styles/daterangepicker/icons/_fluent.scss +92 -0
  195. package/styles/daterangepicker/icons/_fusionnew.scss +92 -0
  196. package/styles/daterangepicker/icons/_highcontrast-light.scss +85 -0
  197. package/styles/daterangepicker/icons/_highcontrast.scss +85 -0
  198. package/styles/daterangepicker/icons/_material-dark.scss +119 -0
  199. package/styles/daterangepicker/icons/_material.scss +119 -0
  200. package/styles/daterangepicker/icons/_material3-dark.scss +1 -0
  201. package/styles/daterangepicker/icons/_material3.scss +129 -0
  202. package/styles/daterangepicker/icons/_tailwind-dark.scss +1 -0
  203. package/styles/daterangepicker/icons/_tailwind.scss +92 -0
  204. package/styles/daterangepicker/material-dark.scss +7 -1
  205. package/styles/daterangepicker/material.scss +7 -1
  206. package/styles/daterangepicker/material3-dark.scss +7 -1
  207. package/styles/daterangepicker/material3.scss +7 -1
  208. package/styles/daterangepicker/tailwind-dark.scss +7 -1
  209. package/styles/daterangepicker/tailwind.scss +7 -1
  210. package/styles/datetimepicker/_all.scss +2 -0
  211. package/styles/datetimepicker/_bootstrap-dark-definition.scss +60 -0
  212. package/styles/datetimepicker/_bootstrap-definition.scss +59 -0
  213. package/styles/datetimepicker/_bootstrap4-definition.scss +65 -0
  214. package/styles/datetimepicker/_bootstrap5-dark-definition.scss +1 -0
  215. package/styles/datetimepicker/_bootstrap5-definition.scss +65 -0
  216. package/styles/datetimepicker/_fabric-dark-definition.scss +60 -0
  217. package/styles/datetimepicker/_fabric-definition.scss +57 -0
  218. package/styles/datetimepicker/_fluent-dark-definition.scss +1 -0
  219. package/styles/datetimepicker/_fluent-definition.scss +65 -0
  220. package/styles/datetimepicker/_fusionnew-definition.scss +65 -0
  221. package/styles/datetimepicker/_highcontrast-definition.scss +57 -0
  222. package/styles/datetimepicker/_highcontrast-light-definition.scss +60 -0
  223. package/styles/datetimepicker/_layout.scss +238 -0
  224. package/styles/datetimepicker/_material-dark-definition.scss +64 -0
  225. package/styles/datetimepicker/_material-definition.scss +62 -0
  226. package/styles/datetimepicker/_material3-dark-definition.scss +1 -0
  227. package/styles/datetimepicker/_material3-definition.scss +71 -0
  228. package/styles/datetimepicker/_tailwind-dark-definition.scss +1 -0
  229. package/styles/datetimepicker/_tailwind-definition.scss +65 -0
  230. package/styles/datetimepicker/_theme.scss +70 -0
  231. package/styles/datetimepicker/bootstrap-dark.scss +8 -1
  232. package/styles/datetimepicker/bootstrap.scss +8 -1
  233. package/styles/datetimepicker/bootstrap4.scss +8 -1
  234. package/styles/datetimepicker/bootstrap5-dark.scss +8 -1
  235. package/styles/datetimepicker/bootstrap5.scss +8 -1
  236. package/styles/datetimepicker/fabric-dark.scss +8 -1
  237. package/styles/datetimepicker/fabric.scss +8 -1
  238. package/styles/datetimepicker/fluent-dark.scss +8 -1
  239. package/styles/datetimepicker/fluent.scss +8 -1
  240. package/styles/datetimepicker/highcontrast-light.scss +8 -1
  241. package/styles/datetimepicker/highcontrast.scss +8 -1
  242. package/styles/datetimepicker/icons/_bootstrap-dark.scss +11 -0
  243. package/styles/datetimepicker/icons/_bootstrap.scss +11 -0
  244. package/styles/datetimepicker/icons/_bootstrap4.scss +11 -0
  245. package/styles/datetimepicker/icons/_bootstrap5-dark.scss +1 -0
  246. package/styles/datetimepicker/icons/_bootstrap5.scss +11 -0
  247. package/styles/datetimepicker/icons/_fabric-dark.scss +11 -0
  248. package/styles/datetimepicker/icons/_fabric.scss +11 -0
  249. package/styles/datetimepicker/icons/_fluent-dark.scss +1 -0
  250. package/styles/datetimepicker/icons/_fluent.scss +11 -0
  251. package/styles/datetimepicker/icons/_fusionnew.scss +11 -0
  252. package/styles/datetimepicker/icons/_highcontrast-light.scss +11 -0
  253. package/styles/datetimepicker/icons/_highcontrast.scss +11 -0
  254. package/styles/datetimepicker/icons/_material-dark.scss +53 -0
  255. package/styles/datetimepicker/icons/_material.scss +62 -0
  256. package/styles/datetimepicker/icons/_material3-dark.scss +1 -0
  257. package/styles/datetimepicker/icons/_material3.scss +11 -0
  258. package/styles/datetimepicker/icons/_tailwind-dark.scss +1 -0
  259. package/styles/datetimepicker/icons/_tailwind.scss +11 -0
  260. package/styles/datetimepicker/material-dark.scss +8 -1
  261. package/styles/datetimepicker/material.scss +8 -1
  262. package/styles/datetimepicker/material3-dark.scss +8 -1
  263. package/styles/datetimepicker/material3.scss +8 -1
  264. package/styles/datetimepicker/tailwind-dark.scss +8 -1
  265. package/styles/datetimepicker/tailwind.scss +8 -1
  266. package/styles/material3-dark.css +0 -224
  267. package/styles/material3-dark.scss +1 -0
  268. package/styles/material3.css +0 -444
  269. package/styles/material3.scss +1 -0
  270. package/styles/timepicker/_all.scss +2 -0
  271. package/styles/timepicker/_bootstrap-dark-definition.scss +80 -0
  272. package/styles/timepicker/_bootstrap-definition.scss +77 -0
  273. package/styles/timepicker/_bootstrap4-definition.scss +85 -0
  274. package/styles/timepicker/_bootstrap5-dark-definition.scss +1 -0
  275. package/styles/timepicker/_bootstrap5-definition.scss +86 -0
  276. package/styles/timepicker/_fabric-dark-definition.scss +80 -0
  277. package/styles/timepicker/_fabric-definition.scss +77 -0
  278. package/styles/timepicker/_fluent-dark-definition.scss +1 -0
  279. package/styles/timepicker/_fluent-definition.scss +86 -0
  280. package/styles/timepicker/_fusionnew-definition.scss +86 -0
  281. package/styles/timepicker/_highcontrast-definition.scss +77 -0
  282. package/styles/timepicker/_highcontrast-light-definition.scss +80 -0
  283. package/styles/timepicker/_layout.scss +287 -0
  284. package/styles/timepicker/_material-dark-definition.scss +84 -0
  285. package/styles/timepicker/_material-definition.scss +81 -0
  286. package/styles/timepicker/_material3-dark-definition.scss +1 -0
  287. package/styles/timepicker/_material3-definition.scss +99 -0
  288. package/styles/timepicker/_tailwind-dark-definition.scss +1 -0
  289. package/styles/timepicker/_tailwind-definition.scss +84 -0
  290. package/styles/timepicker/_theme.scss +113 -0
  291. package/styles/timepicker/bootstrap-dark.scss +6 -1
  292. package/styles/timepicker/bootstrap.scss +6 -1
  293. package/styles/timepicker/bootstrap4.scss +6 -1
  294. package/styles/timepicker/bootstrap5-dark.scss +6 -1
  295. package/styles/timepicker/bootstrap5.scss +6 -1
  296. package/styles/timepicker/fabric-dark.scss +6 -1
  297. package/styles/timepicker/fabric.scss +6 -1
  298. package/styles/timepicker/fluent-dark.scss +6 -1
  299. package/styles/timepicker/fluent.scss +6 -1
  300. package/styles/timepicker/highcontrast-light.scss +6 -1
  301. package/styles/timepicker/highcontrast.scss +6 -1
  302. package/styles/timepicker/icons/_bootstrap-dark.scss +23 -0
  303. package/styles/timepicker/icons/_bootstrap.scss +24 -0
  304. package/styles/timepicker/icons/_bootstrap4.scss +24 -0
  305. package/styles/timepicker/icons/_bootstrap5-dark.scss +1 -0
  306. package/styles/timepicker/icons/_bootstrap5.scss +24 -0
  307. package/styles/timepicker/icons/_fabric-dark.scss +24 -0
  308. package/styles/timepicker/icons/_fabric.scss +24 -0
  309. package/styles/timepicker/icons/_fluent-dark.scss +1 -0
  310. package/styles/timepicker/icons/_fluent.scss +24 -0
  311. package/styles/timepicker/icons/_fusionnew.scss +24 -0
  312. package/styles/timepicker/icons/_highcontrast-light.scss +24 -0
  313. package/styles/timepicker/icons/_highcontrast.scss +24 -0
  314. package/styles/timepicker/icons/_material-dark.scss +52 -0
  315. package/styles/timepicker/icons/_material.scss +54 -0
  316. package/styles/timepicker/icons/_material3-dark.scss +1 -0
  317. package/styles/timepicker/icons/_material3.scss +24 -0
  318. package/styles/timepicker/icons/_tailwind-dark.scss +1 -0
  319. package/styles/timepicker/icons/_tailwind.scss +24 -0
  320. package/styles/timepicker/material-dark.scss +6 -1
  321. package/styles/timepicker/material.scss +6 -1
  322. package/styles/timepicker/material3-dark.scss +6 -1
  323. package/styles/timepicker/material3.scss +6 -1
  324. package/styles/timepicker/tailwind-dark.scss +6 -1
  325. package/styles/timepicker/tailwind.scss +6 -1
  326. package/syncfusion-ej2-angular-calendars.d.ts +5 -0
  327. package/@syncfusion/ej2-angular-calendars.es5.js +0 -1028
  328. package/@syncfusion/ej2-angular-calendars.es5.js.map +0 -1
  329. package/@syncfusion/ej2-angular-calendars.js +0 -961
  330. package/@syncfusion/ej2-angular-calendars.js.map +0 -1
  331. package/CHANGELOG.md +0 -1382
  332. package/dist/ej2-angular-calendars.umd.js +0 -1073
  333. package/dist/ej2-angular-calendars.umd.js.map +0 -1
  334. package/dist/ej2-angular-calendars.umd.min.js +0 -11
  335. package/dist/ej2-angular-calendars.umd.min.js.map +0 -1
  336. package/ej2-angular-calendars.d.ts +0 -9
  337. package/ej2-angular-calendars.metadata.json +0 -1
  338. package/postinstall/tagchange.js +0 -18
package/CHANGELOG.md DELETED
@@ -1,1382 +0,0 @@
1
- # Changelog
2
-
3
- ## [Unreleased]
4
-
5
- ### DateRangePicker
6
-
7
- #### Bug Fixes
8
-
9
- - `#I486181` - Fixed an issue where the DateRangePicker popup was not opening when there was not enough space in the window.
10
-
11
- ## 22.2.8 (2023-08-08)
12
-
13
- ### TimePicker
14
-
15
- #### Features
16
-
17
- - `#I480992` - Added support for configuring server time zone settings to the component. The `serverTimezoneOffset` property can now be used to set the pre-bound value based on the time zone provided to the component.
18
-
19
- ## 21.1.34 (2023-06-21)
20
-
21
- ### DatePicker
22
-
23
- #### Features
24
-
25
- - Added support for full screen calendar in mobile mode with landscape and portrait orientations. Enable the feature by setting fullScreenMode property to true.
26
-
27
- ### DateRangePicker
28
-
29
- #### Features
30
-
31
- - Added support for full screen calendar in mobile mode with landscape and portrait orientations. Enable the feature by setting fullScreenMode property to true.
32
-
33
- ### DateTimePicker
34
-
35
- #### Features
36
-
37
- - Added support for full screen calendar in mobile mode with landscape and portrait orientations. Enable the feature by setting fullScreenMode property to true.
38
-
39
- ## 19.3.46 (2021-10-19)
40
-
41
- ### TimePicker
42
-
43
- #### Bug Fixes
44
-
45
- - `#I342551` - Issue with "unable to select the time from the popup when its has selected class" has been resolved.
46
-
47
- ## 19.2.44 (2021-06-30)
48
-
49
- ### DatePicker
50
-
51
- #### New Features
52
-
53
- - `#I245933` , `#F147808` - Now, you can enable the masked input using `enableMask` property.
54
-
55
- ### DateTimePicker
56
-
57
- #### New Features
58
-
59
- - `#I299471` - Now, you can enable the masked input using `enableMask` property.
60
-
61
- ### TimePicker
62
-
63
- #### New Features
64
-
65
- - Now, you can enable the masked input using `enableMask` property.
66
-
67
- ## 18.4.34 (2021-01-12)
68
-
69
- ### DateTimePicker
70
-
71
- #### Bug Fixes
72
-
73
- - `#309143` - Issue with "timepicker popup is not opened when render component with `openOnFocus` as true and click on the time icon" has been resolved.
74
-
75
- ## 18.3.52 (2020-12-01)
76
-
77
- ### Calendar
78
-
79
- #### Bug Fixes
80
-
81
- - `#304117`,`#304560` - EJ1 and EJ2 controls theme compatibility issue resolved.
82
-
83
- ### DatePicker
84
-
85
- #### Bug Fixes
86
-
87
- - `#304117`,`#304560` - EJ1 and EJ2 controls theme compatibility issue resolved.
88
-
89
- ### DateTimePicker
90
-
91
- #### Bug Fixes
92
-
93
- - `#304117`,`#304560` - EJ1 and EJ2 controls theme compatibility issue resolved.
94
-
95
- ### DateRangePicker
96
-
97
- #### Bug Fixes
98
-
99
- - `#304117`,`#304560` - EJ1 and EJ2 controls theme compatibility issue resolved.
100
-
101
- ### TimePicker
102
-
103
- #### Bug Fixes
104
-
105
- - `#304117`,`#304560` - EJ1 and EJ2 controls theme compatibility issue resolved.
106
-
107
- ## 18.3.51 (2020-11-24)
108
-
109
- ### DatePicker
110
-
111
- #### Bug Fixes
112
-
113
- - `#301613` - Issue with "week number is not updated properly in first week of the year" has been resolved.
114
-
115
- - `#300567`, `#299294`- Issue with "dirty and pristine is not updated properly while resetting the form with values" has been resolved.
116
-
117
- #### Breaking Changes
118
-
119
- - While setting the datepicker value programmatically, the `change` event will not trigger.
120
-
121
- ### DateRangePicker
122
-
123
- #### Bug Fixes
124
-
125
- - `#300567`, `#299294`- Issue with "dirty and pristine is not updated properly while resetting the form with values" has been resolved.
126
-
127
- #### Breaking Changes
128
-
129
- - While setting the daterangepicker value programmatically, the `change` event will not trigger.
130
-
131
- ### DateTimePicker
132
-
133
- #### Bug Fixes
134
-
135
- - `#300567`, `#299294`- Issue with "dirty and pristine is not updated properly while resetting the form with values" has been resolved.
136
-
137
- #### Breaking Changes
138
-
139
- - While setting the datetimepicker value programmatically, the `change` event will not trigger.
140
-
141
- ### TimePicker
142
-
143
- #### Bug Fixes
144
-
145
- - `#300567`, `#299294`- Issue with "dirty and pristine is not updated properly while resetting the form with values" has been resolved.
146
-
147
- #### Breaking Changes
148
-
149
- - While setting the timepicker value programmatically, the `change` event will not trigger.
150
-
151
- ### Calendar
152
-
153
- #### Bug Fixes
154
-
155
- - `#299743` - Issue with "week number is not updated properly in first week of the year" has been resolved.
156
-
157
- ## 18.3.40 (2020-10-13)
158
-
159
- ### DateRangePicker
160
-
161
- #### Bug Fixes
162
-
163
- - `#288129` - Issue with "values cannot be chosen while updating UTC time as start date and end date" has been resolved.
164
-
165
- ## 18.2.44 (2020-07-07)
166
-
167
- ### DatePicker
168
-
169
- #### New Features
170
-
171
- - `#274484`,`F145781` - Provided option to open the popup while focusing the input element.
172
-
173
- ### DateTimePicker
174
-
175
- #### New Features
176
-
177
- - `#274484`,`F145781` - Provided option to open the popup while focusing the input element.
178
-
179
- ### TimePicker
180
-
181
- #### New Features
182
-
183
- - `#274484`,`F145781` - Provided option to open the popup while focusing the input element.
184
-
185
- ### DateRangePicker
186
-
187
- #### New Features
188
-
189
- - `#274484`,`F145781` - Provided option to open the popup while focusing the input element.
190
-
191
- ## 18.1.43 (2020-04-07)
192
-
193
- ### TimePicker
194
-
195
- #### Bug Fixes
196
-
197
- - `#266088`- Now, you can use focusOut method inside close event.
198
-
199
- ### DateRangePicker
200
-
201
- #### Bug Fixes
202
-
203
- - `#263008`- Issue with "script error throws while navigating month using previous and next icon in the mobile mode" has been resolved.
204
-
205
- ## 17.4.50 (2020-02-18)
206
-
207
- ### DateRangePicker
208
-
209
- #### Bug Fixes
210
-
211
- - `#256702` - Issue with "consecutive month is displayed while drill down the left or right calendar" has been resolved.
212
-
213
- ### Calendar
214
-
215
- #### Bug Fixes
216
-
217
- - Now, selection style is applied to the previous month selected date in the current month view.
218
-
219
- ## 17.4.49 (2020-02-11)
220
-
221
- ### DateTimePicker
222
-
223
- #### Bug Fixes
224
-
225
- - Issue with script error throws while selecting value from popup in touch mode has been resolved.
226
-
227
- ## 17.4.47 (2020-02-05)
228
-
229
- ### DatePicker
230
-
231
- #### Bug Fixes
232
-
233
- - `#260342` - Issue with "input not focus while already opened the another datepicker" has been resolved.
234
-
235
- ### TimePicker
236
-
237
- #### Bug Fixes
238
-
239
- - `#261538` - Issue with script error throws while selecting value from popup in touch mode has been resolved.
240
-
241
- ## 17.4.46 (2020-01-30)
242
-
243
- ### DatePicker
244
-
245
- #### Bug Fixes
246
-
247
- - `#260342` - Issue with "datepicker popup not closed while use `shift+tab`" has been resolved.
248
-
249
- ## 17.4.43 (2020-01-14)
250
-
251
- ### Calendar
252
-
253
- #### Bug Fixes
254
-
255
- - Issue with "datepicker popup not opened in IE browser" has been resolved.
256
-
257
- ## 17.4.41 (2020-01-07)
258
-
259
- ### Calendar
260
-
261
- #### Bug Fixes
262
-
263
- - Issue with "change event triggered while again click on the selected month in month view" has been resolved.
264
-
265
- ## 17.4.40 (2019-12-24)
266
-
267
- ### DateRangePicker
268
-
269
- #### Bug Fixes
270
-
271
- - Issue with "popup not opened by using alt + down key while enabling JAWS" has been resolved.
272
-
273
- ### DateTimePicker
274
-
275
- #### Bug Fixes
276
-
277
- - `#257448` - Issue with "timepicker popup not destroyed while destroy the datetimepicker on close event" has been resolved.
278
-
279
- ## 17.4.39 (2019-12-17)
280
-
281
- ### DateRangePicker
282
-
283
- #### Bug Fixes
284
-
285
- - `#255630` - Issue with "change event argument `isInteracted` return as false while select the range from presets" has been resolved.
286
-
287
- - `#F149064` - Issue with "script error throws while navigate month in mobile mode" has been resolved.
288
-
289
- ## 17.3.27 (2019-11-12)
290
-
291
- ### DateTimePicker
292
-
293
- #### New Features
294
-
295
- - `#147796` - Now, you can get the cleared event when clear the DateTimePicker's value using clear button.
296
-
297
- ### DatePicker
298
-
299
- #### New Features
300
-
301
- - `#147796` - Now, you can get the cleared event when clear the DatePicker's value using clear button.
302
-
303
- ### TimePicker
304
-
305
- #### New Features
306
-
307
- - `#147796` - Now, you can get the cleared event when clear the TimePicker's value using clear button.
308
-
309
- ### DateRangePicker
310
-
311
- #### New Features
312
-
313
- - `#147796` - Now, you can get the cleared event when clear the DateRangePicker's value using clear button.
314
-
315
- undefined- `#250743` - Issue with "script error occurs while selecting values in mobile emulator" has been resolved.
316
-
317
- ## 17.3.26 (2019-11-05)
318
-
319
- ### DateTimePicker
320
-
321
- #### New Features
322
-
323
- - `#249683` - Now, you can set the server time zone for initial date value process using `serverTimezoneOffset` property.
324
-
325
- ### Calendar
326
-
327
- #### New Features
328
-
329
- - `#246049` - Now, month name, day name are capitalized for all localization.
330
-
331
- ## 17.3.19 (2019-10-22)
332
-
333
- ### TimePicker
334
-
335
- #### Bug Fixes
336
-
337
- - `#248416` - In mobile device, TimePicker popup displays in the center of the viewport.
338
-
339
- ## 17.2.49 (2019-09-04)
340
-
341
- ### DatePicker
342
-
343
- #### Bug Fixes
344
-
345
- - `#244043` - Issue with "datepicker popup not closed while choose the same date value" has been resolved.
346
-
347
- ## 17.2.41 (2019-08-14)
348
-
349
- ### DateRangePicker
350
-
351
- #### Bug Fixes
352
-
353
- - `#F146493` - Issue with "DateRangePicker popup not opened on the second click action in iPad devices" has been resolved.
354
-
355
- ## 17.2.36 (2019-07-24)
356
-
357
- ### DatePicker
358
-
359
- #### Bug Fixes
360
-
361
- - `#236828` - Resolved the `accessibility` related issue in DatePicker.
362
-
363
- ## 17.2.35 (2019-07-17)
364
-
365
- ### DatePicker
366
-
367
- #### Bug Fixes
368
-
369
- - `#F145575` - Now, existing `cssClass` removed when change the `cssClass` dynamically.
370
-
371
- ### DateRangePicker
372
-
373
- #### Bug Fixes
374
-
375
- - `#F145575` - Now, existing `cssClass` removed when change the `cssClass` dynamically.
376
-
377
- ### DateTimePicker
378
-
379
- #### Bug Fixes
380
-
381
- - `#F145575` - Now, existing `cssClass` removed when change the `cssClass` dynamically.
382
-
383
- ### TimePicker
384
-
385
- #### Bug Fixes
386
-
387
- - `#F145575` - Now, existing `cssClass` removed when change the `cssClass` dynamically.
388
-
389
- ## 17.2.34 (2019-07-11)
390
-
391
- ### DateTimePicker
392
-
393
- #### Bug Fixes
394
-
395
- - #239623 - Now, TimePicker popup closed properly in Edge/IE browsers when place more number of DateTimePicker in single page.
396
- - `#240491` - Now, you can change the today button visibility dynamically along with min and max datetime.
397
-
398
- ## 17.2.28-beta (2019-06-27)
399
-
400
- ### Calendar
401
-
402
- #### New Features
403
-
404
- - #233255, #232782 - Now, you can change the day header format of calendar using 'dayHeaderFormat' property.
405
-
406
- ### DatePicker
407
-
408
- #### New Features
409
-
410
- - #228310, #233267 - Now, you can add additional html attribute to the element using `htmlAttributes` property.
411
-
412
- #### Bug Fixes
413
-
414
- - #231616, #234495 - In mobile device, DatePicker popup displays in the center of the viewport.
415
- - #238455 – Now, change event argument `isInteracted` return as true when edit the date value using keyboard.
416
-
417
- - #228296 – When click on the date icon, calendar popup and keyboard get opened issue has been fixed.
418
-
419
-
420
- ### DateRangePicker
421
-
422
- #### New Features
423
-
424
- - #228310, #233267 - Now, you can add additional html attribute to the element using `htmlAttributes` property.
425
-
426
- #### Bug Fixes
427
-
428
- - #231616, #234495 - In mobile device, DateRangePicker popup displays in the center of the viewport.
429
-
430
- ### DateTimePicker
431
-
432
- #### New Features
433
-
434
- - #228310, #233267 - Now, you can add additional html attribute to the element using `htmlAttributes` property.
435
-
436
- ### TimePicker
437
-
438
- #### New Features
439
-
440
- - #228310, #233267 - Now, you can add additional html attribute to the element using `htmlAttributes` property.
441
-
442
- ## 17.1.49 (2019-05-29)
443
-
444
- ### DatePicker
445
-
446
- #### Bug Fixes
447
-
448
- - #235561 - Now, you can specify the date format without `year` specifier along with strict mode.
449
-
450
- ## 17.1.48 (2019-05-21)
451
-
452
- ### Calendar
453
-
454
- #### Bug Fixes
455
-
456
- - #235561 - Now, you can navigate year within min and max range in decade view.
457
-
458
- ### DatePicker
459
-
460
- #### Bug Fixes
461
-
462
- - #216875 - Issue with some additional text appended to all day numbers when choose `Japanese` culture has been fixed.
463
-
464
- ### DateRangePicker
465
-
466
- #### Bug Fixes
467
-
468
- - #233687 - Issue with change event trigger twice when provide date format without date specifier has been fixed.
469
-
470
- ## 17.1.43 (2019-04-30)
471
-
472
- ### DatePicker
473
-
474
- - #143352 - Now, the DatePicker fires input's blur when click outside without select the date from calendar popup.
475
- - #233877 - Now, you can enter the same date value after form reset.
476
-
477
- ### DateTimePicker
478
-
479
- - #233877 - Now, you can enter the same datetime value after form reset.
480
-
481
- ## 17.1.42 (2019-04-23)
482
-
483
- ### DateRangePicker
484
-
485
- #### Bug Fixes
486
-
487
- - #232966 - Now, you can clear daterangepicker input value using keyboard when strict mode is enabled.
488
-
489
- ## 17.1.41 (2019-04-16)
490
-
491
- ### DatePicker
492
-
493
- #### Bug Fixes
494
-
495
- - #231875 - Now, you can enable the clear button dynamically after disabled the control.
496
- - #F143747 - Now, you can set min and max value as null dynamically.
497
-
498
- ### DateTimePicker
499
-
500
- #### Bug Fixes
501
-
502
- - #231596, #232441 - Issue with clear button not shown when disable the `allowEdit` property has been fixed.
503
-
504
- ### DateRangePicker
505
-
506
- #### Bug Fixes
507
-
508
- - #231596, #232441 - Issue with clear button not shown when disable the `allowEdit` property has been fixed.
509
-
510
- ### TimePicker
511
-
512
- #### Bug Fixes
513
-
514
- - #231596, #232441 - Issue with clear button not shown when disable the `allowEdit` property has been fixed.
515
- - #231003 - Issue with different icon size in bootstrap theme has been fixed.
516
-
517
- ## 17.1.32-beta (2019-03-13)
518
-
519
- ### DatePicker
520
-
521
- #### Bug Fixes
522
-
523
- - Issue with clear button not shown when disable the `allowEdit` property has been fixed.
524
- - In iOS device, keyboard is not closed when clicking on the date picker button issue has been fixed.
525
-
526
- ### DateRangePicker
527
-
528
- #### New Features
529
-
530
- - Now, you can move to a particular date without UI interaction using `NavigateTo` method.
531
- - Provided option to set the start and depth level view of the calendar.
532
-
533
- ### DateTimePicker
534
-
535
- #### New Features
536
-
537
- - Now, you can provide datetime value as a string to the DateTimePicker.
538
-
539
- ## 16.4.55 (2019-02-27)
540
-
541
- ### DatePicker
542
-
543
- #### Bug Fixes
544
-
545
- - Resolved the issue with today button text not updated when dynamically change the localization of the page.
546
-
547
- ## 16.4.54 (2019-02-19)
548
-
549
- ### DatePicker
550
-
551
- #### Bug Fixes
552
-
553
- - Issue with, “DatePicker not restoring the initial value on form reset” has been fixed.
554
-
555
- ### DateRangePicker
556
-
557
- #### Bug Fixes
558
-
559
- - Issue with, “DateRangePicker not restoring the initial value on form reset” has been fixed.
560
- - Now year values are shown in the selected range of decade view.
561
-
562
- ### DateTimePicker
563
-
564
- #### Bug Fixes
565
-
566
- - Issue with, “DateTimePicker not restoring the initial value on form reset” has been fixed.
567
-
568
- ### TimePicker
569
-
570
- #### Bug Fixes
571
-
572
- - Issue with, “TimePicker not restoring the initial value on form reset” has been fixed.
573
-
574
- ## 16.4.53 (2019-02-13)
575
-
576
- ### DatePicker
577
-
578
- #### Bug Fixes
579
-
580
- - Fixed the form validation class `ng-dirty` issue in Angular forms.
581
-
582
- ### DateRangePicker
583
-
584
- #### Bug Fixes
585
-
586
- - Fixed the form validation class `ng-dirty` issue in Angular forms.
587
-
588
- ### DateTimePicker
589
-
590
- #### Bug Fixes
591
-
592
- - Fixed the form validation class `ng-dirty` issue in Angular forms.
593
-
594
- ### TimePicker
595
-
596
- #### Bug Fixes
597
-
598
- - Fixed the form validation class `ng-dirty` issue in Angular forms.
599
-
600
- ## 16.4.52 (2019-02-05)
601
-
602
- ### Calendar
603
-
604
- #### Bug Fixes
605
-
606
- - Tabindex support has been provided.
607
-
608
- ### DatePicker
609
-
610
- #### New Features
611
-
612
- - Now, date type skeleton support has been provided for the format property.
613
-
614
- #### Bug Fixes
615
-
616
- - Tabindex support has been provided.
617
-
618
- ### DateTimePicker
619
-
620
- #### New Features
621
-
622
- - Now, scrollTo support has been added for the TimePicker pop-up element of the DateTimePicker. This is used to set the scroll position to the given time value when no value is selected in the popup list.
623
-
624
- #### Bug Fixes
625
-
626
- - Tabindex support has been provided.
627
-
628
- ### DateRangePicker
629
-
630
- #### Bug Fixes
631
-
632
- - Tabindex support has been provided.
633
-
634
- ### TimePicker
635
-
636
- #### Bug Fixes
637
-
638
- - Tabindex support has been provided.
639
-
640
- ## 17.1.1-beta (2019-01-29)
641
-
642
- ### TimePicker
643
-
644
- #### Breaking Changes
645
-
646
- - TimePicker pop-up will position at the center of the viewport in mobile resolution.
647
-
648
- ## 16.4.47 (2019-01-16)
649
-
650
- ### TimePicker
651
-
652
- #### Bug Fixes
653
-
654
- - TimePicker will allow assigning string value when type system configuration is disabled.
655
-
656
- ## 16.4.46 (2019-01-08)
657
-
658
- ### TimePicker
659
-
660
- #### New Features
661
-
662
- - Pop-up positioning support has been provided.
663
-
664
- ## 16.4.45 (2019-01-02)
665
-
666
- ### DatePicker
667
-
668
- #### Bug Fixes
669
-
670
- - DatePicker will allow assigning string value when type system configuration is disabled.
671
-
672
- ## 16.4.44 (2018-12-24)
673
-
674
- ### DatePicker
675
-
676
- #### Bug Fixes
677
-
678
- - Fixed the `allowEdit` issue in mobile mode.
679
-
680
- ### DateRangePicker
681
-
682
- #### Bug Fixes
683
-
684
- - Fixed the localization issue in preset `custom range` element.
685
-
686
- ### TimePicker
687
-
688
- #### Bug Fixes
689
-
690
- - Fixed the component destroy issue when `showClearButton` in disabled state.
691
-
692
- ## 16.4.42 (2018-12-14)
693
-
694
- ### Calendar
695
-
696
- #### New Features
697
-
698
- - Added the Islamic calendar support.
699
-
700
- ### DatePicker
701
-
702
- #### New Features
703
-
704
- - Added the Islamic DatePicker support.
705
-
706
- ### DateTimePicker
707
-
708
- #### New Features
709
-
710
- - Added the Islamic DateTimePicker support.
711
-
712
- ## 16.4.40-beta (2018-12-10)
713
-
714
- ### DatePicker
715
-
716
- #### Bug Fixes
717
-
718
- - Selecting a value with the Enter key will not bubble up the event to its ancestor elements.
719
-
720
- ### TimePicker
721
-
722
- #### Bug Fixes
723
-
724
- - Selecting a value with the Enter key will not bubble up the event to its ancestor elements.
725
-
726
- ## 16.3.31 (2018-11-07)
727
-
728
- ### DatePicker
729
-
730
- #### Bug Fixes
731
-
732
- - Fixed the form reset issue in Internet Explorer.
733
-
734
- ### DateRangePicker
735
-
736
- #### Bug Fixes
737
-
738
- - Fixed the form reset issue in Internet Explorer.
739
-
740
- ## 16.3.29 (2018-10-31)
741
-
742
- ### DatePicker
743
-
744
- #### Bug Fixes
745
-
746
- - Added multiple class name support for the `cssClass` property.
747
-
748
- ### DateRangePicker
749
-
750
- #### Bug Fixes
751
-
752
- - Added multiple class name support for the `cssClass` property.
753
-
754
- ### TimePicker
755
-
756
- #### Bug Fixes
757
-
758
- - Added multiple class name support for the `cssClass` property.
759
-
760
- ## 16.3.27 (2018-10-23)
761
-
762
- ### DateRangePicker
763
-
764
- #### Bug Fixes
765
-
766
- - Fixed the form reset handler issue while destroying the component.
767
-
768
- ## 16.3.25 (2018-10-15)
769
-
770
- ### DateRangePicker
771
-
772
- #### Bug Fixes
773
-
774
- - Fixed the `strictMode` issue.
775
-
776
- ## 16.3.17 (2018-09-12)
777
-
778
- ### Calendar
779
-
780
- #### New Features
781
-
782
- - Multiple date selection support has been included.
783
-
784
- ### DateTimePicker
785
-
786
- #### Bug Fixes
787
-
788
- - Now, the pop-up element can be append to the target element by using the `AppendTo` argument in open event.
789
-
790
- ### DateRangePicker
791
-
792
- #### Bug Fixes
793
-
794
- - Now, the pop-up element can be append to the target element by using the `AppendTo` argument in open event.
795
-
796
- ### TimePicker
797
-
798
- #### Bug Fixes
799
-
800
- - Now, the pop-up element can be append to the target element by using the `AppendTo` argument in open event.
801
-
802
- ## 16.2.52 (2018-09-04)
803
-
804
- ### DateTimePicker
805
-
806
- #### Bug Fixes
807
-
808
- - DateTimePicker value will now accept the date values (without time) while entering value in the input element.
809
-
810
- ## 16.2.50 (2018-08-28)
811
-
812
- ### DatePicker
813
-
814
- #### Bug Fixes
815
-
816
- - Added `AppendTo` argument in the open event to specifies which node to be appended on the pop-up element.
817
- - Fixed the validation issue in mobile devices.
818
-
819
- ### DateRangePicker
820
-
821
- #### Bug Fixes
822
-
823
- - The Value can be obtained in the code-behind, while posting the selected value from the DateRangePicker control.
824
- - Now, the entire properties of pop-up element of DateRangePicker can be customized in the `open` event.
825
-
826
- ## 16.2.47 (2018-08-07)
827
-
828
- ### DateRangePicker
829
-
830
- #### Bug Fixes
831
-
832
- - Now the `firstDayOfWeek` property will be updated based on the culture specific. Also, to get the firstday related information, then it is mandatory to load the `weekData.json` file from the `CLDR` data.
833
- - Angular form rest for the invalid value in the textbox issue has been fixed.
834
-
835
- ### DatePicker
836
-
837
- #### Bug Fixes
838
-
839
- - Now the `firstDayOfWeek` property will be updated based on the culture specific. Also, to get the firstday related information, then it is mandatory to load the `weekData.json` file from the `CLDR` data.
840
-
841
- ### DateTimePicker
842
-
843
- #### Bug Fixes
844
-
845
- - Now the `firstDayOfWeek` property will be updated based on the culture specific. Also, to get the firstday related information, then it is mandatory to load the `weekData.json` file from the `CLDR` data.
846
-
847
- ### Calendar
848
-
849
- #### Bug Fixes
850
-
851
- - Now the `firstDayOfWeek` property will be updated based on the culture specific. Also, to get the firstday related information, then it is mandatory to load the `weekData.json` file from the `CLDR` data.
852
-
853
- ## 16.2.46 (2018-07-30)
854
-
855
- ### DatePicker
856
-
857
- #### New Features
858
-
859
- - Support for `allowEdit` property has been provided for DatePicker component that allows to edit the value in the input element.
860
-
861
- #### Bug Fixes
862
-
863
- - Float label state are not restored after resetting the form issue has been fixed.
864
-
865
- ### DateRangePicker
866
-
867
- #### New Features
868
-
869
- - Support for `allowEdit` property has been provided for DateRangePicker component that allows to edit the value in the input element.
870
-
871
- ### DateTimePicker
872
-
873
- #### New Features
874
-
875
- - Support for `allowEdit` property has been provided for DateTimePicker component that allows to edit the value in the input element.
876
-
877
- #### Bug Fixes
878
-
879
- - Float label state are not restored after resetting the form issue has been fixed.
880
-
881
- ### TimePicker
882
-
883
- #### New Features
884
-
885
- - Support for `allowEdit` property has been provided for TimePicker component that allows to edit the value in the input element.
886
-
887
- #### Bug Fixes
888
-
889
- - Float label state are not restored after resetting the form issue has been fixed.
890
-
891
- ## 16.2.45 (2018-07-17)
892
-
893
- ### DateRangePicker
894
-
895
- #### New Features
896
-
897
- - Added the custom object support for the value property with the start and end keys.
898
-
899
- ## 16.2.44 (2018-07-10)
900
-
901
- ### DateRangePicker
902
-
903
- #### Bug Fixes
904
-
905
- - Float label state are not restored after resetting the form issue has been fixed.
906
-
907
- ## 16.2.43 (2018-07-03)
908
-
909
- ### DateRangePicker
910
-
911
- #### Bug Fixes
912
-
913
- - Invalid value are not cleared in the textbox after resetting the form issue has been fixed.
914
-
915
- ## 16.2.41 (2018-06-25)
916
-
917
- ### Calendars
918
-
919
- #### Breaking Changes
920
-
921
- - Newly added `ColorPicker` component in input package requires `SplitButton` dependency, So now it's mandatory to include the `ej2-splitbuttons.umd.min.js` in system.js configuration if your using system.js module loader.
922
- - Update the `system.js` configuration while going with this version and above.
923
- - Today button will act as a primary button in high contrast, bootstrap and fabric themes.
924
-
925
- #### New Features
926
-
927
- - Event arguments for all Calendar components has been streamlined.
928
-
929
- ### DateRangePicker
930
-
931
- #### Breaking Changes
932
-
933
- - `Value` parameter obtained in change event argument has been changed from `string type to array of date object` and the `string` value from the input element can be obtained from the `text` parameter of the argument.
934
-
935
- ### TimePicker
936
-
937
- #### Breaking Changes
938
-
939
- - In change event, the parameter `e` has been changed to `event`.
940
-
941
- ## 16.1.49 (2018-06-20)
942
-
943
- ### DateTimePicker
944
-
945
- - TimePicker popup is not closing while clicking outside of the window issue has been fixed.
946
-
947
- ## 16.1.48 (2018-06-13)
948
-
949
- ### DateRangePicker
950
-
951
- #### Bug Fixes
952
-
953
- - Selection is not maintained in the month with start date in the left calendar, while performing drill down in the right calendar has been fixed.
954
-
955
- ## 16.1.45 (2018-05-23)
956
-
957
- ### DateRangePicker
958
-
959
- #### New Features
960
-
961
- - `DrillDown` support has been provided for DateRangePicker component that allows to quick navigate back and forth from month and year views to select a range easier.
962
- - `Value` property support has been provided for DateRangePicker component to set a date range.
963
-
964
- ## 16.1.42 (2018-05-15)
965
-
966
- ### DateTimePicker
967
-
968
- #### Bug Fixes
969
-
970
- - `ngOnDestroy` related issues with destroying DateTimePicker component has been fixed.
971
-
972
- ## 16.1.38 (2018-05-02)
973
-
974
- ### Common
975
-
976
- #### Bug Fixes
977
-
978
- - Now, Date parser will return the `null` value while parsing invalid date string.
979
-
980
- ## 16.1.35 (2018-04-17)
981
-
982
- ### DateRangePicker
983
-
984
- #### Bug Fixes
985
-
986
- - `focusIn` and `focusOut` methods has been included.
987
- - `focus` and `blur` events has been included.
988
-
989
- ## 16.1.34 (2018-04-10)
990
-
991
- ### Common
992
-
993
- #### Bug Fixes
994
-
995
- - Issue with Calendar date generation in `UTC+00:00` time zone has been fixed.
996
-
997
- ## 16.1.33 (2018-04-03)
998
-
999
- ### Common
1000
-
1001
- #### Bug Fixes
1002
-
1003
- - Rendering issue on going with `UTC+00:00` time zone has been fixed.
1004
-
1005
- ## 16.1.32 (2018-03-29)
1006
-
1007
- ### DateRangePicker
1008
-
1009
- #### Bug Fixes
1010
-
1011
- - DateRangePicker popup will not open while enabling the `readOnly` property.
1012
-
1013
- ### DateTimePicker
1014
-
1015
- #### Bug Fixes
1016
-
1017
- - Focus and blur events triggers multiple times in DateTimePicker control has been fixed.
1018
- - DateTimePicker throws script error while clicking today button in IE browser has been fixed.
1019
-
1020
- #### Breaking Changes
1021
-
1022
- - The out of range value will be the value of the component and highlighted with error class.
1023
-
1024
- ### Calendar
1025
-
1026
- #### Bug Fixes
1027
-
1028
- - Calendar throws script error while clicking today button in IE browser has been fixed.
1029
-
1030
- ### DatePicker
1031
-
1032
- #### Bug Fixes
1033
-
1034
- - DatePicker throws script error while clicking today button in IE browser has been fixed.
1035
-
1036
- ### TimePicker
1037
-
1038
- #### Breaking Changes
1039
-
1040
- - The out of range value will be the value of the component and highlighted with error class.
1041
-
1042
- ## 16.1.29 (2018-03-13)
1043
-
1044
- ### Common
1045
-
1046
- #### Bug Fixes
1047
-
1048
- - `Width` property with string type value issue has been fixed.
1049
-
1050
- ## 16.1.28 (2018-03-09)
1051
-
1052
- ### DatePicker
1053
-
1054
- #### Breaking Changes
1055
-
1056
- - DatePicker maintains null value, while entering the out of range(min/max) issue has been fixed.
1057
-
1058
- ## 16.1.24 (2018-02-22)
1059
-
1060
- ### Common
1061
-
1062
- #### Breaking Changes
1063
-
1064
- - Changed the Angular component selector, component name prefix with `ejs` e.g: `ejs-calendar`.
1065
- - Event arguments and it's parameter values are same.
1066
- - Popup open in read-only mode issue has been fixed.
1067
-
1068
- #### New Features
1069
-
1070
- - High contrast theme support.
1071
-
1072
- ### DateRangePicker
1073
-
1074
- #### New Features
1075
-
1076
- - DateRangePicker rendered based on the screen resolution.
1077
- - `DateTime` support has been provided for DateRangePicker.
1078
- - Input type `date` has been handled in DateRangePicker.
1079
-
1080
- ### DatePicker
1081
-
1082
- #### Breaking Changes
1083
-
1084
- - Pascal casing change to `start` and `depth` property values (`Month`, `Year`, `Decade`).
1085
- - Focus the input when select the value from the DatePicker popup.
1086
-
1087
- #### New Features
1088
-
1089
- - `Today` button support has been provided for DatePicker.
1090
- - Input type `date` has been handled in DatePicker.
1091
-
1092
- ### TimePicker
1093
-
1094
- #### Breaking Changes
1095
-
1096
- - Pascal casing change to `start` and `depth` property values (`Month`, `Year`, `Decade`).
1097
-
1098
- #### New Features
1099
-
1100
- - Added `itemRender` support for the TimePicker which allows to customize each time values in a popup list.
1101
- - Input type `time` has been handled in TimePicker.
1102
- - Added `scrollTo` support for the TimePicker which is used to set the scroll position to the given time value when no value is selected in the popup list or the given value is not present in the popup list.
1103
-
1104
- ### Calendar
1105
-
1106
- #### Breaking Changes
1107
-
1108
- - Pascal casing change to `start` and `depth` property values (`Month`, `Year`, `Decade`).
1109
-
1110
- #### New Features
1111
-
1112
- - `Today` button support has been provided for Calendar.
1113
-
1114
- ### DateTimePicker
1115
-
1116
- DateTimePicker component for selecting or entering a date and time with options for disabling dates, restricting selection and showing custom events.
1117
-
1118
-
1119
- - **Range Restriction** – Allows to select a date and time within a specified range.
1120
- - **Format** – Formatting the value displayed in a textbox.
1121
- - **Customization** – Allows to customize each day and time cell of the Calendar and time popup list.
1122
- - **Strict Mode** - Allows to enter the only valid date and time in a textbox.
1123
- - **Accessibility** - Provided with built-in accessibility support which helps to access all the DateTimePicker component features through the keyboard, screen readers, or other assistive technology devices.
1124
-
1125
- ## 15.4.26-preview (2018-01-23)
1126
-
1127
- ### DateRangePicker
1128
-
1129
- #### Bug Fixes
1130
-
1131
- - Select event will be triggered when selecting the start and end date.
1132
-
1133
- ## 15.4.25-preview (2018-01-09)
1134
-
1135
- ### DatePicker
1136
-
1137
- #### Bug Fixes
1138
-
1139
- - Width and form validation related issues has been fixed.
1140
-
1141
- ## 15.4.23-preview (2017-12-27)
1142
-
1143
- ### Common
1144
-
1145
- #### New Features
1146
-
1147
- - Added typing file for ES5 global scripts (`dist/global/index.d.ts`).
1148
-
1149
- #### Breaking Changes
1150
-
1151
- - Modified the module bundle file name for ES6 bundling.
1152
-
1153
- ### DatePicker, DateRangePicker and TimePicker
1154
-
1155
- #### Bug Fixes
1156
-
1157
- - Popup repositions will not work while scrolling on the fixed element, this has been fixed.
1158
-
1159
- ## 15.4.21-preview (2017-12-08)
1160
-
1161
- ### DatePicker
1162
-
1163
- #### Bug Fixes
1164
-
1165
- - Popup position issue in mobile layout has been fixed.
1166
-
1167
- ## 15.4.20-preview (2017-12-01)
1168
-
1169
- ### Common
1170
-
1171
- #### New Features
1172
-
1173
- - Upgraded TypeScript version to 2.6.2
1174
-
1175
- ### Calendar
1176
-
1177
- #### Bug Fixes
1178
-
1179
- - issue on rendering the current month in European Time zone has been fixed.
1180
-
1181
- ### DatePicker
1182
-
1183
- #### Bug Fixes
1184
-
1185
- - issue on rendering the current month in European Time zone has been fixed.
1186
- - **showClearButton** - Allows to clear the textbox and model values.
1187
- - **zIndex** - allows to set the z-index value to the popup element.
1188
-
1189
- ### DateRangePicker
1190
-
1191
- #### Bug Fixes
1192
-
1193
- - **showClearButton** - Allows to clear the textbox and model values.
1194
- - **zIndex** - allows to set the z-index value to the popup element.
1195
-
1196
- ### TimePicker
1197
-
1198
- #### Bug Fixes
1199
-
1200
- - **showClearButton** - Allows to clear the textbox and model values.
1201
- - **zIndex** - allows to set the z-index value to the popup element.
1202
-
1203
- ## 15.4.17-preview (2017-11-13)
1204
-
1205
- ### Calendar
1206
-
1207
- Calendar interface for selecting dates with options for disabling dates, restricting selection and showing custom events.
1208
-
1209
-
1210
- - **Range Restriction** - Allows to select a date within a specified date range.
1211
- - **Start and Depth View** - Allows to change the initial view and navigation depth of the Calendar.
1212
- - **Customization** - Allows to customize the each day cell of the calendar.
1213
- - **Accessibility** - Provided with built-in accessibility support which helps to access all the Calendar component features through the keyboard, screen readers, or other assistive technology devices.
1214
-
1215
- ### DatePicker
1216
-
1217
- DatePicker component for selecting or entering a date with options for disabling dates,
1218
- restricting selection and showing custom events.
1219
-
1220
-
1221
- - **Range Restriction** - Allows to select a date within a specified date range.
1222
- - **Format** - Formatting the value displayed in a textbox.
1223
- - **Start and Depth View** - Allows to change the initial view and navigation depth of the Calendar.
1224
- - **Customization** - Allows to customize the each day cell of the calendar.
1225
- - **StrictMode** - Allows to entering the only valid date in a textbox.
1226
- - **Accessibility** - Provided with built-in accessibility support which helps to access all the DatePicker component features through the keyboard, screen readers, or other assistive technology devices.
1227
-
1228
- ### DateRangePicker
1229
-
1230
- DateRangePicker component that allows user to select the date range from the calendar
1231
- or entering the range through the input element.
1232
-
1233
-
1234
- - **Presets** - Allows to define the customized predefined set of ranges.
1235
- - **Day Span** - Select the data span between the ranges to avoid excess or less date selection.
1236
- - **Range Restriction** - Control the date range selection within a specified range.
1237
- - **Format** - Formatting the value displayed in a textbox.
1238
- - **Customization** - Allows to customize the each day cell of the calendar.
1239
- - **StrictMode** - Allows to entering the only valid date in a textbox.
1240
- - **Accessibility** - Provided with built-in accessibility support which helps to access all the DateRangePicker component features through the keyboard, screen readers, or other assistive technology devices.
1241
-
1242
- ### TimePicker
1243
-
1244
- TimePicker component is the pre-filled dropdown list with the time values 12/24 hours format, that allows to select a time from the list.
1245
-
1246
-
1247
- - **Range Restriction** - Allows to select a time within a specified time range.
1248
- - **Format** - Formatting the value displayed in a textbox.
1249
- - **Step** - Provides the option to increment/decrement time value in a popup list.
1250
- - **StrictMode** - Allows to entering the only valid time in a textbox.
1251
- - **Accessibility** - Provided with built-in accessibility support which helps to access all the TimePicker component features through the keyboard, screen readers, or other assistive technology devices.
1252
-
1253
-
1254
- ## 22.1.38 (2023-07-11)
1255
-
1256
- ### DatePicker
1257
-
1258
- #### Bug Fixes
1259
-
1260
- - `#I476762` - Resolved the issue with "classes e-filled and e-outline not working for mobile when fullScreenMode is enabled"
1261
-
1262
- ### DateTimePicker
1263
-
1264
- #### Bug Fixes
1265
-
1266
- - `#I476762` - Resolved the issue with "classes e-filled and e-outline not working for mobile when fullScreenMode is enabled"
1267
-
1268
- ## 19.3.56 (2021-12-02)
1269
-
1270
- ### TimePicker
1271
-
1272
- #### Bug Fixes
1273
-
1274
- - `#I346567` - Issue with "typed value is not updated in the masked timepicker while typing the value and focus out the component" has been resolved.
1275
- - `#FB30118` - Issue with "hours to minutes segment switching is not worked while typing the hours value that starting with zero" has been resolved.
1276
-
1277
- ## 19.3.44 (2021-10-05)
1278
-
1279
- ### DateTimePicker
1280
-
1281
- #### Bug Fixes
1282
-
1283
- - `#F168372` - Issue with "invalid date time is updated to the input while enabling the masked date time" has been resolved.
1284
-
1285
- ### DatePicker
1286
-
1287
- #### Bug Fixes
1288
-
1289
- - `#FB27745` - Issue with "day to month segment switching is not worked while typing the day value that starting with zero" has been resolved.
1290
-
1291
- ## 19.2.62 (2021-09-14)
1292
-
1293
- ### DateTimePicker
1294
-
1295
- #### Bug Fixes
1296
-
1297
- - `#F168372` - Issue with "invalid date time is updated to the input while enabling the masked date time" has been resolved.
1298
-
1299
- ## 19.2.47 (2021-07-13)
1300
-
1301
- ### DatePicker
1302
-
1303
- #### Bug Fixes
1304
-
1305
- - `#I334467` - Issue with "input is not disabled while disabling the `formControlName` using form group" has been resolved.
1306
-
1307
- ## 19.1.64 (2021-05-19)
1308
-
1309
- ### DateRangePicker
1310
-
1311
- #### Bug Fixes
1312
-
1313
- - `#I325926` - Issue with "custom range popup shows always in the presets popup while rendering the component with preset range as date time value and selecting any presets range from popup" has been resolved.
1314
-
1315
- ## 19.1.55 (2021-04-06)
1316
-
1317
- ### DatePicker
1318
-
1319
- #### Bug Fixes
1320
-
1321
- - `#319099` - Issue with "dirty and pristine is not updated properly while performing the disable and reset the form simultaneously" has been resolved.
1322
-
1323
- ### DateRangePicker
1324
-
1325
- #### Bug Fixes
1326
-
1327
- - `#319099` - Issue with "dirty and pristine is not updated properly while performing the disable and reset the form simultaneously" has been resolved.
1328
-
1329
- ### DateTimePicker
1330
-
1331
- #### Bug Fixes
1332
-
1333
- - `#319099` - Issue with "dirty and pristine is not updated properly while performing the disable and reset the form simultaneously" has been resolved.
1334
-
1335
- ## 18.4.43 (2021-02-16)
1336
-
1337
- ### DatePicker
1338
-
1339
- #### Bug Fixes
1340
-
1341
- - `#314484` - Issue with "dirty and pristine are not updated properly while resetting the form" has been resolved.
1342
-
1343
- ## 18.4.39 (2021-01-28)
1344
-
1345
- ### DatePicker
1346
-
1347
- #### Bug Fixes
1348
-
1349
- - `#309782` - Issue with "datepicker popup is not opened when disable the form and enable the datepicker control" has been resolved.
1350
-
1351
- ## 18.4.35 (2021-01-19)
1352
-
1353
- ### Calendar
1354
-
1355
- #### New Features
1356
-
1357
- - `#302472` - Now, you can change the rule for defining the first week of the year using `weekRule` property.
1358
-
1359
- ## 18.4.31 (2020-12-22)
1360
-
1361
- ### DateRangePicker
1362
-
1363
- #### Bug Fixes
1364
-
1365
- - `#291772`- Issue with "popup gets closed while dynamically changing the max days property in select event" has been resolved.
1366
-
1367
- ## 18.3.42 (2020-10-20)
1368
-
1369
- ### Calendar
1370
-
1371
- #### Bug Fixes
1372
-
1373
- - `#292562`- Issue with " isInteracted change event argument return as false while clicking on the today button" has been resolved.
1374
-
1375
- ## 18.1.53 (2020-05-19)
1376
-
1377
- ### DatePicker
1378
-
1379
- #### Bug Fixes
1380
-
1381
- - `#275716`- Issue with "script error occurs when disable the clear icon dynamically" has been resolved.
1382
-