@progress/kendo-angular-scheduler 3.1.0 → 4.0.0-dev.202204140813

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 (1005) hide show
  1. package/bundles/kendo-angular-scheduler.umd.js +5 -0
  2. package/{dist/es2015/common → common}/constants.d.ts +0 -0
  3. package/{dist/es2015/common → common}/default-model-fields.d.ts +0 -0
  4. package/{dist/es2015/common → common}/dom-queries.d.ts +0 -0
  5. package/{dist/es2015/common → common}/getter.d.ts +0 -0
  6. package/{dist/es2015/common → common}/modifiers.d.ts +0 -0
  7. package/{dist/es2015/common → common}/setter.d.ts +0 -0
  8. package/{dist/es2015/common → common}/util.d.ts +0 -0
  9. package/data-binding.directive.d.ts +54 -0
  10. package/editing/date-time-picker.component.d.ts +39 -0
  11. package/editing/dialogs.service.d.ts +44 -0
  12. package/editing/edit-dialog-template.directive.d.ts +27 -0
  13. package/editing/edit-dialog.component.d.ts +80 -0
  14. package/editing/edit.service.d.ts +57 -0
  15. package/editing/local-data-changes.service.d.ts +15 -0
  16. package/editing/recurrence/end-rule-radio-button.directive.d.ts +31 -0
  17. package/editing/recurrence/localization/custom-messages.component.d.ts +18 -0
  18. package/editing/recurrence/localization/localized-messages.directive.d.ts +16 -0
  19. package/editing/recurrence/localization/messages.d.ts +141 -0
  20. package/editing/recurrence/localization/recurrence-localization.service.d.ts +17 -0
  21. package/editing/recurrence/recurrence-editor.component.d.ts +91 -0
  22. package/editing/recurrence/recurrence-end-rule-editor.component.d.ts +45 -0
  23. package/editing/recurrence/recurrence-frequency-editor.component.d.ts +26 -0
  24. package/editing/recurrence/recurrence-interval-editor.component.d.ts +27 -0
  25. package/editing/recurrence/recurrence-monthly-yearly-editor.component.d.ts +53 -0
  26. package/editing/recurrence/recurrence-weekday-rule-editor.component.d.ts +31 -0
  27. package/editing/recurrence/recurrence.service.d.ts +118 -0
  28. package/editing/recurrence/repeat-on-radio-button.directive.d.ts +32 -0
  29. package/editing/resource-editor-base.d.ts +37 -0
  30. package/editing/resource-multiple-editor.component.d.ts +21 -0
  31. package/editing/resource-single-editor.component.d.ts +20 -0
  32. package/editing/timezone-editor.component.d.ts +60 -0
  33. package/editing-directives/base-edit.service.d.ts +168 -0
  34. package/{dist/es2015/editing-directives → editing-directives}/edit-service.interface.d.ts +0 -0
  35. package/editing-directives/editing-directive-base.d.ts +60 -0
  36. package/editing-directives/local-edit.service.d.ts +33 -0
  37. package/editing-directives/reactive-editing.directive.d.ts +32 -0
  38. package/{dist/es2015/editing-directives → editing-directives}/utils.d.ts +0 -0
  39. package/{dist/es2015 → esm2015}/common/constants.js +0 -0
  40. package/{dist/es2015 → esm2015}/common/default-model-fields.js +0 -0
  41. package/esm2015/common/dom-queries.js +122 -0
  42. package/{dist/es2015 → esm2015}/common/getter.js +0 -0
  43. package/esm2015/common/modifiers.js +31 -0
  44. package/{dist/es2015 → esm2015}/common/setter.js +0 -0
  45. package/{dist/es2015 → esm2015}/common/util.js +0 -0
  46. package/esm2015/data-binding.directive.js +149 -0
  47. package/esm2015/editing/date-time-picker.component.js +102 -0
  48. package/esm2015/editing/dialogs.service.js +86 -0
  49. package/esm2015/editing/edit-dialog-template.directive.js +34 -0
  50. package/esm2015/editing/edit-dialog.component.js +515 -0
  51. package/esm2015/editing/edit.service.js +99 -0
  52. package/esm2015/editing/local-data-changes.service.js +19 -0
  53. package/esm2015/editing/recurrence/end-rule-radio-button.directive.js +68 -0
  54. package/esm2015/editing/recurrence/localization/custom-messages.component.js +41 -0
  55. package/esm2015/editing/recurrence/localization/localized-messages.directive.js +36 -0
  56. package/esm2015/editing/recurrence/localization/messages.js +81 -0
  57. package/esm2015/editing/recurrence/localization/recurrence-localization.service.js +46 -0
  58. package/esm2015/editing/recurrence/recurrence-editor.component.js +410 -0
  59. package/esm2015/editing/recurrence/recurrence-end-rule-editor.component.js +264 -0
  60. package/esm2015/editing/recurrence/recurrence-frequency-editor.component.js +80 -0
  61. package/esm2015/editing/recurrence/recurrence-interval-editor.component.js +139 -0
  62. package/esm2015/editing/recurrence/recurrence-monthly-yearly-editor.component.js +434 -0
  63. package/esm2015/editing/recurrence/recurrence-weekday-rule-editor.component.js +105 -0
  64. package/esm2015/editing/recurrence/recurrence.service.js +246 -0
  65. package/esm2015/editing/recurrence/repeat-on-radio-button.directive.js +72 -0
  66. package/esm2015/editing/resource-editor-base.js +59 -0
  67. package/esm2015/editing/resource-multiple-editor.component.js +90 -0
  68. package/esm2015/editing/resource-single-editor.component.js +75 -0
  69. package/esm2015/editing/timezone-editor.component.js +124 -0
  70. package/esm2015/editing-directives/base-edit.service.js +307 -0
  71. package/esm2015/editing-directives/edit-service.interface.js +5 -0
  72. package/esm2015/editing-directives/editing-directive-base.js +218 -0
  73. package/esm2015/editing-directives/local-edit.service.js +120 -0
  74. package/esm2015/editing-directives/reactive-editing.directive.js +104 -0
  75. package/esm2015/editing-directives/utils.js +65 -0
  76. package/{dist/es2015 → esm2015}/events/add-event.js +0 -0
  77. package/{dist/es2015 → esm2015}/events/cancel-event.js +0 -0
  78. package/{dist/es2015 → esm2015}/events/create-event.js +0 -0
  79. package/{dist/es2015 → esm2015}/events/date-change-event.js +0 -0
  80. package/{dist/es2015 → esm2015}/events/drag-end-event.js +0 -0
  81. package/{dist/es2015 → esm2015}/events/drag-event.js +0 -0
  82. package/{dist/es2015 → esm2015}/events/drag-start-event.js +0 -0
  83. package/{dist/es2015 → esm2015}/events/edit-event-base.js +0 -0
  84. package/{dist/es2015 → esm2015}/events/edit-event.js +0 -0
  85. package/{dist/es2015 → esm2015}/events/event-click-event.js +0 -0
  86. package/{dist/es2015 → esm2015}/events/event-keydown-event.js +0 -0
  87. package/{dist/es2015 → esm2015}/events/navigate-event.js +0 -0
  88. package/{dist/es2015 → esm2015}/events/preventable-event.js +0 -0
  89. package/{dist/es2015 → esm2015}/events/remove-event.js +0 -0
  90. package/{dist/es2015 → esm2015}/events/resize-end-event.js +0 -0
  91. package/{dist/es2015 → esm2015}/events/resize-event.js +0 -0
  92. package/{dist/es2015 → esm2015}/events/resize-start-event.js +0 -0
  93. package/{dist/es2015 → esm2015}/events/save-event.js +0 -0
  94. package/{dist/es2015 → esm2015}/events/slot-click-event.js +0 -0
  95. package/{dist/es2015 → esm2015}/events/slot-drag-end-event.js +0 -0
  96. package/{dist/es2015 → esm2015}/events/slot-drag-event.js +0 -0
  97. package/{dist/es2015 → esm2015}/events/slot-drag-start-event.js +0 -0
  98. package/{dist/es2015 → esm2015}/events/view-event-map.js +0 -0
  99. package/{dist/es → esm2015}/events.js +0 -0
  100. package/esm2015/kendo-angular-scheduler.js +8 -0
  101. package/esm2015/loading.component.js +47 -0
  102. package/esm2015/localization/custom-messages.component.js +40 -0
  103. package/esm2015/localization/localized-messages.directive.js +36 -0
  104. package/esm2015/localization/messages.js +169 -0
  105. package/esm2015/localization/scheduler-localization.service.js +31 -0
  106. package/esm2015/main.js +69 -0
  107. package/esm2015/navigation/focus-position.interface.js +5 -0
  108. package/esm2015/navigation/focus.service.js +128 -0
  109. package/esm2015/navigation/focusable-element.interface.js +5 -0
  110. package/esm2015/navigation/focusable.directive.js +68 -0
  111. package/esm2015/navigation/shortcuts.directive.js +151 -0
  112. package/{dist/es → esm2015}/navigation.js +0 -0
  113. package/esm2015/package-metadata.js +15 -0
  114. package/esm2015/pdf/pdf-command.directive.js +58 -0
  115. package/{dist/es2015 → esm2015}/pdf/pdf-export-event.js +0 -0
  116. package/esm2015/pdf/pdf.component.js +143 -0
  117. package/esm2015/pdf/pdf.module.js +57 -0
  118. package/esm2015/pdf/pdf.service.js +38 -0
  119. package/esm2015/scheduler.component.js +1614 -0
  120. package/esm2015/scheduler.module.js +281 -0
  121. package/esm2015/shared.module.js +31 -0
  122. package/esm2015/toolbar/navigation.component.js +285 -0
  123. package/esm2015/toolbar/toolbar-context.js +5 -0
  124. package/esm2015/toolbar/toolbar-template.directive.js +48 -0
  125. package/esm2015/toolbar/toolbar.component.js +104 -0
  126. package/esm2015/toolbar/toolbar.module.js +65 -0
  127. package/esm2015/toolbar/toolbar.service.js +32 -0
  128. package/esm2015/toolbar/view-selector.component.js +131 -0
  129. package/esm2015/types/actions.js +5 -0
  130. package/esm2015/types/create-form-group-args.interface.js +5 -0
  131. package/esm2015/types/crud-operation.enum.js +16 -0
  132. package/esm2015/types/current-time-settings.interface.js +5 -0
  133. package/esm2015/types/date-range.interface.js +5 -0
  134. package/esm2015/types/datepicker-options.interface.js +5 -0
  135. package/esm2015/types/edit-event-args.interface.js +5 -0
  136. package/esm2015/types/edit-mode.enum.js +19 -0
  137. package/esm2015/types/editable-settings.interface.js +5 -0
  138. package/esm2015/types/event-style-args.interface.js +5 -0
  139. package/esm2015/types/group.interface.js +5 -0
  140. package/esm2015/types/numeric-options.interface.js +5 -0
  141. package/esm2015/types/ongoing-events-settings.interface.js +5 -0
  142. package/esm2015/types/resource.interface.js +5 -0
  143. package/esm2015/types/scheduler-event.js +5 -0
  144. package/esm2015/types/scheduler-model-fields.interface.js +5 -0
  145. package/esm2015/types/scheduler-slot.interface.js +5 -0
  146. package/{dist/es2015 → esm2015}/types/scheduler-view.js +0 -0
  147. package/esm2015/types/slot-class-args.interface.js +5 -0
  148. package/{dist/es2015 → esm2015}/types/slot-selection.js +0 -0
  149. package/esm2015/types/view-item.interface.js +5 -0
  150. package/esm2015/types.js +12 -0
  151. package/esm2015/views/agenda/agenda-header-item.component.js +63 -0
  152. package/esm2015/views/agenda/agenda-header.component.js +71 -0
  153. package/esm2015/views/agenda/agenda-task-item.component.js +98 -0
  154. package/esm2015/views/agenda/agenda-view-internal.component.js +377 -0
  155. package/esm2015/views/agenda/agenda-view-list.component.js +170 -0
  156. package/esm2015/views/agenda/agenda-view.component.js +112 -0
  157. package/esm2015/views/agenda/agenda-view.module.js +44 -0
  158. package/esm2015/views/agenda/tasks.collection.js +78 -0
  159. package/esm2015/views/agenda/utils.js +167 -0
  160. package/esm2015/views/common/base-view.js +1003 -0
  161. package/esm2015/views/common/configuration-view-base.js +91 -0
  162. package/esm2015/views/common/dom-events.service.js +24 -0
  163. package/esm2015/views/common/hint-container.component.js +37 -0
  164. package/esm2015/views/common/repeat.pipe.js +34 -0
  165. package/esm2015/views/common/resize-hint.component.js +88 -0
  166. package/esm2015/views/common/resource-iterator.pipe.js +46 -0
  167. package/esm2015/views/common/scheduler-task.js +5 -0
  168. package/esm2015/views/common/slot-selectable.directive.js +108 -0
  169. package/esm2015/views/common/view-footer.component.js +59 -0
  170. package/esm2015/views/common/views-shared.module.js +61 -0
  171. package/esm2015/views/common/work-hours-footer.directive.js +39 -0
  172. package/{dist/es2015 → esm2015}/views/constants.js +0 -0
  173. package/esm2015/views/day-time/day-time-slot.service.js +605 -0
  174. package/esm2015/views/day-time/day-time-view-base.js +151 -0
  175. package/esm2015/views/day-time/day-time-view-item.component.js +119 -0
  176. package/esm2015/views/day-time/day-time-view.component.js +384 -0
  177. package/esm2015/views/day-time/day-time.module.js +32 -0
  178. package/esm2015/views/day-time/event-slot.directive.js +125 -0
  179. package/{dist/es2015 → esm2015}/views/day-time/utils.js +0 -0
  180. package/esm2015/views/month/month-slot.directive.js +77 -0
  181. package/{dist/es2015 → esm2015}/views/month/month-slot.service.js +0 -0
  182. package/esm2015/views/month/month-view-item.component.js +88 -0
  183. package/esm2015/views/month/month-view-renderer.component.js +476 -0
  184. package/esm2015/views/month/month-view.component.js +108 -0
  185. package/esm2015/views/month/month-view.module.js +41 -0
  186. package/esm2015/views/month/utils.js +67 -0
  187. package/esm2015/views/multi-day/day-view.component.js +162 -0
  188. package/esm2015/views/multi-day/multi-day-view-base.js +32 -0
  189. package/esm2015/views/multi-day/multi-day-view-renderer.component.js +762 -0
  190. package/esm2015/views/multi-day/multi-day-view.component.js +162 -0
  191. package/esm2015/views/multi-day/multi-day-view.module.js +53 -0
  192. package/{dist/es2015 → esm2015}/views/multi-day/utils.js +0 -0
  193. package/esm2015/views/multi-day/week-view.component.js +166 -0
  194. package/esm2015/views/multi-day/work-week-view.component.js +150 -0
  195. package/esm2015/views/scheduler-view.directive.js +48 -0
  196. package/esm2015/views/templates/agenda-date-template.directive.js +36 -0
  197. package/esm2015/views/templates/agenda-time-template.directive.js +41 -0
  198. package/esm2015/views/templates/all-day-event-template.directive.js +37 -0
  199. package/esm2015/views/templates/all-day-slot-template.directive.js +37 -0
  200. package/esm2015/views/templates/date-header-template.directive.js +37 -0
  201. package/esm2015/views/templates/event-template.directive.js +37 -0
  202. package/esm2015/views/templates/group-header-template.directive.js +37 -0
  203. package/esm2015/views/templates/major-time-header-template.directive.js +36 -0
  204. package/esm2015/views/templates/minor-time-header-template.directive.js +36 -0
  205. package/esm2015/views/templates/month-day-slot-template.directive.js +37 -0
  206. package/esm2015/views/templates/time-slot-template.directive.js +38 -0
  207. package/{dist/es → esm2015}/views/templates.js +0 -0
  208. package/esm2015/views/timeline/timeline-base.js +32 -0
  209. package/esm2015/views/timeline/timeline-month-view.component.js +154 -0
  210. package/esm2015/views/timeline/timeline-multi-day-view.component.js +455 -0
  211. package/esm2015/views/timeline/timeline-view.component.js +127 -0
  212. package/esm2015/views/timeline/timeline-view.module.js +49 -0
  213. package/esm2015/views/timeline/timeline-week-view.component.js +145 -0
  214. package/{dist/es2015 → esm2015}/views/timeline/utils.js +0 -0
  215. package/{dist/es2015 → esm2015}/views/utils.js +0 -0
  216. package/esm2015/views/view-context.service.js +84 -0
  217. package/esm2015/views/view-items/base-slot.directive.js +96 -0
  218. package/{dist/es2015 → esm2015}/views/view-items/base-slot.service.js +0 -0
  219. package/esm2015/views/view-items/base-view-item.js +168 -0
  220. package/{dist/es2015 → esm2015}/views/view-items/item-map.js +0 -0
  221. package/esm2015/views/view-items/types.js +5 -0
  222. package/esm2015/views/view-state.service.js +97 -0
  223. package/{dist/es2015/events → events}/add-event.d.ts +0 -0
  224. package/{dist/es2015/events → events}/cancel-event.d.ts +0 -0
  225. package/{dist/es2015/events → events}/create-event.d.ts +0 -0
  226. package/{dist/es2015/events → events}/date-change-event.d.ts +0 -0
  227. package/{dist/es2015/events → events}/drag-end-event.d.ts +0 -0
  228. package/{dist/es2015/events → events}/drag-event.d.ts +0 -0
  229. package/{dist/es2015/events → events}/drag-start-event.d.ts +0 -0
  230. package/{dist/es2015/events → events}/edit-event-base.d.ts +0 -0
  231. package/{dist/es2015/events → events}/edit-event.d.ts +0 -0
  232. package/{dist/es2015/events → events}/event-click-event.d.ts +0 -0
  233. package/{dist/es2015/events → events}/event-keydown-event.d.ts +0 -0
  234. package/{dist/es2015/events → events}/navigate-event.d.ts +0 -0
  235. package/{dist/es2015/events → events}/preventable-event.d.ts +0 -0
  236. package/{dist/es2015/events → events}/remove-event.d.ts +0 -0
  237. package/{dist/es2015/events → events}/resize-end-event.d.ts +0 -0
  238. package/{dist/es2015/events → events}/resize-event.d.ts +0 -0
  239. package/{dist/es2015/events → events}/resize-start-event.d.ts +0 -0
  240. package/{dist/es2015/events → events}/save-event.d.ts +0 -0
  241. package/{dist/es2015/events → events}/slot-click-event.d.ts +0 -0
  242. package/{dist/es2015/events → events}/slot-drag-end-event.d.ts +0 -0
  243. package/{dist/es2015/events → events}/slot-drag-event.d.ts +0 -0
  244. package/{dist/es2015/events → events}/slot-drag-start-event.d.ts +0 -0
  245. package/{dist/es2015/events → events}/view-event-map.d.ts +0 -0
  246. package/{dist/es2015/events.d.ts → events.d.ts} +0 -0
  247. package/fesm2015/kendo-angular-scheduler.js +16629 -0
  248. package/kendo-angular-scheduler.d.ts +9 -0
  249. package/loading.component.d.ts +21 -0
  250. package/localization/custom-messages.component.d.ts +17 -0
  251. package/localization/localized-messages.directive.d.ts +16 -0
  252. package/localization/messages.d.ts +317 -0
  253. package/localization/scheduler-localization.service.d.ts +14 -0
  254. package/main.d.ts +71 -0
  255. package/{dist/es2015/navigation → navigation}/focus-position.interface.d.ts +0 -0
  256. package/navigation/focus.service.d.ts +37 -0
  257. package/{dist/es2015/navigation → navigation}/focusable-element.interface.d.ts +0 -0
  258. package/navigation/focusable.directive.d.ts +32 -0
  259. package/navigation/shortcuts.directive.d.ts +32 -0
  260. package/{dist/es2015/navigation.d.ts → navigation.d.ts} +0 -0
  261. package/{dist/es2015/package-metadata.d.ts → package-metadata.d.ts} +0 -0
  262. package/package.json +44 -122
  263. package/pdf/pdf-command.directive.d.ts +42 -0
  264. package/{dist/es2015/pdf → pdf}/pdf-export-event.d.ts +0 -0
  265. package/pdf/pdf.component.d.ts +125 -0
  266. package/pdf/pdf.module.d.ts +43 -0
  267. package/pdf/pdf.service.d.ts +18 -0
  268. package/scheduler.component.d.ts +678 -0
  269. package/scheduler.module.d.ts +95 -0
  270. package/schematics/ngAdd/index.js +5 -2
  271. package/schematics/ngAdd/index.js.map +1 -1
  272. package/shared.module.d.ts +15 -0
  273. package/toolbar/navigation.component.d.ts +107 -0
  274. package/{dist/es2015/toolbar → toolbar}/toolbar-context.d.ts +0 -0
  275. package/toolbar/toolbar-template.directive.d.ts +39 -0
  276. package/toolbar/toolbar.component.d.ts +35 -0
  277. package/toolbar/toolbar.module.d.ts +29 -0
  278. package/toolbar/toolbar.service.d.ts +38 -0
  279. package/toolbar/view-selector.component.d.ts +52 -0
  280. package/{dist/es2015/types → types}/actions.d.ts +0 -0
  281. package/{dist/es2015/types → types}/create-form-group-args.interface.d.ts +0 -0
  282. package/{dist/es2015/types → types}/crud-operation.enum.d.ts +0 -0
  283. package/{dist/es2015/types → types}/current-time-settings.interface.d.ts +0 -0
  284. package/{dist/es2015/types → types}/date-range.interface.d.ts +0 -0
  285. package/types/datepicker-options.interface.d.ts +106 -0
  286. package/{dist/es2015/types → types}/edit-event-args.interface.d.ts +0 -0
  287. package/{dist/es2015/types → types}/edit-mode.enum.d.ts +0 -0
  288. package/{dist/es2015/types → types}/editable-settings.interface.d.ts +0 -0
  289. package/{dist/es2015/types → types}/event-style-args.interface.d.ts +0 -0
  290. package/{dist/es2015/types → types}/group.interface.d.ts +0 -0
  291. package/types/numeric-options.interface.d.ts +53 -0
  292. package/{dist/es2015/types → types}/ongoing-events-settings.interface.d.ts +0 -0
  293. package/{dist/es2015/types → types}/resource.interface.d.ts +0 -0
  294. package/{dist/es2015/types → types}/scheduler-event.d.ts +0 -0
  295. package/{dist/es2015/types → types}/scheduler-model-fields.interface.d.ts +0 -0
  296. package/{dist/es2015/types → types}/scheduler-slot.interface.d.ts +0 -0
  297. package/{dist/es2015/types → types}/scheduler-view.d.ts +0 -0
  298. package/{dist/es2015/types → types}/slot-class-args.interface.d.ts +0 -0
  299. package/{dist/es2015/types → types}/slot-selection.d.ts +0 -0
  300. package/{dist/es2015/types → types}/view-item.interface.d.ts +0 -0
  301. package/types.d.ts +25 -0
  302. package/views/agenda/agenda-header-item.component.d.ts +18 -0
  303. package/views/agenda/agenda-header.component.d.ts +20 -0
  304. package/views/agenda/agenda-task-item.component.d.ts +27 -0
  305. package/views/agenda/agenda-view-internal.component.d.ts +79 -0
  306. package/views/agenda/agenda-view-list.component.d.ts +32 -0
  307. package/views/agenda/agenda-view.component.d.ts +60 -0
  308. package/views/agenda/agenda-view.module.d.ts +22 -0
  309. package/views/agenda/tasks.collection.d.ts +44 -0
  310. package/{dist/es2015/views → views}/agenda/utils.d.ts +0 -0
  311. package/views/common/base-view.d.ts +181 -0
  312. package/views/common/configuration-view-base.d.ts +84 -0
  313. package/views/common/dom-events.service.d.ts +19 -0
  314. package/views/common/hint-container.component.d.ts +17 -0
  315. package/views/common/repeat.pipe.d.ts +14 -0
  316. package/views/common/resize-hint.component.d.ts +21 -0
  317. package/views/common/resource-iterator.pipe.d.ts +14 -0
  318. package/views/common/scheduler-task.d.ts +20 -0
  319. package/views/common/slot-selectable.directive.d.ts +48 -0
  320. package/views/common/view-footer.component.d.ts +22 -0
  321. package/views/common/views-shared.module.d.ts +23 -0
  322. package/views/common/work-hours-footer.directive.d.ts +23 -0
  323. package/{dist/es2015/views → views}/constants.d.ts +0 -0
  324. package/views/day-time/day-time-slot.service.d.ts +77 -0
  325. package/views/day-time/day-time-view-base.d.ts +140 -0
  326. package/views/day-time/day-time-view-item.component.d.ts +24 -0
  327. package/views/day-time/day-time-view.component.d.ts +88 -0
  328. package/views/day-time/day-time.module.d.ts +18 -0
  329. package/views/day-time/event-slot.directive.d.ts +46 -0
  330. package/{dist/es2015/views → views}/day-time/utils.d.ts +0 -0
  331. package/views/month/month-slot.directive.d.ts +30 -0
  332. package/views/month/month-slot.service.d.ts +61 -0
  333. package/views/month/month-view-item.component.d.ts +20 -0
  334. package/views/month/month-view-renderer.component.d.ts +56 -0
  335. package/views/month/month-view.component.d.ts +47 -0
  336. package/views/month/month-view.module.d.ts +18 -0
  337. package/{dist/es2015/views → views}/month/utils.d.ts +0 -0
  338. package/views/multi-day/day-view.component.d.ts +61 -0
  339. package/views/multi-day/multi-day-view-base.d.ts +28 -0
  340. package/views/multi-day/multi-day-view-renderer.component.d.ts +68 -0
  341. package/views/multi-day/multi-day-view.component.d.ts +51 -0
  342. package/views/multi-day/multi-day-view.module.d.ts +20 -0
  343. package/{dist/es2015/views → views}/multi-day/utils.d.ts +0 -0
  344. package/views/multi-day/week-view.component.d.ts +65 -0
  345. package/views/multi-day/work-week-view.component.d.ts +39 -0
  346. package/views/scheduler-view.directive.d.ts +27 -0
  347. package/views/templates/agenda-date-template.directive.d.ts +27 -0
  348. package/views/templates/agenda-time-template.directive.d.ts +32 -0
  349. package/views/templates/all-day-event-template.directive.d.ts +28 -0
  350. package/views/templates/all-day-slot-template.directive.d.ts +28 -0
  351. package/views/templates/date-header-template.directive.d.ts +28 -0
  352. package/views/templates/event-template.directive.d.ts +28 -0
  353. package/views/templates/group-header-template.directive.d.ts +28 -0
  354. package/views/templates/major-time-header-template.directive.d.ts +27 -0
  355. package/views/templates/minor-time-header-template.directive.d.ts +27 -0
  356. package/views/templates/month-day-slot-template.directive.d.ts +28 -0
  357. package/views/templates/time-slot-template.directive.d.ts +29 -0
  358. package/{dist/es2015/views → views}/templates.d.ts +0 -0
  359. package/views/timeline/timeline-base.d.ts +26 -0
  360. package/views/timeline/timeline-month-view.component.d.ts +52 -0
  361. package/views/timeline/timeline-multi-day-view.component.d.ts +42 -0
  362. package/views/timeline/timeline-view.component.d.ts +40 -0
  363. package/views/timeline/timeline-view.module.d.ts +19 -0
  364. package/views/timeline/timeline-week-view.component.d.ts +47 -0
  365. package/{dist/es2015/views → views}/timeline/utils.d.ts +0 -0
  366. package/{dist/es2015/views → views}/utils.d.ts +0 -0
  367. package/views/view-context.service.d.ts +82 -0
  368. package/views/view-items/base-slot.directive.d.ts +40 -0
  369. package/{dist/es2015/views → views}/view-items/base-slot.service.d.ts +0 -0
  370. package/views/view-items/base-view-item.d.ts +50 -0
  371. package/views/view-items/item-map.d.ts +16 -0
  372. package/{dist/es2015/views → views}/view-items/types.d.ts +0 -0
  373. package/views/view-state.service.d.ts +95 -0
  374. package/dist/cdn/js/kendo-angular-scheduler.js +0 -20
  375. package/dist/cdn/main.js +0 -5
  376. package/dist/es/common/constants.js +0 -8
  377. package/dist/es/common/default-model-fields.js +0 -20
  378. package/dist/es/common/dom-queries.js +0 -126
  379. package/dist/es/common/getter.js +0 -29
  380. package/dist/es/common/modifiers.js +0 -31
  381. package/dist/es/common/setter.js +0 -30
  382. package/dist/es/common/util.js +0 -232
  383. package/dist/es/data-binding.directive.js +0 -164
  384. package/dist/es/editing/date-time-picker.component.js +0 -80
  385. package/dist/es/editing/dialogs.service.js +0 -94
  386. package/dist/es/editing/edit-dialog-template.directive.js +0 -35
  387. package/dist/es/editing/edit-dialog.component.js +0 -298
  388. package/dist/es/editing/edit.service.js +0 -118
  389. package/dist/es/editing/local-data-changes.service.js +0 -19
  390. package/dist/es/editing/recurrence/end-rule-radio-button.directive.js +0 -79
  391. package/dist/es/editing/recurrence/localization/custom-messages.component.js +0 -44
  392. package/dist/es/editing/recurrence/localization/localized-messages.directive.js +0 -35
  393. package/dist/es/editing/recurrence/localization/messages.js +0 -146
  394. package/dist/es/editing/recurrence/localization/recurrence-localization.service.js +0 -35
  395. package/dist/es/editing/recurrence/recurrence-editor.component.js +0 -174
  396. package/dist/es/editing/recurrence/recurrence-end-rule-editor.component.js +0 -162
  397. package/dist/es/editing/recurrence/recurrence-frequency-editor.component.js +0 -56
  398. package/dist/es/editing/recurrence/recurrence-interval-editor.component.js +0 -98
  399. package/dist/es/editing/recurrence/recurrence-monthly-yearly-editor.component.js +0 -277
  400. package/dist/es/editing/recurrence/recurrence-weekday-rule-editor.component.js +0 -82
  401. package/dist/es/editing/recurrence/recurrence.service.js +0 -303
  402. package/dist/es/editing/recurrence/repeat-on-radio-button.directive.js +0 -89
  403. package/dist/es/editing/resource-editor-base.js +0 -60
  404. package/dist/es/editing/resource-multiple-editor.component.js +0 -51
  405. package/dist/es/editing/resource-single-editor.component.js +0 -46
  406. package/dist/es/editing/timezone-editor.component.js +0 -107
  407. package/dist/es/editing-directives/base-edit.service.js +0 -297
  408. package/dist/es/editing-directives/edit-service.interface.js +0 -4
  409. package/dist/es/editing-directives/editing-directive-base.js +0 -229
  410. package/dist/es/editing-directives/local-edit.service.js +0 -136
  411. package/dist/es/editing-directives/reactive-editing.directive.js +0 -111
  412. package/dist/es/editing-directives/utils.js +0 -67
  413. package/dist/es/events/add-event.js +0 -23
  414. package/dist/es/events/cancel-event.js +0 -17
  415. package/dist/es/events/create-event.js +0 -18
  416. package/dist/es/events/date-change-event.js +0 -19
  417. package/dist/es/events/drag-end-event.js +0 -23
  418. package/dist/es/events/drag-event.js +0 -23
  419. package/dist/es/events/drag-start-event.js +0 -23
  420. package/dist/es/events/edit-event-base.js +0 -18
  421. package/dist/es/events/edit-event.js +0 -23
  422. package/dist/es/events/event-click-event.js +0 -18
  423. package/dist/es/events/event-keydown-event.js +0 -18
  424. package/dist/es/events/navigate-event.js +0 -23
  425. package/dist/es/events/preventable-event.js +0 -32
  426. package/dist/es/events/remove-event.js +0 -23
  427. package/dist/es/events/resize-end-event.js +0 -23
  428. package/dist/es/events/resize-event.js +0 -23
  429. package/dist/es/events/resize-start-event.js +0 -23
  430. package/dist/es/events/save-event.js +0 -17
  431. package/dist/es/events/slot-click-event.js +0 -18
  432. package/dist/es/events/slot-drag-end-event.js +0 -17
  433. package/dist/es/events/slot-drag-event.js +0 -18
  434. package/dist/es/events/slot-drag-start-event.js +0 -24
  435. package/dist/es/events/view-event-map.js +0 -35
  436. package/dist/es/index.js +0 -103
  437. package/dist/es/loading.component.js +0 -50
  438. package/dist/es/localization/custom-messages.component.js +0 -43
  439. package/dist/es/localization/localized-messages.directive.js +0 -35
  440. package/dist/es/localization/messages.js +0 -322
  441. package/dist/es/localization/scheduler-localization.service.js +0 -24
  442. package/dist/es/main.js +0 -23
  443. package/dist/es/navigation/focus-position.interface.js +0 -4
  444. package/dist/es/navigation/focus.service.js +0 -134
  445. package/dist/es/navigation/focusable-element.interface.js +0 -4
  446. package/dist/es/navigation/focusable.directive.js +0 -79
  447. package/dist/es/navigation/shortcuts.directive.js +0 -168
  448. package/dist/es/package-metadata.js +0 -15
  449. package/dist/es/pdf/pdf-command.directive.js +0 -67
  450. package/dist/es/pdf/pdf-export-event.js +0 -17
  451. package/dist/es/pdf/pdf.component.js +0 -192
  452. package/dist/es/pdf/pdf.module.js +0 -55
  453. package/dist/es/pdf/pdf.service.js +0 -38
  454. package/dist/es/scheduler.component.js +0 -1251
  455. package/dist/es/scheduler.module.js +0 -174
  456. package/dist/es/shared.module.js +0 -31
  457. package/dist/es/toolbar/navigation.component.js +0 -225
  458. package/dist/es/toolbar/toolbar-context.js +0 -4
  459. package/dist/es/toolbar/toolbar-template.directive.js +0 -47
  460. package/dist/es/toolbar/toolbar.component.js +0 -100
  461. package/dist/es/toolbar/toolbar.module.js +0 -49
  462. package/dist/es/toolbar/toolbar.service.js +0 -33
  463. package/dist/es/toolbar/view-selector.component.js +0 -86
  464. package/dist/es/types/actions.js +0 -4
  465. package/dist/es/types/create-form-group-args.interface.js +0 -4
  466. package/dist/es/types/crud-operation.enum.js +0 -4
  467. package/dist/es/types/current-time-settings.interface.js +0 -4
  468. package/dist/es/types/date-range.interface.js +0 -4
  469. package/dist/es/types/datepicker-options.interface.js +0 -4
  470. package/dist/es/types/edit-event-args.interface.js +0 -4
  471. package/dist/es/types/edit-mode.enum.js +0 -4
  472. package/dist/es/types/editable-settings.interface.js +0 -4
  473. package/dist/es/types/event-style-args.interface.js +0 -4
  474. package/dist/es/types/group.interface.js +0 -4
  475. package/dist/es/types/numeric-options.interface.js +0 -4
  476. package/dist/es/types/ongoing-events-settings.interface.js +0 -4
  477. package/dist/es/types/resource.interface.js +0 -4
  478. package/dist/es/types/scheduler-event.js +0 -4
  479. package/dist/es/types/scheduler-model-fields.interface.js +0 -4
  480. package/dist/es/types/scheduler-slot.interface.js +0 -4
  481. package/dist/es/types/scheduler-view.js +0 -13
  482. package/dist/es/types/slot-class-args.interface.js +0 -4
  483. package/dist/es/types/slot-selection.js +0 -23
  484. package/dist/es/types/view-item.interface.js +0 -4
  485. package/dist/es/types.js +0 -6
  486. package/dist/es/views/agenda/agenda-header-item.component.js +0 -56
  487. package/dist/es/views/agenda/agenda-header.component.js +0 -57
  488. package/dist/es/views/agenda/agenda-task-item.component.js +0 -96
  489. package/dist/es/views/agenda/agenda-view-internal.component.js +0 -377
  490. package/dist/es/views/agenda/agenda-view-list.component.js +0 -113
  491. package/dist/es/views/agenda/agenda-view.component.js +0 -98
  492. package/dist/es/views/agenda/agenda-view.module.js +0 -39
  493. package/dist/es/views/agenda/tasks.collection.js +0 -117
  494. package/dist/es/views/agenda/utils.js +0 -195
  495. package/dist/es/views/common/base-view.js +0 -1049
  496. package/dist/es/views/common/configuration-view-base.js +0 -121
  497. package/dist/es/views/common/dom-events.service.js +0 -24
  498. package/dist/es/views/common/hint-container.component.js +0 -31
  499. package/dist/es/views/common/repeat.pipe.js +0 -51
  500. package/dist/es/views/common/resize-hint.component.js +0 -102
  501. package/dist/es/views/common/resource-iterator.pipe.js +0 -65
  502. package/dist/es/views/common/scheduler-task.js +0 -4
  503. package/dist/es/views/common/slot-selectable.directive.js +0 -117
  504. package/dist/es/views/common/view-footer.component.js +0 -50
  505. package/dist/es/views/common/views-shared.module.js +0 -47
  506. package/dist/es/views/common/work-hours-footer.directive.js +0 -41
  507. package/dist/es/views/constants.js +0 -29
  508. package/dist/es/views/day-time/day-time-slot.service.js +0 -693
  509. package/dist/es/views/day-time/day-time-view-base.js +0 -227
  510. package/dist/es/views/day-time/day-time-view-item.component.js +0 -55
  511. package/dist/es/views/day-time/day-time-view.component.js +0 -439
  512. package/dist/es/views/day-time/day-time.module.js +0 -32
  513. package/dist/es/views/day-time/event-slot.directive.js +0 -189
  514. package/dist/es/views/day-time/utils.js +0 -33
  515. package/dist/es/views/month/month-slot.directive.js +0 -96
  516. package/dist/es/views/month/month-slot.service.js +0 -322
  517. package/dist/es/views/month/month-view-item.component.js +0 -43
  518. package/dist/es/views/month/month-view-renderer.component.js +0 -257
  519. package/dist/es/views/month/month-view.component.js +0 -92
  520. package/dist/es/views/month/month-view.module.js +0 -36
  521. package/dist/es/views/month/utils.js +0 -69
  522. package/dist/es/views/multi-day/day-view.component.js +0 -91
  523. package/dist/es/views/multi-day/multi-day-view-base.js +0 -33
  524. package/dist/es/views/multi-day/multi-day-view-renderer.component.js +0 -323
  525. package/dist/es/views/multi-day/multi-day-view.component.js +0 -117
  526. package/dist/es/views/multi-day/multi-day-view.module.js +0 -42
  527. package/dist/es/views/multi-day/utils.js +0 -59
  528. package/dist/es/views/multi-day/week-view.component.js +0 -107
  529. package/dist/es/views/multi-day/work-week-view.component.js +0 -85
  530. package/dist/es/views/scheduler-view.directive.js +0 -57
  531. package/dist/es/views/templates/agenda-date-template.directive.js +0 -35
  532. package/dist/es/views/templates/agenda-time-template.directive.js +0 -40
  533. package/dist/es/views/templates/all-day-event-template.directive.js +0 -36
  534. package/dist/es/views/templates/all-day-slot-template.directive.js +0 -36
  535. package/dist/es/views/templates/date-header-template.directive.js +0 -36
  536. package/dist/es/views/templates/event-template.directive.js +0 -36
  537. package/dist/es/views/templates/group-header-template.directive.js +0 -36
  538. package/dist/es/views/templates/major-time-header-template.directive.js +0 -35
  539. package/dist/es/views/templates/minor-time-header-template.directive.js +0 -35
  540. package/dist/es/views/templates/month-day-slot-template.directive.js +0 -37
  541. package/dist/es/views/templates/time-slot-template.directive.js +0 -37
  542. package/dist/es/views/timeline/timeline-base.js +0 -33
  543. package/dist/es/views/timeline/timeline-month-view.component.js +0 -93
  544. package/dist/es/views/timeline/timeline-multi-day-view.component.js +0 -160
  545. package/dist/es/views/timeline/timeline-view.component.js +0 -74
  546. package/dist/es/views/timeline/timeline-view.module.js +0 -40
  547. package/dist/es/views/timeline/timeline-week-view.component.js +0 -89
  548. package/dist/es/views/timeline/utils.js +0 -34
  549. package/dist/es/views/utils.js +0 -339
  550. package/dist/es/views/view-context.service.js +0 -85
  551. package/dist/es/views/view-items/base-slot.directive.js +0 -115
  552. package/dist/es/views/view-items/base-slot.service.js +0 -77
  553. package/dist/es/views/view-items/base-view-item.js +0 -222
  554. package/dist/es/views/view-items/item-map.js +0 -51
  555. package/dist/es/views/view-items/types.js +0 -4
  556. package/dist/es/views/view-state.service.js +0 -100
  557. package/dist/es2015/common/dom-queries.js +0 -124
  558. package/dist/es2015/common/modifiers.js +0 -31
  559. package/dist/es2015/data-binding.directive.d.ts +0 -51
  560. package/dist/es2015/data-binding.directive.js +0 -155
  561. package/dist/es2015/editing/date-time-picker.component.d.ts +0 -36
  562. package/dist/es2015/editing/date-time-picker.component.js +0 -97
  563. package/dist/es2015/editing/dialogs.service.d.ts +0 -41
  564. package/dist/es2015/editing/dialogs.service.js +0 -89
  565. package/dist/es2015/editing/edit-dialog-template.directive.d.ts +0 -24
  566. package/dist/es2015/editing/edit-dialog-template.directive.js +0 -34
  567. package/dist/es2015/editing/edit-dialog.component.d.ts +0 -76
  568. package/dist/es2015/editing/edit-dialog.component.js +0 -389
  569. package/dist/es2015/editing/edit.service.d.ts +0 -54
  570. package/dist/es2015/editing/edit.service.js +0 -99
  571. package/dist/es2015/editing/local-data-changes.service.d.ts +0 -12
  572. package/dist/es2015/editing/local-data-changes.service.js +0 -21
  573. package/dist/es2015/editing/recurrence/end-rule-radio-button.directive.d.ts +0 -28
  574. package/dist/es2015/editing/recurrence/end-rule-radio-button.directive.js +0 -74
  575. package/dist/es2015/editing/recurrence/localization/custom-messages.component.d.ts +0 -15
  576. package/dist/es2015/editing/recurrence/localization/custom-messages.component.js +0 -36
  577. package/dist/es2015/editing/recurrence/localization/localized-messages.directive.d.ts +0 -13
  578. package/dist/es2015/editing/recurrence/localization/localized-messages.directive.js +0 -31
  579. package/dist/es2015/editing/recurrence/localization/messages.d.ts +0 -138
  580. package/dist/es2015/editing/recurrence/localization/messages.js +0 -140
  581. package/dist/es2015/editing/recurrence/localization/recurrence-localization.service.d.ts +0 -14
  582. package/dist/es2015/editing/recurrence/localization/recurrence-localization.service.js +0 -32
  583. package/dist/es2015/editing/recurrence/recurrence-editor.component.d.ts +0 -87
  584. package/dist/es2015/editing/recurrence/recurrence-editor.component.js +0 -287
  585. package/dist/es2015/editing/recurrence/recurrence-end-rule-editor.component.d.ts +0 -42
  586. package/dist/es2015/editing/recurrence/recurrence-end-rule-editor.component.js +0 -204
  587. package/dist/es2015/editing/recurrence/recurrence-frequency-editor.component.d.ts +0 -23
  588. package/dist/es2015/editing/recurrence/recurrence-frequency-editor.component.js +0 -65
  589. package/dist/es2015/editing/recurrence/recurrence-interval-editor.component.d.ts +0 -24
  590. package/dist/es2015/editing/recurrence/recurrence-interval-editor.component.js +0 -115
  591. package/dist/es2015/editing/recurrence/recurrence-monthly-yearly-editor.component.d.ts +0 -50
  592. package/dist/es2015/editing/recurrence/recurrence-monthly-yearly-editor.component.js +0 -341
  593. package/dist/es2015/editing/recurrence/recurrence-weekday-rule-editor.component.d.ts +0 -28
  594. package/dist/es2015/editing/recurrence/recurrence-weekday-rule-editor.component.js +0 -90
  595. package/dist/es2015/editing/recurrence/recurrence.service.d.ts +0 -112
  596. package/dist/es2015/editing/recurrence/recurrence.service.js +0 -247
  597. package/dist/es2015/editing/recurrence/repeat-on-radio-button.directive.d.ts +0 -29
  598. package/dist/es2015/editing/recurrence/repeat-on-radio-button.directive.js +0 -80
  599. package/dist/es2015/editing/resource-editor-base.d.ts +0 -34
  600. package/dist/es2015/editing/resource-editor-base.js +0 -58
  601. package/dist/es2015/editing/resource-multiple-editor.component.d.ts +0 -18
  602. package/dist/es2015/editing/resource-multiple-editor.component.js +0 -67
  603. package/dist/es2015/editing/resource-single-editor.component.d.ts +0 -17
  604. package/dist/es2015/editing/resource-single-editor.component.js +0 -57
  605. package/dist/es2015/editing/timezone-editor.component.d.ts +0 -57
  606. package/dist/es2015/editing/timezone-editor.component.js +0 -116
  607. package/dist/es2015/editing-directives/base-edit.service.d.ts +0 -150
  608. package/dist/es2015/editing-directives/base-edit.service.js +0 -289
  609. package/dist/es2015/editing-directives/edit-service.interface.js +0 -4
  610. package/dist/es2015/editing-directives/editing-directive-base.d.ts +0 -56
  611. package/dist/es2015/editing-directives/editing-directive-base.js +0 -217
  612. package/dist/es2015/editing-directives/local-edit.service.d.ts +0 -33
  613. package/dist/es2015/editing-directives/local-edit.service.js +0 -122
  614. package/dist/es2015/editing-directives/reactive-editing.directive.d.ts +0 -29
  615. package/dist/es2015/editing-directives/reactive-editing.directive.js +0 -106
  616. package/dist/es2015/editing-directives/utils.js +0 -66
  617. package/dist/es2015/events.js +0 -25
  618. package/dist/es2015/index.d.ts +0 -104
  619. package/dist/es2015/index.js +0 -103
  620. package/dist/es2015/index.metadata.json +0 -1
  621. package/dist/es2015/loading.component.d.ts +0 -18
  622. package/dist/es2015/loading.component.js +0 -48
  623. package/dist/es2015/localization/custom-messages.component.d.ts +0 -14
  624. package/dist/es2015/localization/custom-messages.component.js +0 -35
  625. package/dist/es2015/localization/localized-messages.directive.d.ts +0 -13
  626. package/dist/es2015/localization/localized-messages.directive.js +0 -31
  627. package/dist/es2015/localization/messages.d.ts +0 -314
  628. package/dist/es2015/localization/messages.js +0 -316
  629. package/dist/es2015/localization/scheduler-localization.service.d.ts +0 -11
  630. package/dist/es2015/localization/scheduler-localization.service.js +0 -22
  631. package/dist/es2015/main.d.ts +0 -24
  632. package/dist/es2015/main.js +0 -23
  633. package/dist/es2015/navigation/focus-position.interface.js +0 -4
  634. package/dist/es2015/navigation/focus.service.d.ts +0 -34
  635. package/dist/es2015/navigation/focus.service.js +0 -128
  636. package/dist/es2015/navigation/focusable-element.interface.js +0 -4
  637. package/dist/es2015/navigation/focusable.directive.d.ts +0 -29
  638. package/dist/es2015/navigation/focusable.directive.js +0 -70
  639. package/dist/es2015/navigation/shortcuts.directive.d.ts +0 -29
  640. package/dist/es2015/navigation/shortcuts.directive.js +0 -163
  641. package/dist/es2015/navigation.js +0 -6
  642. package/dist/es2015/package-metadata.js +0 -15
  643. package/dist/es2015/pdf/pdf-command.directive.d.ts +0 -39
  644. package/dist/es2015/pdf/pdf-command.directive.js +0 -64
  645. package/dist/es2015/pdf/pdf.component.d.ts +0 -122
  646. package/dist/es2015/pdf/pdf.component.js +0 -178
  647. package/dist/es2015/pdf/pdf.module.d.ts +0 -37
  648. package/dist/es2015/pdf/pdf.module.js +0 -52
  649. package/dist/es2015/pdf/pdf.service.d.ts +0 -15
  650. package/dist/es2015/pdf/pdf.service.js +0 -40
  651. package/dist/es2015/scheduler.component.d.ts +0 -669
  652. package/dist/es2015/scheduler.component.js +0 -1464
  653. package/dist/es2015/scheduler.module.d.ts +0 -37
  654. package/dist/es2015/scheduler.module.js +0 -174
  655. package/dist/es2015/shared.module.d.ts +0 -10
  656. package/dist/es2015/shared.module.js +0 -28
  657. package/dist/es2015/toolbar/navigation.component.d.ts +0 -104
  658. package/dist/es2015/toolbar/navigation.component.js +0 -245
  659. package/dist/es2015/toolbar/toolbar-context.js +0 -4
  660. package/dist/es2015/toolbar/toolbar-template.directive.d.ts +0 -36
  661. package/dist/es2015/toolbar/toolbar-template.directive.js +0 -46
  662. package/dist/es2015/toolbar/toolbar.component.d.ts +0 -32
  663. package/dist/es2015/toolbar/toolbar.component.js +0 -104
  664. package/dist/es2015/toolbar/toolbar.module.d.ts +0 -16
  665. package/dist/es2015/toolbar/toolbar.module.js +0 -48
  666. package/dist/es2015/toolbar/toolbar.service.d.ts +0 -35
  667. package/dist/es2015/toolbar/toolbar.service.js +0 -32
  668. package/dist/es2015/toolbar/view-selector.component.d.ts +0 -49
  669. package/dist/es2015/toolbar/view-selector.component.js +0 -105
  670. package/dist/es2015/types/actions.js +0 -4
  671. package/dist/es2015/types/create-form-group-args.interface.js +0 -4
  672. package/dist/es2015/types/crud-operation.enum.js +0 -4
  673. package/dist/es2015/types/current-time-settings.interface.js +0 -4
  674. package/dist/es2015/types/date-range.interface.js +0 -4
  675. package/dist/es2015/types/datepicker-options.interface.d.ts +0 -106
  676. package/dist/es2015/types/datepicker-options.interface.js +0 -4
  677. package/dist/es2015/types/edit-event-args.interface.js +0 -4
  678. package/dist/es2015/types/edit-mode.enum.js +0 -4
  679. package/dist/es2015/types/editable-settings.interface.js +0 -4
  680. package/dist/es2015/types/event-style-args.interface.js +0 -4
  681. package/dist/es2015/types/group.interface.js +0 -4
  682. package/dist/es2015/types/numeric-options.interface.d.ts +0 -53
  683. package/dist/es2015/types/numeric-options.interface.js +0 -4
  684. package/dist/es2015/types/ongoing-events-settings.interface.js +0 -4
  685. package/dist/es2015/types/resource.interface.js +0 -4
  686. package/dist/es2015/types/scheduler-event.js +0 -4
  687. package/dist/es2015/types/scheduler-model-fields.interface.js +0 -4
  688. package/dist/es2015/types/scheduler-slot.interface.js +0 -4
  689. package/dist/es2015/types/slot-class-args.interface.js +0 -4
  690. package/dist/es2015/types/view-item.interface.js +0 -4
  691. package/dist/es2015/types.d.ts +0 -26
  692. package/dist/es2015/types.js +0 -6
  693. package/dist/es2015/views/agenda/agenda-header-item.component.d.ts +0 -15
  694. package/dist/es2015/views/agenda/agenda-header-item.component.js +0 -59
  695. package/dist/es2015/views/agenda/agenda-header.component.d.ts +0 -17
  696. package/dist/es2015/views/agenda/agenda-header.component.js +0 -57
  697. package/dist/es2015/views/agenda/agenda-task-item.component.d.ts +0 -24
  698. package/dist/es2015/views/agenda/agenda-task-item.component.js +0 -87
  699. package/dist/es2015/views/agenda/agenda-view-internal.component.d.ts +0 -76
  700. package/dist/es2015/views/agenda/agenda-view-internal.component.js +0 -376
  701. package/dist/es2015/views/agenda/agenda-view-list.component.d.ts +0 -29
  702. package/dist/es2015/views/agenda/agenda-view-list.component.js +0 -147
  703. package/dist/es2015/views/agenda/agenda-view.component.d.ts +0 -57
  704. package/dist/es2015/views/agenda/agenda-view.component.js +0 -104
  705. package/dist/es2015/views/agenda/agenda-view.module.d.ts +0 -9
  706. package/dist/es2015/views/agenda/agenda-view.module.js +0 -36
  707. package/dist/es2015/views/agenda/tasks.collection.d.ts +0 -44
  708. package/dist/es2015/views/agenda/tasks.collection.js +0 -80
  709. package/dist/es2015/views/agenda/utils.js +0 -178
  710. package/dist/es2015/views/common/base-view.d.ts +0 -178
  711. package/dist/es2015/views/common/base-view.js +0 -1019
  712. package/dist/es2015/views/common/configuration-view-base.d.ts +0 -81
  713. package/dist/es2015/views/common/configuration-view-base.js +0 -96
  714. package/dist/es2015/views/common/dom-events.service.d.ts +0 -16
  715. package/dist/es2015/views/common/dom-events.service.js +0 -26
  716. package/dist/es2015/views/common/hint-container.component.d.ts +0 -14
  717. package/dist/es2015/views/common/hint-container.component.js +0 -33
  718. package/dist/es2015/views/common/repeat.pipe.d.ts +0 -11
  719. package/dist/es2015/views/common/repeat.pipe.js +0 -32
  720. package/dist/es2015/views/common/resize-hint.component.d.ts +0 -18
  721. package/dist/es2015/views/common/resize-hint.component.js +0 -86
  722. package/dist/es2015/views/common/resource-iterator.pipe.d.ts +0 -11
  723. package/dist/es2015/views/common/resource-iterator.pipe.js +0 -44
  724. package/dist/es2015/views/common/scheduler-task.d.ts +0 -19
  725. package/dist/es2015/views/common/scheduler-task.js +0 -4
  726. package/dist/es2015/views/common/slot-selectable.directive.d.ts +0 -45
  727. package/dist/es2015/views/common/slot-selectable.directive.js +0 -112
  728. package/dist/es2015/views/common/view-footer.component.d.ts +0 -19
  729. package/dist/es2015/views/common/view-footer.component.js +0 -57
  730. package/dist/es2015/views/common/views-shared.module.d.ts +0 -9
  731. package/dist/es2015/views/common/views-shared.module.js +0 -44
  732. package/dist/es2015/views/common/work-hours-footer.directive.d.ts +0 -20
  733. package/dist/es2015/views/common/work-hours-footer.directive.js +0 -40
  734. package/dist/es2015/views/day-time/day-time-slot.service.d.ts +0 -77
  735. package/dist/es2015/views/day-time/day-time-slot.service.js +0 -610
  736. package/dist/es2015/views/day-time/day-time-view-base.d.ts +0 -137
  737. package/dist/es2015/views/day-time/day-time-view-base.js +0 -172
  738. package/dist/es2015/views/day-time/day-time-view-item.component.d.ts +0 -21
  739. package/dist/es2015/views/day-time/day-time-view-item.component.js +0 -86
  740. package/dist/es2015/views/day-time/day-time-view.component.d.ts +0 -85
  741. package/dist/es2015/views/day-time/day-time-view.component.js +0 -415
  742. package/dist/es2015/views/day-time/day-time.module.d.ts +0 -9
  743. package/dist/es2015/views/day-time/day-time.module.js +0 -29
  744. package/dist/es2015/views/day-time/event-slot.directive.d.ts +0 -39
  745. package/dist/es2015/views/day-time/event-slot.directive.js +0 -151
  746. package/dist/es2015/views/month/month-slot.directive.d.ts +0 -26
  747. package/dist/es2015/views/month/month-slot.directive.js +0 -81
  748. package/dist/es2015/views/month/month-slot.service.d.ts +0 -61
  749. package/dist/es2015/views/month/month-view-item.component.d.ts +0 -17
  750. package/dist/es2015/views/month/month-view-item.component.js +0 -64
  751. package/dist/es2015/views/month/month-view-renderer.component.d.ts +0 -53
  752. package/dist/es2015/views/month/month-view-renderer.component.js +0 -361
  753. package/dist/es2015/views/month/month-view.component.d.ts +0 -44
  754. package/dist/es2015/views/month/month-view.component.js +0 -96
  755. package/dist/es2015/views/month/month-view.module.d.ts +0 -9
  756. package/dist/es2015/views/month/month-view.module.js +0 -33
  757. package/dist/es2015/views/month/utils.js +0 -69
  758. package/dist/es2015/views/multi-day/day-view.component.d.ts +0 -54
  759. package/dist/es2015/views/multi-day/day-view.component.js +0 -117
  760. package/dist/es2015/views/multi-day/multi-day-view-base.d.ts +0 -25
  761. package/dist/es2015/views/multi-day/multi-day-view-base.js +0 -26
  762. package/dist/es2015/views/multi-day/multi-day-view-renderer.component.d.ts +0 -65
  763. package/dist/es2015/views/multi-day/multi-day-view-renderer.component.js +0 -531
  764. package/dist/es2015/views/multi-day/multi-day-view.component.d.ts +0 -46
  765. package/dist/es2015/views/multi-day/multi-day-view.component.js +0 -129
  766. package/dist/es2015/views/multi-day/multi-day-view.module.d.ts +0 -9
  767. package/dist/es2015/views/multi-day/multi-day-view.module.js +0 -40
  768. package/dist/es2015/views/multi-day/week-view.component.d.ts +0 -62
  769. package/dist/es2015/views/multi-day/week-view.component.js +0 -136
  770. package/dist/es2015/views/multi-day/work-week-view.component.d.ts +0 -36
  771. package/dist/es2015/views/multi-day/work-week-view.component.js +0 -111
  772. package/dist/es2015/views/scheduler-view.directive.d.ts +0 -23
  773. package/dist/es2015/views/scheduler-view.directive.js +0 -49
  774. package/dist/es2015/views/templates/agenda-date-template.directive.d.ts +0 -24
  775. package/dist/es2015/views/templates/agenda-date-template.directive.js +0 -34
  776. package/dist/es2015/views/templates/agenda-time-template.directive.d.ts +0 -29
  777. package/dist/es2015/views/templates/agenda-time-template.directive.js +0 -39
  778. package/dist/es2015/views/templates/all-day-event-template.directive.d.ts +0 -25
  779. package/dist/es2015/views/templates/all-day-event-template.directive.js +0 -35
  780. package/dist/es2015/views/templates/all-day-slot-template.directive.d.ts +0 -25
  781. package/dist/es2015/views/templates/all-day-slot-template.directive.js +0 -35
  782. package/dist/es2015/views/templates/date-header-template.directive.d.ts +0 -25
  783. package/dist/es2015/views/templates/date-header-template.directive.js +0 -35
  784. package/dist/es2015/views/templates/event-template.directive.d.ts +0 -25
  785. package/dist/es2015/views/templates/event-template.directive.js +0 -35
  786. package/dist/es2015/views/templates/group-header-template.directive.d.ts +0 -25
  787. package/dist/es2015/views/templates/group-header-template.directive.js +0 -35
  788. package/dist/es2015/views/templates/major-time-header-template.directive.d.ts +0 -24
  789. package/dist/es2015/views/templates/major-time-header-template.directive.js +0 -34
  790. package/dist/es2015/views/templates/minor-time-header-template.directive.d.ts +0 -24
  791. package/dist/es2015/views/templates/minor-time-header-template.directive.js +0 -34
  792. package/dist/es2015/views/templates/month-day-slot-template.directive.d.ts +0 -25
  793. package/dist/es2015/views/templates/month-day-slot-template.directive.js +0 -36
  794. package/dist/es2015/views/templates/time-slot-template.directive.d.ts +0 -26
  795. package/dist/es2015/views/templates/time-slot-template.directive.js +0 -36
  796. package/dist/es2015/views/templates.js +0 -15
  797. package/dist/es2015/views/timeline/timeline-base.d.ts +0 -23
  798. package/dist/es2015/views/timeline/timeline-base.js +0 -26
  799. package/dist/es2015/views/timeline/timeline-month-view.component.d.ts +0 -49
  800. package/dist/es2015/views/timeline/timeline-month-view.component.js +0 -119
  801. package/dist/es2015/views/timeline/timeline-multi-day-view.component.d.ts +0 -39
  802. package/dist/es2015/views/timeline/timeline-multi-day-view.component.js +0 -302
  803. package/dist/es2015/views/timeline/timeline-view.component.d.ts +0 -37
  804. package/dist/es2015/views/timeline/timeline-view.component.js +0 -96
  805. package/dist/es2015/views/timeline/timeline-view.module.d.ts +0 -9
  806. package/dist/es2015/views/timeline/timeline-view.module.js +0 -38
  807. package/dist/es2015/views/timeline/timeline-week-view.component.d.ts +0 -45
  808. package/dist/es2015/views/timeline/timeline-week-view.component.js +0 -115
  809. package/dist/es2015/views/view-context.service.d.ts +0 -79
  810. package/dist/es2015/views/view-context.service.js +0 -84
  811. package/dist/es2015/views/view-items/base-slot.directive.d.ts +0 -32
  812. package/dist/es2015/views/view-items/base-slot.directive.js +0 -81
  813. package/dist/es2015/views/view-items/base-view-item.d.ts +0 -47
  814. package/dist/es2015/views/view-items/base-view-item.js +0 -183
  815. package/dist/es2015/views/view-items/item-map.d.ts +0 -16
  816. package/dist/es2015/views/view-items/types.js +0 -4
  817. package/dist/es2015/views/view-state.service.d.ts +0 -92
  818. package/dist/es2015/views/view-state.service.js +0 -99
  819. package/dist/fesm2015/index.js +0 -15104
  820. package/dist/fesm5/index.js +0 -14590
  821. package/dist/npm/common/constants.js +0 -10
  822. package/dist/npm/common/default-model-fields.js +0 -22
  823. package/dist/npm/common/dom-queries.js +0 -131
  824. package/dist/npm/common/getter.js +0 -32
  825. package/dist/npm/common/modifiers.js +0 -35
  826. package/dist/npm/common/setter.js +0 -33
  827. package/dist/npm/common/util.js +0 -243
  828. package/dist/npm/data-binding.directive.js +0 -166
  829. package/dist/npm/editing/date-time-picker.component.js +0 -82
  830. package/dist/npm/editing/dialogs.service.js +0 -96
  831. package/dist/npm/editing/edit-dialog-template.directive.js +0 -37
  832. package/dist/npm/editing/edit-dialog.component.js +0 -300
  833. package/dist/npm/editing/edit.service.js +0 -120
  834. package/dist/npm/editing/local-data-changes.service.js +0 -21
  835. package/dist/npm/editing/recurrence/end-rule-radio-button.directive.js +0 -81
  836. package/dist/npm/editing/recurrence/localization/custom-messages.component.js +0 -46
  837. package/dist/npm/editing/recurrence/localization/localized-messages.directive.js +0 -37
  838. package/dist/npm/editing/recurrence/localization/messages.js +0 -148
  839. package/dist/npm/editing/recurrence/localization/recurrence-localization.service.js +0 -37
  840. package/dist/npm/editing/recurrence/recurrence-editor.component.js +0 -176
  841. package/dist/npm/editing/recurrence/recurrence-end-rule-editor.component.js +0 -164
  842. package/dist/npm/editing/recurrence/recurrence-frequency-editor.component.js +0 -58
  843. package/dist/npm/editing/recurrence/recurrence-interval-editor.component.js +0 -100
  844. package/dist/npm/editing/recurrence/recurrence-monthly-yearly-editor.component.js +0 -279
  845. package/dist/npm/editing/recurrence/recurrence-weekday-rule-editor.component.js +0 -84
  846. package/dist/npm/editing/recurrence/recurrence.service.js +0 -305
  847. package/dist/npm/editing/recurrence/repeat-on-radio-button.directive.js +0 -91
  848. package/dist/npm/editing/resource-editor-base.js +0 -62
  849. package/dist/npm/editing/resource-multiple-editor.component.js +0 -53
  850. package/dist/npm/editing/resource-single-editor.component.js +0 -48
  851. package/dist/npm/editing/timezone-editor.component.js +0 -109
  852. package/dist/npm/editing-directives/base-edit.service.js +0 -299
  853. package/dist/npm/editing-directives/edit-service.interface.js +0 -6
  854. package/dist/npm/editing-directives/editing-directive-base.js +0 -231
  855. package/dist/npm/editing-directives/local-edit.service.js +0 -138
  856. package/dist/npm/editing-directives/reactive-editing.directive.js +0 -113
  857. package/dist/npm/editing-directives/utils.js +0 -72
  858. package/dist/npm/events/add-event.js +0 -25
  859. package/dist/npm/events/cancel-event.js +0 -19
  860. package/dist/npm/events/create-event.js +0 -20
  861. package/dist/npm/events/date-change-event.js +0 -21
  862. package/dist/npm/events/drag-end-event.js +0 -25
  863. package/dist/npm/events/drag-event.js +0 -25
  864. package/dist/npm/events/drag-start-event.js +0 -25
  865. package/dist/npm/events/edit-event-base.js +0 -20
  866. package/dist/npm/events/edit-event.js +0 -25
  867. package/dist/npm/events/event-click-event.js +0 -20
  868. package/dist/npm/events/event-keydown-event.js +0 -20
  869. package/dist/npm/events/navigate-event.js +0 -25
  870. package/dist/npm/events/preventable-event.js +0 -34
  871. package/dist/npm/events/remove-event.js +0 -25
  872. package/dist/npm/events/resize-end-event.js +0 -25
  873. package/dist/npm/events/resize-event.js +0 -25
  874. package/dist/npm/events/resize-start-event.js +0 -25
  875. package/dist/npm/events/save-event.js +0 -19
  876. package/dist/npm/events/slot-click-event.js +0 -20
  877. package/dist/npm/events/slot-drag-end-event.js +0 -19
  878. package/dist/npm/events/slot-drag-event.js +0 -20
  879. package/dist/npm/events/slot-drag-start-event.js +0 -26
  880. package/dist/npm/events/view-event-map.js +0 -37
  881. package/dist/npm/events.js +0 -48
  882. package/dist/npm/index.js +0 -207
  883. package/dist/npm/loading.component.js +0 -52
  884. package/dist/npm/localization/custom-messages.component.js +0 -45
  885. package/dist/npm/localization/localized-messages.directive.js +0 -37
  886. package/dist/npm/localization/messages.js +0 -324
  887. package/dist/npm/localization/scheduler-localization.service.js +0 -26
  888. package/dist/npm/main.js +0 -43
  889. package/dist/npm/navigation/focus-position.interface.js +0 -6
  890. package/dist/npm/navigation/focus.service.js +0 -136
  891. package/dist/npm/navigation/focusable-element.interface.js +0 -6
  892. package/dist/npm/navigation/focusable.directive.js +0 -81
  893. package/dist/npm/navigation/shortcuts.directive.js +0 -170
  894. package/dist/npm/navigation.js +0 -10
  895. package/dist/npm/package-metadata.js +0 -17
  896. package/dist/npm/pdf/pdf-command.directive.js +0 -69
  897. package/dist/npm/pdf/pdf-export-event.js +0 -19
  898. package/dist/npm/pdf/pdf.component.js +0 -195
  899. package/dist/npm/pdf/pdf.module.js +0 -57
  900. package/dist/npm/pdf/pdf.service.js +0 -40
  901. package/dist/npm/scheduler.component.js +0 -1253
  902. package/dist/npm/scheduler.module.js +0 -176
  903. package/dist/npm/shared.module.js +0 -33
  904. package/dist/npm/toolbar/navigation.component.js +0 -227
  905. package/dist/npm/toolbar/toolbar-context.js +0 -6
  906. package/dist/npm/toolbar/toolbar-template.directive.js +0 -49
  907. package/dist/npm/toolbar/toolbar.component.js +0 -102
  908. package/dist/npm/toolbar/toolbar.module.js +0 -51
  909. package/dist/npm/toolbar/toolbar.service.js +0 -35
  910. package/dist/npm/toolbar/view-selector.component.js +0 -88
  911. package/dist/npm/types/actions.js +0 -6
  912. package/dist/npm/types/create-form-group-args.interface.js +0 -6
  913. package/dist/npm/types/crud-operation.enum.js +0 -18
  914. package/dist/npm/types/current-time-settings.interface.js +0 -6
  915. package/dist/npm/types/date-range.interface.js +0 -6
  916. package/dist/npm/types/datepicker-options.interface.js +0 -6
  917. package/dist/npm/types/edit-event-args.interface.js +0 -6
  918. package/dist/npm/types/edit-mode.enum.js +0 -21
  919. package/dist/npm/types/editable-settings.interface.js +0 -6
  920. package/dist/npm/types/event-style-args.interface.js +0 -6
  921. package/dist/npm/types/group.interface.js +0 -6
  922. package/dist/npm/types/numeric-options.interface.js +0 -6
  923. package/dist/npm/types/ongoing-events-settings.interface.js +0 -6
  924. package/dist/npm/types/resource.interface.js +0 -6
  925. package/dist/npm/types/scheduler-event.js +0 -6
  926. package/dist/npm/types/scheduler-model-fields.interface.js +0 -6
  927. package/dist/npm/types/scheduler-slot.interface.js +0 -6
  928. package/dist/npm/types/scheduler-view.js +0 -15
  929. package/dist/npm/types/slot-class-args.interface.js +0 -6
  930. package/dist/npm/types/slot-selection.js +0 -25
  931. package/dist/npm/types/view-item.interface.js +0 -6
  932. package/dist/npm/types.js +0 -14
  933. package/dist/npm/views/agenda/agenda-header-item.component.js +0 -58
  934. package/dist/npm/views/agenda/agenda-header.component.js +0 -59
  935. package/dist/npm/views/agenda/agenda-task-item.component.js +0 -98
  936. package/dist/npm/views/agenda/agenda-view-internal.component.js +0 -379
  937. package/dist/npm/views/agenda/agenda-view-list.component.js +0 -115
  938. package/dist/npm/views/agenda/agenda-view.component.js +0 -100
  939. package/dist/npm/views/agenda/agenda-view.module.js +0 -41
  940. package/dist/npm/views/agenda/tasks.collection.js +0 -119
  941. package/dist/npm/views/agenda/utils.js +0 -208
  942. package/dist/npm/views/common/base-view.js +0 -1051
  943. package/dist/npm/views/common/configuration-view-base.js +0 -123
  944. package/dist/npm/views/common/dom-events.service.js +0 -26
  945. package/dist/npm/views/common/hint-container.component.js +0 -33
  946. package/dist/npm/views/common/repeat.pipe.js +0 -53
  947. package/dist/npm/views/common/resize-hint.component.js +0 -104
  948. package/dist/npm/views/common/resource-iterator.pipe.js +0 -67
  949. package/dist/npm/views/common/scheduler-task.js +0 -6
  950. package/dist/npm/views/common/slot-selectable.directive.js +0 -119
  951. package/dist/npm/views/common/view-footer.component.js +0 -52
  952. package/dist/npm/views/common/views-shared.module.js +0 -49
  953. package/dist/npm/views/common/work-hours-footer.directive.js +0 -43
  954. package/dist/npm/views/constants.js +0 -32
  955. package/dist/npm/views/day-time/day-time-slot.service.js +0 -697
  956. package/dist/npm/views/day-time/day-time-view-base.js +0 -229
  957. package/dist/npm/views/day-time/day-time-view-item.component.js +0 -57
  958. package/dist/npm/views/day-time/day-time-view.component.js +0 -443
  959. package/dist/npm/views/day-time/day-time.module.js +0 -34
  960. package/dist/npm/views/day-time/event-slot.directive.js +0 -191
  961. package/dist/npm/views/day-time/utils.js +0 -36
  962. package/dist/npm/views/month/month-slot.directive.js +0 -98
  963. package/dist/npm/views/month/month-slot.service.js +0 -324
  964. package/dist/npm/views/month/month-view-item.component.js +0 -45
  965. package/dist/npm/views/month/month-view-renderer.component.js +0 -259
  966. package/dist/npm/views/month/month-view.component.js +0 -94
  967. package/dist/npm/views/month/month-view.module.js +0 -38
  968. package/dist/npm/views/month/utils.js +0 -72
  969. package/dist/npm/views/multi-day/day-view.component.js +0 -93
  970. package/dist/npm/views/multi-day/multi-day-view-base.js +0 -35
  971. package/dist/npm/views/multi-day/multi-day-view-renderer.component.js +0 -325
  972. package/dist/npm/views/multi-day/multi-day-view.component.js +0 -119
  973. package/dist/npm/views/multi-day/multi-day-view.module.js +0 -44
  974. package/dist/npm/views/multi-day/utils.js +0 -61
  975. package/dist/npm/views/multi-day/week-view.component.js +0 -109
  976. package/dist/npm/views/multi-day/work-week-view.component.js +0 -87
  977. package/dist/npm/views/scheduler-view.directive.js +0 -59
  978. package/dist/npm/views/templates/agenda-date-template.directive.js +0 -37
  979. package/dist/npm/views/templates/agenda-time-template.directive.js +0 -42
  980. package/dist/npm/views/templates/all-day-event-template.directive.js +0 -38
  981. package/dist/npm/views/templates/all-day-slot-template.directive.js +0 -38
  982. package/dist/npm/views/templates/date-header-template.directive.js +0 -38
  983. package/dist/npm/views/templates/event-template.directive.js +0 -38
  984. package/dist/npm/views/templates/group-header-template.directive.js +0 -38
  985. package/dist/npm/views/templates/major-time-header-template.directive.js +0 -37
  986. package/dist/npm/views/templates/minor-time-header-template.directive.js +0 -37
  987. package/dist/npm/views/templates/month-day-slot-template.directive.js +0 -39
  988. package/dist/npm/views/templates/time-slot-template.directive.js +0 -39
  989. package/dist/npm/views/templates.js +0 -28
  990. package/dist/npm/views/timeline/timeline-base.js +0 -35
  991. package/dist/npm/views/timeline/timeline-month-view.component.js +0 -95
  992. package/dist/npm/views/timeline/timeline-multi-day-view.component.js +0 -162
  993. package/dist/npm/views/timeline/timeline-view.component.js +0 -76
  994. package/dist/npm/views/timeline/timeline-view.module.js +0 -42
  995. package/dist/npm/views/timeline/timeline-week-view.component.js +0 -91
  996. package/dist/npm/views/timeline/utils.js +0 -36
  997. package/dist/npm/views/utils.js +0 -360
  998. package/dist/npm/views/view-context.service.js +0 -87
  999. package/dist/npm/views/view-items/base-slot.directive.js +0 -117
  1000. package/dist/npm/views/view-items/base-slot.service.js +0 -79
  1001. package/dist/npm/views/view-items/base-view-item.js +0 -224
  1002. package/dist/npm/views/view-items/item-map.js +0 -53
  1003. package/dist/npm/views/view-items/types.js +0 -6
  1004. package/dist/npm/views/view-state.service.js +0 -102
  1005. package/dist/systemjs/kendo-angular-scheduler.js +0 -5
@@ -1,107 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import * as tslib_1 from "tslib";
6
- import { Component, forwardRef, Input, ContentChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core';
7
- import { LocalizationService } from '@progress/kendo-angular-l10n';
8
- import { SchedulerView } from '../../types';
9
- import { MultiDayViewBase } from './multi-day-view-base';
10
- import { IntlService } from '@progress/kendo-angular-intl';
11
- import { ViewContextService } from '../view-context.service';
12
- import { ViewStateService } from '../view-state.service';
13
- import { firstDayInWeek, getDate } from '@progress/kendo-date-math';
14
- import { AllDaySlotTemplateDirective, AllDayEventTemplateDirective, MinorTimeHeaderTemplateDirective, MajorTimeHeaderTemplateDirective } from '../templates';
15
- /**
16
- * The component for rendering the **Week** view.
17
- */
18
- var WeekViewComponent = /** @class */ (function (_super) {
19
- tslib_1.__extends(WeekViewComponent, _super);
20
- function WeekViewComponent(intl, localization, changeDetector, viewContext, viewState) {
21
- var _this = _super.call(this, localization, changeDetector, viewContext, viewState) || this;
22
- _this.intl = intl;
23
- /**
24
- * The long-date format for displaying the
25
- * selected date in the Scheduler toolbar.
26
- * Defaults to `{0:D} - {1:D}`,
27
- * where `0` is the start and `1` is the end date
28
- * ([more information]({% slug parsingandformatting_intl %}#toc-date-formatting).
29
- */
30
- _this.selectedDateFormat = '{0:D} - {1:D}';
31
- /**
32
- * The short date format for displaying the
33
- * selected date in the Scheduler toolbar.
34
- * Defaults to `{0:d} - {1:d}`,
35
- * where `0` is the start and `1` is the end date
36
- * ([more information]({% slug parsingandformatting_intl %}#toc-date-formatting).
37
- */
38
- _this.selectedShortDateFormat = '{0:d} - {1:d}';
39
- /**
40
- * The invariant name for this view (`week`).
41
- */
42
- _this.name = 'week';
43
- _this.getStartDate = _this.getStartDate.bind(_this);
44
- return _this;
45
- }
46
- WeekViewComponent_1 = WeekViewComponent;
47
- Object.defineProperty(WeekViewComponent.prototype, "title", {
48
- /**
49
- * @hidden
50
- */
51
- get: function () {
52
- return this.localization.get('weekViewTitle');
53
- },
54
- enumerable: true,
55
- configurable: true
56
- });
57
- /**
58
- * @hidden
59
- */
60
- WeekViewComponent.prototype.getStartDate = function (selectedDate) {
61
- return firstDayInWeek(getDate(selectedDate), this.viewWeekStart);
62
- };
63
- var WeekViewComponent_1;
64
- tslib_1.__decorate([
65
- Input(),
66
- tslib_1.__metadata("design:type", String)
67
- ], WeekViewComponent.prototype, "selectedDateFormat", void 0);
68
- tslib_1.__decorate([
69
- Input(),
70
- tslib_1.__metadata("design:type", String)
71
- ], WeekViewComponent.prototype, "selectedShortDateFormat", void 0);
72
- tslib_1.__decorate([
73
- ContentChild(AllDaySlotTemplateDirective, { static: false }),
74
- tslib_1.__metadata("design:type", AllDaySlotTemplateDirective)
75
- ], WeekViewComponent.prototype, "allDaySlotTemplate", void 0);
76
- tslib_1.__decorate([
77
- ContentChild(AllDayEventTemplateDirective, { static: false }),
78
- tslib_1.__metadata("design:type", AllDayEventTemplateDirective)
79
- ], WeekViewComponent.prototype, "allDayEventTemplate", void 0);
80
- tslib_1.__decorate([
81
- ContentChild(MinorTimeHeaderTemplateDirective, { static: false }),
82
- tslib_1.__metadata("design:type", MinorTimeHeaderTemplateDirective)
83
- ], WeekViewComponent.prototype, "minorTimeHeaderTemplate", void 0);
84
- tslib_1.__decorate([
85
- ContentChild(MajorTimeHeaderTemplateDirective, { static: false }),
86
- tslib_1.__metadata("design:type", MajorTimeHeaderTemplateDirective)
87
- ], WeekViewComponent.prototype, "majorTimeHeaderTemplate", void 0);
88
- WeekViewComponent = WeekViewComponent_1 = tslib_1.__decorate([
89
- Component({
90
- changeDetection: ChangeDetectionStrategy.OnPush,
91
- selector: 'kendo-scheduler-week-view',
92
- providers: [{
93
- provide: SchedulerView,
94
- // tslint:disable-next-line:no-forward-ref
95
- useExisting: forwardRef(function () { return WeekViewComponent_1; })
96
- }],
97
- template: "\n <ng-template #content>\n <multi-day-view\n [name]=\"name\"\n [numberOfDays]=\"7\"\n [getStartDate]=\"getStartDate\"\n [eventHeight]=\"viewEventHeight\"\n [currentTimeMarker]=\"viewCurrentTimeMarker\"\n [highlightOngoingEvents]=\"viewHighlightOngoingEvents\"\n [showWorkHours]=\"shouldShowWorkHours\"\n [scrollTime]=\"viewScrollTime\"\n [startTime]=\"viewStartTime\"\n [endTime]=\"viewEndTime\"\n [workDayStart]=\"viewWorkDayStart\"\n [workDayEnd]=\"viewWorkDayEnd\"\n [workWeekStart]=\"viewWorkWeekStart\"\n [workWeekEnd]=\"viewWorkWeekEnd\"\n [weekStart]=\"viewWeekStart\"\n [slotDuration]=\"viewSlotDuration\"\n [slotDivisions]=\"viewSlotDivisions\"\n [slotFill]=\"viewSlotFill\"\n [slotClass]=\"viewSlotClass\"\n [eventClass]=\"viewEventClass\"\n [eventStyles]=\"viewEventStyles\"\n [allDaySlotTemplate]=\"allDaySlotTemplate?.templateRef\"\n [allDayEventTemplate]=\"allDayEventTemplate?.templateRef\"\n [\u0435ventTemplate]=\"eventTemplate?.templateRef\"\n [groupHeaderTemplate]=\"groupHeaderTemplate?.templateRef\"\n [timeSlotTemplate]=\"timeSlotTemplate?.templateRef\"\n [minorTimeHeaderTemplate]=\"minorTimeHeaderTemplate?.templateRef\"\n [majorTimeHeaderTemplate]=\"majorTimeHeaderTemplate?.templateRef\"\n [dateHeaderTemplate]=\"dateHeaderTemplate?.templateRef\"\n [selectedDateFormat]=\"selectedDateFormat\"\n [selectedShortDateFormat]=\"selectedShortDateFormat\">\n </multi-day-view>\n <div viewFooter kendoWorkHoursFooter [showWorkHours]=\"shouldShowWorkHours\" (itemClick)=\"showWorkHours = !shouldShowWorkHours\"></div>\n </ng-template>\n "
98
- }),
99
- tslib_1.__metadata("design:paramtypes", [IntlService,
100
- LocalizationService,
101
- ChangeDetectorRef,
102
- ViewContextService,
103
- ViewStateService])
104
- ], WeekViewComponent);
105
- return WeekViewComponent;
106
- }(MultiDayViewBase));
107
- export { WeekViewComponent };
@@ -1,85 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import * as tslib_1 from "tslib";
6
- import { Component, forwardRef, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core';
7
- import { LocalizationService } from '@progress/kendo-angular-l10n';
8
- import { SchedulerView } from '../../types';
9
- import { WeekViewComponent } from './week-view.component';
10
- import { IntlService } from '@progress/kendo-angular-intl';
11
- import { ViewContextService } from '../view-context.service';
12
- import { ViewStateService } from '../view-state.service';
13
- import { firstDayInWeek, getDate, addDays } from '@progress/kendo-date-math';
14
- var DAYS_IN_WEEK = 7;
15
- /**
16
- * The component for rendering the **Work Week** view.
17
- */
18
- var WorkWeekViewComponent = /** @class */ (function (_super) {
19
- tslib_1.__extends(WorkWeekViewComponent, _super);
20
- function WorkWeekViewComponent(intl, localization, changeDetector, viewContext, viewState) {
21
- var _this = _super.call(this, intl, localization, changeDetector, viewContext, viewState) || this;
22
- /**
23
- * The invariant name for this view (`week`).
24
- */
25
- _this.name = 'workWeek';
26
- _this.getNextDate = _this.getNextDate.bind(_this);
27
- return _this;
28
- }
29
- WorkWeekViewComponent_1 = WorkWeekViewComponent;
30
- Object.defineProperty(WorkWeekViewComponent.prototype, "title", {
31
- /**
32
- * @hidden
33
- */
34
- get: function () {
35
- return this.localization.get('workWeekViewTitle');
36
- },
37
- enumerable: true,
38
- configurable: true
39
- });
40
- Object.defineProperty(WorkWeekViewComponent.prototype, "numberOfDays", {
41
- /**
42
- * @hidden
43
- */
44
- get: function () {
45
- if (this.viewWorkWeekStart > this.viewWorkWeekEnd) {
46
- return (DAYS_IN_WEEK - this.viewWorkWeekStart + this.viewWorkWeekEnd) + 1;
47
- }
48
- return (this.viewWorkWeekEnd - this.viewWorkWeekStart) + 1;
49
- },
50
- enumerable: true,
51
- configurable: true
52
- });
53
- /**
54
- * @hidden
55
- */
56
- WorkWeekViewComponent.prototype.getStartDate = function (selectedDate) {
57
- return firstDayInWeek(getDate(selectedDate), this.viewWorkWeekStart);
58
- };
59
- /**
60
- * @hidden
61
- */
62
- WorkWeekViewComponent.prototype.getNextDate = function (date, count, _numberOfDays) {
63
- return getDate(addDays(date, DAYS_IN_WEEK * count));
64
- };
65
- var WorkWeekViewComponent_1;
66
- WorkWeekViewComponent = WorkWeekViewComponent_1 = tslib_1.__decorate([
67
- Component({
68
- changeDetection: ChangeDetectionStrategy.OnPush,
69
- selector: 'kendo-scheduler-work-week-view',
70
- providers: [{
71
- provide: SchedulerView,
72
- // tslint:disable-next-line:no-forward-ref
73
- useExisting: forwardRef(function () { return WorkWeekViewComponent_1; })
74
- }],
75
- template: "\n <ng-template #content>\n <multi-day-view\n viewName=\"workWeekview\"\n [name]=\"name\"\n [numberOfDays]=\"numberOfDays\"\n [getStartDate]=\"getStartDate\"\n [getNextDate]=\"getNextDate\"\n [eventHeight]=\"viewEventHeight\"\n [currentTimeMarker]=\"viewCurrentTimeMarker\"\n [highlightOngoingEvents]=\"viewHighlightOngoingEvents\"\n [showWorkHours]=\"shouldShowWorkHours\"\n [scrollTime]=\"viewScrollTime\"\n [startTime]=\"viewStartTime\"\n [endTime]=\"viewEndTime\"\n [workDayStart]=\"viewWorkDayStart\"\n [workDayEnd]=\"viewWorkDayEnd\"\n [workWeekStart]=\"viewWorkWeekStart\"\n [workWeekEnd]=\"viewWorkWeekEnd\"\n [slotDuration]=\"viewSlotDuration\"\n [slotDivisions]=\"viewSlotDivisions\"\n [slotFill]=\"viewSlotFill\"\n [slotClass]=\"viewSlotClass\"\n [eventClass]=\"viewEventClass\"\n [eventStyles]=\"viewEventStyles\"\n [allDaySlotTemplate]=\"allDaySlotTemplate?.templateRef\"\n [allDayEventTemplate]=\"allDayEventTemplate?.templateRef\"\n [\u0435ventTemplate]=\"eventTemplate?.templateRef\"\n [groupHeaderTemplate]=\"groupHeaderTemplate?.templateRef\"\n [timeSlotTemplate]=\"timeSlotTemplate?.templateRef\"\n [minorTimeHeaderTemplate]=\"minorTimeHeaderTemplate?.templateRef\"\n [majorTimeHeaderTemplate]=\"majorTimeHeaderTemplate?.templateRef\"\n [dateHeaderTemplate]=\"dateHeaderTemplate?.templateRef\"\n [selectedDateFormat]=\"selectedDateFormat\"\n [selectedShortDateFormat]=\"selectedShortDateFormat\">\n </multi-day-view>\n <div viewFooter kendoWorkHoursFooter [showWorkHours]=\"shouldShowWorkHours\" (itemClick)=\"showWorkHours = !shouldShowWorkHours\"></div>\n </ng-template>\n "
76
- }),
77
- tslib_1.__metadata("design:paramtypes", [IntlService,
78
- LocalizationService,
79
- ChangeDetectorRef,
80
- ViewContextService,
81
- ViewStateService])
82
- ], WorkWeekViewComponent);
83
- return WorkWeekViewComponent;
84
- }(WeekViewComponent));
85
- export { WorkWeekViewComponent };
@@ -1,57 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import * as tslib_1 from "tslib";
6
- import { Directive, forwardRef, Input, TemplateRef } from '@angular/core';
7
- import { SchedulerView } from '../types';
8
- // tslint:disable:no-input-rename
9
- /**
10
- * A directive selector for a custom Scheduler view
11
- */
12
- var SchedulerViewDirective = /** @class */ (function (_super) {
13
- tslib_1.__extends(SchedulerViewDirective, _super);
14
- function SchedulerViewDirective(template) {
15
- var _this = _super.call(this) || this;
16
- _this.template = template;
17
- return _this;
18
- }
19
- SchedulerViewDirective_1 = SchedulerViewDirective;
20
- Object.defineProperty(SchedulerViewDirective.prototype, "name", {
21
- /**
22
- * The invariant name for this view. For example, `day`.
23
- * If not set, the name will be the same as the title.
24
- */
25
- get: function () {
26
- return this._name || this.title;
27
- },
28
- set: function (value) {
29
- this._name = value;
30
- },
31
- enumerable: true,
32
- configurable: true
33
- });
34
- var SchedulerViewDirective_1;
35
- tslib_1.__decorate([
36
- Input('kendoSchedulerView'),
37
- tslib_1.__metadata("design:type", String)
38
- ], SchedulerViewDirective.prototype, "title", void 0);
39
- tslib_1.__decorate([
40
- Input('kendoSchedulerViewName'),
41
- tslib_1.__metadata("design:type", String),
42
- tslib_1.__metadata("design:paramtypes", [String])
43
- ], SchedulerViewDirective.prototype, "name", null);
44
- SchedulerViewDirective = SchedulerViewDirective_1 = tslib_1.__decorate([
45
- Directive({
46
- providers: [{
47
- provide: SchedulerView,
48
- // tslint:disable-next-line:no-forward-ref
49
- useExisting: forwardRef(function () { return SchedulerViewDirective_1; })
50
- }],
51
- selector: '[kendoSchedulerView]'
52
- }),
53
- tslib_1.__metadata("design:paramtypes", [TemplateRef])
54
- ], SchedulerViewDirective);
55
- return SchedulerViewDirective;
56
- }(SchedulerView));
57
- export { SchedulerViewDirective };
@@ -1,35 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import * as tslib_1 from "tslib";
6
- import { Directive, TemplateRef, Optional } from '@angular/core';
7
- /**
8
- * Represents the template which renders the date header in the **Agenda** view.
9
- * To define the date template, nest an `<ng-template>` tag with the `kendoSchedulerAgendaDateTemplate`
10
- * directive inside the `<kendo-scheduler-agenda-view>` or `<kendo-scheduler>` components.
11
- *
12
- * The available fields in the template context are:
13
- * - `date`&mdash;The header date.
14
- *
15
- * {% meta height:500 %}
16
- * {% embed_file templates/agenda-date-header/app.component.ts preview %}
17
- * {% embed_file templates/agenda-date-header/app.module.ts %}
18
- * {% embed_file shared/main.ts %}
19
- * {% embed_file shared/events-utc.ts %}
20
- * {% endmeta %}
21
- */
22
- var AgendaDateTemplateDirective = /** @class */ (function () {
23
- function AgendaDateTemplateDirective(templateRef) {
24
- this.templateRef = templateRef;
25
- }
26
- AgendaDateTemplateDirective = tslib_1.__decorate([
27
- Directive({
28
- selector: '[kendoSchedulerAgendaDateTemplate]'
29
- }),
30
- tslib_1.__param(0, Optional()),
31
- tslib_1.__metadata("design:paramtypes", [TemplateRef])
32
- ], AgendaDateTemplateDirective);
33
- return AgendaDateTemplateDirective;
34
- }());
35
- export { AgendaDateTemplateDirective };
@@ -1,40 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import * as tslib_1 from "tslib";
6
- import { Directive, TemplateRef, Optional } from '@angular/core';
7
- /**
8
- * Represents the template which renders the time header in the **Agenda** view.
9
- * To define the time template, nest an `<ng-template>` tag with the `kendoSchedulerAgendaTimeTemplate`
10
- * directive inside the `<kendo-scheduler>` or in the `<kendo-scheduler-agenda-view>` component.
11
- *
12
- * The available fields in the template context are:
13
- * - `start`&mdash;The start date of the event.
14
- * - `end`&mdash;The end date of the event.
15
- * - `title`&mdash;The title of the event.
16
- * - `description`&mdash;The description of the event.
17
- * - `isAllDay`&mdash;A Boolean value which indicates if the event is all-day.
18
- * - `resources`&mdash;The resources of the event.
19
- *
20
- * {% meta height:500 %}
21
- * {% embed_file templates/agenda-time-header/app.component.ts preview %}
22
- * {% embed_file templates/agenda-time-header/app.module.ts %}
23
- * {% embed_file shared/main.ts %}
24
- * {% embed_file shared/events-utc.ts %}
25
- * {% endmeta %}
26
- */
27
- var AgendaTimeTemplateDirective = /** @class */ (function () {
28
- function AgendaTimeTemplateDirective(templateRef) {
29
- this.templateRef = templateRef;
30
- }
31
- AgendaTimeTemplateDirective = tslib_1.__decorate([
32
- Directive({
33
- selector: '[kendoSchedulerAgendaTimeTemplate]'
34
- }),
35
- tslib_1.__param(0, Optional()),
36
- tslib_1.__metadata("design:paramtypes", [TemplateRef])
37
- ], AgendaTimeTemplateDirective);
38
- return AgendaTimeTemplateDirective;
39
- }());
40
- export { AgendaTimeTemplateDirective };
@@ -1,36 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import * as tslib_1 from "tslib";
6
- import { Directive, TemplateRef, Optional } from '@angular/core';
7
- /**
8
- * Represents the template for and assists the content customization of all-day events.
9
- * To define the all-day event template, nest an `<ng-template>` tag with the `kendoSchedulerAllDayEventTemplate`
10
- * directive inside the `<kendo-scheduler>`, `<kendo-scheduler-day-view>`, or `kendo-scheduler-week-view` component.
11
- *
12
- * The available fields in the template context are:
13
- * - `event`&mdash;The event that is associated with the item.
14
- * - `resources`&mdash;The resources of the event.
15
- *
16
- * {% meta height:500 %}
17
- * {% embed_file templates/all-day-event/app.component.ts preview %}
18
- * {% embed_file templates/all-day-event/app.module.ts %}
19
- * {% embed_file shared/main.ts %}
20
- * {% embed_file shared/events-utc.ts %}
21
- * {% endmeta %}
22
- */
23
- var AllDayEventTemplateDirective = /** @class */ (function () {
24
- function AllDayEventTemplateDirective(templateRef) {
25
- this.templateRef = templateRef;
26
- }
27
- AllDayEventTemplateDirective = tslib_1.__decorate([
28
- Directive({
29
- selector: '[kendoSchedulerAllDayEventTemplate]'
30
- }),
31
- tslib_1.__param(0, Optional()),
32
- tslib_1.__metadata("design:paramtypes", [TemplateRef])
33
- ], AllDayEventTemplateDirective);
34
- return AllDayEventTemplateDirective;
35
- }());
36
- export { AllDayEventTemplateDirective };
@@ -1,36 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import * as tslib_1 from "tslib";
6
- import { Directive, TemplateRef, Optional } from '@angular/core';
7
- /**
8
- * Represents the template for and assists the content customization of all-day slots.
9
- * To define the all-day slot template, nest an `<ng-template>` tag with the `kendoSchedulerAllDaySlotTemplate`
10
- * directive inside the `<kendo-scheduler>`, `<kendo-scheduler-day-view>`, or `kendo-scheduler-week-view` component.
11
- *
12
- * The available fields in the template context are:
13
- * - `date`&mdash;The date of the slot.
14
- * - `resources`&mdash;The resources of the slot.
15
- *
16
- * {% meta height:500 %}
17
- * {% embed_file templates/all-day-slot/app.component.ts preview %}
18
- * {% embed_file templates/all-day-slot/app.module.ts %}
19
- * {% embed_file shared/main.ts %}
20
- * {% embed_file shared/events-utc.ts %}
21
- * {% endmeta %}
22
- */
23
- var AllDaySlotTemplateDirective = /** @class */ (function () {
24
- function AllDaySlotTemplateDirective(templateRef) {
25
- this.templateRef = templateRef;
26
- }
27
- AllDaySlotTemplateDirective = tslib_1.__decorate([
28
- Directive({
29
- selector: '[kendoSchedulerAllDaySlotTemplate]'
30
- }),
31
- tslib_1.__param(0, Optional()),
32
- tslib_1.__metadata("design:paramtypes", [TemplateRef])
33
- ], AllDaySlotTemplateDirective);
34
- return AllDaySlotTemplateDirective;
35
- }());
36
- export { AllDaySlotTemplateDirective };
@@ -1,36 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import * as tslib_1 from "tslib";
6
- import { Directive, TemplateRef, Optional } from '@angular/core';
7
- /**
8
- * Represents the template which renders the date header in the **Day**, **Week**, and **Timeline** views.
9
- * To define the day template, nest an `<ng-template>` tag with the `kendoSchedulerDateHeaderTemplate`
10
- * directive inside the `<kendo-scheduler>`, or in the `<kendo-scheduler-day-view>`, `<kendo-scheduler-week-view>`,
11
- * `<kendo-scheduler-timeline-view>`, `<kendo-scheduler-timeline-week-view>`, and `<kendo-scheduler-timeline-month-view>` components.
12
- *
13
- * The available fields in the template context are:
14
- * - `date`&mdash;The header date.
15
- *
16
- * {% meta height:500 %}
17
- * {% embed_file templates/date-header/app.component.ts preview %}
18
- * {% embed_file templates/date-header/app.module.ts %}
19
- * {% embed_file shared/main.ts %}
20
- * {% embed_file shared/events-utc.ts %}
21
- * {% endmeta %}
22
- */
23
- var DateHeaderTemplateDirective = /** @class */ (function () {
24
- function DateHeaderTemplateDirective(templateRef) {
25
- this.templateRef = templateRef;
26
- }
27
- DateHeaderTemplateDirective = tslib_1.__decorate([
28
- Directive({
29
- selector: '[kendoSchedulerDateHeaderTemplate]'
30
- }),
31
- tslib_1.__param(0, Optional()),
32
- tslib_1.__metadata("design:paramtypes", [TemplateRef])
33
- ], DateHeaderTemplateDirective);
34
- return DateHeaderTemplateDirective;
35
- }());
36
- export { DateHeaderTemplateDirective };
@@ -1,36 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import * as tslib_1 from "tslib";
6
- import { Directive, TemplateRef, Optional } from '@angular/core';
7
- /**
8
- * Represents the template for and assists the content customization of the Scheduler events.
9
- * To define the event template, nest an `<ng-template>` tag with the `kendoSchedulerEventTemplate`
10
- * directive inside the `<kendo-scheduler>`, or in the view components.
11
- *
12
- * The available fields in the template context are:
13
- * - `event`&mdash;The event that is associated with the item.
14
- * - `resources`&mdash;The resources of the event.
15
- *
16
- * {% meta height:500 %}
17
- * {% embed_file templates/event/app.component.ts preview %}
18
- * {% embed_file templates/event/app.module.ts %}
19
- * {% embed_file shared/main.ts %}
20
- * {% embed_file shared/events-utc.ts %}
21
- * {% endmeta %}
22
- */
23
- var EventTemplateDirective = /** @class */ (function () {
24
- function EventTemplateDirective(templateRef) {
25
- this.templateRef = templateRef;
26
- }
27
- EventTemplateDirective = tslib_1.__decorate([
28
- Directive({
29
- selector: '[kendoSchedulerEventTemplate]'
30
- }),
31
- tslib_1.__param(0, Optional()),
32
- tslib_1.__metadata("design:paramtypes", [TemplateRef])
33
- ], EventTemplateDirective);
34
- return EventTemplateDirective;
35
- }());
36
- export { EventTemplateDirective };
@@ -1,36 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import * as tslib_1 from "tslib";
6
- import { Directive, TemplateRef, Optional } from '@angular/core';
7
- /**
8
- * Represents the template which renders the resource group header in the **Day**, **Week**, and **Timeline** views.
9
- * To define the template, nest an `<ng-template>` tag with the `kendoSchedulerGroupHeaderTemplate`
10
- * directive inside the `<kendo-scheduler>`, or in the `<kendo-scheduler-day-view>`, `<kendo-scheduler-week-view>`,
11
- * `<kendo-scheduler-timeline-view>`, `<kendo-scheduler-timeline-week-view>`, and `<kendo-scheduler-timeline-month-view>` components.
12
- *
13
- * The available fields in the template context are:
14
- * - `resource`&mdash;The resource item.
15
- *
16
- * {% meta height:500 %}
17
- * {% embed_file templates/group-header/app.component.ts preview %}
18
- * {% embed_file templates/group-header/app.module.ts %}
19
- * {% embed_file shared/main.ts %}
20
- * {% embed_file shared/events-utc.ts %}
21
- * {% endmeta %}
22
- */
23
- var GroupHeaderTemplateDirective = /** @class */ (function () {
24
- function GroupHeaderTemplateDirective(templateRef) {
25
- this.templateRef = templateRef;
26
- }
27
- GroupHeaderTemplateDirective = tslib_1.__decorate([
28
- Directive({
29
- selector: '[kendoSchedulerGroupHeaderTemplate]'
30
- }),
31
- tslib_1.__param(0, Optional()),
32
- tslib_1.__metadata("design:paramtypes", [TemplateRef])
33
- ], GroupHeaderTemplateDirective);
34
- return GroupHeaderTemplateDirective;
35
- }());
36
- export { GroupHeaderTemplateDirective };
@@ -1,35 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import * as tslib_1 from "tslib";
6
- import { Directive, TemplateRef, Optional } from '@angular/core';
7
- /**
8
- * Represents the template for the major-time headers in the **Day** and **Week** views.
9
- * To define the major-time header template, nest an `<ng-template>` tag with the `kendoSchedulerMajorTimeHeaderTemplate`
10
- * directive inside the `<kendo-scheduler>`, or in the `<kendo-scheduler-day-view>` and `<kendo-scheduler-week-view>` components.
11
- *
12
- * The available fields in the template context are:
13
- * - `date`&mdash;The date of the header.
14
- *
15
- * {% meta height:500 %}
16
- * {% embed_file templates/major-header/app.component.ts preview %}
17
- * {% embed_file templates/major-header/app.module.ts %}
18
- * {% embed_file shared/main.ts %}
19
- * {% embed_file shared/events-utc.ts %}
20
- * {% endmeta %}
21
- */
22
- var MajorTimeHeaderTemplateDirective = /** @class */ (function () {
23
- function MajorTimeHeaderTemplateDirective(templateRef) {
24
- this.templateRef = templateRef;
25
- }
26
- MajorTimeHeaderTemplateDirective = tslib_1.__decorate([
27
- Directive({
28
- selector: '[kendoSchedulerMajorTimeHeaderTemplate]'
29
- }),
30
- tslib_1.__param(0, Optional()),
31
- tslib_1.__metadata("design:paramtypes", [TemplateRef])
32
- ], MajorTimeHeaderTemplateDirective);
33
- return MajorTimeHeaderTemplateDirective;
34
- }());
35
- export { MajorTimeHeaderTemplateDirective };
@@ -1,35 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import * as tslib_1 from "tslib";
6
- import { Directive, TemplateRef, Optional } from '@angular/core';
7
- /**
8
- * Represents the template for the minor-time headers in the **Day** and **Week** views.
9
- * To define the minor-time header template, nest an `<ng-template>` tag with the `kendoSchedulerMinorTimeHeaderTemplate`
10
- * directive inside the `<kendo-scheduler>`, or in the `<kendo-scheduler-day-view>` and `<kendo-scheduler-week-view>` components.
11
- *
12
- * The available fields in the template context are:
13
- * - `date`&mdash;The date of the header.
14
- *
15
- * {% meta height:500 %}
16
- * {% embed_file templates/minor-header/app.component.ts preview %}
17
- * {% embed_file templates/minor-header/app.module.ts %}
18
- * {% embed_file shared/main.ts %}
19
- * {% embed_file shared/events-utc.ts %}
20
- * {% endmeta %}
21
- */
22
- var MinorTimeHeaderTemplateDirective = /** @class */ (function () {
23
- function MinorTimeHeaderTemplateDirective(templateRef) {
24
- this.templateRef = templateRef;
25
- }
26
- MinorTimeHeaderTemplateDirective = tslib_1.__decorate([
27
- Directive({
28
- selector: '[kendoSchedulerMinorTimeHeaderTemplate]'
29
- }),
30
- tslib_1.__param(0, Optional()),
31
- tslib_1.__metadata("design:paramtypes", [TemplateRef])
32
- ], MinorTimeHeaderTemplateDirective);
33
- return MinorTimeHeaderTemplateDirective;
34
- }());
35
- export { MinorTimeHeaderTemplateDirective };
@@ -1,37 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import * as tslib_1 from "tslib";
6
- import { Directive, TemplateRef, Optional } from '@angular/core';
7
- /**
8
- * Represents the template for rendering the day slots in the **Month** view.
9
- * To define the day template, nest an `<ng-template>` tag with the `kendoSchedulerMonthDaySlotTemplate`
10
- * directive inside the `<kendo-scheduler>`, or in the `<kendo-scheduler-month-view>` component.
11
- *
12
- * The available fields in the template context are:
13
- * - `date`&mdash;The date of the slot.
14
- * - `resources`&mdash;The resources of the slot.
15
- *
16
- * {% meta height:500 %}
17
- * {% embed_file templates/month-slot/app.component.ts preview %}
18
- * {% embed_file templates/month-slot/app.module.ts %}
19
- * {% embed_file shared/main.ts %}
20
- * {% embed_file shared/events-utc.ts %}
21
- * {% endmeta %}
22
- */
23
- var MonthDaySlotTemplateDirective = /** @class */ (function () {
24
- function MonthDaySlotTemplateDirective(templateRef) {
25
- this.templateRef = templateRef;
26
- }
27
- MonthDaySlotTemplateDirective = tslib_1.__decorate([
28
- Directive({
29
- selector: '[kendoSchedulerMonthDaySlotTemplate]'
30
- }),
31
- tslib_1.__param(0, Optional()),
32
- tslib_1.__metadata("design:paramtypes", [TemplateRef])
33
- ], MonthDaySlotTemplateDirective);
34
- return MonthDaySlotTemplateDirective;
35
- }());
36
- export { MonthDaySlotTemplateDirective };
37
- // Rename to indicate that it is only for the month view.