@progress/kendo-angular-scheduler 19.1.2-develop.4 → 19.1.2-develop.5

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 (161) hide show
  1. package/data-binding.directive.d.ts +12 -3
  2. package/directives.d.ts +42 -2
  3. package/editing/edit-dialog-template.directive.d.ts +15 -2
  4. package/editing/recurrence/recurrence-editor.component.d.ts +29 -10
  5. package/editing/timezone-editor.component.d.ts +13 -3
  6. package/editing-directives/base-edit.service.d.ts +8 -11
  7. package/editing-directives/edit-service.interface.d.ts +22 -24
  8. package/editing-directives/reactive-editing.directive.d.ts +15 -2
  9. package/esm2022/data-binding.directive.mjs +12 -3
  10. package/esm2022/directives.mjs +42 -2
  11. package/esm2022/editing/edit-dialog-template.directive.mjs +15 -2
  12. package/esm2022/editing/recurrence/recurrence-editor.component.mjs +29 -10
  13. package/esm2022/editing/timezone-editor.component.mjs +13 -3
  14. package/esm2022/editing-directives/base-edit.service.mjs +8 -11
  15. package/esm2022/editing-directives/reactive-editing.directive.mjs +15 -2
  16. package/esm2022/events/add-event.mjs +3 -3
  17. package/esm2022/events/cancel-event.mjs +2 -2
  18. package/esm2022/events/create-event.mjs +6 -6
  19. package/esm2022/events/date-change-event.mjs +4 -4
  20. package/esm2022/events/drag-end-event.mjs +8 -8
  21. package/esm2022/events/drag-event.mjs +8 -8
  22. package/esm2022/events/drag-start-event.mjs +4 -4
  23. package/esm2022/events/edit-event.mjs +4 -4
  24. package/esm2022/events/event-click-event.mjs +5 -5
  25. package/esm2022/events/event-keydown-event.mjs +4 -4
  26. package/esm2022/events/navigate-event.mjs +3 -3
  27. package/esm2022/events/remove-event.mjs +4 -4
  28. package/esm2022/events/resize-end-event.mjs +6 -6
  29. package/esm2022/events/resize-event.mjs +8 -8
  30. package/esm2022/events/resize-start-event.mjs +4 -4
  31. package/esm2022/events/save-event.mjs +3 -3
  32. package/esm2022/events/slot-click-event.mjs +7 -7
  33. package/esm2022/events/slot-drag-end-event.mjs +1 -1
  34. package/esm2022/events/slot-drag-event.mjs +7 -7
  35. package/esm2022/events/slot-drag-start-event.mjs +8 -7
  36. package/esm2022/localization/custom-messages.component.mjs +14 -1
  37. package/esm2022/localization/messages.mjs +98 -98
  38. package/esm2022/package-metadata.mjs +2 -2
  39. package/esm2022/pdf/pdf-command.directive.mjs +11 -11
  40. package/esm2022/pdf/pdf-export-event.mjs +1 -1
  41. package/esm2022/pdf/pdf.component.mjs +19 -8
  42. package/esm2022/pdf/pdf.module.mjs +7 -8
  43. package/esm2022/scheduler.component.mjs +62 -62
  44. package/esm2022/scheduler.module.mjs +6 -7
  45. package/esm2022/toolbar/navigation.component.mjs +16 -7
  46. package/esm2022/toolbar/toolbar-template.directive.mjs +18 -10
  47. package/esm2022/toolbar/toolbar.service.mjs +3 -4
  48. package/esm2022/toolbar/view-selector.component.mjs +14 -8
  49. package/esm2022/types/crud-operation.enum.mjs +3 -3
  50. package/esm2022/types/edit-mode.enum.mjs +2 -2
  51. package/esm2022/types/scheduler-view.mjs +1 -1
  52. package/esm2022/views/agenda/agenda-view.component.mjs +15 -11
  53. package/esm2022/views/common/slot-selectable.directive.mjs +16 -4
  54. package/esm2022/views/month/month-view.component.mjs +17 -16
  55. package/esm2022/views/month/multi-week-view.component.mjs +20 -18
  56. package/esm2022/views/multi-day/day-view.component.mjs +12 -7
  57. package/esm2022/views/multi-day/multi-day-view.component.mjs +16 -11
  58. package/esm2022/views/multi-day/week-view.component.mjs +14 -11
  59. package/esm2022/views/multi-day/work-week-view.component.mjs +8 -1
  60. package/esm2022/views/scheduler-view.directive.mjs +13 -3
  61. package/esm2022/views/templates/agenda-date-template.directive.mjs +13 -3
  62. package/esm2022/views/templates/agenda-time-template.directive.mjs +13 -3
  63. package/esm2022/views/templates/all-day-event-template.directive.mjs +13 -3
  64. package/esm2022/views/templates/all-day-slot-template.directive.mjs +13 -3
  65. package/esm2022/views/templates/date-header-template.directive.mjs +14 -4
  66. package/esm2022/views/templates/event-template.directive.mjs +13 -3
  67. package/esm2022/views/templates/group-header-template.directive.mjs +14 -4
  68. package/esm2022/views/templates/major-time-header-template.directive.mjs +13 -3
  69. package/esm2022/views/templates/minor-time-header-template.directive.mjs +13 -3
  70. package/esm2022/views/templates/month-day-slot-template.directive.mjs +13 -3
  71. package/esm2022/views/templates/multi-week-day-slot-template.directive.mjs +12 -3
  72. package/esm2022/views/templates/time-slot-template.directive.mjs +14 -4
  73. package/esm2022/views/timeline/timeline-month-view.component.mjs +16 -11
  74. package/esm2022/views/timeline/timeline-view.component.mjs +16 -11
  75. package/esm2022/views/timeline/timeline-week-view.component.mjs +18 -14
  76. package/esm2022/views/view-context.service.mjs +6 -6
  77. package/esm2022/views/view-state.service.mjs +9 -9
  78. package/esm2022/views/year/year-view.component.mjs +12 -7
  79. package/events/add-event.d.ts +3 -3
  80. package/events/cancel-event.d.ts +2 -2
  81. package/events/create-event.d.ts +6 -6
  82. package/events/date-change-event.d.ts +4 -4
  83. package/events/drag-end-event.d.ts +8 -8
  84. package/events/drag-event.d.ts +8 -8
  85. package/events/drag-start-event.d.ts +4 -4
  86. package/events/edit-event.d.ts +4 -4
  87. package/events/event-click-event.d.ts +5 -5
  88. package/events/event-keydown-event.d.ts +4 -4
  89. package/events/navigate-event.d.ts +3 -3
  90. package/events/remove-event.d.ts +4 -4
  91. package/events/resize-end-event.d.ts +6 -6
  92. package/events/resize-event.d.ts +8 -8
  93. package/events/resize-start-event.d.ts +4 -4
  94. package/events/save-event.d.ts +3 -3
  95. package/events/slot-click-event.d.ts +7 -7
  96. package/events/slot-drag-end-event.d.ts +1 -1
  97. package/events/slot-drag-event.d.ts +7 -7
  98. package/events/slot-drag-start-event.d.ts +8 -7
  99. package/fesm2022/progress-kendo-angular-scheduler.mjs +876 -543
  100. package/localization/custom-messages.component.d.ts +14 -1
  101. package/localization/messages.d.ts +98 -98
  102. package/navigation/focus-position.interface.d.ts +2 -3
  103. package/package.json +15 -15
  104. package/pdf/pdf-command.directive.d.ts +11 -11
  105. package/pdf/pdf-export-event.d.ts +1 -1
  106. package/pdf/pdf.component.d.ts +19 -8
  107. package/pdf/pdf.module.d.ts +7 -8
  108. package/scheduler.component.d.ts +62 -62
  109. package/scheduler.module.d.ts +6 -7
  110. package/schematics/ngAdd/index.js +3 -3
  111. package/toolbar/navigation.component.d.ts +16 -7
  112. package/toolbar/toolbar-template.directive.d.ts +18 -10
  113. package/toolbar/toolbar.service.d.ts +3 -4
  114. package/toolbar/view-selector.component.d.ts +14 -8
  115. package/types/actions.d.ts +51 -45
  116. package/types/create-form-group-args.interface.d.ts +1 -1
  117. package/types/crud-operation.enum.d.ts +3 -3
  118. package/types/current-time-settings.interface.d.ts +10 -8
  119. package/types/date-range.interface.d.ts +7 -11
  120. package/types/datepicker-options.interface.d.ts +33 -38
  121. package/types/edit-event-args.interface.d.ts +3 -4
  122. package/types/edit-mode.enum.d.ts +2 -2
  123. package/types/editable-settings.interface.d.ts +6 -6
  124. package/types/event-style-args.interface.d.ts +4 -4
  125. package/types/group.interface.d.ts +2 -2
  126. package/types/numeric-options.interface.d.ts +20 -16
  127. package/types/ongoing-events-settings.interface.d.ts +8 -6
  128. package/types/resource.interface.d.ts +8 -8
  129. package/types/scheduler-event.d.ts +13 -15
  130. package/types/scheduler-model-fields.interface.d.ts +34 -23
  131. package/types/scheduler-slot.interface.d.ts +7 -7
  132. package/types/scheduler-view.d.ts +3 -5
  133. package/types/slot-class-args.interface.d.ts +6 -6
  134. package/types/view-item.interface.d.ts +1 -1
  135. package/views/agenda/agenda-view.component.d.ts +15 -11
  136. package/views/common/slot-selectable.directive.d.ts +16 -4
  137. package/views/month/month-view.component.d.ts +17 -16
  138. package/views/month/multi-week-view.component.d.ts +20 -18
  139. package/views/multi-day/day-view.component.d.ts +12 -7
  140. package/views/multi-day/multi-day-view.component.d.ts +16 -11
  141. package/views/multi-day/week-view.component.d.ts +14 -11
  142. package/views/multi-day/work-week-view.component.d.ts +8 -1
  143. package/views/scheduler-view.directive.d.ts +13 -3
  144. package/views/templates/agenda-date-template.directive.d.ts +13 -3
  145. package/views/templates/agenda-time-template.directive.d.ts +13 -3
  146. package/views/templates/all-day-event-template.directive.d.ts +13 -3
  147. package/views/templates/all-day-slot-template.directive.d.ts +13 -3
  148. package/views/templates/date-header-template.directive.d.ts +14 -4
  149. package/views/templates/event-template.directive.d.ts +13 -3
  150. package/views/templates/group-header-template.directive.d.ts +14 -4
  151. package/views/templates/major-time-header-template.directive.d.ts +13 -3
  152. package/views/templates/minor-time-header-template.directive.d.ts +13 -3
  153. package/views/templates/month-day-slot-template.directive.d.ts +13 -3
  154. package/views/templates/multi-week-day-slot-template.directive.d.ts +12 -3
  155. package/views/templates/time-slot-template.directive.d.ts +14 -4
  156. package/views/timeline/timeline-month-view.component.d.ts +16 -11
  157. package/views/timeline/timeline-view.component.d.ts +16 -11
  158. package/views/timeline/timeline-week-view.component.d.ts +18 -14
  159. package/views/view-context.service.d.ts +6 -6
  160. package/views/view-state.service.d.ts +9 -9
  161. package/views/year/year-view.component.d.ts +12 -7
@@ -6,7 +6,20 @@ import { LocalizationService } from '@progress/kendo-angular-l10n';
6
6
  import { Messages } from './messages';
7
7
  import * as i0 from "@angular/core";
8
8
  /**
9
- * Custom component messages override default component messages.
9
+ * Represents the custom messages component of the Scheduler.
10
+ *
11
+ * Use this component to override default messages for the Scheduler.
12
+ *
13
+ * @example
14
+ * ```html
15
+ * <kendo-scheduler>
16
+ * <kendo-scheduler-messages
17
+ * allDay="Custom All Day"
18
+ * today="Custom Today"
19
+ * weekViewTitle="Custom Week View Title">
20
+ * </kendo-scheduler-messages>
21
+ * </kendo-scheduler>
22
+ * ```
10
23
  */
11
24
  export declare class SchedulerCustomMessagesComponent extends Messages {
12
25
  protected service: LocalizationService;
@@ -9,395 +9,395 @@ import * as i0 from "@angular/core";
9
9
  */
10
10
  export declare class Messages extends ComponentMessages {
11
11
  /**
12
- * The **All events** text that is displayed in the **Timeline** views when no vertical grouping is applied.
12
+ * Sets the text for **All events** in **Timeline** views when no vertical grouping is applied.
13
13
  */
14
14
  allEvents: string;
15
15
  /**
16
- * The **All day** text that is displayed in the *Day** and **Week** views.
16
+ * Sets the text for **All day** in **Day** and **Week** views.
17
17
  */
18
18
  allDay: string;
19
19
  /**
20
- * The date-header text that is displayed in the **Agenda** view.
20
+ * Sets the date-header text in the **Agenda** view.
21
21
  */
22
22
  dateHeader: string;
23
23
  /**
24
- * The time-header text that is displayed in the **Agenda** view.
24
+ * Sets the time-header text in the **Agenda** view.
25
25
  */
26
26
  timeHeader: string;
27
27
  /**
28
- * The event-header text that is displayed in the **Agenda** view.
28
+ * Sets the event-header text in the **Agenda** view.
29
29
  */
30
30
  eventHeader: string;
31
31
  /**
32
- * The title of the **Delete** icon.
32
+ * Sets the title for the **Delete** icon.
33
33
  */
34
34
  deleteTitle: string;
35
35
  /**
36
- * The title of the **Next** navigation button.
36
+ * Sets the title for the **Next** navigation button.
37
37
  */
38
38
  nextTitle: string;
39
39
  /**
40
- * The title of the **Previous** navigation button.
40
+ * Sets the title for the **Previous** navigation button.
41
41
  */
42
42
  previousTitle: string;
43
43
  /**
44
- * The text of the **Today** navigation button.
44
+ * Sets the text for the **Today** navigation button.
45
45
  */
46
46
  today: string;
47
47
  /**
48
- * The text of today's date in the header of the Calendar.
48
+ * Sets the text for today's date in the header of the Calendar.
49
49
  */
50
50
  calendarToday: string;
51
51
  /**
52
- * The text of the **Show full day** button that is displayed in the footer of the **Day**, **Week**, and **Timeline** views.
52
+ * Sets the text for the **Show full day** button in the footer of the **Day**, **Week**, and **Timeline** views.
53
53
  */
54
54
  showFullDay: string;
55
55
  /**
56
- * The text of the **Show work day** button that is displayed in the footer of the **Day**, **Week**, and **Timeline** views.
56
+ * Sets the text for the **Show work day** button in the footer of the **Day**, **Week**, and **Timeline** views.
57
57
  */
58
58
  showWorkDay: string;
59
59
  /**
60
- * The title of the **Day** view.
60
+ * Sets the title for the **Day** view.
61
61
  */
62
62
  dayViewTitle: string;
63
63
  /**
64
- * The title of the **Multi-Day** view.
64
+ * Sets the title for the **Multi-Day** view.
65
65
  */
66
66
  multiDayViewTitle: string;
67
67
  /**
68
- * The title of the **Week** view.
68
+ * Sets the title for the **Week** view.
69
69
  */
70
70
  weekViewTitle: string;
71
71
  /**
72
- * The title of the **Work Week** view.
72
+ * Sets the title for the **Work Week** view.
73
73
  */
74
74
  workWeekViewTitle: string;
75
75
  /**
76
- * The title of the **Month** view.
76
+ * Sets the title for the **Month** view.
77
77
  */
78
78
  monthViewTitle: string;
79
79
  /**
80
- * The title of the **Multi-Week** view.
80
+ * Sets the title for the **Multi-Week** view.
81
81
  */
82
82
  multiWeekViewTitle: string;
83
83
  /**
84
- * The title of the **Timeline** view.
84
+ * Sets the title for the **Timeline** view.
85
85
  */
86
86
  timelineViewTitle: string;
87
87
  /**
88
- * The title of the **Week** timeline view.
88
+ * Sets the title for the **Timeline Week** view.
89
89
  */
90
90
  timelineWeekViewTitle: string;
91
91
  /**
92
- * The title of the **Month** timeline view.
92
+ * Sets the title for the **Timeline Month** view.
93
93
  */
94
94
  timelineMonthViewTitle: string;
95
95
  /**
96
- * The title of the **Agenda** view.
96
+ * Sets the title for the **Agenda** view.
97
97
  */
98
98
  agendaViewTitle: string;
99
99
  /**
100
- * The title of the **Year** view.
100
+ * Sets the title for the **Year** view.
101
101
  */
102
102
  yearViewTitle: string;
103
103
  /**
104
- * The message displayed in **Year** view for any date that has no events.
104
+ * Sets the message shown in **Year** view for dates with no events.
105
105
  */
106
106
  yearViewNoEvents: string;
107
107
  /**
108
- * The text of the **Cancel** button displayed in the Scheduler dialogs.
108
+ * Sets the text for the **Cancel** button in Scheduler dialogs.
109
109
  */
110
110
  cancel: string;
111
111
  /**
112
- * The text of the **Save** button displayed in the Scheduler dialogs.
112
+ * Sets the text for the **Save** button in Scheduler dialogs.
113
113
  */
114
114
  save: string;
115
115
  /**
116
- * The text similar to 'Title' displayed in the Scheduler event editor.
116
+ * Sets the label for the **Title** field in the event editor.
117
117
  */
118
118
  editorEventTitle: string;
119
119
  /**
120
- * The text similar to 'Start' displayed in the Scheduler event editor.
120
+ * Sets the label for the **Start** field in the event editor.
121
121
  */
122
122
  editorEventStart: string;
123
123
  /**
124
- * The text similar to 'Start Time Zone' displayed in the Scheduler event editor.
124
+ * Sets the label for the **Start Time Zone** field in the event editor.
125
125
  */
126
126
  editorEventStartTimeZone: string;
127
127
  /**
128
- * The text similar to 'End' displayed in the Scheduler event editor.
128
+ * Sets the label for the **End** field in the event editor.
129
129
  */
130
130
  editorEventEnd: string;
131
131
  /**
132
- * The text similar to 'End Time Zone' displayed in the Scheduler event editor.
132
+ * Sets the label for the **End Time Zone** field in the event editor.
133
133
  */
134
134
  editorEventEndTimeZone: string;
135
135
  /**
136
- * The text similar to 'All Day Event' displayed in the Scheduler event editor.
136
+ * Sets the label for the **All Day Event** field in the event editor.
137
137
  */
138
138
  editorEventAllDay: string;
139
139
  /**
140
- * The text similar to 'Description' displayed in the Scheduler event editor.
140
+ * Sets the label for the **Description** field in the event editor.
141
141
  */
142
142
  editorEventDescription: string;
143
143
  /**
144
- * The text similar to 'Use separate Start and End Time Zones' displayed in the Scheduler event editor.
144
+ * Sets the label for the **Use separate Start and End Time Zones** option in the event editor.
145
145
  */
146
146
  editorEventSeparateTimeZones: string;
147
147
  /**
148
- * The text similar to 'Time Zone' displayed in the Scheduler event editor.
148
+ * Sets the label for the **Time Zone** field in the event editor.
149
149
  */
150
150
  editorEventTimeZone: string;
151
151
  /**
152
- * The **Today** button text in the popup of the DateTimePickers and DatePickers in the Scheduler event editor.
152
+ * Sets the **Today** button text in the popup of the DateTimePickers and DatePickers in the event editor.
153
153
  */
154
154
  editorDateInputsToday: string;
155
155
  /**
156
- * The title of the **Toggle** button in the popup of the DateTimePickers and DatePickers in the Scheduler event editor.
156
+ * Sets the title for the **Toggle** button in the popup of the DateTimePickers and DatePickers in the event editor.
157
157
  */
158
158
  editorDateInputsToggle: string;
159
159
  /**
160
- * The title of the **Parent View** button in the popup of the DateTimePickers and DatePickers in the Scheduler event editor.
160
+ * Sets the title for the **Parent View** button in the popup of the DateTimePickers and DatePickers in the event editor.
161
161
  */
162
162
  editorDateInputsParentViewButton: string;
163
163
  /**
164
- * The text of the **Now** button in the popup footer of the DateTimePickers and DatePickers in the Scheduler event editor.
164
+ * Sets the text for the **Now** button in the popup footer of the DateTimePickers and DatePickers in the event editor.
165
165
  */
166
166
  editorDateInputsNow: string;
167
167
  /**
168
- * The label of the **Now** button in the popup footer of the DateTimePickers and DatePickers in the Scheduler event editor.
168
+ * Sets the label for the **Now** button in the popup footer of the DateTimePickers and DatePickers in the event editor.
169
169
  */
170
170
  editorDateInputsNowLabel: string;
171
171
  /**
172
- * The text of the **Accept** button in the popup footer of the DateTimePickers and DatePickers in the Scheduler event editor.
172
+ * Sets the text for the **Accept** button in the popup footer of the DateTimePickers and DatePickers in the event editor.
173
173
  */
174
174
  editorDateInputsAccept: string;
175
175
  /**
176
- * The label of the **Accept** button in the popup footer of the DateTimePickers and DatePickers in the Scheduler event editor.
176
+ * Sets the label for the **Accept** button in the popup footer of the DateTimePickers and DatePickers in the event editor.
177
177
  */
178
178
  editorDateInputsAcceptLabel: string;
179
179
  /**
180
- * The text of the **Cancel** button in the popup footer of the DateTimePickers and DatePickers in the Scheduler event editor.
180
+ * Sets the text for the **Cancel** button in the popup footer of the DateTimePickers and DatePickers in the event editor.
181
181
  */
182
182
  editorDateInputsCancel: string;
183
183
  /**
184
- * The label of the **Cancel** button in the popup footer of the DateTimePickers and DatePickers in the Scheduler event editor.
184
+ * Sets the label for the **Cancel** button in the popup footer of the DateTimePickers and DatePickers in the event editor.
185
185
  */
186
186
  editorDateInputsCancelLabel: string;
187
187
  /**
188
- * The text of the **Date** tab in the popup header of the DateTimePickers and DatePickers in the Scheduler event editor.
188
+ * Sets the text for the **Date** tab in the popup header of the DateTimePickers and DatePickers in the event editor.
189
189
  */
190
190
  editorDateInputsDateTab: string;
191
191
  /**
192
- * The label of the **Date** tab in the popup header of the DateTimePickers and DatePickers in the Scheduler event editor.
192
+ * Sets the label for the **Date** tab in the popup header of the DateTimePickers and DatePickers in the event editor.
193
193
  */
194
194
  editorDateInputsDateTabLabel: string;
195
195
  /**
196
- * The text of the **Time** tab in the popup header of the DateTimePickers and DatePickers in the Scheduler event editor.
196
+ * Sets the text for the **Time** tab in the popup header of the DateTimePickers and DatePickers in the event editor.
197
197
  */
198
198
  editorDateInputsTimeTab: string;
199
199
  /**
200
- * The label of the **Time** tab in the popup header of the DateTimePickers and DatePickers in the Scheduler event editor.
200
+ * Sets the label for the **Time** tab in the popup header of the DateTimePickers and DatePickers in the event editor.
201
201
  */
202
202
  editorDateInputsTimeTabLabel: string;
203
203
  /**
204
- * The **Today** button text in the popup of the DatePickers in the Scheduler recurrence editor.
204
+ * Sets the **Today** button text in the popup of the DatePickers in the recurrence editor.
205
205
  */
206
206
  recurrenceEditorDateInputsToday: string;
207
207
  /**
208
- * The title of the **Toggle** button in the popup of the DatePickers in the Scheduler recurrence editor.
208
+ * Sets the title for the **Toggle** button in the popup of the DatePickers in the recurrence editor.
209
209
  */
210
210
  recurrenceEditorDateInputsToggle: string;
211
211
  /**
212
- * The title of the **Parent View** button in the popup of the DatePickers in the Scheduler recurrence editor.
212
+ * Sets the title for the **Parent View** button in the popup of the DatePickers in the recurrence editor.
213
213
  */
214
214
  recurrenceEditorDateInputsParentViewButton: string;
215
215
  /**
216
- * The title of the **Increment** button of the NumericTextBox in the Scheduler recurrence editor.
216
+ * Sets the title for the **Increment** button of the NumericTextBox in the recurrence editor.
217
217
  */
218
218
  recurrenceEditorNumericIncrement: string;
219
219
  /**
220
- * The title of the **Decrement** button of the NumericTextBox in the Scheduler recurrence editor.
220
+ * Sets the title for the **Decrement** button of the NumericTextBox in the recurrence editor.
221
221
  */
222
222
  recurrenceEditorNumericDecrement: string;
223
223
  /**
224
- * The text similar to 'Repeat' displayed in the Scheduler recurrence editor.
224
+ * Sets the label for the **Repeat** field in the recurrence editor.
225
225
  */
226
226
  recurrenceEditorRepeat: string;
227
227
  /**
228
- * The text similar to 'day(s)' displayed in the Scheduler recurrence editor.
228
+ * Sets the text for the **day(s)** label in the recurrence editor.
229
229
  */
230
230
  recurrenceEditorDailyInterval: string;
231
231
  /**
232
- * The text similar to 'Repeat every' displayed in the Scheduler recurrence editor.
232
+ * Sets the label for the **Repeat every** field in the recurrence editor (daily).
233
233
  */
234
234
  recurrenceEditorDailyRepeatEvery: string;
235
235
  /**
236
- * The text similar to 'week(s)' displayed in the Scheduler recurrence editor.
236
+ * Sets the text for the **week(s)** label in the recurrence editor.
237
237
  */
238
238
  recurrenceEditorWeeklyInterval: string;
239
239
  /**
240
- * The text similar to 'Repeat every' displayed in the Scheduler recurrence editor.
240
+ * Sets the label for the **Repeat every** field in the recurrence editor (weekly).
241
241
  */
242
242
  recurrenceEditorWeeklyRepeatEvery: string;
243
243
  /**
244
- * The text similar to 'Repeat on' displayed in the Scheduler recurrence editor.
244
+ * Sets the label for the **Repeat on** field in the recurrence editor (weekly).
245
245
  */
246
246
  recurrenceEditorWeeklyRepeatOn: string;
247
247
  /**
248
- * The text similar to 'Day' displayed in the Scheduler recurrence editor.
248
+ * Sets the label for the **Day** field in the recurrence editor (monthly).
249
249
  */
250
250
  recurrenceEditorMonthlyDay: string;
251
251
  /**
252
- * The text similar to 'month(s)' displayed in the Scheduler recurrence editor.
252
+ * Sets the text for the **month(s)** label in the recurrence editor.
253
253
  */
254
254
  recurrenceEditorMonthlyInterval: string;
255
255
  /**
256
- * The text similar to 'Repeat every' displayed in the Scheduler recurrence editor.
256
+ * Sets the label for the **Repeat every** field in the recurrence editor (monthly).
257
257
  */
258
258
  recurrenceEditorMonthlyRepeatEvery: string;
259
259
  /**
260
- * The text similar to 'Repeat on' displayed in the Scheduler recurrence editor.
260
+ * Sets the label for the **Repeat on** field in the recurrence editor (monthly).
261
261
  */
262
262
  recurrenceEditorMonthlyRepeatOn: string;
263
263
  /**
264
- * The text similar to 'of' displayed in the Scheduler recurrence editor.
264
+ * Sets the label for the **of** text in the recurrence editor (yearly).
265
265
  */
266
266
  recurrenceEditorYearlyOf: string;
267
267
  /**
268
- * The text similar to 'Repeat every' displayed in the Scheduler recurrence editor.
268
+ * Sets the label for the **Repeat every** field in the recurrence editor (yearly).
269
269
  */
270
270
  recurrenceEditorYearlyRepeatEvery: string;
271
271
  /**
272
- * The text similar to 'Repeat on' displayed in the Scheduler recurrence editor.
272
+ * Sets the label for the **Repeat on** field in the recurrence editor (yearly).
273
273
  */
274
274
  recurrenceEditorYearlyRepeatOn: string;
275
275
  /**
276
- * The text similar to 'year(s)' displayed in the Scheduler recurrence editor.
276
+ * Sets the text for the **year(s)** label in the recurrence editor.
277
277
  */
278
278
  recurrenceEditorYearlyInterval: string;
279
279
  /**
280
- * The text similar to 'Daily' displayed in the Scheduler recurrence editor.
280
+ * Sets the label for the **Daily** frequency in the recurrence editor.
281
281
  */
282
282
  recurrenceEditorFrequenciesDaily: string;
283
283
  /**
284
- * The text similar to 'Monthly' displayed in the Scheduler recurrence editor.
284
+ * Sets the label for the **Monthly** frequency in the recurrence editor.
285
285
  */
286
286
  recurrenceEditorFrequenciesMonthly: string;
287
287
  /**
288
- * The text similar to 'Never' displayed in the Scheduler recurrence editor.
288
+ * Sets the label for the **Never** frequency in the recurrence editor.
289
289
  */
290
290
  recurrenceEditorFrequenciesNever: string;
291
291
  /**
292
- * The text similar to 'Weekly' displayed in the Scheduler recurrence editor.
292
+ * Sets the label for the **Weekly** frequency in the recurrence editor.
293
293
  */
294
294
  recurrenceEditorFrequenciesWeekly: string;
295
295
  /**
296
- * The text similar to 'Yearly' displayed in the Scheduler recurrence editor.
296
+ * Sets the label for the **Yearly** frequency in the recurrence editor.
297
297
  */
298
298
  recurrenceEditorFrequenciesYearly: string;
299
299
  /**
300
- * The text similar to 'First' displayed in the Scheduler recurrence editor.
300
+ * Sets the label for the **First** offset position in the recurrence editor.
301
301
  */
302
302
  recurrenceEditorOffsetPositionsFirst: string;
303
303
  /**
304
- * The text similar to 'Second' displayed in the Scheduler recurrence editor.
304
+ * Sets the label for the **Second** offset position in the recurrence editor.
305
305
  */
306
306
  recurrenceEditorOffsetPositionsSecond: string;
307
307
  /**
308
- * The text similar to 'Third' displayed in the Scheduler recurrence editor.
308
+ * Sets the label for the **Third** offset position in the recurrence editor.
309
309
  */
310
310
  recurrenceEditorOffsetPositionsThird: string;
311
311
  /**
312
- * The text similar to 'Fourth' displayed in the Scheduler recurrence editor.
312
+ * Sets the label for the **Fourth** offset position in the recurrence editor.
313
313
  */
314
314
  recurrenceEditorOffsetPositionsFourth: string;
315
315
  /**
316
- * The text similar to 'Last' displayed in the Scheduler recurrence editor.
316
+ * Sets the label for the **Last** offset position in the recurrence editor.
317
317
  */
318
318
  recurrenceEditorOffsetPositionsLast: string;
319
319
  /**
320
- * The text similar to 'Day' displayed in the repeat by section of the monthly recurrence pattern.
320
+ * Sets the label for the **Day** option in the repeat by section of the monthly recurrence pattern.
321
321
  */
322
322
  recurrenceEditorWeekdaysDay: string;
323
323
  /**
324
- * The text similar to 'Weekday' displayed in the repeat by section of the monthly recurrence pattern.
324
+ * Sets the label for the **Weekday** option in the repeat by section of the monthly recurrence pattern.
325
325
  */
326
326
  recurrenceEditorWeekdaysWeekday: string;
327
327
  /**
328
- * The text similar to 'Weekend Day' displayed in the repeat by section of the monthly recurrence pattern.
328
+ * Sets the label for the **Weekend Day** option in the repeat by section of the monthly recurrence pattern.
329
329
  */
330
330
  recurrenceEditorWeekdaysWeekendday: string;
331
331
  /**
332
- * The text similar to 'After' displayed in the Scheduler recurrence editor.
332
+ * Sets the label for the **After** option in the recurrence editor.
333
333
  */
334
334
  recurrenceEditorEndAfter: string;
335
335
  /**
336
- * The text similar to 'occurrence(s)' displayed in the Scheduler recurrence editor.
336
+ * Sets the text for the **occurrence(s)** label in the recurrence editor.
337
337
  */
338
338
  recurrenceEditorEndOccurrence: string;
339
339
  /**
340
- * The text similar to 'End' displayed in the Scheduler recurrence editor.
340
+ * Sets the label for the **End** field in the recurrence editor.
341
341
  */
342
342
  recurrenceEditorEndLabel: string;
343
343
  /**
344
- * The text similar to 'Never' displayed in the Scheduler recurrence editor.
344
+ * Sets the label for the **Never** option in the recurrence editor.
345
345
  */
346
346
  recurrenceEditorEndNever: string;
347
347
  /**
348
- * The text similar to 'On' displayed in the Scheduler recurrence editor.
348
+ * Sets the label for the **On** option in the recurrence editor.
349
349
  */
350
350
  recurrenceEditorEndOn: string;
351
351
  /**
352
- * The text similar to **Event** displayed as title of the Scheduler event editor.
352
+ * Sets the label for the **Event** title in the event editor dialog.
353
353
  */
354
354
  editorTitle: string;
355
355
  /**
356
- * The text of the **Delete** button displayed in the Scheduler remove confirmation dialog.
356
+ * Sets the text for the **Delete** button in the remove confirmation dialog.
357
357
  */
358
358
  destroy: string;
359
359
  /**
360
- * The text similar to **Are you sure you want to delete this event?** displayed in Scheduler remove confirmation dialog.
360
+ * Sets the confirmation message for deleting an event.
361
361
  */
362
362
  deleteConfirmation: string;
363
363
  /**
364
- * The text similar to **Do you want to edit only this event occurrence or the whole series?** displayed in the Scheduler recurring confirmation dialog.
364
+ * Sets the confirmation message for editing a recurring event.
365
365
  */
366
366
  editRecurringConfirmation: string;
367
367
  /**
368
- * The text of the **Edit current occurrence** button displayed in the Scheduler recurring confirmation dialog.
368
+ * Sets the text for the **Edit current occurrence** button in the recurring confirmation dialog.
369
369
  */
370
370
  editOccurrence: string;
371
371
  /**
372
- * The text of the **Edit the series** button displayed in the Scheduler recurring confirmation dialog.
372
+ * Sets the text for the **Edit the series** button in the recurring confirmation dialog.
373
373
  */
374
374
  editSeries: string;
375
375
  /**
376
- * The text similar to **Do you want to delete only this event occurrence or the whole series?** displayed in the Scheduler recurring confirmation dialog.
376
+ * Sets the confirmation message for deleting a recurring event.
377
377
  */
378
378
  deleteRecurringConfirmation: string;
379
379
  /**
380
- * The text of the **Delete current occurrence** button displayed in the Scheduler recurring confirmation dialog.
380
+ * Sets the text for the **Delete current occurrence** button in the recurring confirmation dialog.
381
381
  */
382
382
  deleteOccurrence: string;
383
383
  /**
384
- * The text similar of the **Delete the series** button displayed in the Scheduler recurring confirmation dialog.
384
+ * Sets the text for the **Delete the series** button in the recurring confirmation dialog.
385
385
  */
386
386
  deleteSeries: string;
387
387
  /**
388
- * The title of the remove confirmation dialog, similar to **Delete event**.
388
+ * Sets the title for the remove confirmation dialog.
389
389
  */
390
390
  deleteDialogTitle: string;
391
391
  /**
392
- * The title of the recurring remove confirmation dialog, similar to **Delete Recurring Item**.
392
+ * Sets the title for the recurring remove confirmation dialog.
393
393
  */
394
394
  deleteRecurringDialogTitle: string;
395
395
  /**
396
- * The title of the recurring edit confirmation dialog, similar to **Edit Recurring Item**.
396
+ * Sets the title for the recurring edit confirmation dialog.
397
397
  */
398
398
  editRecurringDialogTitle: string;
399
399
  /**
400
- * The value of the aria-label attribute of the `<select>` element used for switching the Scheduler views.
400
+ * Sets the value of the aria-label attribute for the `select` element used to switch Scheduler views.
401
401
  */
402
402
  selectView: string;
403
403
  static ɵfac: i0.ɵɵFactoryDeclaration<Messages, never>;
@@ -7,12 +7,11 @@
7
7
  */
8
8
  export interface FocusPosition {
9
9
  /**
10
- * The offset of the focused event in relation to the current event.
11
- * For example, `1` focuses the next event and `-1` focuses the previous one.
10
+ * Sets the offset of the focused event in relation to the current event. For example, `1` focuses the next event and `-1` focuses the previous one.
12
11
  */
13
12
  offset?: number;
14
13
  /**
15
- * A flag that indicates whether the focus will stop at the first and the last event instead of wrapping around.
14
+ * Specifies if the focus stops at the first and last event instead of wrapping around.
16
15
  */
17
16
  nowrap?: boolean;
18
17
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-scheduler",
3
- "version": "19.1.2-develop.4",
3
+ "version": "19.1.2-develop.5",
4
4
  "description": "Kendo UI Scheduler Angular - Outlook or Google-style angular scheduler calendar. Full-featured and customizable embedded scheduling from the creator developers trust for professional UI components.",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "author": "Progress",
@@ -19,7 +19,7 @@
19
19
  "package": {
20
20
  "productName": "Kendo UI for Angular",
21
21
  "productCode": "KENDOUIANGULAR",
22
- "publishDate": 1750157267,
22
+ "publishDate": 1750431181,
23
23
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
24
24
  }
25
25
  },
@@ -32,23 +32,23 @@
32
32
  "@progress/kendo-data-query": "^1.0.0",
33
33
  "@progress/kendo-drawing": "^1.21.0",
34
34
  "@progress/kendo-licensing": "^1.5.0",
35
- "@progress/kendo-angular-tooltip": "19.1.2-develop.4",
36
- "@progress/kendo-angular-buttons": "19.1.2-develop.4",
37
- "@progress/kendo-angular-common": "19.1.2-develop.4",
38
- "@progress/kendo-angular-dateinputs": "19.1.2-develop.4",
39
- "@progress/kendo-angular-dialog": "19.1.2-develop.4",
40
- "@progress/kendo-angular-dropdowns": "19.1.2-develop.4",
41
- "@progress/kendo-angular-icons": "19.1.2-develop.4",
42
- "@progress/kendo-angular-inputs": "19.1.2-develop.4",
43
- "@progress/kendo-angular-intl": "19.1.2-develop.4",
44
- "@progress/kendo-angular-l10n": "19.1.2-develop.4",
45
- "@progress/kendo-angular-label": "19.1.2-develop.4",
46
- "@progress/kendo-angular-popup": "19.1.2-develop.4",
35
+ "@progress/kendo-angular-tooltip": "19.1.2-develop.5",
36
+ "@progress/kendo-angular-buttons": "19.1.2-develop.5",
37
+ "@progress/kendo-angular-common": "19.1.2-develop.5",
38
+ "@progress/kendo-angular-dateinputs": "19.1.2-develop.5",
39
+ "@progress/kendo-angular-dialog": "19.1.2-develop.5",
40
+ "@progress/kendo-angular-dropdowns": "19.1.2-develop.5",
41
+ "@progress/kendo-angular-icons": "19.1.2-develop.5",
42
+ "@progress/kendo-angular-inputs": "19.1.2-develop.5",
43
+ "@progress/kendo-angular-intl": "19.1.2-develop.5",
44
+ "@progress/kendo-angular-l10n": "19.1.2-develop.5",
45
+ "@progress/kendo-angular-label": "19.1.2-develop.5",
46
+ "@progress/kendo-angular-popup": "19.1.2-develop.5",
47
47
  "rxjs": "^6.5.3 || ^7.0.0"
48
48
  },
49
49
  "dependencies": {
50
50
  "tslib": "^2.3.1",
51
- "@progress/kendo-angular-schematics": "19.1.2-develop.4",
51
+ "@progress/kendo-angular-schematics": "19.1.2-develop.5",
52
52
  "@progress/kendo-date-math": "^1.3.2",
53
53
  "@progress/kendo-draggable": "^3.0.2",
54
54
  "@progress/kendo-file-saver": "^1.0.7",
@@ -8,20 +8,20 @@ import { LocalizationService } from '@progress/kendo-angular-l10n';
8
8
  import { PDFService } from './pdf.service';
9
9
  import * as i0 from "@angular/core";
10
10
  /**
11
- * Represents the `export-to-PDF` command of the Scheduler.
12
- * You can apply this directive to any `button` element inside a
13
- * [`ToolbarTemplate`]({% slug toolbar_scheduler %}).
14
- * When the user clicks a button that is associated with the directive, the
15
- * [`pdfExport`]({% slug api_scheduler_schedulercomponent %}#toc-pdfexport) event
16
- * fires ([see example]({% slug pdfexport_scheduler %})).
11
+ * Represents the `export-to-PDF` command for the Scheduler.
17
12
  *
13
+ * You can apply this directive to any `button` element inside a [`ToolbarTemplate`](slug:toolbar_scheduler).
14
+ * When a user clicks a button associated with this directive, the [`pdfExport`](slug:api_scheduler_schedulercomponent#toc-pdfexport) event fires
15
+ * ([see example](slug:pdfexport_scheduler)).
16
+ *
17
+ * @example
18
18
  * ```html
19
19
  * <kendo-scheduler>
20
- * <ng-template kendoSchedulerToolbarTemplate>
21
- * <button kendoSchedulerPDFCommand>Export PDF</button>
22
- * </ng-template>
23
- * <kendo-scheduler-pdf fileName="Scheduler.pdf">
24
- * </kendo-scheduler-pdf>
20
+ * <ng-template kendoSchedulerToolbarTemplate>
21
+ * <button kendoSchedulerPDFCommand>Export to PDF</button>
22
+ * </ng-template>
23
+ * <kendo-scheduler-pdf fileName="Scheduler.pdf">
24
+ * </kendo-scheduler-pdf>
25
25
  * </kendo-scheduler>
26
26
  * ```
27
27
  */
@@ -4,7 +4,7 @@
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { PreventableEvent } from '../events/preventable-event';
6
6
  /**
7
- * The arguments for the `pdfExport` event.
7
+ * Provides the arguments for the `pdfExport` event.
8
8
  */
9
9
  export declare class PDFExportEvent extends PreventableEvent {
10
10
  }