@progress/kendo-angular-scheduler 17.0.0-develop.8 → 17.0.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 (268) hide show
  1. package/data-binding.directive.d.ts +1 -1
  2. package/editing/date-time-picker.component.d.ts +1 -1
  3. package/editing/edit-dialog-template.directive.d.ts +1 -1
  4. package/editing/edit-dialog.component.d.ts +1 -1
  5. package/editing/edit.service.d.ts +3 -3
  6. package/editing/recurrence/end-rule-radio-button.directive.d.ts +1 -1
  7. package/editing/recurrence/localization/messages.d.ts +1 -1
  8. package/editing/recurrence/recurrence-editor.component.d.ts +1 -1
  9. package/editing/recurrence/recurrence-end-rule-editor.component.d.ts +1 -1
  10. package/editing/recurrence/recurrence-interval-editor.component.d.ts +1 -1
  11. package/editing/recurrence/recurrence-monthly-yearly-editor.component.d.ts +1 -1
  12. package/editing/recurrence/recurrence.service.d.ts +4 -4
  13. package/editing/recurrence/repeat-on-radio-button.directive.d.ts +1 -1
  14. package/editing/resource-editor-base.d.ts +1 -1
  15. package/editing/timezone-editor.component.d.ts +1 -1
  16. package/editing-directives/editing-directive-base.d.ts +1 -1
  17. package/editing-directives/reactive-editing.directive.d.ts +1 -1
  18. package/{esm2020 → esm2022}/data-binding.directive.mjs +20 -13
  19. package/{esm2020 → esm2022}/editing/date-time-picker.component.mjs +15 -9
  20. package/{esm2020 → esm2022}/editing/dialogs.service.mjs +10 -4
  21. package/{esm2020 → esm2022}/editing/edit-dialog-template.directive.mjs +8 -3
  22. package/{esm2020 → esm2022}/editing/edit-dialog.component.mjs +44 -25
  23. package/{esm2020 → esm2022}/editing/edit.service.mjs +9 -5
  24. package/{esm2020 → esm2022}/editing/local-data-changes.service.mjs +5 -6
  25. package/{esm2020 → esm2022}/editing/recurrence/end-rule-radio-button.directive.mjs +13 -6
  26. package/{esm2020 → esm2022}/editing/recurrence/localization/custom-messages.component.mjs +9 -8
  27. package/{esm2020 → esm2022}/editing/recurrence/localization/localized-messages.directive.mjs +9 -8
  28. package/esm2022/editing/recurrence/localization/messages.mjs +239 -0
  29. package/{esm2020 → esm2022}/editing/recurrence/localization/recurrence-localization.service.mjs +4 -3
  30. package/{esm2020 → esm2022}/editing/recurrence/recurrence-editor.component.mjs +61 -36
  31. package/{esm2020 → esm2022}/editing/recurrence/recurrence-end-rule-editor.component.mjs +33 -26
  32. package/{esm2020 → esm2022}/editing/recurrence/recurrence-frequency-editor.component.mjs +8 -4
  33. package/{esm2020 → esm2022}/editing/recurrence/recurrence-interval-editor.component.mjs +18 -15
  34. package/{esm2020 → esm2022}/editing/recurrence/recurrence-monthly-yearly-editor.component.mjs +28 -15
  35. package/{esm2020 → esm2022}/editing/recurrence/recurrence-weekday-rule-editor.component.mjs +9 -5
  36. package/{esm2020 → esm2022}/editing/recurrence/recurrence.service.mjs +13 -7
  37. package/{esm2020 → esm2022}/editing/recurrence/repeat-on-radio-button.directive.mjs +18 -11
  38. package/{esm2020 → esm2022}/editing/resource-editor-base.mjs +9 -9
  39. package/{esm2020 → esm2022}/editing/resource-multiple-editor.component.mjs +7 -6
  40. package/{esm2020 → esm2022}/editing/resource-single-editor.component.mjs +7 -6
  41. package/{esm2020 → esm2022}/editing/timezone-editor.component.mjs +28 -22
  42. package/{esm2020 → esm2022}/editing-directives/base-edit.service.mjs +28 -11
  43. package/{esm2020 → esm2022}/editing-directives/editing-directive-base.mjs +27 -20
  44. package/{esm2020 → esm2022}/editing-directives/local-edit.service.mjs +6 -4
  45. package/{esm2020 → esm2022}/editing-directives/reactive-editing.directive.mjs +10 -3
  46. package/{esm2020 → esm2022}/events/add-event.mjs +8 -0
  47. package/{esm2020 → esm2022}/events/cancel-event.mjs +4 -0
  48. package/{esm2020 → esm2022}/events/create-event.mjs +24 -0
  49. package/{esm2020 → esm2022}/events/date-change-event.mjs +12 -0
  50. package/{esm2020 → esm2022}/events/drag-end-event.mjs +28 -0
  51. package/esm2022/events/drag-event.mjs +54 -0
  52. package/{esm2020 → esm2022}/events/drag-start-event.mjs +12 -0
  53. package/{esm2020 → esm2022}/events/edit-event-base.mjs +16 -0
  54. package/{esm2020 → esm2022}/events/edit-event.mjs +12 -0
  55. package/{esm2020 → esm2022}/events/event-click-event.mjs +16 -0
  56. package/{esm2020 → esm2022}/events/event-keydown-event.mjs +12 -0
  57. package/{esm2020 → esm2022}/events/navigate-event.mjs +8 -0
  58. package/{esm2020 → esm2022}/events/preventable-event.mjs +1 -3
  59. package/{esm2020 → esm2022}/events/remove-event.mjs +12 -0
  60. package/{esm2020 → esm2022}/events/resize-end-event.mjs +20 -0
  61. package/{esm2020 → esm2022}/events/resize-event.mjs +28 -0
  62. package/{esm2020 → esm2022}/events/resize-start-event.mjs +12 -0
  63. package/{esm2020 → esm2022}/events/save-event.mjs +8 -0
  64. package/{esm2020 → esm2022}/events/slot-click-event.mjs +28 -0
  65. package/{esm2020 → esm2022}/events/slot-drag-event.mjs +24 -0
  66. package/{esm2020 → esm2022}/events/slot-drag-start-event.mjs +24 -0
  67. package/{esm2020 → esm2022}/index.mjs +0 -6
  68. package/{esm2020 → esm2022}/loading.component.mjs +12 -8
  69. package/{esm2020 → esm2022}/localization/custom-messages.component.mjs +9 -8
  70. package/{esm2020 → esm2022}/localization/localized-messages.directive.mjs +9 -8
  71. package/esm2022/localization/messages.mjs +614 -0
  72. package/{esm2020 → esm2022}/localization/scheduler-localization.service.mjs +3 -3
  73. package/{esm2020 → esm2022}/navigation/focus.service.mjs +21 -15
  74. package/{esm2020 → esm2022}/navigation/focusable.directive.mjs +19 -15
  75. package/esm2022/navigation/shortcuts.directive.mjs +220 -0
  76. package/{esm2020 → esm2022}/package-metadata.mjs +2 -2
  77. package/{esm2020 → esm2022}/pdf/pdf-command.directive.mjs +9 -8
  78. package/{esm2020 → esm2022}/pdf/pdf.component.mjs +93 -8
  79. package/{esm2020 → esm2022}/pdf/pdf.module.mjs +4 -4
  80. package/{esm2020 → esm2022}/pdf/pdf.service.mjs +7 -9
  81. package/{esm2020 → esm2022}/scheduler.component.mjs +412 -256
  82. package/{esm2020 → esm2022}/scheduler.module.mjs +30 -30
  83. package/{esm2020 → esm2022}/toolbar/navigation.component.mjs +49 -34
  84. package/{esm2020 → esm2022}/toolbar/toolbar-template.directive.mjs +4 -3
  85. package/{esm2020 → esm2022}/toolbar/toolbar.component.mjs +29 -18
  86. package/{esm2020 → esm2022}/toolbar/toolbar.service.mjs +16 -4
  87. package/{esm2020 → esm2022}/toolbar/view-selector.component.mjs +23 -15
  88. package/{esm2020 → esm2022}/types/slot-selection.mjs +16 -0
  89. package/{esm2020 → esm2022}/views/agenda/agenda-header-item.component.mjs +9 -9
  90. package/{esm2020 → esm2022}/views/agenda/agenda-header.component.mjs +10 -8
  91. package/{esm2020 → esm2022}/views/agenda/agenda-task-item.component.mjs +18 -12
  92. package/{esm2020 → esm2022}/views/agenda/agenda-view-internal.component.mjs +48 -17
  93. package/{esm2020 → esm2022}/views/agenda/agenda-view-list.component.mjs +17 -7
  94. package/{esm2020 → esm2022}/views/agenda/agenda-view.component.mjs +46 -41
  95. package/{esm2020 → esm2022}/views/agenda/tasks.collection.mjs +8 -4
  96. package/{esm2020 → esm2022}/views/common/base-view.mjs +93 -36
  97. package/{esm2020 → esm2022}/views/common/configuration-view-base.mjs +52 -15
  98. package/esm2022/views/common/dom-events.service.mjs +22 -0
  99. package/{esm2020 → esm2022}/views/common/hint-container.component.mjs +6 -4
  100. package/{esm2020 → esm2022}/views/common/repeat.pipe.mjs +7 -6
  101. package/{esm2020 → esm2022}/views/common/resize-hint.component.mjs +7 -7
  102. package/{esm2020 → esm2022}/views/common/resource-iterator.pipe.mjs +9 -7
  103. package/{esm2020 → esm2022}/views/common/slot-selectable.directive.mjs +22 -10
  104. package/{esm2020 → esm2022}/views/common/view-footer.component.mjs +14 -12
  105. package/{esm2020 → esm2022}/views/common/work-hours-footer.directive.mjs +7 -5
  106. package/{esm2020 → esm2022}/views/day-time/day-time-slot.service.mjs +11 -7
  107. package/{esm2020 → esm2022}/views/day-time/day-time-view-base.mjs +81 -8
  108. package/{esm2020 → esm2022}/views/day-time/day-time-view-item.component.mjs +18 -14
  109. package/{esm2020 → esm2022}/views/day-time/day-time-view.component.mjs +50 -29
  110. package/{esm2020 → esm2022}/views/day-time/event-slot.directive.mjs +23 -14
  111. package/{esm2020 → esm2022}/views/month/month-slot.component.mjs +21 -11
  112. package/{esm2020 → esm2022}/views/month/month-slot.service.mjs +8 -6
  113. package/{esm2020 → esm2022}/views/month/month-view-item.component.mjs +10 -9
  114. package/{esm2020 → esm2022}/views/month/month-view-renderer.component.mjs +31 -15
  115. package/{esm2020 → esm2022}/views/month/month-view.component.mjs +49 -31
  116. package/{esm2020 → esm2022}/views/month/multi-week-view.component.mjs +53 -35
  117. package/{esm2020 → esm2022}/views/multi-day/day-view.component.mjs +25 -17
  118. package/{esm2020 → esm2022}/views/multi-day/multi-day-view-base.mjs +17 -6
  119. package/{esm2020 → esm2022}/views/multi-day/multi-day-view-renderer.component.mjs +22 -13
  120. package/{esm2020 → esm2022}/views/multi-day/multi-day-view.component.mjs +22 -20
  121. package/{esm2020 → esm2022}/views/multi-day/week-view.component.mjs +44 -35
  122. package/{esm2020 → esm2022}/views/multi-day/work-week-view.component.mjs +16 -16
  123. package/{esm2020 → esm2022}/views/scheduler-view.directive.mjs +16 -10
  124. package/{esm2020 → esm2022}/views/templates/agenda-date-template.directive.mjs +4 -3
  125. package/{esm2020 → esm2022}/views/templates/agenda-time-template.directive.mjs +4 -3
  126. package/{esm2020 → esm2022}/views/templates/all-day-event-template.directive.mjs +4 -3
  127. package/{esm2020 → esm2022}/views/templates/all-day-slot-template.directive.mjs +4 -3
  128. package/{esm2020 → esm2022}/views/templates/date-header-template.directive.mjs +4 -3
  129. package/{esm2020 → esm2022}/views/templates/event-template.directive.mjs +4 -3
  130. package/{esm2020 → esm2022}/views/templates/group-header-template.directive.mjs +4 -3
  131. package/{esm2020 → esm2022}/views/templates/major-time-header-template.directive.mjs +4 -3
  132. package/{esm2020 → esm2022}/views/templates/minor-time-header-template.directive.mjs +4 -3
  133. package/{esm2020 → esm2022}/views/templates/month-day-slot-template.directive.mjs +4 -3
  134. package/{esm2020 → esm2022}/views/templates/multi-week-day-slot-template.directive.mjs +4 -3
  135. package/{esm2020 → esm2022}/views/templates/time-slot-template.directive.mjs +4 -3
  136. package/{esm2020 → esm2022}/views/timeline/timeline-base.mjs +10 -6
  137. package/{esm2020 → esm2022}/views/timeline/timeline-month-view.component.mjs +36 -34
  138. package/{esm2020 → esm2022}/views/timeline/timeline-multi-day-view.component.mjs +16 -13
  139. package/{esm2020 → esm2022}/views/timeline/timeline-view.component.mjs +18 -16
  140. package/{esm2020 → esm2022}/views/timeline/timeline-week-view.component.mjs +40 -40
  141. package/{esm2020 → esm2022}/views/timeline/utils.mjs +3 -3
  142. package/{esm2020 → esm2022}/views/view-context.service.mjs +33 -9
  143. package/{esm2020 → esm2022}/views/view-items/base-slot.directive.mjs +15 -9
  144. package/{esm2020 → esm2022}/views/view-items/base-slot.service.mjs +3 -5
  145. package/{esm2020 → esm2022}/views/view-items/base-view-item.mjs +30 -15
  146. package/{esm2020 → esm2022}/views/view-items/item-map.mjs +2 -4
  147. package/{esm2020 → esm2022}/views/view-state.service.mjs +56 -20
  148. package/{esm2020 → esm2022}/views/year/year-view-internal.component.mjs +45 -27
  149. package/{esm2020 → esm2022}/views/year/year-view.component.mjs +38 -31
  150. package/{fesm2020 → fesm2022}/progress-kendo-angular-scheduler.mjs +3642 -1967
  151. package/index.d.ts +0 -6
  152. package/loading.component.d.ts +1 -1
  153. package/localization/messages.d.ts +1 -1
  154. package/navigation/focusable.directive.d.ts +1 -1
  155. package/package.json +24 -30
  156. package/pdf/pdf.component.d.ts +1 -1
  157. package/scheduler.component.d.ts +1 -1
  158. package/schematics/ngAdd/index.js +4 -4
  159. package/toolbar/navigation.component.d.ts +1 -1
  160. package/toolbar/toolbar.component.d.ts +1 -1
  161. package/toolbar/view-selector.component.d.ts +1 -1
  162. package/types/actions.d.ts +1 -1
  163. package/types/focusable-container.d.ts +1 -1
  164. package/types/slot-selection.d.ts +1 -1
  165. package/views/agenda/agenda-header-item.component.d.ts +1 -1
  166. package/views/agenda/agenda-header.component.d.ts +1 -1
  167. package/views/agenda/agenda-task-item.component.d.ts +1 -1
  168. package/views/agenda/agenda-view-internal.component.d.ts +1 -1
  169. package/views/agenda/agenda-view-list.component.d.ts +1 -1
  170. package/views/agenda/agenda-view.component.d.ts +2 -6
  171. package/views/common/base-view.d.ts +1 -1
  172. package/views/common/configuration-view-base.d.ts +1 -1
  173. package/views/common/resize-hint.component.d.ts +1 -1
  174. package/views/common/slot-selectable.directive.d.ts +1 -1
  175. package/views/common/view-footer.component.d.ts +1 -1
  176. package/views/common/work-hours-footer.directive.d.ts +1 -1
  177. package/views/day-time/day-time-view-base.d.ts +2 -6
  178. package/views/day-time/day-time-view-item.component.d.ts +1 -1
  179. package/views/day-time/day-time-view.component.d.ts +1 -1
  180. package/views/day-time/event-slot.directive.d.ts +2 -2
  181. package/views/month/month-slot.component.d.ts +1 -1
  182. package/views/month/month-view-renderer.component.d.ts +1 -1
  183. package/views/month/month-view.component.d.ts +7 -4
  184. package/views/month/multi-week-view.component.d.ts +7 -4
  185. package/views/multi-day/day-view.component.d.ts +1 -1
  186. package/views/multi-day/multi-day-view-base.d.ts +1 -1
  187. package/views/multi-day/multi-day-view-renderer.component.d.ts +1 -1
  188. package/views/multi-day/multi-day-view.component.d.ts +1 -1
  189. package/views/multi-day/week-view.component.d.ts +1 -1
  190. package/views/scheduler-view.directive.d.ts +1 -1
  191. package/views/timeline/timeline-base.d.ts +1 -1
  192. package/views/timeline/timeline-month-view.component.d.ts +1 -1
  193. package/views/timeline/timeline-multi-day-view.component.d.ts +1 -1
  194. package/views/timeline/timeline-view.component.d.ts +1 -1
  195. package/views/timeline/timeline-week-view.component.d.ts +1 -1
  196. package/views/view-items/base-slot.directive.d.ts +1 -1
  197. package/views/view-items/base-view-item.d.ts +1 -1
  198. package/views/year/year-view-internal.component.d.ts +1 -4
  199. package/views/year/year-view.component.d.ts +6 -6
  200. package/esm2020/editing/recurrence/localization/messages.mjs +0 -91
  201. package/esm2020/events/drag-event.mjs +0 -18
  202. package/esm2020/localization/messages.mjs +0 -213
  203. package/esm2020/navigation/shortcuts.directive.mjs +0 -213
  204. package/esm2020/shared.module.mjs +0 -40
  205. package/esm2020/views/common/dom-events.service.mjs +0 -24
  206. package/esm2020/views/common/views-shared.module.mjs +0 -62
  207. package/esm2020/views/day-time/day-time.module.mjs +0 -39
  208. package/esm2020/views/month/month-view.module.mjs +0 -47
  209. package/esm2020/views/multi-day/multi-day-view.module.mjs +0 -52
  210. package/esm2020/views/timeline/timeline-view.module.mjs +0 -48
  211. package/fesm2015/progress-kendo-angular-scheduler.mjs +0 -19229
  212. package/shared.module.d.ts +0 -19
  213. package/views/common/views-shared.module.d.ts +0 -22
  214. package/views/day-time/day-time.module.d.ts +0 -18
  215. package/views/month/month-view.module.d.ts +0 -18
  216. package/views/multi-day/multi-day-view.module.d.ts +0 -20
  217. package/views/timeline/timeline-view.module.d.ts +0 -19
  218. /package/{esm2020 → esm2022}/common/constants.mjs +0 -0
  219. /package/{esm2020 → esm2022}/common/default-model-fields.mjs +0 -0
  220. /package/{esm2020 → esm2022}/common/dom-queries.mjs +0 -0
  221. /package/{esm2020 → esm2022}/common/getter.mjs +0 -0
  222. /package/{esm2020 → esm2022}/common/modifiers.mjs +0 -0
  223. /package/{esm2020 → esm2022}/common/setter.mjs +0 -0
  224. /package/{esm2020 → esm2022}/common/util.mjs +0 -0
  225. /package/{esm2020 → esm2022}/directives.mjs +0 -0
  226. /package/{esm2020 → esm2022}/editing-directives/edit-service.interface.mjs +0 -0
  227. /package/{esm2020 → esm2022}/editing-directives/utils.mjs +0 -0
  228. /package/{esm2020 → esm2022}/events/slot-drag-end-event.mjs +0 -0
  229. /package/{esm2020 → esm2022}/events/view-event-map.mjs +0 -0
  230. /package/{esm2020 → esm2022}/events.mjs +0 -0
  231. /package/{esm2020 → esm2022}/navigation/focus-position.interface.mjs +0 -0
  232. /package/{esm2020 → esm2022}/navigation/focusable-element.interface.mjs +0 -0
  233. /package/{esm2020 → esm2022}/navigation.mjs +0 -0
  234. /package/{esm2020 → esm2022}/pdf/pdf-export-event.mjs +0 -0
  235. /package/{esm2020 → esm2022}/progress-kendo-angular-scheduler.mjs +0 -0
  236. /package/{esm2020 → esm2022}/toolbar/toolbar-context.mjs +0 -0
  237. /package/{esm2020 → esm2022}/types/actions.mjs +0 -0
  238. /package/{esm2020 → esm2022}/types/create-form-group-args.interface.mjs +0 -0
  239. /package/{esm2020 → esm2022}/types/crud-operation.enum.mjs +0 -0
  240. /package/{esm2020 → esm2022}/types/current-time-settings.interface.mjs +0 -0
  241. /package/{esm2020 → esm2022}/types/date-range.interface.mjs +0 -0
  242. /package/{esm2020 → esm2022}/types/datepicker-options.interface.mjs +0 -0
  243. /package/{esm2020 → esm2022}/types/edit-event-args.interface.mjs +0 -0
  244. /package/{esm2020 → esm2022}/types/edit-mode.enum.mjs +0 -0
  245. /package/{esm2020 → esm2022}/types/editable-settings.interface.mjs +0 -0
  246. /package/{esm2020 → esm2022}/types/event-style-args.interface.mjs +0 -0
  247. /package/{esm2020 → esm2022}/types/focusable-container.mjs +0 -0
  248. /package/{esm2020 → esm2022}/types/group.interface.mjs +0 -0
  249. /package/{esm2020 → esm2022}/types/numeric-options.interface.mjs +0 -0
  250. /package/{esm2020 → esm2022}/types/ongoing-events-settings.interface.mjs +0 -0
  251. /package/{esm2020 → esm2022}/types/resource.interface.mjs +0 -0
  252. /package/{esm2020 → esm2022}/types/scheduler-event.mjs +0 -0
  253. /package/{esm2020 → esm2022}/types/scheduler-model-fields.interface.mjs +0 -0
  254. /package/{esm2020 → esm2022}/types/scheduler-slot.interface.mjs +0 -0
  255. /package/{esm2020 → esm2022}/types/scheduler-view.mjs +0 -0
  256. /package/{esm2020 → esm2022}/types/slot-class-args.interface.mjs +0 -0
  257. /package/{esm2020 → esm2022}/types/view-item.interface.mjs +0 -0
  258. /package/{esm2020 → esm2022}/types.mjs +0 -0
  259. /package/{esm2020 → esm2022}/views/agenda/utils.mjs +0 -0
  260. /package/{esm2020 → esm2022}/views/common/scheduler-task.mjs +0 -0
  261. /package/{esm2020 → esm2022}/views/constants.mjs +0 -0
  262. /package/{esm2020 → esm2022}/views/day-time/utils.mjs +0 -0
  263. /package/{esm2020 → esm2022}/views/month/utils.mjs +0 -0
  264. /package/{esm2020 → esm2022}/views/multi-day/utils.mjs +0 -0
  265. /package/{esm2020 → esm2022}/views/templates.mjs +0 -0
  266. /package/{esm2020 → esm2022}/views/utils.mjs +0 -0
  267. /package/{esm2020 → esm2022}/views/view-items/types.mjs +0 -0
  268. /package/{esm2020 → esm2022}/views/year/utils.mjs +0 -0
@@ -33,13 +33,16 @@ import * as i7 from "@progress/kendo-angular-common";
33
33
  * @hidden
34
34
  */
35
35
  export class MultiDayViewRendererComponent extends DayTimeViewComponent {
36
- constructor(localization, viewContext, viewState, intl, slotService, zone, renderer, element, changeDetector, pdfService, scrollbarWidthService) {
37
- super(changeDetector, viewContext, viewState, intl, slotService, zone, renderer, element, pdfService, localization, scrollbarWidthService);
38
- this.name = 'day';
39
- this.dateFormat = { skeleton: 'MEd' };
40
- this.allDayResizeHintFormat = { skeleton: 'Md' };
41
- this.allDayItems = new BehaviorSubject(null);
42
- }
36
+ allDaySlot;
37
+ name = 'day';
38
+ slotFill;
39
+ allDaySlotTemplate;
40
+ allDayEventTemplate;
41
+ dayCells;
42
+ headerHintContainer;
43
+ dateFormat = { skeleton: 'MEd' };
44
+ allDayResizeHintFormat = { skeleton: 'Md' };
45
+ allDayItems = new BehaviorSubject(null);
43
46
  get allDaySlotTemplateRef() {
44
47
  return this.allDaySlotTemplate || (this.schedulerAllDaySlotTemplate || {}).templateRef;
45
48
  }
@@ -55,6 +58,12 @@ export class MultiDayViewRendererComponent extends DayTimeViewComponent {
55
58
  get allDayDragHint() {
56
59
  return this.dragging && this.dragging.slot.isDaySlot;
57
60
  }
61
+ schedulerAllDaySlotTemplate;
62
+ schedulerAllDayEventTemplate;
63
+ dragContainers;
64
+ constructor(localization, viewContext, viewState, intl, slotService, zone, renderer, element, changeDetector, pdfService, scrollbarWidthService) {
65
+ super(changeDetector, viewContext, viewState, intl, slotService, zone, renderer, element, pdfService, localization, scrollbarWidthService);
66
+ }
58
67
  optionsChange(changes) {
59
68
  this.schedulerAllDaySlotTemplate = changes.allDaySlotTemplate;
60
69
  this.schedulerAllDayEventTemplate = changes.allDayEventTemplate;
@@ -239,11 +248,10 @@ export class MultiDayViewRendererComponent extends DayTimeViewComponent {
239
248
  isMiddleSlot(index) {
240
249
  return index + 1 < this.timeSlots.length && !this.timeSlots[index + 1].isMajor;
241
250
  }
242
- }
243
- MultiDayViewRendererComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MultiDayViewRendererComponent, deps: [{ token: i1.LocalizationService }, { token: i2.ViewContextService }, { token: i3.ViewStateService }, { token: i4.IntlService }, { token: i5.DayTimeSlotService }, { token: i0.NgZone }, { token: i0.Renderer2 }, { token: i0.ElementRef }, { token: i0.ChangeDetectorRef }, { token: i6.PDFService }, { token: i7.ScrollbarWidthService }], target: i0.ɵɵFactoryTarget.Component });
244
- MultiDayViewRendererComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: MultiDayViewRendererComponent, isStandalone: true, selector: "multi-day-view", inputs: { allDaySlot: "allDaySlot", name: "name", slotFill: "slotFill", allDaySlotTemplate: "allDaySlotTemplate", allDayEventTemplate: "allDayEventTemplate" }, providers: [
245
- DayTimeSlotService
246
- ], viewQueries: [{ propertyName: "headerHintContainer", first: true, predicate: ["headerHintContainer"], descendants: true }, { propertyName: "dayCells", predicate: ["allDayCell"], descendants: true }], usesInheritance: true, usesOnChanges: true, ngImport: i0, template: `
251
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MultiDayViewRendererComponent, deps: [{ token: i1.LocalizationService }, { token: i2.ViewContextService }, { token: i3.ViewStateService }, { token: i4.IntlService }, { token: i5.DayTimeSlotService }, { token: i0.NgZone }, { token: i0.Renderer2 }, { token: i0.ElementRef }, { token: i0.ChangeDetectorRef }, { token: i6.PDFService }, { token: i7.ScrollbarWidthService }], target: i0.ɵɵFactoryTarget.Component });
252
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: MultiDayViewRendererComponent, isStandalone: true, selector: "multi-day-view", inputs: { allDaySlot: "allDaySlot", name: "name", slotFill: "slotFill", allDaySlotTemplate: "allDaySlotTemplate", allDayEventTemplate: "allDayEventTemplate" }, providers: [
253
+ DayTimeSlotService
254
+ ], viewQueries: [{ propertyName: "headerHintContainer", first: true, predicate: ["headerHintContainer"], descendants: true }, { propertyName: "dayCells", predicate: ["allDayCell"], descendants: true }], usesInheritance: true, usesOnChanges: true, ngImport: i0, template: `
247
255
  <table class="k-scheduler-layout" role="presentation" [ngClass]="classNames">
248
256
  <tbody>
249
257
  <tr class="k-scheduler-head">
@@ -522,7 +530,8 @@ MultiDayViewRendererComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "1
522
530
  </tbody>
523
531
  </table>
524
532
  `, isInline: true, dependencies: [{ kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: DaySlotDirective, selector: "[daySlot]", inputs: ["start", "end"] }, { kind: "component", type: DayTimeViewItemComponent, selector: "[dayTimeViewItem]", inputs: ["vertical", "isAllDay"] }, { kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "directive", type: FocusableDirective, selector: "[kendoSchedulerFocusIndex]", inputs: ["kendoSchedulerFocusIndex", "containerType"] }, { kind: "component", type: HintContainerComponent, selector: "kendo-hint-container" }, { kind: "component", type: ResizeHintComponent, selector: "[kendoResizeHint]", inputs: ["hint", "format"] }, { kind: "directive", type: TimeSlotDirective, selector: "[timeSlot]", inputs: ["invariantStart", "invariantEnd", "workDayStart", "workDayEnd", "workWeekStart", "workWeekEnd", "date"], exportAs: ["timeSlot"] }, { kind: "pipe", type: ResourceIteratorPipe, name: "resourceIterator" }, { kind: "pipe", type: DatePipe, name: "kendoDate" }, { kind: "pipe", type: AsyncPipe, name: "async" }] });
525
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MultiDayViewRendererComponent, decorators: [{
533
+ }
534
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MultiDayViewRendererComponent, decorators: [{
526
535
  type: Component,
527
536
  args: [{
528
537
  // eslint-disable-next-line @angular-eslint/component-selector
@@ -20,19 +20,6 @@ import * as i3 from "../view-state.service";
20
20
  * The component for rendering the **Multi-Day** view.
21
21
  */
22
22
  export class MultiDayViewComponent extends DayViewComponent {
23
- constructor(localization, changeDetector, viewContext, viewState) {
24
- super(localization, changeDetector, viewContext, viewState);
25
- /**
26
- * Specifies the number of days that the view will render.
27
- * @default 1
28
- */
29
- this.numberOfDays = 1;
30
- /**
31
- * The invariant name for this view.
32
- * @default 'multi-day'
33
- */
34
- this.name = 'multiDay';
35
- }
36
23
  /**
37
24
  * The long-date format for displaying the
38
25
  * selected date in the Scheduler toolbar.
@@ -59,24 +46,38 @@ export class MultiDayViewComponent extends DayViewComponent {
59
46
  get selectedShortDateFormat() {
60
47
  return this.shortDateFormat || this.defaultShortDateFormat;
61
48
  }
49
+ /**
50
+ * Specifies the number of days that the view will render.
51
+ * @default 1
52
+ */
53
+ numberOfDays = 1;
62
54
  /**
63
55
  * @hidden
64
56
  */
65
57
  get title() {
66
58
  return this.localization.get('multiDayViewTitle');
67
59
  }
60
+ /**
61
+ * The invariant name for this view.
62
+ * @default 'multi-day'
63
+ */
64
+ name = 'multiDay';
68
65
  get defaultDateFormat() {
69
66
  return this.numberOfDays === 1 ? '{0:D}' : '{0:D} - {1:D}';
70
67
  }
71
68
  get defaultShortDateFormat() {
72
69
  return this.numberOfDays === 1 ? '{0:d}' : '{0:d} - {1:d}';
73
70
  }
74
- }
75
- MultiDayViewComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MultiDayViewComponent, deps: [{ token: i1.LocalizationService }, { token: i0.ChangeDetectorRef }, { token: i2.ViewContextService }, { token: i3.ViewStateService }], target: i0.ɵɵFactoryTarget.Component });
76
- MultiDayViewComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: MultiDayViewComponent, isStandalone: true, selector: "kendo-scheduler-multi-day-view", inputs: { selectedDateFormat: "selectedDateFormat", selectedShortDateFormat: "selectedShortDateFormat", numberOfDays: "numberOfDays" }, providers: [{
77
- provide: SchedulerView,
78
- useExisting: forwardRef(() => MultiDayViewComponent)
79
- }], usesInheritance: true, ngImport: i0, template: `
71
+ dateFormat;
72
+ shortDateFormat;
73
+ constructor(localization, changeDetector, viewContext, viewState) {
74
+ super(localization, changeDetector, viewContext, viewState);
75
+ }
76
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MultiDayViewComponent, deps: [{ token: i1.LocalizationService }, { token: i0.ChangeDetectorRef }, { token: i2.ViewContextService }, { token: i3.ViewStateService }], target: i0.ɵɵFactoryTarget.Component });
77
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: MultiDayViewComponent, isStandalone: true, selector: "kendo-scheduler-multi-day-view", inputs: { selectedDateFormat: "selectedDateFormat", selectedShortDateFormat: "selectedShortDateFormat", numberOfDays: "numberOfDays" }, providers: [{
78
+ provide: SchedulerView,
79
+ useExisting: forwardRef(() => MultiDayViewComponent)
80
+ }], usesInheritance: true, ngImport: i0, template: `
80
81
  <ng-template #content>
81
82
  <multi-day-view
82
83
  viewName="day"
@@ -114,7 +115,8 @@ MultiDayViewComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0",
114
115
  <div *ngIf="viewShowFooter" viewFooter kendoWorkHoursFooter [showWorkHours]="shouldShowWorkHours" (itemClick)="showWorkHours = !shouldShowWorkHours"></div>
115
116
  </ng-template>
116
117
  `, isInline: true, dependencies: [{ kind: "component", type: MultiDayViewRendererComponent, selector: "multi-day-view", inputs: ["allDaySlot", "name", "slotFill", "allDaySlotTemplate", "allDayEventTemplate"] }, { kind: "component", type: ViewFooterComponent, selector: "[viewFooter]", inputs: ["items"], outputs: ["itemClick"] }, { kind: "directive", type: WorkHoursFooterDirective, selector: "[kendoWorkHoursFooter]", inputs: ["showWorkHours"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
117
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MultiDayViewComponent, decorators: [{
118
+ }
119
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MultiDayViewComponent, decorators: [{
118
120
  type: Component,
119
121
  args: [{
120
122
  changeDetection: ChangeDetectionStrategy.OnPush,
@@ -24,52 +24,60 @@ import * as i4 from "../view-state.service";
24
24
  * The component for rendering the **Week** view.
25
25
  */
26
26
  export class WeekViewComponent extends MultiDayViewBase {
27
- constructor(intl, localization, changeDetector, viewContext, viewState) {
28
- super(localization, changeDetector, viewContext, viewState);
29
- this.intl = intl;
30
- /**
31
- * The long-date format for displaying the
32
- * selected date in the Scheduler toolbar.
33
- * Defaults to `{0:D} - {1:D}`,
34
- * where `0` is the start and `1` is the end date
35
- * ([more information]({% slug parsingandformatting_intl %}#toc-date-formatting).
36
- * @default '{0:D} - {1:D}'
37
- */
38
- this.selectedDateFormat = '{0:D} - {1:D}';
39
- /**
40
- * The short date format for displaying the
41
- * selected date in the Scheduler toolbar.
42
- * Defaults to `{0:d} - {1:d}`,
43
- * where `0` is the start and `1` is the end date
44
- * ([more information]({% slug parsingandformatting_intl %}#toc-date-formatting).
45
- * @default '{0:d} - {1:d}'
46
- */
47
- this.selectedShortDateFormat = '{0:d} - {1:d}';
48
- /**
49
- * The invariant name for this view.
50
- * @default 'week'
51
- */
52
- this.name = 'week';
53
- this.getStartDate = this.getStartDate.bind(this);
54
- }
27
+ intl;
55
28
  /**
56
29
  * @hidden
57
30
  */
58
31
  get title() {
59
32
  return this.localization.get('weekViewTitle');
60
33
  }
34
+ /**
35
+ * The long-date format for displaying the
36
+ * selected date in the Scheduler toolbar.
37
+ * Defaults to `{0:D} - {1:D}`,
38
+ * where `0` is the start and `1` is the end date
39
+ * ([more information]({% slug parsingandformatting_intl %}#toc-date-formatting).
40
+ * @default '{0:D} - {1:D}'
41
+ */
42
+ selectedDateFormat = '{0:D} - {1:D}';
43
+ /**
44
+ * The short date format for displaying the
45
+ * selected date in the Scheduler toolbar.
46
+ * Defaults to `{0:d} - {1:d}`,
47
+ * where `0` is the start and `1` is the end date
48
+ * ([more information]({% slug parsingandformatting_intl %}#toc-date-formatting).
49
+ * @default '{0:d} - {1:d}'
50
+ */
51
+ selectedShortDateFormat = '{0:d} - {1:d}';
52
+ /**
53
+ * @hidden
54
+ */
55
+ allDaySlotTemplate;
56
+ /**
57
+ * @hidden
58
+ */
59
+ allDayEventTemplate;
60
+ /**
61
+ * The invariant name for this view.
62
+ * @default 'week'
63
+ */
64
+ name = 'week';
65
+ constructor(intl, localization, changeDetector, viewContext, viewState) {
66
+ super(localization, changeDetector, viewContext, viewState);
67
+ this.intl = intl;
68
+ this.getStartDate = this.getStartDate.bind(this);
69
+ }
61
70
  /**
62
71
  * @hidden
63
72
  */
64
73
  getStartDate(selectedDate) {
65
74
  return firstDayInWeek(getDate(selectedDate), this.viewWeekStart);
66
75
  }
67
- }
68
- WeekViewComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: WeekViewComponent, deps: [{ token: i1.IntlService }, { token: i2.LocalizationService }, { token: i0.ChangeDetectorRef }, { token: i3.ViewContextService }, { token: i4.ViewStateService }], target: i0.ɵɵFactoryTarget.Component });
69
- WeekViewComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: WeekViewComponent, isStandalone: true, selector: "kendo-scheduler-week-view", inputs: { selectedDateFormat: "selectedDateFormat", selectedShortDateFormat: "selectedShortDateFormat" }, providers: [{
70
- provide: SchedulerView,
71
- useExisting: forwardRef(() => WeekViewComponent)
72
- }], queries: [{ propertyName: "allDaySlotTemplate", first: true, predicate: AllDaySlotTemplateDirective, descendants: true }, { propertyName: "allDayEventTemplate", first: true, predicate: AllDayEventTemplateDirective, descendants: true }], usesInheritance: true, ngImport: i0, template: `
76
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: WeekViewComponent, deps: [{ token: i1.IntlService }, { token: i2.LocalizationService }, { token: i0.ChangeDetectorRef }, { token: i3.ViewContextService }, { token: i4.ViewStateService }], target: i0.ɵɵFactoryTarget.Component });
77
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: WeekViewComponent, isStandalone: true, selector: "kendo-scheduler-week-view", inputs: { selectedDateFormat: "selectedDateFormat", selectedShortDateFormat: "selectedShortDateFormat" }, providers: [{
78
+ provide: SchedulerView,
79
+ useExisting: forwardRef(() => WeekViewComponent)
80
+ }], queries: [{ propertyName: "allDaySlotTemplate", first: true, predicate: AllDaySlotTemplateDirective, descendants: true }, { propertyName: "allDayEventTemplate", first: true, predicate: AllDayEventTemplateDirective, descendants: true }], usesInheritance: true, ngImport: i0, template: `
73
81
  <ng-template #content>
74
82
  <multi-day-view
75
83
  [name]="name"
@@ -108,7 +116,8 @@ WeekViewComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", vers
108
116
  <div *ngIf="viewShowFooter" viewFooter kendoWorkHoursFooter [showWorkHours]="shouldShowWorkHours" (itemClick)="showWorkHours = !shouldShowWorkHours"></div>
109
117
  </ng-template>
110
118
  `, isInline: true, dependencies: [{ kind: "component", type: MultiDayViewRendererComponent, selector: "multi-day-view", inputs: ["allDaySlot", "name", "slotFill", "allDaySlotTemplate", "allDayEventTemplate"] }, { kind: "component", type: ViewFooterComponent, selector: "[viewFooter]", inputs: ["items"], outputs: ["itemClick"] }, { kind: "directive", type: WorkHoursFooterDirective, selector: "[kendoWorkHoursFooter]", inputs: ["showWorkHours"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
111
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: WeekViewComponent, decorators: [{
119
+ }
120
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: WeekViewComponent, decorators: [{
112
121
  type: Component,
113
122
  args: [{
114
123
  changeDetection: ChangeDetectionStrategy.OnPush,
@@ -24,21 +24,17 @@ const DAYS_IN_WEEK = 7;
24
24
  * The component for rendering the **Work Week** view.
25
25
  */
26
26
  export class WorkWeekViewComponent extends WeekViewComponent {
27
- constructor(intl, localization, changeDetector, viewContext, viewState) {
28
- super(intl, localization, changeDetector, viewContext, viewState);
29
- /**
30
- * The invariant name for this view.
31
- * @default 'workWeek'
32
- */
33
- this.name = 'workWeek';
34
- this.getNextDate = this.getNextDate.bind(this);
35
- }
36
27
  /**
37
28
  * @hidden
38
29
  */
39
30
  get title() {
40
31
  return this.localization.get('workWeekViewTitle');
41
32
  }
33
+ /**
34
+ * The invariant name for this view.
35
+ * @default 'workWeek'
36
+ */
37
+ name = 'workWeek';
42
38
  /**
43
39
  * @hidden
44
40
  */
@@ -48,6 +44,10 @@ export class WorkWeekViewComponent extends WeekViewComponent {
48
44
  }
49
45
  return (this.viewWorkWeekEnd - this.viewWorkWeekStart) + 1;
50
46
  }
47
+ constructor(intl, localization, changeDetector, viewContext, viewState) {
48
+ super(intl, localization, changeDetector, viewContext, viewState);
49
+ this.getNextDate = this.getNextDate.bind(this);
50
+ }
51
51
  /**
52
52
  * @hidden
53
53
  */
@@ -60,12 +60,11 @@ export class WorkWeekViewComponent extends WeekViewComponent {
60
60
  getNextDate(date, count, _numberOfDays) {
61
61
  return getDate(addDays(date, DAYS_IN_WEEK * count));
62
62
  }
63
- }
64
- WorkWeekViewComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: WorkWeekViewComponent, deps: [{ token: i1.IntlService }, { token: i2.LocalizationService }, { token: i0.ChangeDetectorRef }, { token: i3.ViewContextService }, { token: i4.ViewStateService }], target: i0.ɵɵFactoryTarget.Component });
65
- WorkWeekViewComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: WorkWeekViewComponent, isStandalone: true, selector: "kendo-scheduler-work-week-view", providers: [{
66
- provide: SchedulerView,
67
- useExisting: forwardRef(() => WorkWeekViewComponent)
68
- }], usesInheritance: true, ngImport: i0, template: `
63
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: WorkWeekViewComponent, deps: [{ token: i1.IntlService }, { token: i2.LocalizationService }, { token: i0.ChangeDetectorRef }, { token: i3.ViewContextService }, { token: i4.ViewStateService }], target: i0.ɵɵFactoryTarget.Component });
64
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: WorkWeekViewComponent, isStandalone: true, selector: "kendo-scheduler-work-week-view", providers: [{
65
+ provide: SchedulerView,
66
+ useExisting: forwardRef(() => WorkWeekViewComponent)
67
+ }], usesInheritance: true, ngImport: i0, template: `
69
68
  <ng-template #content>
70
69
  <multi-day-view
71
70
  viewName="workWeekview"
@@ -105,7 +104,8 @@ WorkWeekViewComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0",
105
104
  <div *ngIf="viewShowFooter" viewFooter kendoWorkHoursFooter [showWorkHours]="shouldShowWorkHours" (itemClick)="showWorkHours = !shouldShowWorkHours"></div>
106
105
  </ng-template>
107
106
  `, isInline: true, dependencies: [{ kind: "component", type: MultiDayViewRendererComponent, selector: "multi-day-view", inputs: ["allDaySlot", "name", "slotFill", "allDaySlotTemplate", "allDayEventTemplate"] }, { kind: "component", type: ViewFooterComponent, selector: "[viewFooter]", inputs: ["items"], outputs: ["itemClick"] }, { kind: "directive", type: WorkHoursFooterDirective, selector: "[kendoWorkHoursFooter]", inputs: ["showWorkHours"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
108
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: WorkWeekViewComponent, decorators: [{
107
+ }
108
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: WorkWeekViewComponent, decorators: [{
109
109
  type: Component,
110
110
  args: [{
111
111
  changeDetection: ChangeDetectionStrategy.OnPush,
@@ -10,10 +10,11 @@ import * as i0 from "@angular/core";
10
10
  * A directive selector for a custom Scheduler view.
11
11
  */
12
12
  export class SchedulerViewDirective extends SchedulerView {
13
- constructor(template) {
14
- super();
15
- this.template = template;
16
- }
13
+ template;
14
+ /**
15
+ * The user-friendly name of this view.
16
+ */
17
+ title;
17
18
  /**
18
19
  * The invariant name for this view. For example, `day`.
19
20
  * If not set, the name will be the same as the title.
@@ -24,13 +25,18 @@ export class SchedulerViewDirective extends SchedulerView {
24
25
  set name(value) {
25
26
  this._name = value;
26
27
  }
28
+ _name;
29
+ constructor(template) {
30
+ super();
31
+ this.template = template;
32
+ }
33
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SchedulerViewDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
34
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: SchedulerViewDirective, isStandalone: true, selector: "[kendoSchedulerView]", inputs: { title: ["kendoSchedulerView", "title"], name: ["kendoSchedulerViewName", "name"] }, providers: [{
35
+ provide: SchedulerView,
36
+ useExisting: forwardRef(() => SchedulerViewDirective)
37
+ }], usesInheritance: true, ngImport: i0 });
27
38
  }
28
- SchedulerViewDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SchedulerViewDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
29
- SchedulerViewDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: SchedulerViewDirective, isStandalone: true, selector: "[kendoSchedulerView]", inputs: { title: ["kendoSchedulerView", "title"], name: ["kendoSchedulerViewName", "name"] }, providers: [{
30
- provide: SchedulerView,
31
- useExisting: forwardRef(() => SchedulerViewDirective)
32
- }], usesInheritance: true, ngImport: i0 });
33
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SchedulerViewDirective, decorators: [{
39
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SchedulerViewDirective, decorators: [{
34
40
  type: Directive,
35
41
  args: [{
36
42
  providers: [{
@@ -13,13 +13,14 @@ import * as i0 from "@angular/core";
13
13
  * - `date`&mdash;The header date.
14
14
  */
15
15
  export class AgendaDateTemplateDirective {
16
+ templateRef;
16
17
  constructor(templateRef) {
17
18
  this.templateRef = templateRef;
18
19
  }
20
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AgendaDateTemplateDirective, deps: [{ token: i0.TemplateRef, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
21
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: AgendaDateTemplateDirective, isStandalone: true, selector: "[kendoSchedulerAgendaDateTemplate]", ngImport: i0 });
19
22
  }
20
- AgendaDateTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AgendaDateTemplateDirective, deps: [{ token: i0.TemplateRef, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
21
- AgendaDateTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: AgendaDateTemplateDirective, isStandalone: true, selector: "[kendoSchedulerAgendaDateTemplate]", ngImport: i0 });
22
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AgendaDateTemplateDirective, decorators: [{
23
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AgendaDateTemplateDirective, decorators: [{
23
24
  type: Directive,
24
25
  args: [{
25
26
  selector: '[kendoSchedulerAgendaDateTemplate]',
@@ -18,13 +18,14 @@ import * as i0 from "@angular/core";
18
18
  * - `resources`&mdash;The resources of the event.
19
19
  */
20
20
  export class AgendaTimeTemplateDirective {
21
+ templateRef;
21
22
  constructor(templateRef) {
22
23
  this.templateRef = templateRef;
23
24
  }
25
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AgendaTimeTemplateDirective, deps: [{ token: i0.TemplateRef, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
26
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: AgendaTimeTemplateDirective, isStandalone: true, selector: "[kendoSchedulerAgendaTimeTemplate]", ngImport: i0 });
24
27
  }
25
- AgendaTimeTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AgendaTimeTemplateDirective, deps: [{ token: i0.TemplateRef, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
26
- AgendaTimeTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: AgendaTimeTemplateDirective, isStandalone: true, selector: "[kendoSchedulerAgendaTimeTemplate]", ngImport: i0 });
27
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AgendaTimeTemplateDirective, decorators: [{
28
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AgendaTimeTemplateDirective, decorators: [{
28
29
  type: Directive,
29
30
  args: [{
30
31
  selector: '[kendoSchedulerAgendaTimeTemplate]',
@@ -14,13 +14,14 @@ import * as i0 from "@angular/core";
14
14
  * - `resources`&mdash;The resources of the event.
15
15
  */
16
16
  export class AllDayEventTemplateDirective {
17
+ templateRef;
17
18
  constructor(templateRef) {
18
19
  this.templateRef = templateRef;
19
20
  }
21
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AllDayEventTemplateDirective, deps: [{ token: i0.TemplateRef, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
22
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: AllDayEventTemplateDirective, isStandalone: true, selector: "[kendoSchedulerAllDayEventTemplate]", ngImport: i0 });
20
23
  }
21
- AllDayEventTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AllDayEventTemplateDirective, deps: [{ token: i0.TemplateRef, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
22
- AllDayEventTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: AllDayEventTemplateDirective, isStandalone: true, selector: "[kendoSchedulerAllDayEventTemplate]", ngImport: i0 });
23
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AllDayEventTemplateDirective, decorators: [{
24
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AllDayEventTemplateDirective, decorators: [{
24
25
  type: Directive,
25
26
  args: [{
26
27
  selector: '[kendoSchedulerAllDayEventTemplate]',
@@ -14,13 +14,14 @@ import * as i0 from "@angular/core";
14
14
  * - `resources`&mdash;The resources of the slot.
15
15
  */
16
16
  export class AllDaySlotTemplateDirective {
17
+ templateRef;
17
18
  constructor(templateRef) {
18
19
  this.templateRef = templateRef;
19
20
  }
21
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AllDaySlotTemplateDirective, deps: [{ token: i0.TemplateRef, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
22
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: AllDaySlotTemplateDirective, isStandalone: true, selector: "[kendoSchedulerAllDaySlotTemplate]", ngImport: i0 });
20
23
  }
21
- AllDaySlotTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AllDaySlotTemplateDirective, deps: [{ token: i0.TemplateRef, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
22
- AllDaySlotTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: AllDaySlotTemplateDirective, isStandalone: true, selector: "[kendoSchedulerAllDaySlotTemplate]", ngImport: i0 });
23
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AllDaySlotTemplateDirective, decorators: [{
24
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AllDaySlotTemplateDirective, decorators: [{
24
25
  type: Directive,
25
26
  args: [{
26
27
  selector: '[kendoSchedulerAllDaySlotTemplate]',
@@ -14,13 +14,14 @@ import * as i0 from "@angular/core";
14
14
  * - `date`&mdash;The header date.
15
15
  */
16
16
  export class DateHeaderTemplateDirective {
17
+ templateRef;
17
18
  constructor(templateRef) {
18
19
  this.templateRef = templateRef;
19
20
  }
21
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DateHeaderTemplateDirective, deps: [{ token: i0.TemplateRef, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
22
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: DateHeaderTemplateDirective, isStandalone: true, selector: "[kendoSchedulerDateHeaderTemplate]", ngImport: i0 });
20
23
  }
21
- DateHeaderTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DateHeaderTemplateDirective, deps: [{ token: i0.TemplateRef, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
22
- DateHeaderTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: DateHeaderTemplateDirective, isStandalone: true, selector: "[kendoSchedulerDateHeaderTemplate]", ngImport: i0 });
23
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DateHeaderTemplateDirective, decorators: [{
24
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DateHeaderTemplateDirective, decorators: [{
24
25
  type: Directive,
25
26
  args: [{
26
27
  selector: '[kendoSchedulerDateHeaderTemplate]',
@@ -14,13 +14,14 @@ import * as i0 from "@angular/core";
14
14
  * - `resources`&mdash;The resources of the event.
15
15
  */
16
16
  export class EventTemplateDirective {
17
+ templateRef;
17
18
  constructor(templateRef) {
18
19
  this.templateRef = templateRef;
19
20
  }
21
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: EventTemplateDirective, deps: [{ token: i0.TemplateRef, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
22
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: EventTemplateDirective, isStandalone: true, selector: "[kendoSchedulerEventTemplate]", ngImport: i0 });
20
23
  }
21
- EventTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EventTemplateDirective, deps: [{ token: i0.TemplateRef, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
22
- EventTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EventTemplateDirective, isStandalone: true, selector: "[kendoSchedulerEventTemplate]", ngImport: i0 });
23
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EventTemplateDirective, decorators: [{
24
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: EventTemplateDirective, decorators: [{
24
25
  type: Directive,
25
26
  args: [{
26
27
  selector: '[kendoSchedulerEventTemplate]',
@@ -14,13 +14,14 @@ import * as i0 from "@angular/core";
14
14
  * - `resource`&mdash;The resource item.
15
15
  */
16
16
  export class GroupHeaderTemplateDirective {
17
+ templateRef;
17
18
  constructor(templateRef) {
18
19
  this.templateRef = templateRef;
19
20
  }
21
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GroupHeaderTemplateDirective, deps: [{ token: i0.TemplateRef, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
22
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: GroupHeaderTemplateDirective, isStandalone: true, selector: "[kendoSchedulerGroupHeaderTemplate]", ngImport: i0 });
20
23
  }
21
- GroupHeaderTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: GroupHeaderTemplateDirective, deps: [{ token: i0.TemplateRef, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
22
- GroupHeaderTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: GroupHeaderTemplateDirective, isStandalone: true, selector: "[kendoSchedulerGroupHeaderTemplate]", ngImport: i0 });
23
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: GroupHeaderTemplateDirective, decorators: [{
24
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GroupHeaderTemplateDirective, decorators: [{
24
25
  type: Directive,
25
26
  args: [{
26
27
  selector: '[kendoSchedulerGroupHeaderTemplate]',
@@ -13,13 +13,14 @@ import * as i0 from "@angular/core";
13
13
  * - `date`&mdash;The date of the header.
14
14
  */
15
15
  export class MajorTimeHeaderTemplateDirective {
16
+ templateRef;
16
17
  constructor(templateRef) {
17
18
  this.templateRef = templateRef;
18
19
  }
20
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MajorTimeHeaderTemplateDirective, deps: [{ token: i0.TemplateRef, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
21
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: MajorTimeHeaderTemplateDirective, isStandalone: true, selector: "[kendoSchedulerMajorTimeHeaderTemplate]", ngImport: i0 });
19
22
  }
20
- MajorTimeHeaderTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MajorTimeHeaderTemplateDirective, deps: [{ token: i0.TemplateRef, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
21
- MajorTimeHeaderTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: MajorTimeHeaderTemplateDirective, isStandalone: true, selector: "[kendoSchedulerMajorTimeHeaderTemplate]", ngImport: i0 });
22
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MajorTimeHeaderTemplateDirective, decorators: [{
23
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MajorTimeHeaderTemplateDirective, decorators: [{
23
24
  type: Directive,
24
25
  args: [{
25
26
  selector: '[kendoSchedulerMajorTimeHeaderTemplate]',
@@ -13,13 +13,14 @@ import * as i0 from "@angular/core";
13
13
  * - `date`&mdash;The date of the header.
14
14
  */
15
15
  export class MinorTimeHeaderTemplateDirective {
16
+ templateRef;
16
17
  constructor(templateRef) {
17
18
  this.templateRef = templateRef;
18
19
  }
20
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MinorTimeHeaderTemplateDirective, deps: [{ token: i0.TemplateRef, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
21
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: MinorTimeHeaderTemplateDirective, isStandalone: true, selector: "[kendoSchedulerMinorTimeHeaderTemplate]", ngImport: i0 });
19
22
  }
20
- MinorTimeHeaderTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MinorTimeHeaderTemplateDirective, deps: [{ token: i0.TemplateRef, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
21
- MinorTimeHeaderTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: MinorTimeHeaderTemplateDirective, isStandalone: true, selector: "[kendoSchedulerMinorTimeHeaderTemplate]", ngImport: i0 });
22
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MinorTimeHeaderTemplateDirective, decorators: [{
23
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MinorTimeHeaderTemplateDirective, decorators: [{
23
24
  type: Directive,
24
25
  args: [{
25
26
  selector: '[kendoSchedulerMinorTimeHeaderTemplate]',
@@ -14,13 +14,14 @@ import * as i0 from "@angular/core";
14
14
  * - `resources`&mdash;The resources of the slot.
15
15
  */
16
16
  export class MonthDaySlotTemplateDirective {
17
+ templateRef;
17
18
  constructor(templateRef) {
18
19
  this.templateRef = templateRef;
19
20
  }
21
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MonthDaySlotTemplateDirective, deps: [{ token: i0.TemplateRef, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
22
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: MonthDaySlotTemplateDirective, isStandalone: true, selector: "[kendoSchedulerMonthDaySlotTemplate]", ngImport: i0 });
20
23
  }
21
- MonthDaySlotTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MonthDaySlotTemplateDirective, deps: [{ token: i0.TemplateRef, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
22
- MonthDaySlotTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: MonthDaySlotTemplateDirective, isStandalone: true, selector: "[kendoSchedulerMonthDaySlotTemplate]", ngImport: i0 });
23
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MonthDaySlotTemplateDirective, decorators: [{
24
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MonthDaySlotTemplateDirective, decorators: [{
24
25
  type: Directive,
25
26
  args: [{
26
27
  selector: '[kendoSchedulerMonthDaySlotTemplate]',
@@ -15,13 +15,14 @@ import * as i0 from "@angular/core";
15
15
  *
16
16
  */
17
17
  export class MultiWeekDaySlotTemplateDirective {
18
+ templateRef;
18
19
  constructor(templateRef) {
19
20
  this.templateRef = templateRef;
20
21
  }
22
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MultiWeekDaySlotTemplateDirective, deps: [{ token: i0.TemplateRef, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
23
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: MultiWeekDaySlotTemplateDirective, isStandalone: true, selector: "[kendoSchedulerMultiWeekDaySlotTemplate]", ngImport: i0 });
21
24
  }
22
- MultiWeekDaySlotTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MultiWeekDaySlotTemplateDirective, deps: [{ token: i0.TemplateRef, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
23
- MultiWeekDaySlotTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: MultiWeekDaySlotTemplateDirective, isStandalone: true, selector: "[kendoSchedulerMultiWeekDaySlotTemplate]", ngImport: i0 });
24
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MultiWeekDaySlotTemplateDirective, decorators: [{
25
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MultiWeekDaySlotTemplateDirective, decorators: [{
25
26
  type: Directive,
26
27
  args: [{
27
28
  selector: '[kendoSchedulerMultiWeekDaySlotTemplate]',
@@ -15,13 +15,14 @@ import * as i0 from "@angular/core";
15
15
  * - `resources`&mdash;The resources of the slot.
16
16
  */
17
17
  export class TimeSlotTemplateDirective {
18
+ templateRef;
18
19
  constructor(templateRef) {
19
20
  this.templateRef = templateRef;
20
21
  }
22
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TimeSlotTemplateDirective, deps: [{ token: i0.TemplateRef, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
23
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: TimeSlotTemplateDirective, isStandalone: true, selector: "[kendoSchedulerTimeSlotTemplate]", ngImport: i0 });
21
24
  }
22
- TimeSlotTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TimeSlotTemplateDirective, deps: [{ token: i0.TemplateRef, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
23
- TimeSlotTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: TimeSlotTemplateDirective, isStandalone: true, selector: "[kendoSchedulerTimeSlotTemplate]", ngImport: i0 });
24
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TimeSlotTemplateDirective, decorators: [{
25
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TimeSlotTemplateDirective, decorators: [{
25
26
  type: Directive,
26
27
  args: [{
27
28
  selector: '[kendoSchedulerTimeSlotTemplate]',