@progress/kendo-angular-dateinputs 17.0.0-develop.3 → 17.0.0-develop.30

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 (183) hide show
  1. package/README.md +39 -124
  2. package/calendar/calendar.component.d.ts +1 -1
  3. package/calendar/footer.component.d.ts +1 -1
  4. package/calendar/for.directive.d.ts +1 -1
  5. package/calendar/header.component.d.ts +1 -1
  6. package/calendar/horizontal-view-list.component.d.ts +1 -1
  7. package/calendar/localization/calendar-messages.d.ts +1 -1
  8. package/calendar/localization/multiview-calendar-messages.d.ts +1 -1
  9. package/calendar/models/orientation.d.ts +1 -1
  10. package/calendar/models/selection-range-end.type.d.ts +1 -1
  11. package/calendar/models/selection.d.ts +1 -1
  12. package/calendar/models/type.d.ts +1 -1
  13. package/calendar/models/view.type.d.ts +1 -1
  14. package/calendar/multiview-calendar.component.d.ts +1 -1
  15. package/calendar/navigation.component.d.ts +1 -1
  16. package/calendar/view-list.component.d.ts +1 -1
  17. package/calendar/view.component.d.ts +1 -1
  18. package/common/models/fillmode.d.ts +1 -1
  19. package/common/models/rounded.d.ts +1 -1
  20. package/common/models/size.d.ts +1 -1
  21. package/common/models/week-days-format.d.ts +1 -1
  22. package/dateinput/dateinput.component.d.ts +2 -2
  23. package/dateinput/localization/messages.d.ts +1 -1
  24. package/dateinput/models/format-placeholder.model.d.ts +1 -1
  25. package/datepicker/datepicker.component.d.ts +1 -1
  26. package/datepicker/localization/messages.d.ts +1 -1
  27. package/daterange/auto-correct-on.type.d.ts +1 -1
  28. package/daterange/date-range-end-input.directive.d.ts +1 -1
  29. package/daterange/date-range-popup.component.d.ts +86 -2
  30. package/daterange/date-range-selection.directive.d.ts +1 -1
  31. package/daterange/date-range-start-input.directive.d.ts +1 -1
  32. package/daterange/date-range.component.d.ts +1 -1
  33. package/daterange/localization/messages.d.ts +1 -1
  34. package/datetimepicker/datetimepicker.component.d.ts +1 -1
  35. package/datetimepicker/localization/messages.d.ts +1 -1
  36. package/datetimepicker/models/active-tab.type.d.ts +1 -1
  37. package/{esm2020 → esm2022}/calendar/calendar.component.mjs +276 -166
  38. package/{esm2020 → esm2022}/calendar/calendar.module.mjs +14 -14
  39. package/{esm2020 → esm2022}/calendar/calendars.module.mjs +14 -14
  40. package/{esm2020 → esm2022}/calendar/footer.component.mjs +11 -7
  41. package/{esm2020 → esm2022}/calendar/for.directive.mjs +13 -4
  42. package/{esm2020 → esm2022}/calendar/header.component.mjs +47 -30
  43. package/{esm2020 → esm2022}/calendar/horizontal-view-list.component.mjs +63 -40
  44. package/{esm2020 → esm2022}/calendar/localization/calendar-custom-messages.component.mjs +9 -8
  45. package/{esm2020 → esm2022}/calendar/localization/calendar-localized-messages.directive.mjs +9 -8
  46. package/{esm2020/calendar/localization/multiview-calendar-messages.mjs → esm2022/calendar/localization/calendar-messages.mjs} +21 -5
  47. package/{esm2020 → esm2022}/calendar/localization/multiview-calendar-custom-messages.component.mjs +9 -8
  48. package/{esm2020 → esm2022}/calendar/localization/multiview-calendar-localized-messages.directive.mjs +9 -8
  49. package/esm2022/calendar/localization/multiview-calendar-messages.mjs +45 -0
  50. package/{esm2020 → esm2022}/calendar/multiview-calendar.component.mjs +299 -211
  51. package/{esm2020 → esm2022}/calendar/multiview-calendar.module.mjs +11 -11
  52. package/{esm2020 → esm2022}/calendar/navigation.component.mjs +34 -15
  53. package/{esm2020 → esm2022}/calendar/services/bus-view.service.mjs +8 -6
  54. package/{esm2020 → esm2022}/calendar/services/century-view.service.mjs +15 -17
  55. package/{esm2020 → esm2022}/calendar/services/decade-view.service.mjs +15 -17
  56. package/{esm2020 → esm2022}/calendar/services/disabled-dates.service.mjs +12 -14
  57. package/{esm2020 → esm2022}/calendar/services/dom.service.mjs +21 -3
  58. package/{esm2020 → esm2022}/calendar/services/month-view.service.mjs +16 -15
  59. package/{esm2020 → esm2022}/calendar/services/navigation.service.mjs +4 -3
  60. package/{esm2020 → esm2022}/calendar/services/scroll-sync.service.mjs +11 -3
  61. package/{esm2020 → esm2022}/calendar/services/selection.service.mjs +5 -3
  62. package/{esm2020 → esm2022}/calendar/services/weeknames.service.mjs +4 -3
  63. package/{esm2020 → esm2022}/calendar/services/year-view.service.mjs +16 -15
  64. package/{esm2020 → esm2022}/calendar/templates/cell-template.directive.mjs +4 -3
  65. package/{esm2020 → esm2022}/calendar/templates/century-cell-template.directive.mjs +4 -3
  66. package/{esm2020 → esm2022}/calendar/templates/decade-cell-template.directive.mjs +4 -3
  67. package/{esm2020 → esm2022}/calendar/templates/footer-template.directive.mjs +4 -3
  68. package/{esm2020 → esm2022}/calendar/templates/header-template.directive.mjs +4 -3
  69. package/{esm2020 → esm2022}/calendar/templates/header-title-template.directive.mjs +4 -3
  70. package/{esm2020 → esm2022}/calendar/templates/month-cell-template.directive.mjs +4 -3
  71. package/{esm2020 → esm2022}/calendar/templates/navigation-item-template.directive.mjs +4 -3
  72. package/{esm2020 → esm2022}/calendar/templates/weeknumber-cell-template.directive.mjs +4 -3
  73. package/{esm2020 → esm2022}/calendar/templates/year-cell-template.directive.mjs +4 -3
  74. package/{esm2020 → esm2022}/calendar/view-list.component.mjs +68 -37
  75. package/{esm2020 → esm2022}/calendar/view.component.mjs +50 -24
  76. package/{esm2020 → esm2022}/common/adaptive.module.mjs +7 -7
  77. package/{esm2020 → esm2022}/common/picker.service.mjs +7 -6
  78. package/{esm2020 → esm2022}/dateinput/dateinput.component.mjs +282 -231
  79. package/{esm2020 → esm2022}/dateinput/dateinput.module.mjs +6 -6
  80. package/{esm2020 → esm2022}/dateinput/localization/dateinput-custom-messages.component.mjs +9 -8
  81. package/{esm2020 → esm2022}/dateinput/localization/dateinput-localized-messages.directive.mjs +9 -8
  82. package/{esm2020 → esm2022}/dateinput/localization/messages.mjs +15 -3
  83. package/{esm2020 → esm2022}/dateinputs.module.mjs +22 -22
  84. package/{esm2020 → esm2022}/datepicker/datepicker.component.mjs +404 -283
  85. package/{esm2020 → esm2022}/datepicker/datepicker.module.mjs +16 -16
  86. package/{esm2020 → esm2022}/datepicker/localization/datepicker-custom-messages.component.mjs +9 -8
  87. package/{esm2020 → esm2022}/datepicker/localization/datepicker-localized-messages.directive.mjs +9 -8
  88. package/esm2022/datepicker/localization/messages.mjs +57 -0
  89. package/{esm2020 → esm2022}/daterange/date-range-end-input.directive.mjs +38 -28
  90. package/{esm2020 → esm2022}/daterange/date-range-input.mjs +19 -13
  91. package/{esm2020 → esm2022}/daterange/date-range-popup-template.directive.mjs +4 -3
  92. package/{esm2020 → esm2022}/daterange/date-range-popup.component.mjs +325 -88
  93. package/{esm2020 → esm2022}/daterange/date-range-selection.directive.mjs +41 -36
  94. package/{esm2020 → esm2022}/daterange/date-range-start-input.directive.mjs +40 -29
  95. package/{esm2020 → esm2022}/daterange/date-range.component.mjs +31 -14
  96. package/{esm2020 → esm2022}/daterange/date-range.module.mjs +16 -16
  97. package/{esm2020 → esm2022}/daterange/date-range.service.mjs +34 -33
  98. package/{esm2020 → esm2022}/daterange/localization/daterange-popup-custom-messages.component.mjs +9 -8
  99. package/{esm2020 → esm2022}/daterange/localization/daterange-popup-localized-messages.directive.mjs +9 -8
  100. package/{esm2020 → esm2022}/daterange/localization/messages.mjs +19 -3
  101. package/{esm2020 → esm2022}/datetimepicker/datetimepicker.component.mjs +391 -293
  102. package/{esm2020 → esm2022}/datetimepicker/datetimepicker.module.mjs +22 -22
  103. package/{esm2020 → esm2022}/datetimepicker/localization/datetimepicker-custom-messages.component.mjs +9 -8
  104. package/{esm2020 → esm2022}/datetimepicker/localization/localized-messages.directive.mjs +9 -8
  105. package/esm2022/datetimepicker/localization/messages.mjs +147 -0
  106. package/{esm2020 → esm2022}/package-metadata.mjs +2 -2
  107. package/{esm2020 → esm2022}/preventable-event.mjs +2 -3
  108. package/esm2022/timepicker/localization/messages.mjs +99 -0
  109. package/{esm2020 → esm2022}/timepicker/localization/timepicker-custom-messages.component.mjs +9 -8
  110. package/{esm2020 → esm2022}/timepicker/localization/timepicker-localized-messages.directive.mjs +9 -8
  111. package/{esm2020 → esm2022}/timepicker/localization/timeselector-custom-messages.component.mjs +9 -8
  112. package/{esm2020 → esm2022}/timepicker/localization/timeselector-localized-messages.directive.mjs +9 -8
  113. package/{esm2020 → esm2022}/timepicker/services/dayperiod.service.mjs +7 -3
  114. package/{esm2020 → esm2022}/timepicker/services/dom.service.mjs +7 -3
  115. package/{esm2020 → esm2022}/timepicker/services/hours.service.mjs +10 -5
  116. package/{esm2020 → esm2022}/timepicker/services/milliseconds.service.mjs +9 -4
  117. package/{esm2020 → esm2022}/timepicker/services/minutes.service.mjs +9 -4
  118. package/{esm2020 → esm2022}/timepicker/services/seconds.service.mjs +9 -4
  119. package/{esm2020 → esm2022}/timepicker/timelist.component.mjs +45 -27
  120. package/{esm2020 → esm2022}/timepicker/timepicker.component.mjs +302 -220
  121. package/{esm2020 → esm2022}/timepicker/timepicker.module.mjs +14 -14
  122. package/{esm2020 → esm2022}/timepicker/timeselector.component.mjs +96 -73
  123. package/{esm2020 → esm2022}/virtualization/services/row-height.service.mjs +5 -2
  124. package/{esm2020 → esm2022}/virtualization/services/scroller.service.mjs +14 -3
  125. package/{esm2020 → esm2022}/virtualization/virtualization.component.mjs +42 -28
  126. package/{fesm2020 → fesm2022}/progress-kendo-angular-dateinputs.mjs +3737 -2400
  127. package/package.json +18 -24
  128. package/timepicker/localization/messages.d.ts +1 -1
  129. package/timepicker/timelist.component.d.ts +1 -1
  130. package/timepicker/timepicker.component.d.ts +2 -1
  131. package/timepicker/timeselector.component.d.ts +1 -1
  132. package/util.d.ts +1 -1
  133. package/virtualization/services/scroller.service.d.ts +2 -2
  134. package/virtualization/virtualization.component.d.ts +1 -1
  135. package/esm2020/calendar/localization/calendar-messages.mjs +0 -29
  136. package/esm2020/datepicker/localization/messages.mjs +0 -33
  137. package/esm2020/datetimepicker/localization/messages.mjs +0 -63
  138. package/esm2020/timepicker/localization/messages.mjs +0 -47
  139. package/fesm2015/progress-kendo-angular-dateinputs.mjs +0 -19188
  140. /package/{esm2020 → esm2022}/calendar/models/cell-context.interface.mjs +0 -0
  141. /package/{esm2020 → esm2022}/calendar/models/keydown.interface.mjs +0 -0
  142. /package/{esm2020 → esm2022}/calendar/models/navigation-action.enum.mjs +0 -0
  143. /package/{esm2020 → esm2022}/calendar/models/orientation.mjs +0 -0
  144. /package/{esm2020 → esm2022}/calendar/models/row-length-options.interface.mjs +0 -0
  145. /package/{esm2020 → esm2022}/calendar/models/scrollable.interface.mjs +0 -0
  146. /package/{esm2020 → esm2022}/calendar/models/selection-range-end.type.mjs +0 -0
  147. /package/{esm2020 → esm2022}/calendar/models/selection-range.interface.mjs +0 -0
  148. /package/{esm2020 → esm2022}/calendar/models/selection.mjs +0 -0
  149. /package/{esm2020 → esm2022}/calendar/models/type.mjs +0 -0
  150. /package/{esm2020 → esm2022}/calendar/models/view-service.interface.mjs +0 -0
  151. /package/{esm2020 → esm2022}/calendar/models/view.enum.mjs +0 -0
  152. /package/{esm2020 → esm2022}/calendar/models/view.type.mjs +0 -0
  153. /package/{esm2020 → esm2022}/common/dom-queries.mjs +0 -0
  154. /package/{esm2020 → esm2022}/common/models/fillmode.mjs +0 -0
  155. /package/{esm2020 → esm2022}/common/models/rounded.mjs +0 -0
  156. /package/{esm2020 → esm2022}/common/models/size.mjs +0 -0
  157. /package/{esm2020 → esm2022}/common/models/week-days-format.mjs +0 -0
  158. /package/{esm2020 → esm2022}/common/utils.mjs +0 -0
  159. /package/{esm2020 → esm2022}/dateinput/arrow.enum.mjs +0 -0
  160. /package/{esm2020 → esm2022}/dateinput/models/format-placeholder.model.mjs +0 -0
  161. /package/{esm2020 → esm2022}/dateinput/models/format-settings.model.mjs +0 -0
  162. /package/{esm2020 → esm2022}/dateinput/models/incremental-steps.model.mjs +0 -0
  163. /package/{esm2020 → esm2022}/daterange/auto-correct-on.type.mjs +0 -0
  164. /package/{esm2020 → esm2022}/datetimepicker/models/active-tab.type.mjs +0 -0
  165. /package/{esm2020 → esm2022}/defaults.mjs +0 -0
  166. /package/{esm2020 → esm2022}/directives.mjs +0 -0
  167. /package/{esm2020 → esm2022}/index.mjs +0 -0
  168. /package/{esm2020 → esm2022}/popup-settings.model.mjs +0 -0
  169. /package/{esm2020 → esm2022}/progress-kendo-angular-dateinputs.mjs +0 -0
  170. /package/{esm2020 → esm2022}/timepicker/models/incremental-steps.model.mjs +0 -0
  171. /package/{esm2020 → esm2022}/timepicker/models/list-item.interface.mjs +0 -0
  172. /package/{esm2020 → esm2022}/timepicker/models/list-service-settings.mjs +0 -0
  173. /package/{esm2020 → esm2022}/timepicker/models/list-service.interface.mjs +0 -0
  174. /package/{esm2020 → esm2022}/timepicker/models/time-part.default.mjs +0 -0
  175. /package/{esm2020 → esm2022}/timepicker/util.mjs +0 -0
  176. /package/{esm2020 → esm2022}/util.mjs +0 -0
  177. /package/{esm2020 → esm2022}/validators/disabled-date.validator.mjs +0 -0
  178. /package/{esm2020 → esm2022}/validators/disabled-dates-range.validator.mjs +0 -0
  179. /package/{esm2020 → esm2022}/validators/incomplete-date.validator.mjs +0 -0
  180. /package/{esm2020 → esm2022}/validators/max.validator.mjs +0 -0
  181. /package/{esm2020 → esm2022}/validators/min.validator.mjs +0 -0
  182. /package/{esm2020 → esm2022}/validators/time-range.validator.mjs +0 -0
  183. /package/{esm2020 → esm2022}/virtualization/models/scrollable.interface.mjs +0 -0
package/README.md CHANGED
@@ -4,146 +4,61 @@
4
4
 
5
5
  ## Kendo UI for Angular Date Inputs Package (DatePicker, TimePicker, DateInput, DateRangePicker, DateTimePicker, Calendar, and MultiViewCalendar Components)
6
6
 
7
- > **Important**
8
- > * This package is part of [Kendo UI for Angular](https://www.telerik.com/kendo-angular-ui?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dateinputs)—a commercial library designed and built for developing business applications with Angular. Every UI component in the Kendo UI for Angular suite has been built from the ground-up specifically for Angular.
9
- > * You will need to install a license key when adding the package to your project. For more information, please refer to the [Kendo UI for Angular My License page](https://www.telerik.com/kendo-angular-ui/my-license?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dateinputs).
10
- > * To receive a license key, you need to either [purchase a license](https://www.telerik.com/purchase/kendo-ui?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dateinputs) or register for a [free trial](https://www.telerik.com/download-login-v2-kendo-angular-ui?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dateinputs). Doing so indicates that you [accept the Kendo UI for Angular License Agreement](https://www.telerik.com/purchase/license-agreement/kendo-ui?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dateinputs).
7
+ > * This package is part of [Kendo UI for Angular](https://www.telerik.com/kendo-angular-ui)—a commercial library designed and built for developing business applications with Angular. Every UI component in the Kendo UI for Angular suite has been built from the ground-up specifically for Angular.
8
+ > * You must [install a license key](https://www.telerik.com/kendo-angular-ui/my-license) when adding the package to your project. To receive a license key, either [purchase a license](https://www.telerik.com/purchase/kendo-ui) or register for a [free trial](https://www.telerik.com/download-login-v2-kendo-angular-ui).
11
9
  > * The 30-day free trial gives you access to all the Kendo UI for Angular components and their full functionality. Additionally, for the period of your license, you get access to our legendary technical support provided directly by the Kendo UI for Angular dev team!
12
10
  >
13
- > [Start using Kendo UI for Angular](https://www.telerik.com/download-login-v2-kendo-angular-ui?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dateinputs) and speed up your development process!
11
+ > [Start using Kendo UI for Angular](https://www.telerik.com/download-login-v2-kendo-angular-ui) and speed up your development process!
14
12
 
15
-
16
- The Date Input Package is a collection of seven components designed to add date selection functionality to your applications. Whether you need date input fields or calendar pickers, everything is inside. Each component is highly customizable, high-performance, and well-documented.
13
+ The [Kendo UI for Angular Date Inputs](https://www.telerik.com/kendo-angular-ui/components/dateinputs) package is a collection of seven components designed to add date selection functionality to your applications. Whether you need date input fields or calendar pickers, everything is inside. Each component is highly customizable, high-performance, and well-documented.
17
14
 
18
15
  <img src="https://d585tldpucybw.cloudfront.net/sfimages/default-source/component-pages/angular/angular-datetimepicker-overview.gif?sfvrsn=388e98e4_0" alt="Angular Date Input Component Example">
19
16
 
20
- What's Included in This Package:
21
- * [Angular Calendar Component](#angular-calendar-component)
22
- * [Angular DateInput Component](#angular-dateinput-component)
23
- * [Angular DatePicker Component](#angular-datepicker-component)
24
- * [Angular DateRange Component](#angular-daterange-component)
25
- * [Angular DateTimePicker Component](#angular-datetimepicker-component)
26
- * [Angular MultiView Calendar](#angular-multiview-calendar)
27
- * [Angular TimePicker Component](#angular-timepicker-component)
28
-
29
- ## Angular Calendar Component
30
-
31
- The [Angular Calendar Component](https://www.telerik.com/kendo-angular-ui/components/dateinputs/calendar/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dateinputs) renders a visual calendar used for date selection and navigation.
32
-
33
- ### Key Features
34
-
35
- * [Calendar types](https://www.telerik.com/kendo-angular-ui/components/dateinputs/calendar/type/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dateinputs)&mdash;You can set the type of the Angular Calendar and choose between the default infinite layout and the classic rendering.
36
- * [Focused and selected dates](https://www.telerik.com/kendo-angular-ui/components/dateinputs/calendar/dates/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dateinputs)&mdash;Control the focused and selected dates within the Calendar.
37
- * [Disabled dates](https://www.telerik.com/kendo-angular-ui/components/dateinputs/calendar/disabled-dates/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dateinputs)&mdash;The Angular Calendar supports specific approaches for disabling a selection of dates such as through using a function, an array of dates, or an array of days.
38
- * [Fast navigation sidebar](https://www.telerik.com/kendo-angular-ui/components/dateinputs/calendar/sidebar/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dateinputs)&mdash;By default a sidebar is placed to the side of the calendar for fast navigation, but you can customize it.
39
- * [Active view](https://www.telerik.com/kendo-angular-ui/components/dateinputs/calendar/active-view/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dateinputs)&mdash;Control the initially loaded page of the Calendar and render it in a month, year, decade, or year view.
40
- * [View selection depth](https://www.telerik.com/kendo-angular-ui/components/dateinputs/calendar/view-depth/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dateinputs)&mdash;The Angular Calendar provides an option for setting the view depth to which the user can navigate.
41
- * [Selection modes](https://www.telerik.com/kendo-angular-ui/components/dateinputs/calendar/multiple-selection/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dateinputs)&mdash;Apart form its default single selection mode, the Angular Calendar supports options for multiple, range, and week selection.
42
- * [Week number column](https://www.telerik.com/kendo-angular-ui/components/dateinputs/calendar/week-num-column/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dateinputs)&mdash;The Angular Calendar also supports options for rendering a column displaying the number of the weeks.
43
-
44
-
45
- ## Angular DateInput Component
46
-
47
- The [Angular DateInput Component](https://www.telerik.com/kendo-angular-ui/components/dateinputs/dateinput/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dateinputs) renders an input field that recognizes and enforces date formats.
48
-
49
- ### Key Features
50
-
51
- * [Spin buttons](https://www.telerik.com/kendo-angular-ui/components/dateinputs/dateinput/spin-buttons/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dateinputs)&mdash;Enable spin buttons to increase or decrease the date value by adding or subtracting days.
52
- * [Incremental steps](https://www.telerik.com/kendo-angular-ui/components/dateinputs/dateinput/incremental-steps/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dateinputs)&mdash;Change the default step for increasing and decreasing the parts of its date values.
53
- * [Formats](https://www.telerik.com/kendo-angular-ui/components/dateinputs/dateinput/formats/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dateinputs)&mdash;Display the date value in its single format at all times or configure it to show the value in different formats when the input is focused or blurred.
54
- * [Placeholders](https://www.telerik.com/kendo-angular-ui/components/dateinputs/dateinput/placeholders/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dateinputs)&mdash;Show a text hint, a floating label, or descriptions for its format sections.
55
- * [Incomplete date validation](https://www.telerik.com/kendo-angular-ui/components/dateinputs/dateinput/placeholders/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dateinputs)&mdash;The incomplete date validation feature of the DateInput ensures that users do not accidentally leave a non-required field partially populated.
56
-
57
- ## Angular DatePicker Component
58
-
59
- The [Angular DatePicker Component](https://www.telerik.com/kendo-angular-ui/components/dateinputs/datepicker/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dateinputs) combines the DateIput and Calendar components to provide a interactive form element for picking dates. Users can pick a date from the calendar and it will appear as text in the DateInput field or they can type in a date and it will be automatically selected in the Calendar.
60
-
61
- ### Key Features
62
-
63
- * [Calendar options](https://www.telerik.com/kendo-angular-ui/components/dateinputs/datepicker/calendar-type/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dateinputs)&mdash;Use various options to configure the popup calendar within the Angular DatePicker—for example, switch between different calendar layouts, handle the animation of the calendar navigation, set the focused dates and the initially loaded calendar page, and more.
64
- * [Disabled dates](https://www.telerik.com/kendo-angular-ui/components/dateinputs/datepicker/disabled-dates/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dateinputs)&mdash;The Angular DatePicker supports specific approaches for disabling a selection of dates such as through using a function, an array of dates, or an array of days.
65
- * [Fast navigation sidebar](https://www.telerik.com/kendo-angular-ui/components/dateinputs/datepicker/sidebar/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dateinputs)&mdash;The Angular DatePicker supports configuration options for controlling the default navigation sidebar.
66
- * [Formats](https://www.telerik.com/kendo-angular-ui/components/dateinputs/datepicker/formats/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dateinputs)&mdash;Display the DatePicker in its single format at all times or configure it to show the value in different formats when the input is focused or blurred.
67
- * [Placeholders](https://www.telerik.com/kendo-angular-ui/components/dateinputs/datepicker/placeholders/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dateinputs)&mdash;Render a text hint or descriptions for its format sections.
68
- * [Incomplete date validation](https://www.telerik.com/kendo-angular-ui/components/dateinputs/datepicker/incomplete-dates/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dateinputs)&mdash;The incomplete date validation feature of the DatePicker ensures that users do not accidentally leave a non-required field partially populated.
17
+ ## What's Included in the Angular Date Inputs Package
69
18
 
70
- ## Angular DateRange Component
19
+ * [Angular Calendar Component](https://www.telerik.com/kendo-angular-ui/components/dateinputs/calendar)&mdash;Renders a visual calendar used for date selection and navigation.
20
+ * [Angular DateInput Component](https://www.telerik.com/kendo-angular-ui/components/dateinputs/dateinput)&mdash;Renders an input field that recognizes and enforces date formats.
21
+ * [Angular DatePicker Component](https://www.telerik.com/kendo-angular-ui/components/dateinputs/datepicker)&mdash;Combines the DateInput and Calendar components to provide an interactive form element for picking dates. Users can pick a date from the Calendar and it will appear as text in the DateInput field or they can type in a date and it will be automatically selected in the Calendar.
22
+ * [Angular DateTimePicker Component](https://www.telerik.com/kendo-angular-ui/components/dateinputs/datetimepicker)&mdash;Combines the DateInput, Calendar, and TimePicker components to provide an interactive form element for picking dates and specific times.
23
+ * [Angular DateRange Component](https://www.telerik.com/kendo-angular-ui/components/dateinputs/daterange)&mdash;This is a container that holds start and end date input fields and a date range popup calendar.
24
+ * [Angular MultiViewCalendar Component](https://www.telerik.com/kendo-angular-ui/components/dateinputs/multiviewcalendar)&mdash;Renders multiple calendars in one container for the purposes of selecting and navigating dates. It is most often used for setting start and end dates.
25
+ * [Angular TimePicker Component](https://www.telerik.com/kendo-angular-ui/components/dateinputs/timepicker)&mdash;This is an input field that allows the user to enter or pick time values from a time-list.
71
26
 
72
- The [Angular DateRange Component](https://www.telerik.com/kendo-angular-ui/components/dateinputs/daterange/) is a container that hosts start and end date input fields and popup calendars.
27
+ ## Key Features
73
28
 
74
- ### Key Features
29
+ Among the many features which the Kendo UI for Angular Date Inputs deliver are:
75
30
 
76
- * Selection of [dates](https://www.telerik.com/kendo-angular-ui/components/dateinputs/daterange/directives/) and [ranges](https://www.telerik.com/kendo-angular-ui/components/dateinputs/daterange/selection-range/)&mdash;Allow users to select single dates or date ranges from a popup calendar.
77
- * [Popup options](https://www.telerik.com/kendo-angular-ui/components/dateinputs/daterange/popup/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dateinputs)&mdash;Customize the popup calendar with options for visibility, alignment, position, and more.
78
- * [Date range auto correction](https://www.telerik.com/kendo-angular-ui/components/dateinputs/daterange/autocorrect/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dateinputs)&mdash;Ensure quality UX through automatic correction of date range formats.
31
+ * [Forms Support](https://www.telerik.com/kendo-angular-ui/components/dateinputs/datepicker/forms)&mdash;The package provides support for both asynchronous template-driven Angular forms and predominantly synchronous reactive Angular forms. This feature allows you to make use of the logic set either in the template or in the component's TypeScript code.
32
+ * [Date and Time Ranges](https://www.telerik.com/kendo-angular-ui/components/dateinputs/datepicker/date-ranges)&mdash;Except for the MultiViewCalendar, all Date Inputs provide configuration options for setting a start and end date or time and, in this way, defining date or time ranges.
33
+ * [Disabled Date Inputs](https://www.telerik.com/kendo-angular-ui/components/dateinputs/datepicker/disabled-state)&mdash;You can choose to render the Date Inputs in their disabled state so that they are read-only.
34
+ * [Selection Modes](https://www.telerik.com/kendo-angular-ui/components/dateinputs/calendar/selection-modes)&mdash;The Date Inputs provide a number of selection modes which allow users to select a single date, a range of dates, or multiple dates.
35
+ * [Formats](https://www.telerik.com/kendo-angular-ui/components/dateinputs/datepicker/formats)&mdash;The components in the Date Inputs package provide the ability to configure a desired date format for the displayed value.
36
+ * [Placeholders](https://www.telerik.com/kendo-angular-ui/components/dateinputs/datepicker/placeholders)&mdash;The Date Inputs conveniently enable you to render a text hint inside the their input field to give the users an indication of what type of value they should provide and in what format.
37
+ * [Typing](https://www.telerik.com/kendo-angular-ui/components/dateinputs/datepicker/typing)&mdash;You can control the user typing experience of the input-based Date Inputs by configuring the available typing options depending on your specific requirements.
38
+ * [View Options](https://www.telerik.com/kendo-angular-ui/components/dateinputs/datepicker/calendar-options)&mdash;There are various options provided for configuring the type of calendar, the initially displayed view, the currently focused date, and the view depth to which the user can navigate.
39
+ * [Templates](https://www.telerik.com/kendo-angular-ui/components/dateinputs/datepicker/templates)&mdash;Customize the content and overall appearance of the calendar-based Date Inputs by utilizing ready-to-use templates and applying them to the individual cells of the components—for example, to the month, year, decade, or century calendar cells.
40
+ * [Integration with JSON](https://www.telerik.com/kendo-angular-ui/components/dateinputs/datepicker/integration-with-json)&mdash;Since the Date Inputs only work with JavaScript Date instances, and the data received from the server is serialized in JSON format, the components provide options for binding to dates that are serialized as strings.
41
+ * [Globalization](https://www.telerik.com/kendo-angular-ui/components/dateinputs/globalization)&mdash;The included components support globalization to ensure that they can fit well in any application, no matter what languages and locales need to be supported. Additionally, the Date Inputs support rendering in a right-to-left (RTL) direction.
42
+ * [Accessibility](https://www.telerik.com/kendo-angular-ui/components/dateinputs/datepicker/accessibility)&mdash;The Date Inputs are accessible for screen readers and support WAI-ARIA attributes.
43
+ * [Keyboard Navigation](https://www.telerik.com/kendo-angular-ui/components/dateinputs/datepicker/keyboard-navigation)&mdash;The Date Inputs support a number of keyboard shortcuts which alow users to accomplish various commands.
79
44
 
80
- ## Angular DateTimePicker Component
45
+ ## Support Options
81
46
 
82
- The [Angular DateTimePicker Component](https://www.telerik.com/kendo-angular-ui/components/dateinputs/datetimepicker/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dateinputs) combines the DateIput, Calendar, and TimePicker components to provide a interactive form element for picking dates and specific times.
47
+ For any issues you might encounter while working with the Kendo UI for Angular Date Inputs, you have the following support channels available:
83
48
 
84
- ### Key Features
85
-
86
- * [Calendar options](https://www.telerik.com/kendo-angular-ui/components/dateinputs/datetimepicker/calendar-options/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dateinputs)&mdash;Configure the popup calendar by switching between different calendar layouts, handling the animation of the calendar navigation, setting the focused dates, and more.
87
- * [Date and time ranges](https://www.telerik.com/kendo-angular-ui/components/dateinputs/datetimepicker/date-time-limits/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dateinputs)&mdash;Date and time ranges can be defined by setting a start and end date for a period of time.
88
- * [Disabled dates](https://www.telerik.com/kendo-angular-ui/components/dateinputs/datetimepicker/disabled-dates/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dateinputs)&mdash;The Angular DateTimePicker supports specific approaches for disabling a selection of dates such as through using a function, an array of dates, or an array of days.
89
- * [Formats](https://www.telerik.com/kendo-angular-ui/components/dateinputs/datetimepicker/formats/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dateinputs) &mdash;Display the DateTimePicker in its single format at all times or configure it to show the value in different formats when the input is focused or blurred.
90
- * [Placeholders](https://www.telerik.com/kendo-angular-ui/components/dateinputs/datetimepicker/placeholders/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dateinputs)&mdash;The DateTimePicker provides options for setting its input field and render a text hint, a floating label, or descriptions for its format sections.
91
- * [Incremental steps](https://www.telerik.com/kendo-angular-ui/components/dateinputs/datetimepicker/incremental-steps/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dateinputs)&mdash;The DateTimePicker enables you to change the default step for increasing and decreasing the parts of its date values.
92
- * [Popup options](https://www.telerik.com/kendo-angular-ui/components/dateinputs/datetimepicker/popup-options/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dateinputs)&mdash;Customizing the calendar popup through various configuation options such as toggling the cancel button.
93
-
94
- ## Angular MultiView Calendar
95
-
96
- The [Angular MultiView Calendar](https://www.telerik.com/kendo-angular-ui/components/dateinputs/multiviewcalendar/) renders multiple caleandars in one container for the purposes of selecting and navigating dates. It is most often used for setting start and end dates.
97
-
98
- ### Key Features
99
-
100
- * [Focused and selected dates](https://www.telerik.com/kendo-angular-ui/components/dateinputs/multiviewcalendar/dates/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dateinputs)&mdash; Control the focused and selected dates within the MultiViewCalendar.
101
- * [Disabled dates](https://www.telerik.com/kendo-angular-ui/components/dateinputs/multiviewcalendar/disabled-dates/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dateinputs)&mdash; The MultiViewCalendar supports specific approaches for disabling a selection of dates such as through using a function, an array of dates, or an array of days.
102
- * [Date ranges](https://www.telerik.com/kendo-angular-ui/components/dateinputs/multiviewcalendar/selection-range/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dateinputs)&mdash; Display a start-end date period as a selection range.
103
- * [Active view](https://www.telerik.com/kendo-angular-ui/components/dateinputs/multiviewcalendar/active-view/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dateinputs)&mdash; Control the initially loaded page of the Calendar and render it in a month, year, decade, or year view.
104
- * [Multiple views](https://www.telerik.com/kendo-angular-ui/components/dateinputs/multiviewcalendar/multiple-views/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dateinputs)&mdash; Control the number of the horizontally rendered MultiViewCalendar views.
105
- * [View header](https://www.telerik.com/kendo-angular-ui/components/dateinputs/multiviewcalendar/view-header/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dateinputs)&mdash; Rrender a header for each view.
106
- * [View selection depth](https://www.telerik.com/kendo-angular-ui/components/dateinputs/multiviewcalendar/view-depth/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dateinputs)&mdash; The MultiViewCalendar provides an option for setting the view depth to which the user can navigate.
107
- * [Navigation animation](https://www.telerik.com/kendo-angular-ui/components/dateinputs/multiviewcalendar/navigation-animation/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dateinputs)&mdash; Enable navigation animation for the MultiViewCalendar.
108
- * [Week number column](https://www.telerik.com/kendo-angular-ui/components/dateinputs/multiviewcalendar/week-num-column/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dateinputs)&mdash; Render a column displaying the number of the weeks.
109
-
110
- ## Angular TImePicker Component
111
-
112
- The [Angular TImePicker Component](https://www.telerik.com/kendo-angular-ui/components/dateinputs/timepicker/) is an input field that combines text input and spinner controls to give users a choice in how they would like to enter time data.
113
-
114
- ### Key Features
115
-
116
- * [Time ranges](https://www.telerik.com/kendo-angular-ui/components/dateinputs/timepicker/time-ranges/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dateinputs) &mdash;Time ranges can be defined by setting a start and end time value.
117
- * [Incremental steps](https://www.telerik.com/kendo-angular-ui/components/dateinputs/timepicker/incremental-steps/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dateinputs) &mdash; The TimePicker enables you to change the default step for increasing and decreasing the parts of its time values.
118
- * [Formats](https://www.telerik.com/kendo-angular-ui/components/dateinputs/timepicker/formats/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dateinputs) &mdash; Control the format of the TimePicker by using its format property.
119
- * [Placeholders](https://www.telerik.com/kendo-angular-ui/components/dateinputs/timepicker/placeholders/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dateinputs) &mdash; The TimePicker provides options for setting its input field and render a text hint or descriptions for its format sections.
120
-
121
- ## Angular Date Inputs Package Common Features
122
-
123
- The following features are aviable across all the components in this package:
124
-
125
- * **Forms Support**&mdash;The package provides support both for asynchronous template-driven Angular forms and predominantly synchronous reactive Angular forms. This feature allows you to draw on the logic set either in the template, or in the component or typescript code.
126
- * **Date and Time Ranges**&mdash; Except for the MultiViewCalendar, all Date Inputs provide configuration options for setting a start and end date or time and, in this way, defining date or time ranges.
127
- * **Disabled Date Inputs**&mdash; You can choose to render the Date Inputs in their disabled state so that they are read-only.
128
- * **Templates**&mdash; Customize the content and the general look and feel of the calendar-based Date Inputs by utilizing ready-to-use templates and applying them to the individual cells of the components—for example, to the month, year, decade, or century calendar cells.
129
- * **Integration with JSON**&mdash;As the components only wprk with date JavaScript instances while the received data from the server is serialized in a JSON format, the component provides options for binding it to dates which are serialized as strings.
130
- * **Globalization**&mdash; The included components support globalization to ensure that they can fit well in any application, no matter what languages and locales need to be supported. Additionally, the Date Inputs support rendering in a right-to-left (RTL) direction.
131
- * **Accessibility**&mdash; The Date Inputs are accessible for screen readers and support WAI-ARIA attributes.
132
- * **Keyboard Navigation**&mdash; The Date Inputs support a number of keyboard shortcuts which alow users to accomplish various commands.
49
+ * Industry-leading technical support&mdash;Kendo UI for Angular paid license holders and users with an active (free) trial license can take advantage of our outstanding customer support. To submit a ticket, use the [dedicated Kendo UI for Angular support system](https://www.telerik.com/account/support-tickets).
50
+ * Product forums&mdash;The [Kendo UI for Angular forums](https://www.telerik.com/forums/kendo-angular-ui) are part of the free support you can get from the community and from the Kendo UI for Angular team.
51
+ * Feedback portal&mdash;The [Kendo UI for Angular feedback portal](https://feedback.telerik.com/kendo-angular-ui) is where you can request and vote for new features to be added.
133
52
 
134
53
  ## Resources
135
54
 
136
- * [Get Started with Kendo UI for Angular (requires trial registration)](https://www.telerik.com/kendo-angular-ui/getting-started?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dateinputs)
137
- * [Demos, documentation, and component reference](https://www.telerik.com/kendo-angular-ui/components?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dateinputs)
138
- * [Blogs](http://www.telerik.com/blogs/kendo-ui)
139
- * [Kendo UI for Angular pricing and licensing](https://www.telerik.com/purchase/kendo-ui?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dateinputs)
140
-
141
- ## Questions and Feedback
142
-
143
- * [Official Forums](https://www.telerik.com/forums/kendo-angular-ui?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dateinputs)
144
- * [GitHub Issues](https://github.com/telerik/kendo-angular/issues?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dateinputs)
145
- * [Feedback Portal](https://feedback.telerik.com/kendo-angular-ui?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dateinputs)
146
- * [StackOverflow](https://stackoverflow.com/questions/tagged/kendo-ui-angular2?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-dateinputs)
55
+ * [Getting Started with Kendo UI for Angular](https://www.telerik.com/kendo-angular-ui/getting-started)
56
+ * [Getting Started with the Kendo UI for Angular Date Inputs](https://www.telerik.com/kendo-angular-ui/components/dateinputs/installation/getting-started)
57
+ * [Date Inputs Overview page](https://www.telerik.com/kendo-angular-ui/components/dateinputs) and [Date Inputs API reference](https://www.telerik.com/kendo-angular-ui/components/dateinputs/api)
58
+ * [Kendo UI for Angular roadmap](https://www.telerik.com/kendo-angular-ui/roadmap)
59
+ * [Kendo UI for Angular Blog](https://www.telerik.com/blogs/tag/kendo-ui-for-angular)
60
+ * [Demos, documentation, and component reference](https://www.telerik.com/kendo-angular-ui/components)
61
+ * [Kendo UI for Angular pricing and licensing](https://www.telerik.com/purchase/kendo-ui)
147
62
 
148
63
  *Copyright © 2024 Progress Software Corporation and/or one of its subsidiaries or affiliates. All rights reserved.*
149
64
 
@@ -639,5 +639,5 @@ export declare class CalendarComponent implements ControlValueAccessor, OnChange
639
639
  private performRangeSelection;
640
640
  private performSelection;
641
641
  static ɵfac: i0.ɵɵFactoryDeclaration<CalendarComponent, [null, null, null, null, null, null, null, null, null, null, null, null, { optional: true; }]>;
642
- static ɵcmp: i0.ɵɵComponentDeclaration<CalendarComponent, "kendo-calendar", ["kendo-calendar"], { "showOtherMonthDays": "showOtherMonthDays"; "id": "id"; "focusedDate": "focusedDate"; "min": "min"; "max": "max"; "rangeValidation": "rangeValidation"; "weekDaysFormat": "weekDaysFormat"; "footer": "footer"; "selection": "selection"; "allowReverse": "allowReverse"; "value": "value"; "disabled": "disabled"; "tabindex": "tabindex"; "tabIndex": "tabIndex"; "disabledDates": "disabledDates"; "navigation": "navigation"; "activeView": "activeView"; "bottomView": "bottomView"; "topView": "topView"; "type": "type"; "animateNavigation": "animateNavigation"; "weekNumber": "weekNumber"; "cellTemplateRef": "cellTemplate"; "monthCellTemplateRef": "monthCellTemplate"; "yearCellTemplateRef": "yearCellTemplate"; "decadeCellTemplateRef": "decadeCellTemplate"; "centuryCellTemplateRef": "centuryCellTemplate"; "weekNumberTemplateRef": "weekNumberTemplate"; "headerTitleTemplateRef": "headerTitleTemplate"; "headerTemplateRef": "headerTemplate"; "footerTemplateRef": "footerTemplate"; "navigationItemTemplateRef": "navigationItemTemplate"; "size": "size"; "activeRangeEnd": "activeRangeEnd"; }, { "activeViewChange": "activeViewChange"; "navigate": "navigate"; "activeViewDateChange": "activeViewDateChange"; "onBlur": "blur"; "onFocus": "focus"; "valueChange": "valueChange"; }, ["cellTemplate", "monthCellTemplate", "yearCellTemplate", "decadeCellTemplate", "centuryCellTemplate", "weekNumberTemplate", "headerTitleTemplate", "headerTemplate", "footerTemplate", "navigationItemTemplate"], never, true, never>;
642
+ static ɵcmp: i0.ɵɵComponentDeclaration<CalendarComponent, "kendo-calendar", ["kendo-calendar"], { "showOtherMonthDays": { "alias": "showOtherMonthDays"; "required": false; }; "id": { "alias": "id"; "required": false; }; "focusedDate": { "alias": "focusedDate"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "rangeValidation": { "alias": "rangeValidation"; "required": false; }; "weekDaysFormat": { "alias": "weekDaysFormat"; "required": false; }; "footer": { "alias": "footer"; "required": false; }; "selection": { "alias": "selection"; "required": false; }; "allowReverse": { "alias": "allowReverse"; "required": false; }; "value": { "alias": "value"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "tabindex": { "alias": "tabindex"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "disabledDates": { "alias": "disabledDates"; "required": false; }; "navigation": { "alias": "navigation"; "required": false; }; "activeView": { "alias": "activeView"; "required": false; }; "bottomView": { "alias": "bottomView"; "required": false; }; "topView": { "alias": "topView"; "required": false; }; "type": { "alias": "type"; "required": false; }; "animateNavigation": { "alias": "animateNavigation"; "required": false; }; "weekNumber": { "alias": "weekNumber"; "required": false; }; "cellTemplateRef": { "alias": "cellTemplate"; "required": false; }; "monthCellTemplateRef": { "alias": "monthCellTemplate"; "required": false; }; "yearCellTemplateRef": { "alias": "yearCellTemplate"; "required": false; }; "decadeCellTemplateRef": { "alias": "decadeCellTemplate"; "required": false; }; "centuryCellTemplateRef": { "alias": "centuryCellTemplate"; "required": false; }; "weekNumberTemplateRef": { "alias": "weekNumberTemplate"; "required": false; }; "headerTitleTemplateRef": { "alias": "headerTitleTemplate"; "required": false; }; "headerTemplateRef": { "alias": "headerTemplate"; "required": false; }; "footerTemplateRef": { "alias": "footerTemplate"; "required": false; }; "navigationItemTemplateRef": { "alias": "navigationItemTemplate"; "required": false; }; "size": { "alias": "size"; "required": false; }; "activeRangeEnd": { "alias": "activeRangeEnd"; "required": false; }; }, { "activeViewChange": "activeViewChange"; "navigate": "navigate"; "activeViewDateChange": "activeViewDateChange"; "onBlur": "blur"; "onFocus": "focus"; "valueChange": "valueChange"; }, ["cellTemplate", "monthCellTemplate", "yearCellTemplate", "decadeCellTemplate", "centuryCellTemplate", "weekNumberTemplate", "headerTitleTemplate", "headerTemplate", "footerTemplate", "navigationItemTemplate"], never, true, never>;
643
643
  }
@@ -18,5 +18,5 @@ export declare class FooterComponent {
18
18
  getToday: () => Date;
19
19
  constructor(intl: IntlService);
20
20
  static ɵfac: i0.ɵɵFactoryDeclaration<FooterComponent, never>;
21
- static ɵcmp: i0.ɵɵComponentDeclaration<FooterComponent, "kendo-calendar-footer", never, { "footerTemplateRef": "footerTemplateRef"; "activeViewValue": "activeViewValue"; "currentDate": "currentDate"; }, {}, never, never, true, never>;
21
+ static ɵcmp: i0.ɵɵComponentDeclaration<FooterComponent, "kendo-calendar-footer", never, { "footerTemplateRef": { "alias": "footerTemplateRef"; "required": false; }; "activeViewValue": { "alias": "activeViewValue"; "required": false; }; "currentDate": { "alias": "currentDate"; "required": false; }; }, {}, never, never, true, never>;
22
22
  }
@@ -34,7 +34,7 @@ export declare class KForOf<T> implements DoCheck, OnChanges {
34
34
  ngDoCheck(): void;
35
35
  private _applyChanges;
36
36
  static ɵfac: i0.ɵɵFactoryDeclaration<KForOf<any>, never>;
37
- static ɵdir: i0.ɵɵDirectiveDeclaration<KForOf<any>, "[kFor][kForOf]", never, { "kForOf": "kForOf"; "kForTrackBy": "kForTrackBy"; "kForTemplate": "kForTemplate"; }, {}, never, never, true, never>;
37
+ static ɵdir: i0.ɵɵDirectiveDeclaration<KForOf<any>, "[kFor][kForOf]", never, { "kForOf": { "alias": "kForOf"; "required": false; }; "kForTrackBy": { "alias": "kForTrackBy"; "required": false; }; "kForTemplate": { "alias": "kForTemplate"; "required": false; }; }, {}, never, never, true, never>;
38
38
  }
39
39
  /**
40
40
  * @hidden
@@ -69,5 +69,5 @@ export declare class HeaderComponent implements OnChanges, OnInit, OnDestroy {
69
69
  private getTitle;
70
70
  private setTodayAvailability;
71
71
  static ɵfac: i0.ɵɵFactoryDeclaration<HeaderComponent, never>;
72
- static ɵcmp: i0.ɵɵComponentDeclaration<HeaderComponent, "kendo-calendar-header", never, { "activeView": "activeView"; "currentDate": "currentDate"; "min": "min"; "max": "max"; "rangeLength": "rangeLength"; "titleTemplateRef": "titleTemplateRef"; "headerTemplateRef": "headerTemplateRef"; "isPrevDisabled": "isPrevDisabled"; "isNextDisabled": "isNextDisabled"; "showNavigationButtons": "showNavigationButtons"; "orientation": "orientation"; "id": "id"; "size": "size"; }, { "todayButtonClick": "todayButtonClick"; "prevButtonClick": "prevButtonClick"; "nextButtonClick": "nextButtonClick"; }, never, never, true, never>;
72
+ static ɵcmp: i0.ɵɵComponentDeclaration<HeaderComponent, "kendo-calendar-header", never, { "activeView": { "alias": "activeView"; "required": false; }; "currentDate": { "alias": "currentDate"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "rangeLength": { "alias": "rangeLength"; "required": false; }; "titleTemplateRef": { "alias": "titleTemplateRef"; "required": false; }; "headerTemplateRef": { "alias": "headerTemplateRef"; "required": false; }; "isPrevDisabled": { "alias": "isPrevDisabled"; "required": false; }; "isNextDisabled": { "alias": "isNextDisabled"; "required": false; }; "showNavigationButtons": { "alias": "showNavigationButtons"; "required": false; }; "orientation": { "alias": "orientation"; "required": false; }; "id": { "alias": "id"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, { "todayButtonClick": "todayButtonClick"; "prevButtonClick": "prevButtonClick"; "nextButtonClick": "nextButtonClick"; }, never, never, true, never>;
73
73
  }
@@ -102,5 +102,5 @@ export declare class HorizontalViewListComponent implements OnChanges, OnDestroy
102
102
  private getTake;
103
103
  private setAriaActivedescendant;
104
104
  static ɵfac: i0.ɵɵFactoryDeclaration<HorizontalViewListComponent, never>;
105
- static ɵcmp: i0.ɵɵComponentDeclaration<HorizontalViewListComponent, "kendo-calendar-horizontal", never, { "showOtherMonthDays": "showOtherMonthDays"; "cellTemplateRef": "cellTemplateRef"; "weekNumberTemplateRef": "weekNumberTemplateRef"; "allowReverse": "allowReverse"; "activeRangeEnd": "activeRangeEnd"; "activeView": "activeView"; "cellUID": "cellUID"; "focusedDate": "focusedDate"; "isActive": "isActive"; "min": "min"; "max": "max"; "selectionRange": "selectionRange"; "selectedDates": "selectedDates"; "views": "views"; "showViewHeader": "showViewHeader"; "animateNavigation": "animateNavigation"; "orientation": "orientation"; "activeDescendant": "activeDescendant"; "tabIndex": "tabIndex"; "disabled": "disabled"; "id": "id"; "weekDaysFormat": "weekDaysFormat"; "weekNumber": "weekNumber"; }, { "cellClick": "cellClick"; "weekNumberCellClick": "weekNumberCellClick"; "cellEnter": "cellEnter"; "cellLeave": "cellLeave"; "activeDateChange": "activeDateChange"; "focusCalendar": "focusCalendar"; "blurCalendar": "blurCalendar"; "focusedCellChange": "focusedCellChange"; }, never, never, true, never>;
105
+ static ɵcmp: i0.ɵɵComponentDeclaration<HorizontalViewListComponent, "kendo-calendar-horizontal", never, { "showOtherMonthDays": { "alias": "showOtherMonthDays"; "required": false; }; "cellTemplateRef": { "alias": "cellTemplateRef"; "required": false; }; "weekNumberTemplateRef": { "alias": "weekNumberTemplateRef"; "required": false; }; "allowReverse": { "alias": "allowReverse"; "required": false; }; "activeRangeEnd": { "alias": "activeRangeEnd"; "required": false; }; "activeView": { "alias": "activeView"; "required": false; }; "cellUID": { "alias": "cellUID"; "required": false; }; "focusedDate": { "alias": "focusedDate"; "required": false; }; "isActive": { "alias": "isActive"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "selectionRange": { "alias": "selectionRange"; "required": false; }; "selectedDates": { "alias": "selectedDates"; "required": false; }; "views": { "alias": "views"; "required": false; }; "showViewHeader": { "alias": "showViewHeader"; "required": false; }; "animateNavigation": { "alias": "animateNavigation"; "required": false; }; "orientation": { "alias": "orientation"; "required": false; }; "activeDescendant": { "alias": "activeDescendant"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "id": { "alias": "id"; "required": false; }; "weekDaysFormat": { "alias": "weekDaysFormat"; "required": false; }; "weekNumber": { "alias": "weekNumber"; "required": false; }; }, { "cellClick": "cellClick"; "weekNumberCellClick": "weekNumberCellClick"; "cellEnter": "cellEnter"; "cellLeave": "cellLeave"; "activeDateChange": "activeDateChange"; "focusCalendar": "focusCalendar"; "blurCalendar": "blurCalendar"; "focusedCellChange": "focusedCellChange"; }, never, never, true, never>;
106
106
  }
@@ -25,5 +25,5 @@ export declare class CalendarMessages extends ComponentMessages {
25
25
  */
26
26
  parentViewButtonTitle: string;
27
27
  static ɵfac: i0.ɵɵFactoryDeclaration<CalendarMessages, never>;
28
- static ɵdir: i0.ɵɵDirectiveDeclaration<CalendarMessages, "kendo-calendar-messages-base", never, { "today": "today"; "prevButtonTitle": "prevButtonTitle"; "nextButtonTitle": "nextButtonTitle"; "parentViewButtonTitle": "parentViewButtonTitle"; }, {}, never, never, false, never>;
28
+ static ɵdir: i0.ɵɵDirectiveDeclaration<CalendarMessages, "kendo-calendar-messages-base", never, { "today": { "alias": "today"; "required": false; }; "prevButtonTitle": { "alias": "prevButtonTitle"; "required": false; }; "nextButtonTitle": { "alias": "nextButtonTitle"; "required": false; }; "parentViewButtonTitle": { "alias": "parentViewButtonTitle"; "required": false; }; }, {}, never, never, false, never>;
29
29
  }
@@ -25,5 +25,5 @@ export declare class Messages extends ComponentMessages {
25
25
  */
26
26
  parentViewButtonTitle: string;
27
27
  static ɵfac: i0.ɵɵFactoryDeclaration<Messages, never>;
28
- static ɵdir: i0.ɵɵDirectiveDeclaration<Messages, "kendo-multiview-calendar-messages-base", never, { "today": "today"; "prevButtonTitle": "prevButtonTitle"; "nextButtonTitle": "nextButtonTitle"; "parentViewButtonTitle": "parentViewButtonTitle"; }, {}, never, never, false, never>;
28
+ static ɵdir: i0.ɵɵDirectiveDeclaration<Messages, "kendo-multiview-calendar-messages-base", never, { "today": { "alias": "today"; "required": false; }; "prevButtonTitle": { "alias": "prevButtonTitle"; "required": false; }; "nextButtonTitle": { "alias": "nextButtonTitle"; "required": false; }; "parentViewButtonTitle": { "alias": "parentViewButtonTitle"; "required": false; }; }, {}, never, never, false, never>;
29
29
  }
@@ -5,4 +5,4 @@
5
5
  /**
6
6
  * Specifies the Calendar orientation.
7
7
  */
8
- export declare type CalendarOrientation = 'horizontal' | 'vertical';
8
+ export type CalendarOrientation = 'horizontal' | 'vertical';
@@ -5,4 +5,4 @@
5
5
  /**
6
6
  * The literal type that defines which selection range end is active.
7
7
  */
8
- export declare type SelectionRangeEnd = 'start' | 'end' | null;
8
+ export type SelectionRangeEnd = 'start' | 'end' | null;
@@ -13,7 +13,7 @@ import { SelectionRange } from "./selection-range.interface";
13
13
  * * `range`
14
14
  *
15
15
  */
16
- export declare type CalendarSelection = 'single' | 'multiple' | 'range';
16
+ export type CalendarSelection = 'single' | 'multiple' | 'range';
17
17
  /**
18
18
  * @hidden
19
19
  */
@@ -10,4 +10,4 @@
10
10
  * - `classic`
11
11
  *
12
12
  */
13
- export declare type CalendarType = 'infinite' | 'classic';
13
+ export type CalendarType = 'infinite' | 'classic';
@@ -5,4 +5,4 @@
5
5
  /**
6
6
  * The literal type that defines all possible Calendar views.
7
7
  */
8
- export declare type CalendarView = 'month' | 'year' | 'decade' | 'century';
8
+ export type CalendarView = 'month' | 'year' | 'decade' | 'century';
@@ -641,5 +641,5 @@ export declare class MultiViewCalendarComponent implements AfterViewInit, Contro
641
641
  private performRangeSelection;
642
642
  private performSelection;
643
643
  static ɵfac: i0.ɵɵFactoryDeclaration<MultiViewCalendarComponent, never>;
644
- static ɵcmp: i0.ɵɵComponentDeclaration<MultiViewCalendarComponent, "kendo-multiviewcalendar", ["kendo-multiviewcalendar"], { "showOtherMonthDays": "showOtherMonthDays"; "showCalendarHeader": "showCalendarHeader"; "size": "size"; "id": "id"; "focusedDate": "focusedDate"; "footer": "footer"; "min": "min"; "max": "max"; "rangeValidation": "rangeValidation"; "disabledDatesRangeValidation": "disabledDatesRangeValidation"; "selection": "selection"; "allowReverse": "allowReverse"; "value": "value"; "disabled": "disabled"; "tabindex": "tabindex"; "tabIndex": "tabIndex"; "weekDaysFormat": "weekDaysFormat"; "isActive": "isActive"; "disabledDates": "disabledDates"; "activeView": "activeView"; "bottomView": "bottomView"; "topView": "topView"; "showViewHeader": "showViewHeader"; "animateNavigation": "animateNavigation"; "weekNumber": "weekNumber"; "activeRangeEnd": "activeRangeEnd"; "selectionRange": "selectionRange"; "views": "views"; "orientation": "orientation"; "cellTemplateRef": "cellTemplate"; "monthCellTemplateRef": "monthCellTemplate"; "yearCellTemplateRef": "yearCellTemplate"; "decadeCellTemplateRef": "decadeCellTemplate"; "centuryCellTemplateRef": "centuryCellTemplate"; "weekNumberTemplateRef": "weekNumberTemplate"; "footerTemplateRef": "footerTemplate"; "headerTitleTemplateRef": "headerTitleTemplate"; "headerTemplateRef": "headerTemplate"; }, { "activeViewChange": "activeViewChange"; "navigate": "navigate"; "cellEnter": "cellEnter"; "cellLeave": "cellLeave"; "valueChange": "valueChange"; "rangeSelectionChange": "rangeSelectionChange"; "blurEvent": "blur"; "focusEvent": "focus"; "focusCalendar": "focusCalendar"; "onClosePopup": "onClosePopup"; "onTabPress": "onTabPress"; "onShiftTabPress": "onShiftTabPress"; }, ["cellTemplate", "monthCellTemplate", "yearCellTemplate", "decadeCellTemplate", "centuryCellTemplate", "weekNumberTemplate", "headerTitleTemplate", "headerTemplate", "footerTemplate"], never, true, never>;
644
+ static ɵcmp: i0.ɵɵComponentDeclaration<MultiViewCalendarComponent, "kendo-multiviewcalendar", ["kendo-multiviewcalendar"], { "showOtherMonthDays": { "alias": "showOtherMonthDays"; "required": false; }; "showCalendarHeader": { "alias": "showCalendarHeader"; "required": false; }; "size": { "alias": "size"; "required": false; }; "id": { "alias": "id"; "required": false; }; "focusedDate": { "alias": "focusedDate"; "required": false; }; "footer": { "alias": "footer"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "rangeValidation": { "alias": "rangeValidation"; "required": false; }; "disabledDatesRangeValidation": { "alias": "disabledDatesRangeValidation"; "required": false; }; "selection": { "alias": "selection"; "required": false; }; "allowReverse": { "alias": "allowReverse"; "required": false; }; "value": { "alias": "value"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "tabindex": { "alias": "tabindex"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "weekDaysFormat": { "alias": "weekDaysFormat"; "required": false; }; "isActive": { "alias": "isActive"; "required": false; }; "disabledDates": { "alias": "disabledDates"; "required": false; }; "activeView": { "alias": "activeView"; "required": false; }; "bottomView": { "alias": "bottomView"; "required": false; }; "topView": { "alias": "topView"; "required": false; }; "showViewHeader": { "alias": "showViewHeader"; "required": false; }; "animateNavigation": { "alias": "animateNavigation"; "required": false; }; "weekNumber": { "alias": "weekNumber"; "required": false; }; "activeRangeEnd": { "alias": "activeRangeEnd"; "required": false; }; "selectionRange": { "alias": "selectionRange"; "required": false; }; "views": { "alias": "views"; "required": false; }; "orientation": { "alias": "orientation"; "required": false; }; "cellTemplateRef": { "alias": "cellTemplate"; "required": false; }; "monthCellTemplateRef": { "alias": "monthCellTemplate"; "required": false; }; "yearCellTemplateRef": { "alias": "yearCellTemplate"; "required": false; }; "decadeCellTemplateRef": { "alias": "decadeCellTemplate"; "required": false; }; "centuryCellTemplateRef": { "alias": "centuryCellTemplate"; "required": false; }; "weekNumberTemplateRef": { "alias": "weekNumberTemplate"; "required": false; }; "footerTemplateRef": { "alias": "footerTemplate"; "required": false; }; "headerTitleTemplateRef": { "alias": "headerTitleTemplate"; "required": false; }; "headerTemplateRef": { "alias": "headerTemplate"; "required": false; }; }, { "activeViewChange": "activeViewChange"; "navigate": "navigate"; "cellEnter": "cellEnter"; "cellLeave": "cellLeave"; "valueChange": "valueChange"; "rangeSelectionChange": "rangeSelectionChange"; "blurEvent": "blur"; "focusEvent": "focus"; "focusCalendar": "focusCalendar"; "onClosePopup": "onClosePopup"; "onTabPress": "onTabPress"; "onShiftTabPress": "onShiftTabPress"; }, ["cellTemplate", "monthCellTemplate", "yearCellTemplate", "decadeCellTemplate", "centuryCellTemplate", "weekNumberTemplate", "headerTitleTemplate", "headerTemplate", "footerTemplate"], never, true, never>;
645
645
  }
@@ -56,5 +56,5 @@ export declare class NavigationComponent implements OnChanges, OnDestroy, AfterV
56
56
  private getTake;
57
57
  private intlChange;
58
58
  static ɵfac: i0.ɵɵFactoryDeclaration<NavigationComponent, never>;
59
- static ɵcmp: i0.ɵɵComponentDeclaration<NavigationComponent, "kendo-calendar-navigation", never, { "activeView": "activeView"; "min": "min"; "max": "max"; "focusedDate": "focusedDate"; "templateRef": "templateRef"; }, { "valueChange": "valueChange"; "pageChange": "pageChange"; }, never, never, true, never>;
59
+ static ɵcmp: i0.ɵɵComponentDeclaration<NavigationComponent, "kendo-calendar-navigation", never, { "activeView": { "alias": "activeView"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "focusedDate": { "alias": "focusedDate"; "required": false; }; "templateRef": { "alias": "templateRef"; "required": false; }; }, { "valueChange": "valueChange"; "pageChange": "pageChange"; }, never, never, true, never>;
60
60
  }
@@ -104,5 +104,5 @@ export declare class ViewListComponent implements OnChanges, OnDestroy, AfterVie
104
104
  private getWeekNames;
105
105
  private intlChange;
106
106
  static ɵfac: i0.ɵɵFactoryDeclaration<ViewListComponent, never>;
107
- static ɵcmp: i0.ɵɵComponentDeclaration<ViewListComponent, "kendo-calendar-viewlist", never, { "allowReverse": "allowReverse"; "cellTemplateRef": "cellTemplateRef"; "weekNumberTemplateRef": "weekNumberTemplateRef"; "headerTitleTemplateRef": "headerTitleTemplateRef"; "headerTemplateRef": "headerTemplateRef"; "footerTemplateRef": "footerTemplateRef"; "showOtherMonthDays": "showOtherMonthDays"; "activeView": "activeView"; "cellUID": "cellUID"; "focusedDate": "focusedDate"; "isActive": "isActive"; "min": "min"; "max": "max"; "selectedDates": "selectedDates"; "tabIndex": "tabIndex"; "disabled": "disabled"; "id": "id"; "showFooter": "showFooter"; "weekDaysFormat": "weekDaysFormat"; "activeRangeEnd": "activeRangeEnd"; "selectionRange": "selectionRange"; "size": "size"; "weekNumber": "weekNumber"; }, { "cellEnter": "cellEnter"; "cellClick": "cellClick"; "weekNumberCellClick": "weekNumberCellClick"; "activeDateChange": "activeDateChange"; "todayButtonClick": "todayButtonClick"; "pageChange": "pageChange"; "focusCalendar": "focusCalendar"; "blurCalendar": "blurCalendar"; "focusedCellChange": "focusedCellChange"; }, never, never, true, never>;
107
+ static ɵcmp: i0.ɵɵComponentDeclaration<ViewListComponent, "kendo-calendar-viewlist", never, { "allowReverse": { "alias": "allowReverse"; "required": false; }; "cellTemplateRef": { "alias": "cellTemplateRef"; "required": false; }; "weekNumberTemplateRef": { "alias": "weekNumberTemplateRef"; "required": false; }; "headerTitleTemplateRef": { "alias": "headerTitleTemplateRef"; "required": false; }; "headerTemplateRef": { "alias": "headerTemplateRef"; "required": false; }; "footerTemplateRef": { "alias": "footerTemplateRef"; "required": false; }; "showOtherMonthDays": { "alias": "showOtherMonthDays"; "required": false; }; "activeView": { "alias": "activeView"; "required": false; }; "cellUID": { "alias": "cellUID"; "required": false; }; "focusedDate": { "alias": "focusedDate"; "required": false; }; "isActive": { "alias": "isActive"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "selectedDates": { "alias": "selectedDates"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "id": { "alias": "id"; "required": false; }; "showFooter": { "alias": "showFooter"; "required": false; }; "weekDaysFormat": { "alias": "weekDaysFormat"; "required": false; }; "activeRangeEnd": { "alias": "activeRangeEnd"; "required": false; }; "selectionRange": { "alias": "selectionRange"; "required": false; }; "size": { "alias": "size"; "required": false; }; "weekNumber": { "alias": "weekNumber"; "required": false; }; }, { "cellEnter": "cellEnter"; "cellClick": "cellClick"; "weekNumberCellClick": "weekNumberCellClick"; "activeDateChange": "activeDateChange"; "todayButtonClick": "todayButtonClick"; "pageChange": "pageChange"; "focusCalendar": "focusCalendar"; "blurCalendar": "blurCalendar"; "focusedCellChange": "focusedCellChange"; }, never, never, true, never>;
108
108
  }
@@ -82,5 +82,5 @@ export declare class ViewComponent implements OnChanges, OnDestroy {
82
82
  private emitCellLeave;
83
83
  private cellByIndex;
84
84
  static ɵfac: i0.ɵɵFactoryDeclaration<ViewComponent, never>;
85
- static ɵcmp: i0.ɵɵComponentDeclaration<ViewComponent, "[kendoCalendarView]", never, { "allowReverse": "allowReverse"; "showOtherMonthDays": "showOtherMonthDays"; "direction": "direction"; "isActive": "isActive"; "activeView": "activeView"; "cellUID": "cellUID"; "focusedDate": "focusedDate"; "viewDate": "viewDate"; "activeRangeEnd": "activeRangeEnd"; "selectionRange": "selectionRange"; "min": "min"; "max": "max"; "selectedDates": "selectedDates"; "weekNumber": "weekNumber"; "viewIndex": "viewIndex"; "templateRef": "templateRef"; "weekNumberTemplateRef": "weekNumberTemplateRef"; "headerTitle": "headerTitle"; }, { "cellClick": "cellClick"; "weekNumberCellClick": "weekNumberCellClick"; "cellEnter": "cellEnter"; "cellLeave": "cellLeave"; "focusedCellId": "focusedCellId"; }, never, never, true, never>;
85
+ static ɵcmp: i0.ɵɵComponentDeclaration<ViewComponent, "[kendoCalendarView]", never, { "allowReverse": { "alias": "allowReverse"; "required": false; }; "showOtherMonthDays": { "alias": "showOtherMonthDays"; "required": false; }; "direction": { "alias": "direction"; "required": false; }; "isActive": { "alias": "isActive"; "required": false; }; "activeView": { "alias": "activeView"; "required": false; }; "cellUID": { "alias": "cellUID"; "required": false; }; "focusedDate": { "alias": "focusedDate"; "required": false; }; "viewDate": { "alias": "viewDate"; "required": false; }; "activeRangeEnd": { "alias": "activeRangeEnd"; "required": false; }; "selectionRange": { "alias": "selectionRange"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "selectedDates": { "alias": "selectedDates"; "required": false; }; "weekNumber": { "alias": "weekNumber"; "required": false; }; "viewIndex": { "alias": "viewIndex"; "required": false; }; "templateRef": { "alias": "templateRef"; "required": false; }; "weekNumberTemplateRef": { "alias": "weekNumberTemplateRef"; "required": false; }; "headerTitle": { "alias": "headerTitle"; "required": false; }; }, { "cellClick": "cellClick"; "weekNumberCellClick": "weekNumberCellClick"; "cellEnter": "cellEnter"; "cellLeave": "cellLeave"; "focusedCellId": "focusedCellId"; }, never, never, true, never>;
86
86
  }
@@ -11,4 +11,4 @@
11
11
  * - `outline`
12
12
  * - `none`
13
13
  */
14
- export declare type DateInputFillMode = 'solid' | 'flat' | 'outline' | 'none';
14
+ export type DateInputFillMode = 'solid' | 'flat' | 'outline' | 'none';
@@ -12,4 +12,4 @@
12
12
  * - `full`
13
13
  * - `none`
14
14
  */
15
- export declare type DateInputRounded = 'small' | 'medium' | 'large' | 'full' | 'none';
15
+ export type DateInputRounded = 'small' | 'medium' | 'large' | 'full' | 'none';
@@ -11,4 +11,4 @@
11
11
  * - `large`
12
12
  * - `none`
13
13
  */
14
- export declare type DateInputSize = 'small' | 'medium' | 'large' | 'none';
14
+ export type DateInputSize = 'small' | 'medium' | 'large' | 'none';
@@ -7,4 +7,4 @@
7
7
  * The format depends on the current locale.
8
8
  *
9
9
  */
10
- export declare type WeekDaysFormat = 'short' | 'narrow' | 'abbreviated';
10
+ export type WeekDaysFormat = 'short' | 'narrow' | 'abbreviated';
@@ -17,7 +17,7 @@ import { DateInputFillMode } from '../common/models/fillmode';
17
17
  import { SVGIcon } from '@progress/kendo-svg-icons';
18
18
  import { DateFieldNameOptions, DateFormatOptions, DateFormatPart, DayRange, NumberFormatOptions } from '@progress/kendo-intl';
19
19
  import * as i0 from "@angular/core";
20
- declare type DatePickerType = 'daterangestart' | 'daterangeend' | 'datepicker' | 'datetimepicker' | 'timepicker';
20
+ type DatePickerType = 'daterangestart' | 'daterangeend' | 'datepicker' | 'datetimepicker' | 'timepicker';
21
21
  /**
22
22
  * @hidden
23
23
  * Need to overrite `dateFormatNames` parameters order and provide `cldr` object
@@ -540,6 +540,6 @@ export declare class DateInputComponent implements OnInit, AfterViewInit, Contro
540
540
  private setComponentClasses;
541
541
  private setInputAttributes;
542
542
  static ɵfac: i0.ɵɵFactoryDeclaration<DateInputComponent, [null, null, null, null, null, null, null, { optional: true; }]>;
543
- static ɵcmp: i0.ɵɵComponentDeclaration<DateInputComponent, "kendo-dateinput", ["kendo-dateinput"], { "focusableId": "focusableId"; "pickerType": "pickerType"; "clearButton": "clearButton"; "disabled": "disabled"; "readonly": "readonly"; "title": "title"; "tabindex": "tabindex"; "role": "role"; "ariaReadOnly": "ariaReadOnly"; "tabIndex": "tabIndex"; "isRequired": "isRequired"; "format": "format"; "formatPlaceholder": "formatPlaceholder"; "placeholder": "placeholder"; "steps": "steps"; "max": "max"; "min": "min"; "rangeValidation": "rangeValidation"; "autoCorrectParts": "autoCorrectParts"; "autoSwitchParts": "autoSwitchParts"; "autoSwitchKeys": "autoSwitchKeys"; "allowCaretMode": "allowCaretMode"; "autoFill": "autoFill"; "incompleteDateValidation": "incompleteDateValidation"; "twoDigitYearMax": "twoDigitYearMax"; "enableMouseWheel": "enableMouseWheel"; "value": "value"; "spinners": "spinners"; "isPopupOpen": "isPopupOpen"; "hasPopup": "hasPopup"; "size": "size"; "rounded": "rounded"; "fillMode": "fillMode"; "inputAttributes": "inputAttributes"; }, { "valueChange": "valueChange"; "valueUpdate": "valueUpdate"; "onFocus": "focus"; "onBlur": "blur"; }, never, never, true, never>;
543
+ static ɵcmp: i0.ɵɵComponentDeclaration<DateInputComponent, "kendo-dateinput", ["kendo-dateinput"], { "focusableId": { "alias": "focusableId"; "required": false; }; "pickerType": { "alias": "pickerType"; "required": false; }; "clearButton": { "alias": "clearButton"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "title": { "alias": "title"; "required": false; }; "tabindex": { "alias": "tabindex"; "required": false; }; "role": { "alias": "role"; "required": false; }; "ariaReadOnly": { "alias": "ariaReadOnly"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "isRequired": { "alias": "isRequired"; "required": false; }; "format": { "alias": "format"; "required": false; }; "formatPlaceholder": { "alias": "formatPlaceholder"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "steps": { "alias": "steps"; "required": false; }; "max": { "alias": "max"; "required": false; }; "min": { "alias": "min"; "required": false; }; "rangeValidation": { "alias": "rangeValidation"; "required": false; }; "autoCorrectParts": { "alias": "autoCorrectParts"; "required": false; }; "autoSwitchParts": { "alias": "autoSwitchParts"; "required": false; }; "autoSwitchKeys": { "alias": "autoSwitchKeys"; "required": false; }; "allowCaretMode": { "alias": "allowCaretMode"; "required": false; }; "autoFill": { "alias": "autoFill"; "required": false; }; "incompleteDateValidation": { "alias": "incompleteDateValidation"; "required": false; }; "twoDigitYearMax": { "alias": "twoDigitYearMax"; "required": false; }; "enableMouseWheel": { "alias": "enableMouseWheel"; "required": false; }; "value": { "alias": "value"; "required": false; }; "spinners": { "alias": "spinners"; "required": false; }; "isPopupOpen": { "alias": "isPopupOpen"; "required": false; }; "hasPopup": { "alias": "hasPopup"; "required": false; }; "size": { "alias": "size"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "fillMode": { "alias": "fillMode"; "required": false; }; "inputAttributes": { "alias": "inputAttributes"; "required": false; }; }, { "valueChange": "valueChange"; "valueUpdate": "valueUpdate"; "onFocus": "focus"; "onBlur": "blur"; }, never, never, true, never>;
544
544
  }
545
545
  export {};
@@ -21,5 +21,5 @@ export declare class DateInputMessages extends ComponentMessages {
21
21
  */
22
22
  clearTitle: string;
23
23
  static ɵfac: i0.ɵɵFactoryDeclaration<DateInputMessages, never>;
24
- static ɵdir: i0.ɵɵDirectiveDeclaration<DateInputMessages, "kendo-dateinput-messages-base", never, { "decrement": "decrement"; "increment": "increment"; "clearTitle": "clearTitle"; }, {}, never, never, false, never>;
24
+ static ɵdir: i0.ɵɵDirectiveDeclaration<DateInputMessages, "kendo-dateinput-messages-base", never, { "decrement": { "alias": "decrement"; "required": false; }; "increment": { "alias": "increment"; "required": false; }; "clearTitle": { "alias": "clearTitle"; "required": false; }; }, {}, never, never, false, never>;
25
25
  }
@@ -63,4 +63,4 @@ export interface DateInputCustomFormatPlaceholder {
63
63
  * Retrieved from [CLDR](https://github.com/telerik/kendo-intl/blob/develop/docs/cldr/index.md).
64
64
  * *`'formatPattern'`&mdash;Directly displays the format section. For example, turns `MM` into `MM`.
65
65
  */
66
- export declare type DateInputFormatPlaceholder = 'wide' | 'narrow' | 'short' | 'formatPattern' | DateInputCustomFormatPlaceholder;
66
+ export type DateInputFormatPlaceholder = 'wide' | 'narrow' | 'short' | 'formatPattern' | DateInputCustomFormatPlaceholder;
@@ -696,5 +696,5 @@ export declare class DatePickerComponent extends MultiTabStop implements Control
696
696
  private handleDateCompletenessChange;
697
697
  private setComponentClasses;
698
698
  static ɵfac: i0.ɵɵFactoryDeclaration<DatePickerComponent, never>;
699
- static ɵcmp: i0.ɵɵComponentDeclaration<DatePickerComponent, "kendo-datepicker", ["kendo-datepicker"], { "focusableId": "focusableId"; "cellTemplateRef": "cellTemplate"; "clearButton": "clearButton"; "inputAttributes": "inputAttributes"; "monthCellTemplateRef": "monthCellTemplate"; "yearCellTemplateRef": "yearCellTemplate"; "decadeCellTemplateRef": "decadeCellTemplate"; "centuryCellTemplateRef": "centuryCellTemplate"; "weekNumberTemplateRef": "weekNumberTemplate"; "headerTitleTemplateRef": "headerTitleTemplate"; "headerTemplateRef": "headerTemplate"; "footerTemplateRef": "footerTemplate"; "footer": "footer"; "navigationItemTemplateRef": "navigationItemTemplate"; "weekDaysFormat": "weekDaysFormat"; "showOtherMonthDays": "showOtherMonthDays"; "activeView": "activeView"; "bottomView": "bottomView"; "topView": "topView"; "calendarType": "calendarType"; "animateCalendarNavigation": "animateCalendarNavigation"; "disabled": "disabled"; "readonly": "readonly"; "readOnlyInput": "readOnlyInput"; "popupSettings": "popupSettings"; "navigation": "navigation"; "min": "min"; "max": "max"; "incompleteDateValidation": "incompleteDateValidation"; "autoCorrectParts": "autoCorrectParts"; "autoSwitchParts": "autoSwitchParts"; "autoSwitchKeys": "autoSwitchKeys"; "enableMouseWheel": "enableMouseWheel"; "allowCaretMode": "allowCaretMode"; "autoFill": "autoFill"; "focusedDate": "focusedDate"; "value": "value"; "format": "format"; "twoDigitYearMax": "twoDigitYearMax"; "formatPlaceholder": "formatPlaceholder"; "placeholder": "placeholder"; "tabindex": "tabindex"; "tabIndex": "tabIndex"; "disabledDates": "disabledDates"; "title": "title"; "subtitle": "subtitle"; "rangeValidation": "rangeValidation"; "disabledDatesValidation": "disabledDatesValidation"; "weekNumber": "weekNumber"; "size": "size"; "rounded": "rounded"; "fillMode": "fillMode"; "adaptiveMode": "adaptiveMode"; }, { "valueChange": "valueChange"; "onFocus": "focus"; "onBlur": "blur"; "open": "open"; "close": "close"; "escape": "escape"; }, ["cellTemplate", "monthCellTemplate", "yearCellTemplate", "decadeCellTemplate", "centuryCellTemplate", "weekNumberTemplate", "headerTitleTemplate", "headerTemplate", "footerTemplate", "navigationItemTemplate"], never, true, never>;
699
+ static ɵcmp: i0.ɵɵComponentDeclaration<DatePickerComponent, "kendo-datepicker", ["kendo-datepicker"], { "focusableId": { "alias": "focusableId"; "required": false; }; "cellTemplateRef": { "alias": "cellTemplate"; "required": false; }; "clearButton": { "alias": "clearButton"; "required": false; }; "inputAttributes": { "alias": "inputAttributes"; "required": false; }; "monthCellTemplateRef": { "alias": "monthCellTemplate"; "required": false; }; "yearCellTemplateRef": { "alias": "yearCellTemplate"; "required": false; }; "decadeCellTemplateRef": { "alias": "decadeCellTemplate"; "required": false; }; "centuryCellTemplateRef": { "alias": "centuryCellTemplate"; "required": false; }; "weekNumberTemplateRef": { "alias": "weekNumberTemplate"; "required": false; }; "headerTitleTemplateRef": { "alias": "headerTitleTemplate"; "required": false; }; "headerTemplateRef": { "alias": "headerTemplate"; "required": false; }; "footerTemplateRef": { "alias": "footerTemplate"; "required": false; }; "footer": { "alias": "footer"; "required": false; }; "navigationItemTemplateRef": { "alias": "navigationItemTemplate"; "required": false; }; "weekDaysFormat": { "alias": "weekDaysFormat"; "required": false; }; "showOtherMonthDays": { "alias": "showOtherMonthDays"; "required": false; }; "activeView": { "alias": "activeView"; "required": false; }; "bottomView": { "alias": "bottomView"; "required": false; }; "topView": { "alias": "topView"; "required": false; }; "calendarType": { "alias": "calendarType"; "required": false; }; "animateCalendarNavigation": { "alias": "animateCalendarNavigation"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "readOnlyInput": { "alias": "readOnlyInput"; "required": false; }; "popupSettings": { "alias": "popupSettings"; "required": false; }; "navigation": { "alias": "navigation"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "incompleteDateValidation": { "alias": "incompleteDateValidation"; "required": false; }; "autoCorrectParts": { "alias": "autoCorrectParts"; "required": false; }; "autoSwitchParts": { "alias": "autoSwitchParts"; "required": false; }; "autoSwitchKeys": { "alias": "autoSwitchKeys"; "required": false; }; "enableMouseWheel": { "alias": "enableMouseWheel"; "required": false; }; "allowCaretMode": { "alias": "allowCaretMode"; "required": false; }; "autoFill": { "alias": "autoFill"; "required": false; }; "focusedDate": { "alias": "focusedDate"; "required": false; }; "value": { "alias": "value"; "required": false; }; "format": { "alias": "format"; "required": false; }; "twoDigitYearMax": { "alias": "twoDigitYearMax"; "required": false; }; "formatPlaceholder": { "alias": "formatPlaceholder"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "tabindex": { "alias": "tabindex"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "disabledDates": { "alias": "disabledDates"; "required": false; }; "title": { "alias": "title"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "rangeValidation": { "alias": "rangeValidation"; "required": false; }; "disabledDatesValidation": { "alias": "disabledDatesValidation"; "required": false; }; "weekNumber": { "alias": "weekNumber"; "required": false; }; "size": { "alias": "size"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "fillMode": { "alias": "fillMode"; "required": false; }; "adaptiveMode": { "alias": "adaptiveMode"; "required": false; }; }, { "valueChange": "valueChange"; "onFocus": "focus"; "onBlur": "blur"; "open": "open"; "close": "close"; "escape": "escape"; }, ["cellTemplate", "monthCellTemplate", "yearCellTemplate", "decadeCellTemplate", "centuryCellTemplate", "weekNumberTemplate", "headerTitleTemplate", "headerTemplate", "footerTemplate", "navigationItemTemplate"], never, true, never>;
700
700
  }
@@ -33,5 +33,5 @@ export declare class DatePickerMessages extends ComponentMessages {
33
33
  */
34
34
  clearTitle: string;
35
35
  static ɵfac: i0.ɵɵFactoryDeclaration<DatePickerMessages, never>;
36
- static ɵdir: i0.ɵɵDirectiveDeclaration<DatePickerMessages, "kendo-datepicker-messages-base", never, { "today": "today"; "toggle": "toggle"; "prevButtonTitle": "prevButtonTitle"; "nextButtonTitle": "nextButtonTitle"; "parentViewButtonTitle": "parentViewButtonTitle"; "clearTitle": "clearTitle"; }, {}, never, never, false, never>;
36
+ static ɵdir: i0.ɵɵDirectiveDeclaration<DatePickerMessages, "kendo-datepicker-messages-base", never, { "today": { "alias": "today"; "required": false; }; "toggle": { "alias": "toggle"; "required": false; }; "prevButtonTitle": { "alias": "prevButtonTitle"; "required": false; }; "nextButtonTitle": { "alias": "nextButtonTitle"; "required": false; }; "parentViewButtonTitle": { "alias": "parentViewButtonTitle"; "required": false; }; "clearTitle": { "alias": "clearTitle"; "required": false; }; }, {}, never, never, false, never>;
37
37
  }
@@ -5,4 +5,4 @@
5
5
  /**
6
6
  * The literal type that defines which of the auto-correction options is enabled.
7
7
  */
8
- export declare type AutoCorrectOn = 'blur' | 'change' | 'none';
8
+ export type AutoCorrectOn = 'blur' | 'change' | 'none';
@@ -57,5 +57,5 @@ export declare class DateRangeEndInputDirective extends DateRangeInput implement
57
57
  protected getRange(value: Date, correctOn: AutoCorrectOn): SelectionRange;
58
58
  protected updateInputValue(range: SelectionRange): void;
59
59
  static ɵfac: i0.ɵɵFactoryDeclaration<DateRangeEndInputDirective, never>;
60
- static ɵdir: i0.ɵɵDirectiveDeclaration<DateRangeEndInputDirective, "[kendoDateRangeEndInput]", never, { "autoCorrectOn": "autoCorrectOn"; "navigateCalendarOnFocus": "navigateCalendarOnFocus"; }, {}, never, never, true, never>;
60
+ static ɵdir: i0.ɵɵDirectiveDeclaration<DateRangeEndInputDirective, "[kendoDateRangeEndInput]", never, { "autoCorrectOn": { "alias": "autoCorrectOn"; "required": false; }; "navigateCalendarOnFocus": { "alias": "navigateCalendarOnFocus"; "required": false; }; }, {}, never, never, true, never>;
61
61
  }