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

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