@syncfusion/ej2-angular-calendars 20.1.57 → 20.1.58-alpha

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