@progress/kendo-angular-scheduler 17.0.0-develop.8 → 17.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (268) hide show
  1. package/data-binding.directive.d.ts +1 -1
  2. package/editing/date-time-picker.component.d.ts +1 -1
  3. package/editing/edit-dialog-template.directive.d.ts +1 -1
  4. package/editing/edit-dialog.component.d.ts +1 -1
  5. package/editing/edit.service.d.ts +3 -3
  6. package/editing/recurrence/end-rule-radio-button.directive.d.ts +1 -1
  7. package/editing/recurrence/localization/messages.d.ts +1 -1
  8. package/editing/recurrence/recurrence-editor.component.d.ts +1 -1
  9. package/editing/recurrence/recurrence-end-rule-editor.component.d.ts +1 -1
  10. package/editing/recurrence/recurrence-interval-editor.component.d.ts +1 -1
  11. package/editing/recurrence/recurrence-monthly-yearly-editor.component.d.ts +1 -1
  12. package/editing/recurrence/recurrence.service.d.ts +4 -4
  13. package/editing/recurrence/repeat-on-radio-button.directive.d.ts +1 -1
  14. package/editing/resource-editor-base.d.ts +1 -1
  15. package/editing/timezone-editor.component.d.ts +1 -1
  16. package/editing-directives/editing-directive-base.d.ts +1 -1
  17. package/editing-directives/reactive-editing.directive.d.ts +1 -1
  18. package/{esm2020 → esm2022}/data-binding.directive.mjs +20 -13
  19. package/{esm2020 → esm2022}/editing/date-time-picker.component.mjs +15 -9
  20. package/{esm2020 → esm2022}/editing/dialogs.service.mjs +10 -4
  21. package/{esm2020 → esm2022}/editing/edit-dialog-template.directive.mjs +8 -3
  22. package/{esm2020 → esm2022}/editing/edit-dialog.component.mjs +44 -25
  23. package/{esm2020 → esm2022}/editing/edit.service.mjs +9 -5
  24. package/{esm2020 → esm2022}/editing/local-data-changes.service.mjs +5 -6
  25. package/{esm2020 → esm2022}/editing/recurrence/end-rule-radio-button.directive.mjs +13 -6
  26. package/{esm2020 → esm2022}/editing/recurrence/localization/custom-messages.component.mjs +9 -8
  27. package/{esm2020 → esm2022}/editing/recurrence/localization/localized-messages.directive.mjs +9 -8
  28. package/esm2022/editing/recurrence/localization/messages.mjs +239 -0
  29. package/{esm2020 → esm2022}/editing/recurrence/localization/recurrence-localization.service.mjs +4 -3
  30. package/{esm2020 → esm2022}/editing/recurrence/recurrence-editor.component.mjs +61 -36
  31. package/{esm2020 → esm2022}/editing/recurrence/recurrence-end-rule-editor.component.mjs +33 -26
  32. package/{esm2020 → esm2022}/editing/recurrence/recurrence-frequency-editor.component.mjs +8 -4
  33. package/{esm2020 → esm2022}/editing/recurrence/recurrence-interval-editor.component.mjs +18 -15
  34. package/{esm2020 → esm2022}/editing/recurrence/recurrence-monthly-yearly-editor.component.mjs +28 -15
  35. package/{esm2020 → esm2022}/editing/recurrence/recurrence-weekday-rule-editor.component.mjs +9 -5
  36. package/{esm2020 → esm2022}/editing/recurrence/recurrence.service.mjs +13 -7
  37. package/{esm2020 → esm2022}/editing/recurrence/repeat-on-radio-button.directive.mjs +18 -11
  38. package/{esm2020 → esm2022}/editing/resource-editor-base.mjs +9 -9
  39. package/{esm2020 → esm2022}/editing/resource-multiple-editor.component.mjs +7 -6
  40. package/{esm2020 → esm2022}/editing/resource-single-editor.component.mjs +7 -6
  41. package/{esm2020 → esm2022}/editing/timezone-editor.component.mjs +28 -22
  42. package/{esm2020 → esm2022}/editing-directives/base-edit.service.mjs +28 -11
  43. package/{esm2020 → esm2022}/editing-directives/editing-directive-base.mjs +27 -20
  44. package/{esm2020 → esm2022}/editing-directives/local-edit.service.mjs +6 -4
  45. package/{esm2020 → esm2022}/editing-directives/reactive-editing.directive.mjs +10 -3
  46. package/{esm2020 → esm2022}/events/add-event.mjs +8 -0
  47. package/{esm2020 → esm2022}/events/cancel-event.mjs +4 -0
  48. package/{esm2020 → esm2022}/events/create-event.mjs +24 -0
  49. package/{esm2020 → esm2022}/events/date-change-event.mjs +12 -0
  50. package/{esm2020 → esm2022}/events/drag-end-event.mjs +28 -0
  51. package/esm2022/events/drag-event.mjs +54 -0
  52. package/{esm2020 → esm2022}/events/drag-start-event.mjs +12 -0
  53. package/{esm2020 → esm2022}/events/edit-event-base.mjs +16 -0
  54. package/{esm2020 → esm2022}/events/edit-event.mjs +12 -0
  55. package/{esm2020 → esm2022}/events/event-click-event.mjs +16 -0
  56. package/{esm2020 → esm2022}/events/event-keydown-event.mjs +12 -0
  57. package/{esm2020 → esm2022}/events/navigate-event.mjs +8 -0
  58. package/{esm2020 → esm2022}/events/preventable-event.mjs +1 -3
  59. package/{esm2020 → esm2022}/events/remove-event.mjs +12 -0
  60. package/{esm2020 → esm2022}/events/resize-end-event.mjs +20 -0
  61. package/{esm2020 → esm2022}/events/resize-event.mjs +28 -0
  62. package/{esm2020 → esm2022}/events/resize-start-event.mjs +12 -0
  63. package/{esm2020 → esm2022}/events/save-event.mjs +8 -0
  64. package/{esm2020 → esm2022}/events/slot-click-event.mjs +28 -0
  65. package/{esm2020 → esm2022}/events/slot-drag-event.mjs +24 -0
  66. package/{esm2020 → esm2022}/events/slot-drag-start-event.mjs +24 -0
  67. package/{esm2020 → esm2022}/index.mjs +0 -6
  68. package/{esm2020 → esm2022}/loading.component.mjs +12 -8
  69. package/{esm2020 → esm2022}/localization/custom-messages.component.mjs +9 -8
  70. package/{esm2020 → esm2022}/localization/localized-messages.directive.mjs +9 -8
  71. package/esm2022/localization/messages.mjs +614 -0
  72. package/{esm2020 → esm2022}/localization/scheduler-localization.service.mjs +3 -3
  73. package/{esm2020 → esm2022}/navigation/focus.service.mjs +21 -15
  74. package/{esm2020 → esm2022}/navigation/focusable.directive.mjs +19 -15
  75. package/esm2022/navigation/shortcuts.directive.mjs +220 -0
  76. package/{esm2020 → esm2022}/package-metadata.mjs +2 -2
  77. package/{esm2020 → esm2022}/pdf/pdf-command.directive.mjs +9 -8
  78. package/{esm2020 → esm2022}/pdf/pdf.component.mjs +93 -8
  79. package/{esm2020 → esm2022}/pdf/pdf.module.mjs +4 -4
  80. package/{esm2020 → esm2022}/pdf/pdf.service.mjs +7 -9
  81. package/{esm2020 → esm2022}/scheduler.component.mjs +412 -256
  82. package/{esm2020 → esm2022}/scheduler.module.mjs +30 -30
  83. package/{esm2020 → esm2022}/toolbar/navigation.component.mjs +49 -34
  84. package/{esm2020 → esm2022}/toolbar/toolbar-template.directive.mjs +4 -3
  85. package/{esm2020 → esm2022}/toolbar/toolbar.component.mjs +29 -18
  86. package/{esm2020 → esm2022}/toolbar/toolbar.service.mjs +16 -4
  87. package/{esm2020 → esm2022}/toolbar/view-selector.component.mjs +23 -15
  88. package/{esm2020 → esm2022}/types/slot-selection.mjs +16 -0
  89. package/{esm2020 → esm2022}/views/agenda/agenda-header-item.component.mjs +9 -9
  90. package/{esm2020 → esm2022}/views/agenda/agenda-header.component.mjs +10 -8
  91. package/{esm2020 → esm2022}/views/agenda/agenda-task-item.component.mjs +18 -12
  92. package/{esm2020 → esm2022}/views/agenda/agenda-view-internal.component.mjs +48 -17
  93. package/{esm2020 → esm2022}/views/agenda/agenda-view-list.component.mjs +17 -7
  94. package/{esm2020 → esm2022}/views/agenda/agenda-view.component.mjs +46 -41
  95. package/{esm2020 → esm2022}/views/agenda/tasks.collection.mjs +8 -4
  96. package/{esm2020 → esm2022}/views/common/base-view.mjs +93 -36
  97. package/{esm2020 → esm2022}/views/common/configuration-view-base.mjs +52 -15
  98. package/esm2022/views/common/dom-events.service.mjs +22 -0
  99. package/{esm2020 → esm2022}/views/common/hint-container.component.mjs +6 -4
  100. package/{esm2020 → esm2022}/views/common/repeat.pipe.mjs +7 -6
  101. package/{esm2020 → esm2022}/views/common/resize-hint.component.mjs +7 -7
  102. package/{esm2020 → esm2022}/views/common/resource-iterator.pipe.mjs +9 -7
  103. package/{esm2020 → esm2022}/views/common/slot-selectable.directive.mjs +22 -10
  104. package/{esm2020 → esm2022}/views/common/view-footer.component.mjs +14 -12
  105. package/{esm2020 → esm2022}/views/common/work-hours-footer.directive.mjs +7 -5
  106. package/{esm2020 → esm2022}/views/day-time/day-time-slot.service.mjs +11 -7
  107. package/{esm2020 → esm2022}/views/day-time/day-time-view-base.mjs +81 -8
  108. package/{esm2020 → esm2022}/views/day-time/day-time-view-item.component.mjs +18 -14
  109. package/{esm2020 → esm2022}/views/day-time/day-time-view.component.mjs +50 -29
  110. package/{esm2020 → esm2022}/views/day-time/event-slot.directive.mjs +23 -14
  111. package/{esm2020 → esm2022}/views/month/month-slot.component.mjs +21 -11
  112. package/{esm2020 → esm2022}/views/month/month-slot.service.mjs +8 -6
  113. package/{esm2020 → esm2022}/views/month/month-view-item.component.mjs +10 -9
  114. package/{esm2020 → esm2022}/views/month/month-view-renderer.component.mjs +31 -15
  115. package/{esm2020 → esm2022}/views/month/month-view.component.mjs +49 -31
  116. package/{esm2020 → esm2022}/views/month/multi-week-view.component.mjs +53 -35
  117. package/{esm2020 → esm2022}/views/multi-day/day-view.component.mjs +25 -17
  118. package/{esm2020 → esm2022}/views/multi-day/multi-day-view-base.mjs +17 -6
  119. package/{esm2020 → esm2022}/views/multi-day/multi-day-view-renderer.component.mjs +22 -13
  120. package/{esm2020 → esm2022}/views/multi-day/multi-day-view.component.mjs +22 -20
  121. package/{esm2020 → esm2022}/views/multi-day/week-view.component.mjs +44 -35
  122. package/{esm2020 → esm2022}/views/multi-day/work-week-view.component.mjs +16 -16
  123. package/{esm2020 → esm2022}/views/scheduler-view.directive.mjs +16 -10
  124. package/{esm2020 → esm2022}/views/templates/agenda-date-template.directive.mjs +4 -3
  125. package/{esm2020 → esm2022}/views/templates/agenda-time-template.directive.mjs +4 -3
  126. package/{esm2020 → esm2022}/views/templates/all-day-event-template.directive.mjs +4 -3
  127. package/{esm2020 → esm2022}/views/templates/all-day-slot-template.directive.mjs +4 -3
  128. package/{esm2020 → esm2022}/views/templates/date-header-template.directive.mjs +4 -3
  129. package/{esm2020 → esm2022}/views/templates/event-template.directive.mjs +4 -3
  130. package/{esm2020 → esm2022}/views/templates/group-header-template.directive.mjs +4 -3
  131. package/{esm2020 → esm2022}/views/templates/major-time-header-template.directive.mjs +4 -3
  132. package/{esm2020 → esm2022}/views/templates/minor-time-header-template.directive.mjs +4 -3
  133. package/{esm2020 → esm2022}/views/templates/month-day-slot-template.directive.mjs +4 -3
  134. package/{esm2020 → esm2022}/views/templates/multi-week-day-slot-template.directive.mjs +4 -3
  135. package/{esm2020 → esm2022}/views/templates/time-slot-template.directive.mjs +4 -3
  136. package/{esm2020 → esm2022}/views/timeline/timeline-base.mjs +10 -6
  137. package/{esm2020 → esm2022}/views/timeline/timeline-month-view.component.mjs +36 -34
  138. package/{esm2020 → esm2022}/views/timeline/timeline-multi-day-view.component.mjs +16 -13
  139. package/{esm2020 → esm2022}/views/timeline/timeline-view.component.mjs +18 -16
  140. package/{esm2020 → esm2022}/views/timeline/timeline-week-view.component.mjs +40 -40
  141. package/{esm2020 → esm2022}/views/timeline/utils.mjs +3 -3
  142. package/{esm2020 → esm2022}/views/view-context.service.mjs +33 -9
  143. package/{esm2020 → esm2022}/views/view-items/base-slot.directive.mjs +15 -9
  144. package/{esm2020 → esm2022}/views/view-items/base-slot.service.mjs +3 -5
  145. package/{esm2020 → esm2022}/views/view-items/base-view-item.mjs +30 -15
  146. package/{esm2020 → esm2022}/views/view-items/item-map.mjs +2 -4
  147. package/{esm2020 → esm2022}/views/view-state.service.mjs +56 -20
  148. package/{esm2020 → esm2022}/views/year/year-view-internal.component.mjs +45 -27
  149. package/{esm2020 → esm2022}/views/year/year-view.component.mjs +38 -31
  150. package/{fesm2020 → fesm2022}/progress-kendo-angular-scheduler.mjs +3642 -1967
  151. package/index.d.ts +0 -6
  152. package/loading.component.d.ts +1 -1
  153. package/localization/messages.d.ts +1 -1
  154. package/navigation/focusable.directive.d.ts +1 -1
  155. package/package.json +24 -30
  156. package/pdf/pdf.component.d.ts +1 -1
  157. package/scheduler.component.d.ts +1 -1
  158. package/schematics/ngAdd/index.js +4 -4
  159. package/toolbar/navigation.component.d.ts +1 -1
  160. package/toolbar/toolbar.component.d.ts +1 -1
  161. package/toolbar/view-selector.component.d.ts +1 -1
  162. package/types/actions.d.ts +1 -1
  163. package/types/focusable-container.d.ts +1 -1
  164. package/types/slot-selection.d.ts +1 -1
  165. package/views/agenda/agenda-header-item.component.d.ts +1 -1
  166. package/views/agenda/agenda-header.component.d.ts +1 -1
  167. package/views/agenda/agenda-task-item.component.d.ts +1 -1
  168. package/views/agenda/agenda-view-internal.component.d.ts +1 -1
  169. package/views/agenda/agenda-view-list.component.d.ts +1 -1
  170. package/views/agenda/agenda-view.component.d.ts +2 -6
  171. package/views/common/base-view.d.ts +1 -1
  172. package/views/common/configuration-view-base.d.ts +1 -1
  173. package/views/common/resize-hint.component.d.ts +1 -1
  174. package/views/common/slot-selectable.directive.d.ts +1 -1
  175. package/views/common/view-footer.component.d.ts +1 -1
  176. package/views/common/work-hours-footer.directive.d.ts +1 -1
  177. package/views/day-time/day-time-view-base.d.ts +2 -6
  178. package/views/day-time/day-time-view-item.component.d.ts +1 -1
  179. package/views/day-time/day-time-view.component.d.ts +1 -1
  180. package/views/day-time/event-slot.directive.d.ts +2 -2
  181. package/views/month/month-slot.component.d.ts +1 -1
  182. package/views/month/month-view-renderer.component.d.ts +1 -1
  183. package/views/month/month-view.component.d.ts +7 -4
  184. package/views/month/multi-week-view.component.d.ts +7 -4
  185. package/views/multi-day/day-view.component.d.ts +1 -1
  186. package/views/multi-day/multi-day-view-base.d.ts +1 -1
  187. package/views/multi-day/multi-day-view-renderer.component.d.ts +1 -1
  188. package/views/multi-day/multi-day-view.component.d.ts +1 -1
  189. package/views/multi-day/week-view.component.d.ts +1 -1
  190. package/views/scheduler-view.directive.d.ts +1 -1
  191. package/views/timeline/timeline-base.d.ts +1 -1
  192. package/views/timeline/timeline-month-view.component.d.ts +1 -1
  193. package/views/timeline/timeline-multi-day-view.component.d.ts +1 -1
  194. package/views/timeline/timeline-view.component.d.ts +1 -1
  195. package/views/timeline/timeline-week-view.component.d.ts +1 -1
  196. package/views/view-items/base-slot.directive.d.ts +1 -1
  197. package/views/view-items/base-view-item.d.ts +1 -1
  198. package/views/year/year-view-internal.component.d.ts +1 -4
  199. package/views/year/year-view.component.d.ts +6 -6
  200. package/esm2020/editing/recurrence/localization/messages.mjs +0 -91
  201. package/esm2020/events/drag-event.mjs +0 -18
  202. package/esm2020/localization/messages.mjs +0 -213
  203. package/esm2020/navigation/shortcuts.directive.mjs +0 -213
  204. package/esm2020/shared.module.mjs +0 -40
  205. package/esm2020/views/common/dom-events.service.mjs +0 -24
  206. package/esm2020/views/common/views-shared.module.mjs +0 -62
  207. package/esm2020/views/day-time/day-time.module.mjs +0 -39
  208. package/esm2020/views/month/month-view.module.mjs +0 -47
  209. package/esm2020/views/multi-day/multi-day-view.module.mjs +0 -52
  210. package/esm2020/views/timeline/timeline-view.module.mjs +0 -48
  211. package/fesm2015/progress-kendo-angular-scheduler.mjs +0 -19229
  212. package/shared.module.d.ts +0 -19
  213. package/views/common/views-shared.module.d.ts +0 -22
  214. package/views/day-time/day-time.module.d.ts +0 -18
  215. package/views/month/month-view.module.d.ts +0 -18
  216. package/views/multi-day/multi-day-view.module.d.ts +0 -20
  217. package/views/timeline/timeline-view.module.d.ts +0 -19
  218. /package/{esm2020 → esm2022}/common/constants.mjs +0 -0
  219. /package/{esm2020 → esm2022}/common/default-model-fields.mjs +0 -0
  220. /package/{esm2020 → esm2022}/common/dom-queries.mjs +0 -0
  221. /package/{esm2020 → esm2022}/common/getter.mjs +0 -0
  222. /package/{esm2020 → esm2022}/common/modifiers.mjs +0 -0
  223. /package/{esm2020 → esm2022}/common/setter.mjs +0 -0
  224. /package/{esm2020 → esm2022}/common/util.mjs +0 -0
  225. /package/{esm2020 → esm2022}/directives.mjs +0 -0
  226. /package/{esm2020 → esm2022}/editing-directives/edit-service.interface.mjs +0 -0
  227. /package/{esm2020 → esm2022}/editing-directives/utils.mjs +0 -0
  228. /package/{esm2020 → esm2022}/events/slot-drag-end-event.mjs +0 -0
  229. /package/{esm2020 → esm2022}/events/view-event-map.mjs +0 -0
  230. /package/{esm2020 → esm2022}/events.mjs +0 -0
  231. /package/{esm2020 → esm2022}/navigation/focus-position.interface.mjs +0 -0
  232. /package/{esm2020 → esm2022}/navigation/focusable-element.interface.mjs +0 -0
  233. /package/{esm2020 → esm2022}/navigation.mjs +0 -0
  234. /package/{esm2020 → esm2022}/pdf/pdf-export-event.mjs +0 -0
  235. /package/{esm2020 → esm2022}/progress-kendo-angular-scheduler.mjs +0 -0
  236. /package/{esm2020 → esm2022}/toolbar/toolbar-context.mjs +0 -0
  237. /package/{esm2020 → esm2022}/types/actions.mjs +0 -0
  238. /package/{esm2020 → esm2022}/types/create-form-group-args.interface.mjs +0 -0
  239. /package/{esm2020 → esm2022}/types/crud-operation.enum.mjs +0 -0
  240. /package/{esm2020 → esm2022}/types/current-time-settings.interface.mjs +0 -0
  241. /package/{esm2020 → esm2022}/types/date-range.interface.mjs +0 -0
  242. /package/{esm2020 → esm2022}/types/datepicker-options.interface.mjs +0 -0
  243. /package/{esm2020 → esm2022}/types/edit-event-args.interface.mjs +0 -0
  244. /package/{esm2020 → esm2022}/types/edit-mode.enum.mjs +0 -0
  245. /package/{esm2020 → esm2022}/types/editable-settings.interface.mjs +0 -0
  246. /package/{esm2020 → esm2022}/types/event-style-args.interface.mjs +0 -0
  247. /package/{esm2020 → esm2022}/types/focusable-container.mjs +0 -0
  248. /package/{esm2020 → esm2022}/types/group.interface.mjs +0 -0
  249. /package/{esm2020 → esm2022}/types/numeric-options.interface.mjs +0 -0
  250. /package/{esm2020 → esm2022}/types/ongoing-events-settings.interface.mjs +0 -0
  251. /package/{esm2020 → esm2022}/types/resource.interface.mjs +0 -0
  252. /package/{esm2020 → esm2022}/types/scheduler-event.mjs +0 -0
  253. /package/{esm2020 → esm2022}/types/scheduler-model-fields.interface.mjs +0 -0
  254. /package/{esm2020 → esm2022}/types/scheduler-slot.interface.mjs +0 -0
  255. /package/{esm2020 → esm2022}/types/scheduler-view.mjs +0 -0
  256. /package/{esm2020 → esm2022}/types/slot-class-args.interface.mjs +0 -0
  257. /package/{esm2020 → esm2022}/types/view-item.interface.mjs +0 -0
  258. /package/{esm2020 → esm2022}/types.mjs +0 -0
  259. /package/{esm2020 → esm2022}/views/agenda/utils.mjs +0 -0
  260. /package/{esm2020 → esm2022}/views/common/scheduler-task.mjs +0 -0
  261. /package/{esm2020 → esm2022}/views/constants.mjs +0 -0
  262. /package/{esm2020 → esm2022}/views/day-time/utils.mjs +0 -0
  263. /package/{esm2020 → esm2022}/views/month/utils.mjs +0 -0
  264. /package/{esm2020 → esm2022}/views/multi-day/utils.mjs +0 -0
  265. /package/{esm2020 → esm2022}/views/templates.mjs +0 -0
  266. /package/{esm2020 → esm2022}/views/utils.mjs +0 -0
  267. /package/{esm2020 → esm2022}/views/view-items/types.mjs +0 -0
  268. /package/{esm2020 → esm2022}/views/year/utils.mjs +0 -0
@@ -0,0 +1,614 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ import { Directive, Input } from '@angular/core';
6
+ import { ComponentMessages } from '@progress/kendo-angular-l10n';
7
+ import * as i0 from "@angular/core";
8
+ /**
9
+ * @hidden
10
+ */
11
+ export class Messages extends ComponentMessages {
12
+ /**
13
+ * The **All events** text that is displayed in the **Timeline** views when no vertical grouping is applied.
14
+ */
15
+ allEvents;
16
+ /**
17
+ * The **All day** text that is displayed in the *Day** and **Week** views.
18
+ */
19
+ allDay;
20
+ /**
21
+ * The date-header text that is displayed in the **Agenda** view.
22
+ */
23
+ dateHeader;
24
+ /**
25
+ * The time-header text that is displayed in the **Agenda** view.
26
+ */
27
+ timeHeader;
28
+ /**
29
+ * The event-header text that is displayed in the **Agenda** view.
30
+ */
31
+ eventHeader;
32
+ /**
33
+ * The title of the **Delete** icon.
34
+ */
35
+ deleteTitle;
36
+ /**
37
+ * The title of the **Next** navigation button.
38
+ */
39
+ nextTitle;
40
+ /**
41
+ * The title of the **Previous** navigation button.
42
+ */
43
+ previousTitle;
44
+ /**
45
+ * The text of the **Today** navigation button.
46
+ */
47
+ today;
48
+ /**
49
+ * The text of today's date in the header of the Calendar.
50
+ */
51
+ calendarToday;
52
+ /**
53
+ * The text of the **Show full day** button that is displayed in the footer of the **Day**, **Week**, and **Timeline** views.
54
+ */
55
+ showFullDay;
56
+ /**
57
+ * The text of the **Show work day** button that is displayed in the footer of the **Day**, **Week**, and **Timeline** views.
58
+ */
59
+ showWorkDay;
60
+ /**
61
+ * The title of the **Day** view.
62
+ */
63
+ dayViewTitle;
64
+ /**
65
+ * The title of the **Multi-Day** view.
66
+ */
67
+ multiDayViewTitle;
68
+ /**
69
+ * The title of the **Week** view.
70
+ */
71
+ weekViewTitle;
72
+ /**
73
+ * The title of the **Work Week** view.
74
+ */
75
+ workWeekViewTitle;
76
+ /**
77
+ * The title of the **Month** view.
78
+ */
79
+ monthViewTitle;
80
+ /**
81
+ * The title of the **Multi-Week** view.
82
+ */
83
+ multiWeekViewTitle;
84
+ /**
85
+ * The title of the **Timeline** view.
86
+ */
87
+ timelineViewTitle;
88
+ /**
89
+ * The title of the **Week** timeline view.
90
+ */
91
+ timelineWeekViewTitle;
92
+ /**
93
+ * The title of the **Month** timeline view.
94
+ */
95
+ timelineMonthViewTitle;
96
+ /**
97
+ * The title of the **Agenda** view.
98
+ */
99
+ agendaViewTitle;
100
+ /**
101
+ * The title of the **Year** view.
102
+ */
103
+ yearViewTitle;
104
+ /**
105
+ * The message displayed in **Year** view for any date that has no events.
106
+ */
107
+ yearViewNoEvents;
108
+ /* ********************* */
109
+ /* Editing Section Start */
110
+ /* ********************* */
111
+ /**
112
+ * The text of the **Cancel** button displayed in the Scheduler dialogs.
113
+ */
114
+ cancel;
115
+ /**
116
+ * The text of the **Save** button displayed in the Scheduler dialogs.
117
+ */
118
+ save;
119
+ /**
120
+ * The text similar to 'Title' displayed in the Scheduler event editor.
121
+ */
122
+ editorEventTitle;
123
+ /**
124
+ * The text similar to 'Start' displayed in the Scheduler event editor.
125
+ */
126
+ editorEventStart;
127
+ /**
128
+ * The text similar to 'Start Time Zone' displayed in the Scheduler event editor.
129
+ */
130
+ editorEventStartTimeZone;
131
+ /**
132
+ * The text similar to 'End' displayed in the Scheduler event editor.
133
+ */
134
+ editorEventEnd;
135
+ /**
136
+ * The text similar to 'End Time Zone' displayed in the Scheduler event editor.
137
+ */
138
+ editorEventEndTimeZone;
139
+ /**
140
+ * The text similar to 'All Day Event' displayed in the Scheduler event editor.
141
+ */
142
+ editorEventAllDay;
143
+ /**
144
+ * The text similar to 'Description' displayed in the Scheduler event editor.
145
+ */
146
+ editorEventDescription;
147
+ /**
148
+ * The text similar to 'Use separate Start and End Time Zones' displayed in the Scheduler event editor.
149
+ */
150
+ editorEventSeparateTimeZones;
151
+ /**
152
+ * The text similar to 'Time Zone' displayed in the Scheduler event editor.
153
+ */
154
+ editorEventTimeZone;
155
+ /**
156
+ * The **Today** button text in the popup of the DateTimePickers and DatePickers in the Scheduler event editor.
157
+ */
158
+ editorDateInputsToday;
159
+ /**
160
+ * The title of the **Toggle** button in the popup of the DateTimePickers and DatePickers in the Scheduler event editor.
161
+ */
162
+ editorDateInputsToggle;
163
+ /**
164
+ * The title of the **Parent View** button in the popup of the DateTimePickers and DatePickers in the Scheduler event editor.
165
+ */
166
+ editorDateInputsParentViewButton;
167
+ /**
168
+ * The text of the **Now** button in the popup footer of the DateTimePickers and DatePickers in the Scheduler event editor.
169
+ */
170
+ editorDateInputsNow;
171
+ /**
172
+ * The label of the **Now** button in the popup footer of the DateTimePickers and DatePickers in the Scheduler event editor.
173
+ */
174
+ editorDateInputsNowLabel;
175
+ /**
176
+ * The text of the **Accept** button in the popup footer of the DateTimePickers and DatePickers in the Scheduler event editor.
177
+ */
178
+ editorDateInputsAccept;
179
+ /**
180
+ * The label of the **Accept** button in the popup footer of the DateTimePickers and DatePickers in the Scheduler event editor.
181
+ */
182
+ editorDateInputsAcceptLabel;
183
+ /**
184
+ * The text of the **Cancel** button in the popup footer of the DateTimePickers and DatePickers in the Scheduler event editor.
185
+ */
186
+ editorDateInputsCancel;
187
+ /**
188
+ * The label of the **Cancel** button in the popup footer of the DateTimePickers and DatePickers in the Scheduler event editor.
189
+ */
190
+ editorDateInputsCancelLabel;
191
+ /**
192
+ * The text of the **Date** tab in the popup header of the DateTimePickers and DatePickers in the Scheduler event editor.
193
+ */
194
+ editorDateInputsDateTab;
195
+ /**
196
+ * The label of the **Date** tab in the popup header of the DateTimePickers and DatePickers in the Scheduler event editor.
197
+ */
198
+ editorDateInputsDateTabLabel;
199
+ /**
200
+ * The text of the **Time** tab in the popup header of the DateTimePickers and DatePickers in the Scheduler event editor.
201
+ */
202
+ editorDateInputsTimeTab;
203
+ /**
204
+ * The label of the **Time** tab in the popup header of the DateTimePickers and DatePickers in the Scheduler event editor.
205
+ */
206
+ editorDateInputsTimeTabLabel;
207
+ /**
208
+ * The **Today** button text in the popup of the DatePickers in the Scheduler recurrence editor.
209
+ */
210
+ recurrenceEditorDateInputsToday;
211
+ /**
212
+ * The title of the **Toggle** button in the popup of the DatePickers in the Scheduler recurrence editor.
213
+ */
214
+ recurrenceEditorDateInputsToggle;
215
+ /**
216
+ * The title of the **Parent View** button in the popup of the DatePickers in the Scheduler recurrence editor.
217
+ */
218
+ recurrenceEditorDateInputsParentViewButton;
219
+ /**
220
+ * The title of the **Increment** button of the NumericTextBox in the Scheduler recurrence editor.
221
+ */
222
+ recurrenceEditorNumericIncrement;
223
+ /**
224
+ * The title of the **Decrement** button of the NumericTextBox in the Scheduler recurrence editor.
225
+ */
226
+ recurrenceEditorNumericDecrement;
227
+ /**
228
+ * The text similar to 'Repeat' displayed in the Scheduler recurrence editor.
229
+ */
230
+ recurrenceEditorRepeat;
231
+ /**
232
+ * The text similar to 'day(s)' displayed in the Scheduler recurrence editor.
233
+ */
234
+ recurrenceEditorDailyInterval;
235
+ /**
236
+ * The text similar to 'Repeat every' displayed in the Scheduler recurrence editor.
237
+ */
238
+ recurrenceEditorDailyRepeatEvery;
239
+ /**
240
+ * The text similar to 'week(s)' displayed in the Scheduler recurrence editor.
241
+ */
242
+ recurrenceEditorWeeklyInterval;
243
+ /**
244
+ * The text similar to 'Repeat every' displayed in the Scheduler recurrence editor.
245
+ */
246
+ recurrenceEditorWeeklyRepeatEvery;
247
+ /**
248
+ * The text similar to 'Repeat on' displayed in the Scheduler recurrence editor.
249
+ */
250
+ recurrenceEditorWeeklyRepeatOn;
251
+ /**
252
+ * The text similar to 'Day' displayed in the Scheduler recurrence editor.
253
+ */
254
+ recurrenceEditorMonthlyDay;
255
+ /**
256
+ * The text similar to 'month(s)' displayed in the Scheduler recurrence editor.
257
+ */
258
+ recurrenceEditorMonthlyInterval;
259
+ /**
260
+ * The text similar to 'Repeat every' displayed in the Scheduler recurrence editor.
261
+ */
262
+ recurrenceEditorMonthlyRepeatEvery;
263
+ /**
264
+ * The text similar to 'Repeat on' displayed in the Scheduler recurrence editor.
265
+ */
266
+ recurrenceEditorMonthlyRepeatOn;
267
+ /**
268
+ * The text similar to 'of' displayed in the Scheduler recurrence editor.
269
+ */
270
+ recurrenceEditorYearlyOf;
271
+ /**
272
+ * The text similar to 'Repeat every' displayed in the Scheduler recurrence editor.
273
+ */
274
+ recurrenceEditorYearlyRepeatEvery;
275
+ /**
276
+ * The text similar to 'Repeat on' displayed in the Scheduler recurrence editor.
277
+ */
278
+ recurrenceEditorYearlyRepeatOn;
279
+ /**
280
+ * The text similar to 'year(s)' displayed in the Scheduler recurrence editor.
281
+ */
282
+ recurrenceEditorYearlyInterval;
283
+ /**
284
+ * The text similar to 'Daily' displayed in the Scheduler recurrence editor.
285
+ */
286
+ recurrenceEditorFrequenciesDaily;
287
+ /**
288
+ * The text similar to 'Monthly' displayed in the Scheduler recurrence editor.
289
+ */
290
+ recurrenceEditorFrequenciesMonthly;
291
+ /**
292
+ * The text similar to 'Never' displayed in the Scheduler recurrence editor.
293
+ */
294
+ recurrenceEditorFrequenciesNever;
295
+ /**
296
+ * The text similar to 'Weekly' displayed in the Scheduler recurrence editor.
297
+ */
298
+ recurrenceEditorFrequenciesWeekly;
299
+ /**
300
+ * The text similar to 'Yearly' displayed in the Scheduler recurrence editor.
301
+ */
302
+ recurrenceEditorFrequenciesYearly;
303
+ /**
304
+ * The text similar to 'First' displayed in the Scheduler recurrence editor.
305
+ */
306
+ recurrenceEditorOffsetPositionsFirst;
307
+ /**
308
+ * The text similar to 'Second' displayed in the Scheduler recurrence editor.
309
+ */
310
+ recurrenceEditorOffsetPositionsSecond;
311
+ /**
312
+ * The text similar to 'Third' displayed in the Scheduler recurrence editor.
313
+ */
314
+ recurrenceEditorOffsetPositionsThird;
315
+ /**
316
+ * The text similar to 'Fourth' displayed in the Scheduler recurrence editor.
317
+ */
318
+ recurrenceEditorOffsetPositionsFourth;
319
+ /**
320
+ * The text similar to 'Last' displayed in the Scheduler recurrence editor.
321
+ */
322
+ recurrenceEditorOffsetPositionsLast;
323
+ /**
324
+ * The text similar to 'Day' displayed in the repeat by section of the monthly recurrence pattern.
325
+ */
326
+ recurrenceEditorWeekdaysDay;
327
+ /**
328
+ * The text similar to 'Weekday' displayed in the repeat by section of the monthly recurrence pattern.
329
+ */
330
+ recurrenceEditorWeekdaysWeekday;
331
+ /**
332
+ * The text similar to 'Weekend Day' displayed in the repeat by section of the monthly recurrence pattern.
333
+ */
334
+ recurrenceEditorWeekdaysWeekendday;
335
+ /**
336
+ * The text similar to 'After' displayed in the Scheduler recurrence editor.
337
+ */
338
+ recurrenceEditorEndAfter;
339
+ /**
340
+ * The text similar to 'occurrence(s)' displayed in the Scheduler recurrence editor.
341
+ */
342
+ recurrenceEditorEndOccurrence;
343
+ /**
344
+ * The text similar to 'End' displayed in the Scheduler recurrence editor.
345
+ */
346
+ recurrenceEditorEndLabel;
347
+ /**
348
+ * The text similar to 'Never' displayed in the Scheduler recurrence editor.
349
+ */
350
+ recurrenceEditorEndNever;
351
+ /**
352
+ * The text similar to 'On' displayed in the Scheduler recurrence editor.
353
+ */
354
+ recurrenceEditorEndOn;
355
+ /* ******************* */
356
+ /* Editing Section End */
357
+ /* ******************* */
358
+ /* ********************* */
359
+ /* Dialogs Section Start */
360
+ /* ********************* */
361
+ /**
362
+ * The text similar to **Event** displayed as title of the Scheduler event editor.
363
+ */
364
+ editorTitle;
365
+ /**
366
+ * The text of the **Delete** button displayed in the Scheduler remove confirmation dialog.
367
+ */
368
+ destroy;
369
+ /**
370
+ * The text similar to **Are you sure you want to delete this event?** displayed in Scheduler remove confirmation dialog.
371
+ */
372
+ deleteConfirmation;
373
+ /**
374
+ * The text similar to **Do you want to edit only this event occurrence or the whole series?** displayed in the Scheduler recurring confirmation dialog.
375
+ */
376
+ editRecurringConfirmation;
377
+ /**
378
+ * The text of the **Edit current occurrence** button displayed in the Scheduler recurring confirmation dialog.
379
+ */
380
+ editOccurrence;
381
+ /**
382
+ * The text of the **Edit the series** button displayed in the Scheduler recurring confirmation dialog.
383
+ */
384
+ editSeries;
385
+ /**
386
+ * The text similar to **Do you want to delete only this event occurrence or the whole series?** displayed in the Scheduler recurring confirmation dialog.
387
+ */
388
+ deleteRecurringConfirmation;
389
+ /**
390
+ * The text of the **Delete current occurrence** button displayed in the Scheduler recurring confirmation dialog.
391
+ */
392
+ deleteOccurrence;
393
+ /**
394
+ * The text similar of the **Delete the series** button displayed in the Scheduler recurring confirmation dialog.
395
+ */
396
+ deleteSeries;
397
+ /**
398
+ * The title of the remove confirmation dialog, similar to **Delete event**.
399
+ */
400
+ deleteDialogTitle;
401
+ /**
402
+ * The title of the recurring remove confirmation dialog, similar to **Delete Recurring Item**.
403
+ */
404
+ deleteRecurringDialogTitle;
405
+ /**
406
+ * The title of the recurring edit confirmation dialog, similar to **Edit Recurring Item**.
407
+ */
408
+ editRecurringDialogTitle;
409
+ /**
410
+ * The value of the aria-label attribute of the `<select>` element used for switching the Scheduler views.
411
+ */
412
+ selectView;
413
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: Messages, deps: null, target: i0.ɵɵFactoryTarget.Directive });
414
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: Messages, inputs: { allEvents: "allEvents", allDay: "allDay", dateHeader: "dateHeader", timeHeader: "timeHeader", eventHeader: "eventHeader", deleteTitle: "deleteTitle", nextTitle: "nextTitle", previousTitle: "previousTitle", today: "today", calendarToday: "calendarToday", showFullDay: "showFullDay", showWorkDay: "showWorkDay", dayViewTitle: "dayViewTitle", multiDayViewTitle: "multiDayViewTitle", weekViewTitle: "weekViewTitle", workWeekViewTitle: "workWeekViewTitle", monthViewTitle: "monthViewTitle", multiWeekViewTitle: "multiWeekViewTitle", timelineViewTitle: "timelineViewTitle", timelineWeekViewTitle: "timelineWeekViewTitle", timelineMonthViewTitle: "timelineMonthViewTitle", agendaViewTitle: "agendaViewTitle", yearViewTitle: "yearViewTitle", yearViewNoEvents: "yearViewNoEvents", cancel: "cancel", save: "save", editorEventTitle: "editorEventTitle", editorEventStart: "editorEventStart", editorEventStartTimeZone: "editorEventStartTimeZone", editorEventEnd: "editorEventEnd", editorEventEndTimeZone: "editorEventEndTimeZone", editorEventAllDay: "editorEventAllDay", editorEventDescription: "editorEventDescription", editorEventSeparateTimeZones: "editorEventSeparateTimeZones", editorEventTimeZone: "editorEventTimeZone", editorDateInputsToday: "editorDateInputsToday", editorDateInputsToggle: "editorDateInputsToggle", editorDateInputsParentViewButton: "editorDateInputsParentViewButton", editorDateInputsNow: "editorDateInputsNow", editorDateInputsNowLabel: "editorDateInputsNowLabel", editorDateInputsAccept: "editorDateInputsAccept", editorDateInputsAcceptLabel: "editorDateInputsAcceptLabel", editorDateInputsCancel: "editorDateInputsCancel", editorDateInputsCancelLabel: "editorDateInputsCancelLabel", editorDateInputsDateTab: "editorDateInputsDateTab", editorDateInputsDateTabLabel: "editorDateInputsDateTabLabel", editorDateInputsTimeTab: "editorDateInputsTimeTab", editorDateInputsTimeTabLabel: "editorDateInputsTimeTabLabel", recurrenceEditorDateInputsToday: "recurrenceEditorDateInputsToday", recurrenceEditorDateInputsToggle: "recurrenceEditorDateInputsToggle", recurrenceEditorDateInputsParentViewButton: "recurrenceEditorDateInputsParentViewButton", recurrenceEditorNumericIncrement: "recurrenceEditorNumericIncrement", recurrenceEditorNumericDecrement: "recurrenceEditorNumericDecrement", recurrenceEditorRepeat: "recurrenceEditorRepeat", recurrenceEditorDailyInterval: "recurrenceEditorDailyInterval", recurrenceEditorDailyRepeatEvery: "recurrenceEditorDailyRepeatEvery", recurrenceEditorWeeklyInterval: "recurrenceEditorWeeklyInterval", recurrenceEditorWeeklyRepeatEvery: "recurrenceEditorWeeklyRepeatEvery", recurrenceEditorWeeklyRepeatOn: "recurrenceEditorWeeklyRepeatOn", recurrenceEditorMonthlyDay: "recurrenceEditorMonthlyDay", recurrenceEditorMonthlyInterval: "recurrenceEditorMonthlyInterval", recurrenceEditorMonthlyRepeatEvery: "recurrenceEditorMonthlyRepeatEvery", recurrenceEditorMonthlyRepeatOn: "recurrenceEditorMonthlyRepeatOn", recurrenceEditorYearlyOf: "recurrenceEditorYearlyOf", recurrenceEditorYearlyRepeatEvery: "recurrenceEditorYearlyRepeatEvery", recurrenceEditorYearlyRepeatOn: "recurrenceEditorYearlyRepeatOn", recurrenceEditorYearlyInterval: "recurrenceEditorYearlyInterval", recurrenceEditorFrequenciesDaily: "recurrenceEditorFrequenciesDaily", recurrenceEditorFrequenciesMonthly: "recurrenceEditorFrequenciesMonthly", recurrenceEditorFrequenciesNever: "recurrenceEditorFrequenciesNever", recurrenceEditorFrequenciesWeekly: "recurrenceEditorFrequenciesWeekly", recurrenceEditorFrequenciesYearly: "recurrenceEditorFrequenciesYearly", recurrenceEditorOffsetPositionsFirst: "recurrenceEditorOffsetPositionsFirst", recurrenceEditorOffsetPositionsSecond: "recurrenceEditorOffsetPositionsSecond", recurrenceEditorOffsetPositionsThird: "recurrenceEditorOffsetPositionsThird", recurrenceEditorOffsetPositionsFourth: "recurrenceEditorOffsetPositionsFourth", recurrenceEditorOffsetPositionsLast: "recurrenceEditorOffsetPositionsLast", recurrenceEditorWeekdaysDay: "recurrenceEditorWeekdaysDay", recurrenceEditorWeekdaysWeekday: "recurrenceEditorWeekdaysWeekday", recurrenceEditorWeekdaysWeekendday: "recurrenceEditorWeekdaysWeekendday", recurrenceEditorEndAfter: "recurrenceEditorEndAfter", recurrenceEditorEndOccurrence: "recurrenceEditorEndOccurrence", recurrenceEditorEndLabel: "recurrenceEditorEndLabel", recurrenceEditorEndNever: "recurrenceEditorEndNever", recurrenceEditorEndOn: "recurrenceEditorEndOn", editorTitle: "editorTitle", destroy: "destroy", deleteConfirmation: "deleteConfirmation", editRecurringConfirmation: "editRecurringConfirmation", editOccurrence: "editOccurrence", editSeries: "editSeries", deleteRecurringConfirmation: "deleteRecurringConfirmation", deleteOccurrence: "deleteOccurrence", deleteSeries: "deleteSeries", deleteDialogTitle: "deleteDialogTitle", deleteRecurringDialogTitle: "deleteRecurringDialogTitle", editRecurringDialogTitle: "editRecurringDialogTitle", selectView: "selectView" }, usesInheritance: true, ngImport: i0 });
415
+ }
416
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: Messages, decorators: [{
417
+ type: Directive
418
+ }], propDecorators: { allEvents: [{
419
+ type: Input
420
+ }], allDay: [{
421
+ type: Input
422
+ }], dateHeader: [{
423
+ type: Input
424
+ }], timeHeader: [{
425
+ type: Input
426
+ }], eventHeader: [{
427
+ type: Input
428
+ }], deleteTitle: [{
429
+ type: Input
430
+ }], nextTitle: [{
431
+ type: Input
432
+ }], previousTitle: [{
433
+ type: Input
434
+ }], today: [{
435
+ type: Input
436
+ }], calendarToday: [{
437
+ type: Input
438
+ }], showFullDay: [{
439
+ type: Input
440
+ }], showWorkDay: [{
441
+ type: Input
442
+ }], dayViewTitle: [{
443
+ type: Input
444
+ }], multiDayViewTitle: [{
445
+ type: Input
446
+ }], weekViewTitle: [{
447
+ type: Input
448
+ }], workWeekViewTitle: [{
449
+ type: Input
450
+ }], monthViewTitle: [{
451
+ type: Input
452
+ }], multiWeekViewTitle: [{
453
+ type: Input
454
+ }], timelineViewTitle: [{
455
+ type: Input
456
+ }], timelineWeekViewTitle: [{
457
+ type: Input
458
+ }], timelineMonthViewTitle: [{
459
+ type: Input
460
+ }], agendaViewTitle: [{
461
+ type: Input
462
+ }], yearViewTitle: [{
463
+ type: Input
464
+ }], yearViewNoEvents: [{
465
+ type: Input
466
+ }], cancel: [{
467
+ type: Input
468
+ }], save: [{
469
+ type: Input
470
+ }], editorEventTitle: [{
471
+ type: Input
472
+ }], editorEventStart: [{
473
+ type: Input
474
+ }], editorEventStartTimeZone: [{
475
+ type: Input
476
+ }], editorEventEnd: [{
477
+ type: Input
478
+ }], editorEventEndTimeZone: [{
479
+ type: Input
480
+ }], editorEventAllDay: [{
481
+ type: Input
482
+ }], editorEventDescription: [{
483
+ type: Input
484
+ }], editorEventSeparateTimeZones: [{
485
+ type: Input
486
+ }], editorEventTimeZone: [{
487
+ type: Input
488
+ }], editorDateInputsToday: [{
489
+ type: Input
490
+ }], editorDateInputsToggle: [{
491
+ type: Input
492
+ }], editorDateInputsParentViewButton: [{
493
+ type: Input
494
+ }], editorDateInputsNow: [{
495
+ type: Input
496
+ }], editorDateInputsNowLabel: [{
497
+ type: Input
498
+ }], editorDateInputsAccept: [{
499
+ type: Input
500
+ }], editorDateInputsAcceptLabel: [{
501
+ type: Input
502
+ }], editorDateInputsCancel: [{
503
+ type: Input
504
+ }], editorDateInputsCancelLabel: [{
505
+ type: Input
506
+ }], editorDateInputsDateTab: [{
507
+ type: Input
508
+ }], editorDateInputsDateTabLabel: [{
509
+ type: Input
510
+ }], editorDateInputsTimeTab: [{
511
+ type: Input
512
+ }], editorDateInputsTimeTabLabel: [{
513
+ type: Input
514
+ }], recurrenceEditorDateInputsToday: [{
515
+ type: Input
516
+ }], recurrenceEditorDateInputsToggle: [{
517
+ type: Input
518
+ }], recurrenceEditorDateInputsParentViewButton: [{
519
+ type: Input
520
+ }], recurrenceEditorNumericIncrement: [{
521
+ type: Input
522
+ }], recurrenceEditorNumericDecrement: [{
523
+ type: Input
524
+ }], recurrenceEditorRepeat: [{
525
+ type: Input
526
+ }], recurrenceEditorDailyInterval: [{
527
+ type: Input
528
+ }], recurrenceEditorDailyRepeatEvery: [{
529
+ type: Input
530
+ }], recurrenceEditorWeeklyInterval: [{
531
+ type: Input
532
+ }], recurrenceEditorWeeklyRepeatEvery: [{
533
+ type: Input
534
+ }], recurrenceEditorWeeklyRepeatOn: [{
535
+ type: Input
536
+ }], recurrenceEditorMonthlyDay: [{
537
+ type: Input
538
+ }], recurrenceEditorMonthlyInterval: [{
539
+ type: Input
540
+ }], recurrenceEditorMonthlyRepeatEvery: [{
541
+ type: Input
542
+ }], recurrenceEditorMonthlyRepeatOn: [{
543
+ type: Input
544
+ }], recurrenceEditorYearlyOf: [{
545
+ type: Input
546
+ }], recurrenceEditorYearlyRepeatEvery: [{
547
+ type: Input
548
+ }], recurrenceEditorYearlyRepeatOn: [{
549
+ type: Input
550
+ }], recurrenceEditorYearlyInterval: [{
551
+ type: Input
552
+ }], recurrenceEditorFrequenciesDaily: [{
553
+ type: Input
554
+ }], recurrenceEditorFrequenciesMonthly: [{
555
+ type: Input
556
+ }], recurrenceEditorFrequenciesNever: [{
557
+ type: Input
558
+ }], recurrenceEditorFrequenciesWeekly: [{
559
+ type: Input
560
+ }], recurrenceEditorFrequenciesYearly: [{
561
+ type: Input
562
+ }], recurrenceEditorOffsetPositionsFirst: [{
563
+ type: Input
564
+ }], recurrenceEditorOffsetPositionsSecond: [{
565
+ type: Input
566
+ }], recurrenceEditorOffsetPositionsThird: [{
567
+ type: Input
568
+ }], recurrenceEditorOffsetPositionsFourth: [{
569
+ type: Input
570
+ }], recurrenceEditorOffsetPositionsLast: [{
571
+ type: Input
572
+ }], recurrenceEditorWeekdaysDay: [{
573
+ type: Input
574
+ }], recurrenceEditorWeekdaysWeekday: [{
575
+ type: Input
576
+ }], recurrenceEditorWeekdaysWeekendday: [{
577
+ type: Input
578
+ }], recurrenceEditorEndAfter: [{
579
+ type: Input
580
+ }], recurrenceEditorEndOccurrence: [{
581
+ type: Input
582
+ }], recurrenceEditorEndLabel: [{
583
+ type: Input
584
+ }], recurrenceEditorEndNever: [{
585
+ type: Input
586
+ }], recurrenceEditorEndOn: [{
587
+ type: Input
588
+ }], editorTitle: [{
589
+ type: Input
590
+ }], destroy: [{
591
+ type: Input
592
+ }], deleteConfirmation: [{
593
+ type: Input
594
+ }], editRecurringConfirmation: [{
595
+ type: Input
596
+ }], editOccurrence: [{
597
+ type: Input
598
+ }], editSeries: [{
599
+ type: Input
600
+ }], deleteRecurringConfirmation: [{
601
+ type: Input
602
+ }], deleteOccurrence: [{
603
+ type: Input
604
+ }], deleteSeries: [{
605
+ type: Input
606
+ }], deleteDialogTitle: [{
607
+ type: Input
608
+ }], deleteRecurringDialogTitle: [{
609
+ type: Input
610
+ }], editRecurringDialogTitle: [{
611
+ type: Input
612
+ }], selectView: [{
613
+ type: Input
614
+ }] } });
@@ -13,10 +13,10 @@ export class SchedulerLocalizationService extends LocalizationService {
13
13
  constructor(prefix, messageService, _rtl) {
14
14
  super(prefix, messageService, _rtl);
15
15
  }
16
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SchedulerLocalizationService, deps: [{ token: L10N_PREFIX }, { token: i1.MessageService, optional: true }, { token: RTL, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
17
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SchedulerLocalizationService });
16
18
  }
17
- SchedulerLocalizationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SchedulerLocalizationService, deps: [{ token: L10N_PREFIX }, { token: i1.MessageService, optional: true }, { token: RTL, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
18
- SchedulerLocalizationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SchedulerLocalizationService });
19
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SchedulerLocalizationService, decorators: [{
19
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SchedulerLocalizationService, decorators: [{
20
20
  type: Injectable
21
21
  }], ctorParameters: function () { return [{ type: undefined, decorators: [{
22
22
  type: Inject,
@@ -12,18 +12,10 @@ import * as i1 from "../views/common/dom-events.service";
12
12
  * @hidden
13
13
  */
14
14
  export class FocusService {
15
- constructor(renderer, wrapper, domEvents, zone) {
16
- this.renderer = renderer;
17
- this.wrapper = wrapper;
18
- this.domEvents = domEvents;
19
- this.zone = zone;
20
- this.items = new Set();
21
- this.elementMap = new WeakMap();
22
- this.subs = new Subscription();
23
- this.hasContentRendered = false;
24
- this.subs.add(this.domEvents.focus.subscribe(e => this.onFocusIn(e)));
25
- this.subs.add(this.domEvents.focusOut.subscribe(() => this.onFocusOut()));
26
- }
15
+ renderer;
16
+ wrapper;
17
+ domEvents;
18
+ zone;
27
19
  get activeElement() {
28
20
  if (this.activeItem) {
29
21
  return this.activeItem.element;
@@ -32,6 +24,20 @@ export class FocusService {
32
24
  get focusableItems() {
33
25
  return this.items;
34
26
  }
27
+ activeItem;
28
+ focusedItem;
29
+ items = new Set();
30
+ elementMap = new WeakMap();
31
+ subs = new Subscription();
32
+ hasContentRendered = false;
33
+ constructor(renderer, wrapper, domEvents, zone) {
34
+ this.renderer = renderer;
35
+ this.wrapper = wrapper;
36
+ this.domEvents = domEvents;
37
+ this.zone = zone;
38
+ this.subs.add(this.domEvents.focus.subscribe(e => this.onFocusIn(e)));
39
+ this.subs.add(this.domEvents.focusOut.subscribe(() => this.onFocusOut()));
40
+ }
35
41
  ngOnDestroy() {
36
42
  this.subs.unsubscribe();
37
43
  }
@@ -184,10 +190,10 @@ export class FocusService {
184
190
  this.focusedItem.toggleFocus(false);
185
191
  this.focusedItem = null;
186
192
  }
193
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FocusService, deps: [{ token: i0.Renderer2, optional: true }, { token: i0.ElementRef, optional: true }, { token: i1.DomEventsService }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Injectable });
194
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FocusService });
187
195
  }
188
- FocusService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FocusService, deps: [{ token: i0.Renderer2, optional: true }, { token: i0.ElementRef, optional: true }, { token: i1.DomEventsService }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Injectable });
189
- FocusService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FocusService });
190
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FocusService, decorators: [{
196
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FocusService, decorators: [{
191
197
  type: Injectable
192
198
  }], ctorParameters: function () { return [{ type: i0.Renderer2, decorators: [{
193
199
  type: Optional