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

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