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

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