@syncfusion/ej2-angular-calendars 30.2.4-ngcc → 30.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 (55) hide show
  1. package/CHANGELOG.md +1389 -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 +20 -7
  26. package/public_api.d.ts +1 -1
  27. package/src/calendar/calendar-all.module.d.ts +13 -7
  28. package/src/calendar/calendar.component.d.ts +45 -42
  29. package/src/calendar/calendar.module.d.ts +11 -5
  30. package/src/datepicker/datepicker-all.module.d.ts +13 -7
  31. package/src/datepicker/datepicker.component.d.ts +48 -45
  32. package/src/datepicker/datepicker.module.d.ts +11 -5
  33. package/src/daterangepicker/daterangepicker-all.module.d.ts +11 -5
  34. package/src/daterangepicker/daterangepicker.component.d.ts +60 -57
  35. package/src/daterangepicker/daterangepicker.module.d.ts +12 -5
  36. package/src/daterangepicker/presets.directive.d.ts +43 -38
  37. package/src/datetimepicker/datetimepicker-all.module.d.ts +11 -5
  38. package/src/datetimepicker/datetimepicker.component.d.ts +48 -45
  39. package/src/datetimepicker/datetimepicker.module.d.ts +11 -5
  40. package/src/index.d.ts +17 -17
  41. package/src/timepicker/timepicker-all.module.d.ts +11 -5
  42. package/src/timepicker/timepicker.component.d.ts +47 -44
  43. package/src/timepicker/timepicker.module.d.ts +11 -5
  44. package/syncfusion-ej2-angular-calendars.d.ts +5 -0
  45. package/@syncfusion/ej2-angular-calendars.es5.js +0 -1048
  46. package/@syncfusion/ej2-angular-calendars.es5.js.map +0 -1
  47. package/@syncfusion/ej2-angular-calendars.js +0 -981
  48. package/@syncfusion/ej2-angular-calendars.js.map +0 -1
  49. package/LICENSE +0 -10
  50. package/dist/ej2-angular-calendars.umd.js +0 -1093
  51. package/dist/ej2-angular-calendars.umd.js.map +0 -1
  52. package/dist/ej2-angular-calendars.umd.min.js +0 -11
  53. package/dist/ej2-angular-calendars.umd.min.js.map +0 -1
  54. package/ej2-angular-calendars.d.ts +0 -9
  55. package/ej2-angular-calendars.metadata.json +0 -1
package/CHANGELOG.md ADDED
@@ -0,0 +1,1389 @@
1
+ # Changelog
2
+
3
+ ## [Unreleased]
4
+
5
+ ## 30.1.37 (2025-06-25)
6
+
7
+ ### DatePicker
8
+
9
+ #### New Features
10
+
11
+ - The DatePicker allows users to input date values in various valid formats, enhancing the user experience by offering flexibility in specifying date formats for parsing. A new API called `inputFormats` has been introduced to handle custom date input formats, allowing users to specify the expected format(s) for parsing date values. For example, `InputFormats = 'new string[] { "dd/MM/yyyy", "MM/dd/yyyy", "yyyy-MM-dd" }'`.
12
+
13
+ ### DateTimePicker
14
+
15
+ #### New Features
16
+
17
+ - The DateTimePicker allows users to input date and time values in various valid formats, enhancing the user experience by offering flexibility in specifying date and time formats for parsing. A new API called `inputFormats` has been introduced to handle custom date and time input formats, allowing users to specify the expected format(s) for parsing date and time values. For example, `InputFormats='new string[] { "dd/MM/yyyy hh:mm", "MM/dd/yyyy HH:mm", "yyyy-MM-dd hh mm tt" }'`.
18
+
19
+ ### DateRangePicker
20
+
21
+ #### New Features
22
+
23
+ - The DateRangePicker allows users to input date values in various valid formats, enhancing the user experience by offering flexibility in specifying date formats for parsing. A new API called `inputFormats` has been introduced to handle custom date input formats, allowing users to specify the expected format(s) for parsing date and time values. For example, `InputFormats='new string[] { "dd/MM/yyyy - dd/MM/yyyy", "MM/dd/yyyy - MM/dd/yyyy", "yyyy-MM-dd - yyyy-MM-dd" }'`.
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
+
383
+ - `#240491` - Now, you can change the today button visibility dynamically along with min and max datetime.
384
+
385
+ ## 17.2.28-beta (2019-06-27)
386
+
387
+ ### Calendar
388
+
389
+ #### New Features
390
+
391
+ - #233255, #232782 - Now, you can change the day header format of calendar using 'dayHeaderFormat' property.
392
+
393
+ ### DatePicker
394
+
395
+ #### New Features
396
+
397
+ - #228310, #233267 - Now, you can add additional html attribute to the element using `htmlAttributes` property.
398
+
399
+ #### Bug Fixes
400
+
401
+ - #231616, #234495 - In mobile device, DatePicker popup displays in the center of the viewport.
402
+
403
+ - #238455 – Now, change event argument `isInteracted` return as true when edit the date value using keyboard.
404
+
405
+ - #228296 – When click on the date icon, calendar popup and keyboard get opened issue has been fixed.### DateRangePicker
406
+
407
+ #### New Features
408
+
409
+ - #228310, #233267 - Now, you can add additional html attribute to the element using `htmlAttributes` property.
410
+
411
+ #### Bug Fixes
412
+
413
+ - #231616, #234495 - In mobile device, DateRangePicker popup displays in the center of the viewport.
414
+
415
+ ### DateTimePicker
416
+
417
+ #### New Features
418
+
419
+ - #228310, #233267 - Now, you can add additional html attribute to the element using `htmlAttributes` property.
420
+
421
+ ### TimePicker
422
+
423
+ #### New Features
424
+
425
+ - #228310, #233267 - Now, you can add additional html attribute to the element using `htmlAttributes` property.
426
+
427
+ ## 17.1.49 (2019-05-29)
428
+
429
+ ### DatePicker
430
+
431
+ #### Bug Fixes
432
+
433
+ - #235561 - Now, you can specify the date format without `year` specifier along with strict mode.
434
+
435
+ ## 17.1.48 (2019-05-21)
436
+
437
+ ### Calendar
438
+
439
+ #### Bug Fixes
440
+
441
+ - #235561 - Now, you can navigate year within min and max range in decade view.
442
+
443
+ ### DatePicker
444
+
445
+ #### Bug Fixes
446
+
447
+ - #216875 - Issue with some additional text appended to all day numbers when choose `Japanese` culture has been fixed.
448
+
449
+ ### DateRangePicker
450
+
451
+ #### Bug Fixes
452
+
453
+ - #233687 - Issue with change event trigger twice when provide date format without date specifier has been fixed.
454
+
455
+ ## 17.1.43 (2019-04-30)
456
+
457
+ ### DatePicker
458
+
459
+ - #143352 - Now, the DatePicker fires input's blur when click outside without select the date from calendar popup.
460
+
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
+
483
+ - #F143747 - Now, you can set min and max value as null dynamically.
484
+
485
+ ### DateTimePicker
486
+
487
+ #### Bug Fixes
488
+
489
+ - #231596, #232441 - Issue with clear button not shown when disable the `allowEdit` property has been fixed.
490
+
491
+ ### DateRangePicker
492
+
493
+ #### Bug Fixes
494
+
495
+ - #231596, #232441 - Issue with clear button not shown when disable the `allowEdit` property has been fixed.
496
+
497
+ ### TimePicker
498
+
499
+ #### Bug Fixes
500
+
501
+ - #231596, #232441 - Issue with clear button not shown when disable the `allowEdit` property has been fixed.
502
+
503
+ - #231003 - Issue with different icon size in bootstrap theme has been fixed.
504
+
505
+ ## 17.1.32-beta (2019-03-13)
506
+
507
+ ### DatePicker
508
+
509
+ #### Bug Fixes
510
+
511
+ - Issue with clear button not shown when disable the `allowEdit` property has been fixed.
512
+
513
+ - In iOS device, keyboard is not closed when clicking on the date picker button issue has been fixed.
514
+
515
+ ### DateRangePicker
516
+
517
+ #### New Features
518
+
519
+ - Now, you can move to a particular date without UI interaction using `NavigateTo` method.
520
+
521
+ - Provided option to set the start and depth level view of the calendar.
522
+
523
+ ### DateTimePicker
524
+
525
+ #### New Features
526
+
527
+ - Now, you can provide datetime value as a string to the DateTimePicker.
528
+
529
+ ## 16.4.55 (2019-02-27)
530
+
531
+ ### DatePicker
532
+
533
+ #### Bug Fixes
534
+
535
+ - Resolved the issue with today button text not updated when dynamically change the localization of the page.
536
+
537
+ ## 16.4.54 (2019-02-19)
538
+
539
+ ### DatePicker
540
+
541
+ #### Bug Fixes
542
+
543
+ - Issue with, “DatePicker not restoring the initial value on form reset” has been fixed.
544
+
545
+ ### DateRangePicker
546
+
547
+ #### Bug Fixes
548
+
549
+ - Issue with, “DateRangePicker not restoring the initial value on form reset” has been fixed.
550
+
551
+ - Now year values are shown in the selected range of decade view.
552
+
553
+ ### DateTimePicker
554
+
555
+ #### Bug Fixes
556
+
557
+ - Issue with, “DateTimePicker not restoring the initial value on form reset” has been fixed.
558
+
559
+ ### TimePicker
560
+
561
+ #### Bug Fixes
562
+
563
+ - Issue with, “TimePicker not restoring the initial value on form reset” has been fixed.
564
+
565
+ ## 16.4.53 (2019-02-13)
566
+
567
+ ### DatePicker
568
+
569
+ #### Bug Fixes
570
+
571
+ - Fixed the form validation class `ng-dirty` issue in Angular forms.
572
+
573
+ ### DateRangePicker
574
+
575
+ #### Bug Fixes
576
+
577
+ - Fixed the form validation class `ng-dirty` issue in Angular forms.
578
+
579
+ ### DateTimePicker
580
+
581
+ #### Bug Fixes
582
+
583
+ - Fixed the form validation class `ng-dirty` issue in Angular forms.
584
+
585
+ ### TimePicker
586
+
587
+ #### Bug Fixes
588
+
589
+ - Fixed the form validation class `ng-dirty` issue in Angular forms.
590
+
591
+ ## 16.4.52 (2019-02-05)
592
+
593
+ ### Calendar
594
+
595
+ #### Bug Fixes
596
+
597
+ - Tabindex support has been provided.
598
+
599
+ ### DatePicker
600
+
601
+ #### New Features
602
+
603
+ - Now, date type skeleton support has been provided for the format property.
604
+
605
+ #### Bug Fixes
606
+
607
+ - Tabindex support has been provided.
608
+
609
+ ### DateTimePicker
610
+
611
+ #### New Features
612
+
613
+ - 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.
614
+
615
+ #### Bug Fixes
616
+
617
+ - Tabindex support has been provided.
618
+
619
+ ### DateRangePicker
620
+
621
+ #### Bug Fixes
622
+
623
+ - Tabindex support has been provided.
624
+
625
+ ### TimePicker
626
+
627
+ #### Bug Fixes
628
+
629
+ - Tabindex support has been provided.
630
+
631
+ ## 17.1.1-beta (2019-01-29)
632
+
633
+ ### TimePicker
634
+
635
+ #### Breaking Changes
636
+
637
+ - TimePicker pop-up will position at the center of the viewport in mobile resolution.
638
+
639
+ ## 16.4.47 (2019-01-16)
640
+
641
+ ### TimePicker
642
+
643
+ #### Bug Fixes
644
+
645
+ - TimePicker will allow assigning string value when type system configuration is disabled.
646
+
647
+ ## 16.4.46 (2019-01-08)
648
+
649
+ ### TimePicker
650
+
651
+ #### New Features
652
+
653
+ - Pop-up positioning support has been provided.
654
+
655
+ ## 16.4.45 (2019-01-02)
656
+
657
+ ### DatePicker
658
+
659
+ #### Bug Fixes
660
+
661
+ - DatePicker will allow assigning string value when type system configuration is disabled.
662
+
663
+ ## 16.4.44 (2018-12-24)
664
+
665
+ ### DatePicker
666
+
667
+ #### Bug Fixes
668
+
669
+ - Fixed the `allowEdit` issue in mobile mode.
670
+
671
+ ### DateRangePicker
672
+
673
+ #### Bug Fixes
674
+
675
+ - Fixed the localization issue in preset `custom range` element.
676
+
677
+ ### TimePicker
678
+
679
+ #### Bug Fixes
680
+
681
+ - Fixed the component destroy issue when `showClearButton` in disabled state.
682
+
683
+ ## 16.4.42 (2018-12-14)
684
+
685
+ ### Calendar
686
+
687
+ #### New Features
688
+
689
+ - Added the Islamic calendar support.
690
+
691
+ ### DatePicker
692
+
693
+ #### New Features
694
+
695
+ - Added the Islamic DatePicker support.
696
+
697
+ ### DateTimePicker
698
+
699
+ #### New Features
700
+
701
+ - Added the Islamic DateTimePicker support.
702
+
703
+ ## 16.4.40-beta (2018-12-10)
704
+
705
+ ### DatePicker
706
+
707
+ #### Bug Fixes
708
+
709
+ - Selecting a value with the Enter key will not bubble up the event to its ancestor elements.
710
+
711
+ ### TimePicker
712
+
713
+ #### Bug Fixes
714
+
715
+ - Selecting a value with the Enter key will not bubble up the event to its ancestor elements.
716
+
717
+ ## 16.3.31 (2018-11-07)
718
+
719
+ ### DatePicker
720
+
721
+ #### Bug Fixes
722
+
723
+ - Fixed the form reset issue in Internet Explorer.
724
+
725
+ ### DateRangePicker
726
+
727
+ #### Bug Fixes
728
+
729
+ - Fixed the form reset issue in Internet Explorer.
730
+
731
+ ## 16.3.29 (2018-10-31)
732
+
733
+ ### DatePicker
734
+
735
+ #### Bug Fixes
736
+
737
+ - Added multiple class name support for the `cssClass` property.
738
+
739
+ ### DateRangePicker
740
+
741
+ #### Bug Fixes
742
+
743
+ - Added multiple class name support for the `cssClass` property.
744
+
745
+ ### TimePicker
746
+
747
+ #### Bug Fixes
748
+
749
+ - Added multiple class name support for the `cssClass` property.
750
+
751
+ ## 16.3.27 (2018-10-23)
752
+
753
+ ### DateRangePicker
754
+
755
+ #### Bug Fixes
756
+
757
+ - Fixed the form reset handler issue while destroying the component.
758
+
759
+ ## 16.3.25 (2018-10-15)
760
+
761
+ ### DateRangePicker
762
+
763
+ #### Bug Fixes
764
+
765
+ - Fixed the `strictMode` issue.
766
+
767
+ ## 16.3.17 (2018-09-12)
768
+
769
+ ### Calendar
770
+
771
+ #### New Features
772
+
773
+ - Multiple date selection support has been included.
774
+
775
+ ### DateTimePicker
776
+
777
+ #### Bug Fixes
778
+
779
+ - Now, the pop-up element can be append to the target element by using the `AppendTo` argument in open event.
780
+
781
+ ### DateRangePicker
782
+
783
+ #### Bug Fixes
784
+
785
+ - Now, the pop-up element can be append to the target element by using the `AppendTo` argument in open event.
786
+
787
+ ### TimePicker
788
+
789
+ #### Bug Fixes
790
+
791
+ - Now, the pop-up element can be append to the target element by using the `AppendTo` argument in open event.
792
+
793
+ ## 16.2.52 (2018-09-04)
794
+
795
+ ### DateTimePicker
796
+
797
+ #### Bug Fixes
798
+
799
+ - DateTimePicker value will now accept the date values (without time) while entering value in the input element.
800
+
801
+ ## 16.2.50 (2018-08-28)
802
+
803
+ ### DatePicker
804
+
805
+ #### Bug Fixes
806
+
807
+ - Added `AppendTo` argument in the open event to specifies which node to be appended on the pop-up element.
808
+
809
+ - Fixed the validation issue in mobile devices.
810
+
811
+ ### DateRangePicker
812
+
813
+ #### Bug Fixes
814
+
815
+ - The Value can be obtained in the code-behind, while posting the selected value from the DateRangePicker control.
816
+
817
+ - Now, the entire properties of pop-up element of DateRangePicker can be customized in the `open` event.
818
+
819
+ ## 16.2.47 (2018-08-07)
820
+
821
+ ### DateRangePicker
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
+ - Angular form rest for the invalid value in the textbox issue has been fixed.
828
+
829
+ ### DatePicker
830
+
831
+ #### Bug Fixes
832
+
833
+ - 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.
834
+
835
+ ### DateTimePicker
836
+
837
+ #### Bug Fixes
838
+
839
+ - 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.
840
+
841
+ ### Calendar
842
+
843
+ #### Bug Fixes
844
+
845
+ - 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.
846
+
847
+ ## 16.2.46 (2018-07-30)
848
+
849
+ ### DatePicker
850
+
851
+ #### New Features
852
+
853
+ - Support for `allowEdit` property has been provided for DatePicker component that allows to edit the value in the input element.
854
+
855
+ #### Bug Fixes
856
+
857
+ - Float label state are not restored after resetting the form issue has been fixed.
858
+
859
+ ### DateRangePicker
860
+
861
+ #### New Features
862
+
863
+ - Support for `allowEdit` property has been provided for DateRangePicker component that allows to edit the value in the input element.
864
+
865
+ ### DateTimePicker
866
+
867
+ #### New Features
868
+
869
+ - Support for `allowEdit` property has been provided for DateTimePicker component that allows to edit the value in the input element.
870
+
871
+ #### Bug Fixes
872
+
873
+ - Float label state are not restored after resetting the form issue has been fixed.
874
+
875
+ ### TimePicker
876
+
877
+ #### New Features
878
+
879
+ - Support for `allowEdit` property has been provided for TimePicker component that allows to edit the value in the input element.
880
+
881
+ #### Bug Fixes
882
+
883
+ - Float label state are not restored after resetting the form issue has been fixed.
884
+
885
+ ## 16.2.45 (2018-07-17)
886
+
887
+ ### DateRangePicker
888
+
889
+ #### New Features
890
+
891
+ - Added the custom object support for the value property with the start and end keys.
892
+
893
+ ## 16.2.44 (2018-07-10)
894
+
895
+ ### DateRangePicker
896
+
897
+ #### Bug Fixes
898
+
899
+ - Float label state are not restored after resetting the form issue has been fixed.
900
+
901
+ ## 16.2.43 (2018-07-03)
902
+
903
+ ### DateRangePicker
904
+
905
+ #### Bug Fixes
906
+
907
+ - Invalid value are not cleared in the textbox after resetting the form issue has been fixed.
908
+
909
+ ## 16.2.41 (2018-06-25)
910
+
911
+ ### Calendars
912
+
913
+ #### Breaking Changes
914
+
915
+ - 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.
916
+ Update the `system.js` configuration while going with this version and above.
917
+
918
+ - Today button will act as a primary button in high contrast, bootstrap and fabric themes.
919
+
920
+ #### New Features
921
+
922
+ - Event arguments for all Calendar components has been streamlined.
923
+
924
+ ### DateRangePicker
925
+
926
+ #### Breaking Changes
927
+
928
+ - `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.
929
+
930
+ ### TimePicker
931
+
932
+ #### Breaking Changes
933
+
934
+ - In change event, the parameter `e` has been changed to `event`.
935
+
936
+ ## 16.1.49 (2018-06-20)
937
+
938
+ ### DateTimePicker
939
+
940
+ - TimePicker popup is not closing while clicking outside of the window issue has been fixed.
941
+
942
+ ## 16.1.48 (2018-06-13)
943
+
944
+ ### DateRangePicker
945
+
946
+ #### Bug Fixes
947
+
948
+ - 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.
949
+
950
+ ## 16.1.45 (2018-05-23)
951
+
952
+ ### DateRangePicker
953
+
954
+ #### New Features
955
+
956
+ - `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.
957
+
958
+ - `Value` property support has been provided for DateRangePicker component to set a date range.
959
+
960
+ ## 16.1.42 (2018-05-15)
961
+
962
+ ### DateTimePicker
963
+
964
+ #### Bug Fixes
965
+
966
+ - `ngOnDestroy` related issues with destroying DateTimePicker component has been fixed.
967
+
968
+ ## 16.1.38 (2018-05-02)
969
+
970
+ ### Common
971
+
972
+ #### Bug Fixes
973
+
974
+ - Now, Date parser will return the `null` value while parsing invalid date string.
975
+
976
+ ## 16.1.35 (2018-04-17)
977
+
978
+ ### DateRangePicker
979
+
980
+ #### Bug Fixes
981
+
982
+ - `focusIn` and `focusOut` methods has been included.
983
+
984
+ - `focus` and `blur` events has been included.
985
+
986
+ ## 16.1.34 (2018-04-10)
987
+
988
+ ### Common
989
+
990
+ #### Bug Fixes
991
+
992
+ - Issue with Calendar date generation in `UTC+00:00` time zone has been fixed.
993
+
994
+ ## 16.1.33 (2018-04-03)
995
+
996
+ ### Common
997
+
998
+ #### Bug Fixes
999
+
1000
+ - Rendering issue on going with `UTC+00:00` time zone has been fixed.
1001
+
1002
+ ## 16.1.32 (2018-03-29)
1003
+
1004
+ ### DateRangePicker
1005
+
1006
+ #### Bug Fixes
1007
+
1008
+ - DateRangePicker popup will not open while enabling the `readOnly` property.
1009
+
1010
+ ### DateTimePicker
1011
+
1012
+ #### Bug Fixes
1013
+
1014
+ - Focus and blur events triggers multiple times in DateTimePicker control has been fixed.
1015
+
1016
+ - DateTimePicker throws script error while clicking today button in IE browser has been fixed.
1017
+
1018
+ #### Breaking Changes
1019
+
1020
+ - The out of range value will be the value of the component and highlighted with error class.
1021
+
1022
+ ### Calendar
1023
+
1024
+ #### Bug Fixes
1025
+
1026
+ - Calendar throws script error while clicking today button in IE browser has been fixed.
1027
+
1028
+ ### DatePicker
1029
+
1030
+ #### Bug Fixes
1031
+
1032
+ - DatePicker throws script error while clicking today button in IE browser has been fixed.
1033
+
1034
+ ### TimePicker
1035
+
1036
+ #### Breaking Changes
1037
+
1038
+ - The out of range value will be the value of the component and highlighted with error class.
1039
+
1040
+ ## 16.1.29 (2018-03-13)
1041
+
1042
+ ### Common
1043
+
1044
+ #### Bug Fixes
1045
+
1046
+ - `Width` property with string type value issue has been fixed.
1047
+
1048
+ ## 16.1.28 (2018-03-09)
1049
+
1050
+ ### DatePicker
1051
+
1052
+ #### Breaking Changes
1053
+
1054
+ - DatePicker maintains null value, while entering the out of range(min/max) issue has been fixed.
1055
+
1056
+ ## 16.1.24 (2018-02-22)
1057
+
1058
+ ### Common
1059
+
1060
+ #### Breaking Changes
1061
+
1062
+ - Changed the Angular component selector, component name prefix with `ejs` e.g: `ejs-calendar`.
1063
+
1064
+ - Event arguments and it's parameter values are same.
1065
+
1066
+ - Popup open in read-only mode issue has been fixed.
1067
+
1068
+ #### New Features
1069
+
1070
+ - High contrast theme support.
1071
+
1072
+ ### DateRangePicker
1073
+
1074
+ #### New Features
1075
+
1076
+ - DateRangePicker rendered based on the screen resolution.
1077
+
1078
+ - `DateTime` support has been provided for DateRangePicker.
1079
+
1080
+ - Input type `date` has been handled in DateRangePicker.
1081
+
1082
+ ### DatePicker
1083
+
1084
+ #### Breaking Changes
1085
+
1086
+ - Pascal casing change to `start` and `depth` property values (`Month`, `Year`, `Decade`).
1087
+
1088
+ - Focus the input when select the value from the DatePicker popup.
1089
+
1090
+ #### New Features
1091
+
1092
+ - `Today` button support has been provided for DatePicker.
1093
+
1094
+ - Input type `date` has been handled in DatePicker.
1095
+
1096
+ ### TimePicker
1097
+
1098
+ #### Breaking Changes
1099
+
1100
+ - Pascal casing change to `start` and `depth` property values (`Month`, `Year`, `Decade`).
1101
+
1102
+ #### New Features
1103
+
1104
+ - Added `itemRender` support for the TimePicker which allows to customize each time values in a popup list.
1105
+
1106
+ - Input type `time` has been handled in TimePicker.
1107
+
1108
+ - 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.
1109
+
1110
+ ### Calendar
1111
+
1112
+ #### Breaking Changes
1113
+
1114
+ - Pascal casing change to `start` and `depth` property values (`Month`, `Year`, `Decade`).
1115
+
1116
+ #### New Features
1117
+
1118
+ - `Today` button support has been provided for Calendar.
1119
+
1120
+ ### DateTimePicker
1121
+
1122
+ DateTimePicker component for selecting or entering a date and time with options for disabling dates, restricting selection and showing custom events.
1123
+
1124
+ - **Range Restriction** – Allows to select a date and time within a specified range.
1125
+
1126
+ - **Format** – Formatting the value displayed in a textbox.
1127
+
1128
+ - **Customization** – Allows to customize each day and time cell of the Calendar and time popup list.
1129
+
1130
+ - **Strict Mode** - Allows to enter the only valid date and time in a textbox.
1131
+
1132
+ - **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.
1133
+
1134
+ ## 15.4.26-preview (2018-01-23)
1135
+
1136
+ ### DateRangePicker
1137
+
1138
+ #### Bug Fixes
1139
+
1140
+ - Select event will be triggered when selecting the start and end date.
1141
+
1142
+ ## 15.4.25-preview (2018-01-09)
1143
+
1144
+ ### DatePicker
1145
+
1146
+ #### Bug Fixes
1147
+
1148
+ - Width and form validation related issues has been fixed.
1149
+
1150
+ ## 15.4.23-preview (2017-12-27)
1151
+
1152
+ ### Common
1153
+
1154
+ #### New Features
1155
+
1156
+ - Added typing file for ES5 global scripts (`dist/global/index.d.ts`).
1157
+
1158
+ #### Breaking Changes
1159
+
1160
+ - Modified the module bundle file name for ES6 bundling.
1161
+
1162
+ ### DatePicker, DateRangePicker and TimePicker
1163
+
1164
+ #### Bug Fixes
1165
+
1166
+ - Popup repositions will not work while scrolling on the fixed element, this has been fixed.
1167
+
1168
+ ## 15.4.21-preview (2017-12-08)
1169
+
1170
+ ### DatePicker
1171
+
1172
+ #### Bug Fixes
1173
+
1174
+ - Popup position issue in mobile layout has been fixed.
1175
+
1176
+ ## 15.4.20-preview (2017-12-01)
1177
+
1178
+ ### Common
1179
+
1180
+ #### New Features
1181
+
1182
+ - Upgraded TypeScript version to 2.6.2
1183
+
1184
+ ### Calendar
1185
+
1186
+ #### Bug Fixes
1187
+
1188
+ - issue on rendering the current month in European Time zone has been fixed.
1189
+
1190
+ ### DatePicker
1191
+
1192
+ #### Bug Fixes
1193
+
1194
+ - issue on rendering the current month in European Time zone has been fixed.
1195
+ - **showClearButton** - Allows to clear the textbox and model values.
1196
+ - **zIndex** - allows to set the z-index value to the popup element.
1197
+
1198
+ ### DateRangePicker
1199
+
1200
+ #### Bug Fixes
1201
+
1202
+ - **showClearButton** - Allows to clear the textbox and model values.
1203
+ - **zIndex** - allows to set the z-index value to the popup element.
1204
+
1205
+ ### TimePicker
1206
+
1207
+ #### Bug Fixes
1208
+
1209
+ - **showClearButton** - Allows to clear the textbox and model values.
1210
+ - **zIndex** - allows to set the z-index value to the popup element.
1211
+
1212
+ ## 15.4.17-preview (2017-11-13)
1213
+
1214
+ ### Calendar
1215
+
1216
+ Calendar interface for selecting dates with options for disabling dates, restricting selection and showing custom events.
1217
+
1218
+ - **Range Restriction** - Allows to select a date within a specified date range.
1219
+
1220
+ - **Start and Depth View** - Allows to change the initial view and navigation depth of the Calendar.
1221
+
1222
+ - **Customization** - Allows to customize the each day cell of the calendar.
1223
+
1224
+ - **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.
1225
+
1226
+ ### DatePicker
1227
+
1228
+ DatePicker component for selecting or entering a date with options for disabling dates,
1229
+ restricting selection and showing custom events.
1230
+
1231
+ - **Range Restriction** - Allows to select a date within a specified date range.
1232
+
1233
+ - **Format** - Formatting the value displayed in a textbox.
1234
+
1235
+ - **Start and Depth View** - Allows to change the initial view and navigation depth of the Calendar.
1236
+
1237
+ - **Customization** - Allows to customize the each day cell of the calendar.
1238
+
1239
+ - **StrictMode** - Allows to entering the only valid date in a textbox.
1240
+
1241
+ - **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.
1242
+
1243
+ ### DateRangePicker
1244
+
1245
+ DateRangePicker component that allows user to select the date range from the calendar
1246
+ or entering the range through the input element.
1247
+
1248
+ - **Presets** - Allows to define the customized predefined set of ranges.
1249
+
1250
+ - **Day Span** - Select the data span between the ranges to avoid excess or less date selection.
1251
+
1252
+ - **Range Restriction** - Control the date range selection within a specified range.
1253
+
1254
+ - **Format** - Formatting the value displayed in a textbox.
1255
+
1256
+ - **Customization** - Allows to customize the each day cell of the calendar.
1257
+
1258
+ - **StrictMode** - Allows to entering the only valid date in a textbox.
1259
+
1260
+ - **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.
1261
+
1262
+ ### TimePicker
1263
+
1264
+ 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.
1265
+
1266
+ - **Range Restriction** - Allows to select a time within a specified time range.
1267
+
1268
+ - **Format** - Formatting the value displayed in a textbox.
1269
+
1270
+ - **Step** - Provides the option to increment/decrement time value in a popup list.
1271
+
1272
+ - **StrictMode** - Allows to entering the only valid time in a textbox.
1273
+
1274
+ - **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.## 19.3.56 (2021-12-02)
1275
+
1276
+ ### TimePicker
1277
+
1278
+ #### Bug Fixes
1279
+
1280
+ - `#I346567` - Issue with "typed value is not updated in the masked timepicker while typing the value and focus out the component" has been resolved.
1281
+
1282
+ - `#FB30118` - Issue with "hours to minutes segment switching is not worked while typing the hours value that starting with zero" has been resolved.
1283
+
1284
+ ## 19.3.44 (2021-10-05)
1285
+
1286
+ ### DateTimePicker
1287
+
1288
+ #### Bug Fixes
1289
+
1290
+ - `#F168372` - Issue with "invalid date time is updated to the input while enabling the masked date time" has been resolved.
1291
+
1292
+ ### DatePicker
1293
+
1294
+ #### Bug Fixes
1295
+
1296
+ - `#FB27745` - Issue with "day to month segment switching is not worked while typing the day value that starting with zero" has been resolved.
1297
+
1298
+ ## 19.2.62 (2021-09-14)
1299
+
1300
+ ### DateTimePicker
1301
+
1302
+ #### Bug Fixes
1303
+
1304
+ - `#F168372` - Issue with "invalid date time is updated to the input while enabling the masked date time" has been resolved.
1305
+
1306
+ ## 19.2.47 (2021-07-13)
1307
+
1308
+ ### DatePicker
1309
+
1310
+ #### Bug Fixes
1311
+
1312
+ - `#I334467` - Issue with "input is not disabled while disabling the `formControlName` using form group" has been resolved.
1313
+
1314
+ ## 19.1.64 (2021-05-19)
1315
+
1316
+ ### DateRangePicker
1317
+
1318
+ #### Bug Fixes
1319
+
1320
+ - `#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.
1321
+
1322
+ ## 19.1.55 (2021-04-06)
1323
+
1324
+ ### DatePicker
1325
+
1326
+ #### Bug Fixes
1327
+
1328
+ - `#319099` - Issue with "dirty and pristine is not updated properly while performing the disable and reset the form simultaneously" has been resolved.
1329
+
1330
+ ### DateRangePicker
1331
+
1332
+ #### Bug Fixes
1333
+
1334
+ - `#319099` - Issue with "dirty and pristine is not updated properly while performing the disable and reset the form simultaneously" has been resolved.
1335
+
1336
+ ### DateTimePicker
1337
+
1338
+ #### Bug Fixes
1339
+
1340
+ - `#319099` - Issue with "dirty and pristine is not updated properly while performing the disable and reset the form simultaneously" has been resolved.
1341
+
1342
+ ## 18.4.43 (2021-02-16)
1343
+
1344
+ ### DatePicker
1345
+
1346
+ #### Bug Fixes
1347
+
1348
+ - `#314484` - Issue with "dirty and pristine are not updated properly while resetting the form" has been resolved.
1349
+
1350
+ ## 18.4.39 (2021-01-28)
1351
+
1352
+ ### DatePicker
1353
+
1354
+ #### Bug Fixes
1355
+
1356
+ - `#309782` - Issue with "datepicker popup is not opened when disable the form and enable the datepicker control" has been resolved.
1357
+
1358
+ ## 18.4.35 (2021-01-19)
1359
+
1360
+ ### Calendar
1361
+
1362
+ #### New Features
1363
+
1364
+ - `#302472` - Now, you can change the rule for defining the first week of the year using `weekRule` property.
1365
+
1366
+ ## 18.4.31 (2020-12-22)
1367
+
1368
+ ### DateRangePicker
1369
+
1370
+ #### Bug Fixes
1371
+
1372
+ - `#291772`- Issue with "popup gets closed while dynamically changing the max days property in select event" has been resolved.
1373
+
1374
+ ## 18.3.42 (2020-10-20)
1375
+
1376
+ ### Calendar
1377
+
1378
+ #### Bug Fixes
1379
+
1380
+ - `#292562`- Issue with " isInteracted change event argument return as false while clicking on the today button" has been resolved.
1381
+
1382
+ ## 18.1.53 (2020-05-19)
1383
+
1384
+ ### DatePicker
1385
+
1386
+ #### Bug Fixes
1387
+
1388
+ - `#275716`- Issue with "script error occurs when disable the clear icon dynamically" has been resolved.
1389
+