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