@progress/kendo-angular-scheduler 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 (262) hide show
  1. package/README.md +33 -28
  2. package/data-binding.directive.d.ts +1 -1
  3. package/editing/date-time-picker.component.d.ts +1 -1
  4. package/editing/edit-dialog-template.directive.d.ts +1 -1
  5. package/editing/edit-dialog.component.d.ts +1 -1
  6. package/editing/edit.service.d.ts +3 -3
  7. package/editing/recurrence/end-rule-radio-button.directive.d.ts +1 -1
  8. package/editing/recurrence/localization/messages.d.ts +1 -1
  9. package/editing/recurrence/recurrence-editor.component.d.ts +1 -1
  10. package/editing/recurrence/recurrence-end-rule-editor.component.d.ts +1 -1
  11. package/editing/recurrence/recurrence-interval-editor.component.d.ts +1 -1
  12. package/editing/recurrence/recurrence-monthly-yearly-editor.component.d.ts +1 -1
  13. package/editing/recurrence/recurrence.service.d.ts +4 -4
  14. package/editing/recurrence/repeat-on-radio-button.directive.d.ts +1 -1
  15. package/editing/resource-editor-base.d.ts +1 -1
  16. package/editing/timezone-editor.component.d.ts +1 -1
  17. package/editing-directives/editing-directive-base.d.ts +1 -1
  18. package/editing-directives/reactive-editing.directive.d.ts +1 -1
  19. package/{esm2020 → esm2022}/data-binding.directive.mjs +20 -13
  20. package/{esm2020 → esm2022}/editing/date-time-picker.component.mjs +15 -9
  21. package/{esm2020 → esm2022}/editing/dialogs.service.mjs +10 -4
  22. package/{esm2020 → esm2022}/editing/edit-dialog-template.directive.mjs +8 -3
  23. package/{esm2020 → esm2022}/editing/edit-dialog.component.mjs +45 -26
  24. package/{esm2020 → esm2022}/editing/edit.service.mjs +9 -5
  25. package/{esm2020 → esm2022}/editing/local-data-changes.service.mjs +5 -6
  26. package/{esm2020 → esm2022}/editing/recurrence/end-rule-radio-button.directive.mjs +13 -6
  27. package/{esm2020 → esm2022}/editing/recurrence/localization/custom-messages.component.mjs +9 -8
  28. package/{esm2020 → esm2022}/editing/recurrence/localization/localized-messages.directive.mjs +9 -8
  29. package/esm2022/editing/recurrence/localization/messages.mjs +239 -0
  30. package/{esm2020 → esm2022}/editing/recurrence/localization/recurrence-localization.service.mjs +4 -3
  31. package/{esm2020 → esm2022}/editing/recurrence/recurrence-editor.component.mjs +61 -36
  32. package/{esm2020 → esm2022}/editing/recurrence/recurrence-end-rule-editor.component.mjs +33 -26
  33. package/{esm2020 → esm2022}/editing/recurrence/recurrence-frequency-editor.component.mjs +9 -5
  34. package/{esm2020 → esm2022}/editing/recurrence/recurrence-interval-editor.component.mjs +18 -15
  35. package/{esm2020 → esm2022}/editing/recurrence/recurrence-monthly-yearly-editor.component.mjs +28 -15
  36. package/{esm2020 → esm2022}/editing/recurrence/recurrence-weekday-rule-editor.component.mjs +10 -6
  37. package/{esm2020 → esm2022}/editing/recurrence/recurrence.service.mjs +13 -7
  38. package/{esm2020 → esm2022}/editing/recurrence/repeat-on-radio-button.directive.mjs +18 -11
  39. package/{esm2020 → esm2022}/editing/resource-editor-base.mjs +9 -9
  40. package/{esm2020 → esm2022}/editing/resource-multiple-editor.component.mjs +7 -6
  41. package/{esm2020 → esm2022}/editing/resource-single-editor.component.mjs +7 -6
  42. package/{esm2020 → esm2022}/editing/timezone-editor.component.mjs +28 -22
  43. package/{esm2020 → esm2022}/editing-directives/base-edit.service.mjs +28 -11
  44. package/{esm2020 → esm2022}/editing-directives/editing-directive-base.mjs +27 -20
  45. package/{esm2020 → esm2022}/editing-directives/local-edit.service.mjs +6 -4
  46. package/{esm2020 → esm2022}/editing-directives/reactive-editing.directive.mjs +10 -3
  47. package/{esm2020 → esm2022}/events/add-event.mjs +8 -0
  48. package/{esm2020 → esm2022}/events/cancel-event.mjs +4 -0
  49. package/{esm2020 → esm2022}/events/create-event.mjs +24 -0
  50. package/{esm2020 → esm2022}/events/date-change-event.mjs +12 -0
  51. package/{esm2020 → esm2022}/events/drag-end-event.mjs +28 -0
  52. package/esm2022/events/drag-event.mjs +54 -0
  53. package/{esm2020 → esm2022}/events/drag-start-event.mjs +12 -0
  54. package/{esm2020 → esm2022}/events/edit-event-base.mjs +16 -0
  55. package/{esm2020 → esm2022}/events/edit-event.mjs +12 -0
  56. package/{esm2020 → esm2022}/events/event-click-event.mjs +16 -0
  57. package/{esm2020 → esm2022}/events/event-keydown-event.mjs +12 -0
  58. package/{esm2020 → esm2022}/events/navigate-event.mjs +8 -0
  59. package/{esm2020 → esm2022}/events/preventable-event.mjs +1 -3
  60. package/{esm2020 → esm2022}/events/remove-event.mjs +12 -0
  61. package/{esm2020 → esm2022}/events/resize-end-event.mjs +20 -0
  62. package/{esm2020 → esm2022}/events/resize-event.mjs +28 -0
  63. package/{esm2020 → esm2022}/events/resize-start-event.mjs +12 -0
  64. package/{esm2020 → esm2022}/events/save-event.mjs +8 -0
  65. package/{esm2020 → esm2022}/events/slot-click-event.mjs +28 -0
  66. package/{esm2020 → esm2022}/events/slot-drag-event.mjs +24 -0
  67. package/{esm2020 → esm2022}/events/slot-drag-start-event.mjs +24 -0
  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}/shared.module.mjs +6 -6
  84. package/{esm2020 → esm2022}/toolbar/navigation.component.mjs +50 -35
  85. package/{esm2020 → esm2022}/toolbar/toolbar-template.directive.mjs +4 -3
  86. package/{esm2020 → esm2022}/toolbar/toolbar.component.mjs +32 -18
  87. package/{esm2020 → esm2022}/toolbar/toolbar.service.mjs +16 -4
  88. package/{esm2020 → esm2022}/toolbar/view-selector.component.mjs +24 -16
  89. package/{esm2020 → esm2022}/types/slot-selection.mjs +16 -0
  90. package/{esm2020 → esm2022}/views/agenda/agenda-header-item.component.mjs +9 -9
  91. package/{esm2020 → esm2022}/views/agenda/agenda-header.component.mjs +10 -8
  92. package/{esm2020 → esm2022}/views/agenda/agenda-task-item.component.mjs +18 -12
  93. package/{esm2020 → esm2022}/views/agenda/agenda-view-internal.component.mjs +48 -17
  94. package/{esm2020 → esm2022}/views/agenda/agenda-view-list.component.mjs +17 -7
  95. package/{esm2020 → esm2022}/views/agenda/agenda-view.component.mjs +46 -41
  96. package/{esm2020 → esm2022}/views/agenda/tasks.collection.mjs +8 -4
  97. package/{esm2020 → esm2022}/views/common/base-view.mjs +93 -36
  98. package/{esm2020 → esm2022}/views/common/configuration-view-base.mjs +52 -15
  99. package/esm2022/views/common/dom-events.service.mjs +22 -0
  100. package/{esm2020 → esm2022}/views/common/hint-container.component.mjs +6 -4
  101. package/{esm2020 → esm2022}/views/common/repeat.pipe.mjs +7 -6
  102. package/{esm2020 → esm2022}/views/common/resize-hint.component.mjs +7 -7
  103. package/{esm2020 → esm2022}/views/common/resource-iterator.pipe.mjs +9 -7
  104. package/{esm2020 → esm2022}/views/common/slot-selectable.directive.mjs +22 -10
  105. package/{esm2020 → esm2022}/views/common/view-footer.component.mjs +18 -13
  106. package/{esm2020 → esm2022}/views/common/views-shared.module.mjs +18 -20
  107. package/{esm2020 → esm2022}/views/common/work-hours-footer.directive.mjs +7 -5
  108. package/{esm2020 → esm2022}/views/day-time/day-time-slot.service.mjs +11 -7
  109. package/{esm2020 → esm2022}/views/day-time/day-time-view-base.mjs +81 -8
  110. package/{esm2020 → esm2022}/views/day-time/day-time-view-item.component.mjs +18 -14
  111. package/{esm2020 → esm2022}/views/day-time/day-time-view.component.mjs +50 -29
  112. package/{esm2020 → esm2022}/views/day-time/day-time.module.mjs +8 -8
  113. package/{esm2020 → esm2022}/views/day-time/event-slot.directive.mjs +23 -14
  114. package/{esm2020 → esm2022}/views/month/month-slot.component.mjs +21 -11
  115. package/{esm2020 → esm2022}/views/month/month-slot.service.mjs +8 -6
  116. package/{esm2020 → esm2022}/views/month/month-view-item.component.mjs +10 -9
  117. package/{esm2020 → esm2022}/views/month/month-view-renderer.component.mjs +31 -15
  118. package/{esm2020 → esm2022}/views/month/month-view.component.mjs +49 -31
  119. package/{esm2020 → esm2022}/views/month/month-view.module.mjs +11 -11
  120. package/{esm2020 → esm2022}/views/month/multi-week-view.component.mjs +53 -35
  121. package/{esm2020 → esm2022}/views/multi-day/day-view.component.mjs +25 -17
  122. package/{esm2020 → esm2022}/views/multi-day/multi-day-view-base.mjs +17 -6
  123. package/{esm2020 → esm2022}/views/multi-day/multi-day-view-renderer.component.mjs +22 -13
  124. package/{esm2020 → esm2022}/views/multi-day/multi-day-view.component.mjs +22 -20
  125. package/{esm2020 → esm2022}/views/multi-day/multi-day-view.module.mjs +14 -14
  126. package/{esm2020 → esm2022}/views/multi-day/week-view.component.mjs +44 -35
  127. package/{esm2020 → esm2022}/views/multi-day/work-week-view.component.mjs +16 -16
  128. package/{esm2020 → esm2022}/views/scheduler-view.directive.mjs +16 -10
  129. package/{esm2020 → esm2022}/views/templates/agenda-date-template.directive.mjs +4 -3
  130. package/{esm2020 → esm2022}/views/templates/agenda-time-template.directive.mjs +4 -3
  131. package/{esm2020 → esm2022}/views/templates/all-day-event-template.directive.mjs +4 -3
  132. package/{esm2020 → esm2022}/views/templates/all-day-slot-template.directive.mjs +4 -3
  133. package/{esm2020 → esm2022}/views/templates/date-header-template.directive.mjs +4 -3
  134. package/{esm2020 → esm2022}/views/templates/event-template.directive.mjs +4 -3
  135. package/{esm2020 → esm2022}/views/templates/group-header-template.directive.mjs +4 -3
  136. package/{esm2020 → esm2022}/views/templates/major-time-header-template.directive.mjs +4 -3
  137. package/{esm2020 → esm2022}/views/templates/minor-time-header-template.directive.mjs +4 -3
  138. package/{esm2020 → esm2022}/views/templates/month-day-slot-template.directive.mjs +4 -3
  139. package/{esm2020 → esm2022}/views/templates/multi-week-day-slot-template.directive.mjs +4 -3
  140. package/{esm2020 → esm2022}/views/templates/time-slot-template.directive.mjs +4 -3
  141. package/{esm2020 → esm2022}/views/timeline/timeline-base.mjs +10 -6
  142. package/{esm2020 → esm2022}/views/timeline/timeline-month-view.component.mjs +36 -34
  143. package/{esm2020 → esm2022}/views/timeline/timeline-multi-day-view.component.mjs +16 -13
  144. package/{esm2020 → esm2022}/views/timeline/timeline-view.component.mjs +18 -16
  145. package/{esm2020 → esm2022}/views/timeline/timeline-view.module.mjs +12 -12
  146. package/{esm2020 → esm2022}/views/timeline/timeline-week-view.component.mjs +40 -40
  147. package/{esm2020 → esm2022}/views/timeline/utils.mjs +3 -3
  148. package/{esm2020 → esm2022}/views/view-context.service.mjs +33 -9
  149. package/{esm2020 → esm2022}/views/view-items/base-slot.directive.mjs +15 -9
  150. package/{esm2020 → esm2022}/views/view-items/base-slot.service.mjs +3 -5
  151. package/{esm2020 → esm2022}/views/view-items/base-view-item.mjs +30 -15
  152. package/{esm2020 → esm2022}/views/view-items/item-map.mjs +2 -4
  153. package/{esm2020 → esm2022}/views/view-state.service.mjs +56 -20
  154. package/{esm2020 → esm2022}/views/year/year-view-internal.component.mjs +45 -27
  155. package/{esm2020 → esm2022}/views/year/year-view.component.mjs +38 -31
  156. package/{fesm2020 → fesm2022}/progress-kendo-angular-scheduler.mjs +3641 -1738
  157. package/loading.component.d.ts +1 -1
  158. package/localization/messages.d.ts +1 -1
  159. package/navigation/focusable.directive.d.ts +1 -1
  160. package/package.json +24 -30
  161. package/pdf/pdf.component.d.ts +1 -1
  162. package/scheduler.component.d.ts +1 -1
  163. package/schematics/ngAdd/index.js +3 -3
  164. package/toolbar/navigation.component.d.ts +1 -1
  165. package/toolbar/toolbar.component.d.ts +1 -1
  166. package/toolbar/view-selector.component.d.ts +1 -1
  167. package/types/actions.d.ts +1 -1
  168. package/types/focusable-container.d.ts +1 -1
  169. package/types/slot-selection.d.ts +1 -1
  170. package/views/agenda/agenda-header-item.component.d.ts +1 -1
  171. package/views/agenda/agenda-header.component.d.ts +1 -1
  172. package/views/agenda/agenda-task-item.component.d.ts +1 -1
  173. package/views/agenda/agenda-view-internal.component.d.ts +1 -1
  174. package/views/agenda/agenda-view-list.component.d.ts +1 -1
  175. package/views/agenda/agenda-view.component.d.ts +2 -6
  176. package/views/common/base-view.d.ts +1 -1
  177. package/views/common/configuration-view-base.d.ts +1 -1
  178. package/views/common/resize-hint.component.d.ts +1 -1
  179. package/views/common/slot-selectable.directive.d.ts +1 -1
  180. package/views/common/view-footer.component.d.ts +1 -1
  181. package/views/common/work-hours-footer.directive.d.ts +1 -1
  182. package/views/day-time/day-time-view-base.d.ts +2 -6
  183. package/views/day-time/day-time-view-item.component.d.ts +1 -1
  184. package/views/day-time/day-time-view.component.d.ts +1 -1
  185. package/views/day-time/event-slot.directive.d.ts +2 -2
  186. package/views/month/month-slot.component.d.ts +1 -1
  187. package/views/month/month-view-renderer.component.d.ts +1 -1
  188. package/views/month/month-view.component.d.ts +7 -4
  189. package/views/month/multi-week-view.component.d.ts +7 -4
  190. package/views/multi-day/day-view.component.d.ts +1 -1
  191. package/views/multi-day/multi-day-view-base.d.ts +1 -1
  192. package/views/multi-day/multi-day-view-renderer.component.d.ts +1 -1
  193. package/views/multi-day/multi-day-view.component.d.ts +1 -1
  194. package/views/multi-day/week-view.component.d.ts +1 -1
  195. package/views/scheduler-view.directive.d.ts +1 -1
  196. package/views/timeline/timeline-base.d.ts +1 -1
  197. package/views/timeline/timeline-month-view.component.d.ts +1 -1
  198. package/views/timeline/timeline-multi-day-view.component.d.ts +1 -1
  199. package/views/timeline/timeline-view.component.d.ts +1 -1
  200. package/views/timeline/timeline-week-view.component.d.ts +1 -1
  201. package/views/view-items/base-slot.directive.d.ts +1 -1
  202. package/views/view-items/base-view-item.d.ts +1 -1
  203. package/views/year/year-view-internal.component.d.ts +1 -4
  204. package/views/year/year-view.component.d.ts +6 -6
  205. package/esm2020/editing/recurrence/localization/messages.mjs +0 -91
  206. package/esm2020/events/drag-event.mjs +0 -18
  207. package/esm2020/localization/messages.mjs +0 -213
  208. package/esm2020/navigation/shortcuts.directive.mjs +0 -213
  209. package/esm2020/views/common/dom-events.service.mjs +0 -24
  210. package/fesm2015/progress-kendo-angular-scheduler.mjs +0 -19223
  211. /package/{esm2020 → esm2022}/common/constants.mjs +0 -0
  212. /package/{esm2020 → esm2022}/common/default-model-fields.mjs +0 -0
  213. /package/{esm2020 → esm2022}/common/dom-queries.mjs +0 -0
  214. /package/{esm2020 → esm2022}/common/getter.mjs +0 -0
  215. /package/{esm2020 → esm2022}/common/modifiers.mjs +0 -0
  216. /package/{esm2020 → esm2022}/common/setter.mjs +0 -0
  217. /package/{esm2020 → esm2022}/common/util.mjs +0 -0
  218. /package/{esm2020 → esm2022}/directives.mjs +0 -0
  219. /package/{esm2020 → esm2022}/editing-directives/edit-service.interface.mjs +0 -0
  220. /package/{esm2020 → esm2022}/editing-directives/utils.mjs +0 -0
  221. /package/{esm2020 → esm2022}/events/slot-drag-end-event.mjs +0 -0
  222. /package/{esm2020 → esm2022}/events/view-event-map.mjs +0 -0
  223. /package/{esm2020 → esm2022}/events.mjs +0 -0
  224. /package/{esm2020 → esm2022}/index.mjs +0 -0
  225. /package/{esm2020 → esm2022}/navigation/focus-position.interface.mjs +0 -0
  226. /package/{esm2020 → esm2022}/navigation/focusable-element.interface.mjs +0 -0
  227. /package/{esm2020 → esm2022}/navigation.mjs +0 -0
  228. /package/{esm2020 → esm2022}/pdf/pdf-export-event.mjs +0 -0
  229. /package/{esm2020 → esm2022}/progress-kendo-angular-scheduler.mjs +0 -0
  230. /package/{esm2020 → esm2022}/toolbar/toolbar-context.mjs +0 -0
  231. /package/{esm2020 → esm2022}/types/actions.mjs +0 -0
  232. /package/{esm2020 → esm2022}/types/create-form-group-args.interface.mjs +0 -0
  233. /package/{esm2020 → esm2022}/types/crud-operation.enum.mjs +0 -0
  234. /package/{esm2020 → esm2022}/types/current-time-settings.interface.mjs +0 -0
  235. /package/{esm2020 → esm2022}/types/date-range.interface.mjs +0 -0
  236. /package/{esm2020 → esm2022}/types/datepicker-options.interface.mjs +0 -0
  237. /package/{esm2020 → esm2022}/types/edit-event-args.interface.mjs +0 -0
  238. /package/{esm2020 → esm2022}/types/edit-mode.enum.mjs +0 -0
  239. /package/{esm2020 → esm2022}/types/editable-settings.interface.mjs +0 -0
  240. /package/{esm2020 → esm2022}/types/event-style-args.interface.mjs +0 -0
  241. /package/{esm2020 → esm2022}/types/focusable-container.mjs +0 -0
  242. /package/{esm2020 → esm2022}/types/group.interface.mjs +0 -0
  243. /package/{esm2020 → esm2022}/types/numeric-options.interface.mjs +0 -0
  244. /package/{esm2020 → esm2022}/types/ongoing-events-settings.interface.mjs +0 -0
  245. /package/{esm2020 → esm2022}/types/resource.interface.mjs +0 -0
  246. /package/{esm2020 → esm2022}/types/scheduler-event.mjs +0 -0
  247. /package/{esm2020 → esm2022}/types/scheduler-model-fields.interface.mjs +0 -0
  248. /package/{esm2020 → esm2022}/types/scheduler-slot.interface.mjs +0 -0
  249. /package/{esm2020 → esm2022}/types/scheduler-view.mjs +0 -0
  250. /package/{esm2020 → esm2022}/types/slot-class-args.interface.mjs +0 -0
  251. /package/{esm2020 → esm2022}/types/view-item.interface.mjs +0 -0
  252. /package/{esm2020 → esm2022}/types.mjs +0 -0
  253. /package/{esm2020 → esm2022}/views/agenda/utils.mjs +0 -0
  254. /package/{esm2020 → esm2022}/views/common/scheduler-task.mjs +0 -0
  255. /package/{esm2020 → esm2022}/views/constants.mjs +0 -0
  256. /package/{esm2020 → esm2022}/views/day-time/utils.mjs +0 -0
  257. /package/{esm2020 → esm2022}/views/month/utils.mjs +0 -0
  258. /package/{esm2020 → esm2022}/views/multi-day/utils.mjs +0 -0
  259. /package/{esm2020 → esm2022}/views/templates.mjs +0 -0
  260. /package/{esm2020 → esm2022}/views/utils.mjs +0 -0
  261. /package/{esm2020 → esm2022}/views/view-items/types.mjs +0 -0
  262. /package/{esm2020 → esm2022}/views/year/utils.mjs +0 -0
@@ -7,6 +7,34 @@ import { PreventableEvent } from './preventable-event';
7
7
  * Arguments for the `resize` event.
8
8
  */
9
9
  export class ResizeEvent extends PreventableEvent {
10
+ /**
11
+ * The original Scheduler event.
12
+ */
13
+ event;
14
+ /**
15
+ * The data item of the event.
16
+ */
17
+ dataItem;
18
+ /**
19
+ * The new start date of the event.
20
+ */
21
+ start;
22
+ /**
23
+ * The new end date of the event.
24
+ */
25
+ end;
26
+ /**
27
+ * A reference to the Scheduler instance that triggered the event.
28
+ */
29
+ sender;
30
+ /**
31
+ * Sets the class to the resize hint ([see example]({% slug restrictions_scheduler %})).
32
+ */
33
+ setHintClass;
34
+ /**
35
+ * Sets the class to the slot over which the event is resized.
36
+ */
37
+ setSlotClass;
10
38
  /**
11
39
  * @hidden
12
40
  */
@@ -7,6 +7,18 @@ import { PreventableEvent } from './preventable-event';
7
7
  * Arguments for the `resizeStart` event.
8
8
  */
9
9
  export class ResizeStartEvent extends PreventableEvent {
10
+ /**
11
+ * The original Scheduler event.
12
+ */
13
+ event;
14
+ /**
15
+ * The data item of the event.
16
+ */
17
+ dataItem;
18
+ /**
19
+ * A reference to the Scheduler instance that triggered the event.
20
+ */
21
+ sender;
10
22
  /**
11
23
  * @hidden
12
24
  */
@@ -7,4 +7,12 @@ import { EditEventBase } from './edit-event-base';
7
7
  * Arguments for the `save` event.
8
8
  */
9
9
  export class SaveEvent extends EditEventBase {
10
+ /**
11
+ * The edited `formGroup` instance.
12
+ */
13
+ formGroup;
14
+ /**
15
+ * The selected edit mode.
16
+ */
17
+ mode;
10
18
  }
@@ -6,6 +6,34 @@
6
6
  * Arguments for `slotClick` and `slotDblClick` events.
7
7
  */
8
8
  export class SlotClickEvent {
9
+ /**
10
+ * The event type.
11
+ */
12
+ type;
13
+ /**
14
+ * The start date of the slot.
15
+ */
16
+ start;
17
+ /**
18
+ * The end date of the slot.
19
+ */
20
+ end;
21
+ /**
22
+ * Indicates if the slot is all-day.
23
+ */
24
+ isAllDay;
25
+ /**
26
+ * The resources of the slot.
27
+ */
28
+ resources;
29
+ /**
30
+ * The original DOM event.
31
+ */
32
+ originalEvent;
33
+ /**
34
+ * A reference to the Scheduler instance that triggered the event.
35
+ */
36
+ sender;
9
37
  /**
10
38
  * @hidden
11
39
  */
@@ -6,6 +6,30 @@
6
6
  * Arguments for the `slotDrag` event.
7
7
  */
8
8
  export class SlotDragEvent {
9
+ /**
10
+ * The start date of the slot selection.
11
+ */
12
+ start;
13
+ /**
14
+ * The end date of the slot selection.
15
+ */
16
+ end;
17
+ /**
18
+ * Indicates if the slot selection consists of all-day slots, or of time slots.
19
+ */
20
+ isAllDay;
21
+ /**
22
+ * The resources for the slot, if grouping by resource; otherwise all Scheduler resources.
23
+ */
24
+ resources;
25
+ /**
26
+ * The original DOM event.
27
+ */
28
+ originalEvent;
29
+ /**
30
+ * A reference to the Scheduler instance that triggered the event.
31
+ */
32
+ sender;
9
33
  /**
10
34
  * @hidden
11
35
  */
@@ -8,6 +8,30 @@ import { PreventableEvent } from './preventable-event';
8
8
  * The event is preventable and if prevented, subsequent `slotDrag`, `slotDragEnd`, and `slotSelectionChange` will not be fired.
9
9
  */
10
10
  export class SlotDragStartEvent extends PreventableEvent {
11
+ /**
12
+ * The start date of the slot selection.
13
+ */
14
+ start;
15
+ /**
16
+ * The end date of the slot selection.
17
+ */
18
+ end;
19
+ /**
20
+ * Indicates if the slot selection consists of all-day slots, or of time slots.
21
+ */
22
+ isAllDay;
23
+ /**
24
+ * The resources for the slot, if grouping by resource; otherwise all Scheduler resources.
25
+ */
26
+ resources;
27
+ /**
28
+ * The original DOM event.
29
+ */
30
+ originalEvent;
31
+ /**
32
+ * A reference to the Scheduler instance that triggered the event.
33
+ */
34
+ sender;
11
35
  /**
12
36
  * @hidden
13
37
  */
@@ -8,25 +8,29 @@ import * as i0 from "@angular/core";
8
8
  * @hidden
9
9
  */
10
10
  export class LoadingComponent {
11
+ element;
12
+ renderer;
13
+ hostClasses = true;
14
+ loading;
15
+ get display() {
16
+ return this.loading || this.force ? 'block' : 'none';
17
+ }
18
+ force;
11
19
  constructor(element, renderer) {
12
20
  this.element = element;
13
21
  this.renderer = renderer;
14
- this.hostClasses = true;
15
- }
16
- get display() {
17
- return this.loading || this.force ? 'block' : 'none';
18
22
  }
19
23
  toggle(value) {
20
24
  this.force = value;
21
25
  this.renderer.setStyle(this.element.nativeElement, 'display', this.display);
22
26
  }
23
- }
24
- LoadingComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LoadingComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component });
25
- LoadingComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: LoadingComponent, isStandalone: true, selector: "[kendoSchedulerLoading]", inputs: { loading: "loading" }, host: { properties: { "class.k-loading-mask": "this.hostClasses", "style.display": "this.display" } }, ngImport: i0, template: `
27
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: LoadingComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component });
28
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: LoadingComponent, isStandalone: true, selector: "[kendoSchedulerLoading]", inputs: { loading: "loading" }, host: { properties: { "class.k-loading-mask": "this.hostClasses", "style.display": "this.display" } }, ngImport: i0, template: `
26
29
  <div class="k-loading-image"></div>
27
30
  <div class="k-loading-color"></div>
28
31
  `, isInline: true });
29
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LoadingComponent, decorators: [{
32
+ }
33
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: LoadingComponent, decorators: [{
30
34
  type: Component,
31
35
  args: [{
32
36
  // eslint-disable-next-line @angular-eslint/component-selector
@@ -11,6 +11,7 @@ import * as i1 from "@progress/kendo-angular-l10n";
11
11
  * Custom component messages override default component messages.
12
12
  */
13
13
  export class SchedulerCustomMessagesComponent extends Messages {
14
+ service;
14
15
  constructor(service) {
15
16
  super();
16
17
  this.service = service;
@@ -18,15 +19,15 @@ export class SchedulerCustomMessagesComponent extends Messages {
18
19
  get override() {
19
20
  return true;
20
21
  }
22
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SchedulerCustomMessagesComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
23
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SchedulerCustomMessagesComponent, isStandalone: true, selector: "kendo-scheduler-messages", providers: [
24
+ {
25
+ provide: Messages,
26
+ useExisting: forwardRef(() => SchedulerCustomMessagesComponent)
27
+ }
28
+ ], usesInheritance: true, ngImport: i0, template: ``, isInline: true });
21
29
  }
22
- SchedulerCustomMessagesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SchedulerCustomMessagesComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
23
- SchedulerCustomMessagesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: SchedulerCustomMessagesComponent, isStandalone: true, selector: "kendo-scheduler-messages", providers: [
24
- {
25
- provide: Messages,
26
- useExisting: forwardRef(() => SchedulerCustomMessagesComponent)
27
- }
28
- ], usesInheritance: true, ngImport: i0, template: ``, isInline: true });
29
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SchedulerCustomMessagesComponent, decorators: [{
30
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SchedulerCustomMessagesComponent, decorators: [{
30
31
  type: Component,
31
32
  args: [{
32
33
  providers: [
@@ -11,19 +11,20 @@ import * as i1 from "@progress/kendo-angular-l10n";
11
11
  * @hidden
12
12
  */
13
13
  export class LocalizedMessagesDirective extends Messages {
14
+ service;
14
15
  constructor(service) {
15
16
  super();
16
17
  this.service = service;
17
18
  }
19
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: LocalizedMessagesDirective, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Directive });
20
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: LocalizedMessagesDirective, isStandalone: true, selector: "[kendoSchedulerLocalizedMessages]", providers: [
21
+ {
22
+ provide: Messages,
23
+ useExisting: forwardRef(() => LocalizedMessagesDirective)
24
+ }
25
+ ], usesInheritance: true, ngImport: i0 });
18
26
  }
19
- LocalizedMessagesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LocalizedMessagesDirective, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Directive });
20
- LocalizedMessagesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: LocalizedMessagesDirective, isStandalone: true, selector: "[kendoSchedulerLocalizedMessages]", providers: [
21
- {
22
- provide: Messages,
23
- useExisting: forwardRef(() => LocalizedMessagesDirective)
24
- }
25
- ], usesInheritance: true, ngImport: i0 });
26
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LocalizedMessagesDirective, decorators: [{
27
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: LocalizedMessagesDirective, decorators: [{
27
28
  type: Directive,
28
29
  args: [{
29
30
  providers: [