@skyux/datetime 4.12.0 → 4.13.0

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 (70) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/bundles/skyux-datetime.umd.js +1321 -948
  3. package/bundles/skyux-datetime.umd.js.map +1 -1
  4. package/bundles/skyux-datetime.umd.min.js +2 -2
  5. package/bundles/skyux-datetime.umd.min.js.map +1 -1
  6. package/esm2015/modules/date-range-picker/date-range-picker.component.js +1 -1
  7. package/esm2015/modules/datepicker/datepicker-calendar-change.js +1 -0
  8. package/esm2015/modules/datepicker/datepicker-calendar-inner.component.js +30 -4
  9. package/esm2015/modules/datepicker/datepicker-calendar.component.js +15 -2
  10. package/esm2015/modules/datepicker/datepicker-custom-date.js +1 -0
  11. package/esm2015/modules/datepicker/datepicker-date.js +1 -1
  12. package/esm2015/modules/datepicker/datepicker-input-fuzzy.directive.js +10 -6
  13. package/esm2015/modules/datepicker/datepicker-input.directive.js +1 -1
  14. package/esm2015/modules/datepicker/datepicker.component.js +52 -7
  15. package/esm2015/modules/datepicker/datepicker.module.js +20 -9
  16. package/esm2015/modules/datepicker/datepicker.service.js +20 -0
  17. package/esm2015/modules/datepicker/daypicker-button.component.js +26 -0
  18. package/esm2015/modules/datepicker/daypicker-cell.component.js +131 -0
  19. package/esm2015/modules/datepicker/daypicker.component.js +96 -4
  20. package/esm2015/modules/datepicker/fuzzy-date.service.js +11 -1
  21. package/esm2015/modules/datepicker/monthpicker.component.js +1 -1
  22. package/esm2015/modules/datepicker/yearpicker.component.js +1 -1
  23. package/esm2015/modules/timepicker/timepicker.component.js +7 -4
  24. package/esm2015/modules/timepicker/timepicker.directive.js +3 -2
  25. package/esm2015/public_api.js +1 -1
  26. package/esm2015/skyux-datetime.js +6 -3
  27. package/esm5/modules/date-range-picker/date-range-picker.component.js +1 -1
  28. package/esm5/modules/datepicker/datepicker-calendar-change.js +1 -0
  29. package/esm5/modules/datepicker/datepicker-calendar-inner.component.js +30 -4
  30. package/esm5/modules/datepicker/datepicker-calendar.component.js +15 -2
  31. package/esm5/modules/datepicker/datepicker-custom-date.js +1 -0
  32. package/esm5/modules/datepicker/datepicker-date.js +1 -1
  33. package/esm5/modules/datepicker/datepicker-input-fuzzy.directive.js +10 -6
  34. package/esm5/modules/datepicker/datepicker-input.directive.js +1 -1
  35. package/esm5/modules/datepicker/datepicker.component.js +53 -7
  36. package/esm5/modules/datepicker/datepicker.module.js +20 -9
  37. package/esm5/modules/datepicker/datepicker.service.js +21 -0
  38. package/esm5/modules/datepicker/daypicker-button.component.js +27 -0
  39. package/esm5/modules/datepicker/daypicker-cell.component.js +134 -0
  40. package/esm5/modules/datepicker/daypicker.component.js +100 -4
  41. package/esm5/modules/datepicker/fuzzy-date.service.js +11 -1
  42. package/esm5/modules/datepicker/monthpicker.component.js +1 -1
  43. package/esm5/modules/datepicker/yearpicker.component.js +1 -1
  44. package/esm5/modules/timepicker/timepicker.component.js +7 -4
  45. package/esm5/modules/timepicker/timepicker.directive.js +3 -2
  46. package/esm5/public_api.js +1 -1
  47. package/esm5/skyux-datetime.js +6 -3
  48. package/fesm2015/skyux-datetime.js +1397 -1036
  49. package/fesm2015/skyux-datetime.js.map +1 -1
  50. package/fesm5/skyux-datetime.js +1316 -945
  51. package/fesm5/skyux-datetime.js.map +1 -1
  52. package/modules/datepicker/datepicker-calendar-change.d.ts +24 -0
  53. package/modules/datepicker/datepicker-calendar-inner.component.d.ts +12 -2
  54. package/modules/datepicker/datepicker-calendar.component.d.ts +6 -0
  55. package/modules/datepicker/datepicker-custom-date.d.ts +21 -0
  56. package/modules/datepicker/datepicker-date.d.ts +2 -0
  57. package/modules/datepicker/datepicker-input-fuzzy.directive.d.ts +1 -0
  58. package/modules/datepicker/datepicker-input.directive.d.ts +1 -1
  59. package/modules/datepicker/datepicker.component.d.ts +15 -1
  60. package/modules/datepicker/datepicker.service.d.ts +12 -0
  61. package/modules/datepicker/daypicker-button.component.d.ts +13 -0
  62. package/modules/datepicker/daypicker-cell.component.d.ts +37 -0
  63. package/modules/datepicker/daypicker.component.d.ts +17 -2
  64. package/modules/datepicker/fuzzy-date.service.d.ts +5 -1
  65. package/modules/timepicker/timepicker.component.d.ts +2 -1
  66. package/package.json +3 -2
  67. package/public_api.d.ts +2 -0
  68. package/skyux-datetime.d.ts +5 -2
  69. package/skyux-datetime.metadata.json +1 -1
  70. package/src/assets/img/guidelines/date-range-picker/content-error.png +0 -0
package/CHANGELOG.md CHANGED
@@ -1,3 +1,19 @@
1
+ # 4.13.0 (2021-12-02)
2
+
3
+ - Added the `calendarDateRangeChange` event to the datepicker component to allow consumers to listen for changes to the calendar and push back `customDates` that show key dates or disabled dates in the datepicker's calendar. [#293](https://github.com/blackbaud/skyux-datetime/pull/293)
4
+
5
+ # 4.12.3 (2021-10-28)
6
+
7
+ - Fixed the datepicker component to work with TypeScript's strict mode. [#290](https://github.com/blackbaud/skyux-datetime/pull/290)
8
+
9
+ # 4.12.2 (2021-08-18)
10
+
11
+ - Fixed performance issues with the datepicker and timepicker components. [#275](https://github.com/blackbaud/skyux-datetime/pull/275)
12
+
13
+ # 4.12.1 (2021-07-30)
14
+
15
+ - Fixed the fuzzy datepicker component to properly format dates based on the given date format. [#270](https://github.com/blackbaud/skyux-datetime/pull/270)
16
+
1
17
  # 4.12.0 (2021-06-15)
2
18
 
3
19
  - Added an optional `pickerClass` input for the datepicker component. [#264](https://github.com/blackbaud/skyux-datetime/pull/264)