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

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