@progress/kendo-angular-scheduler 19.1.2-develop.3 → 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
@@ -10,346 +10,346 @@ import * as i0 from "@angular/core";
10
10
  */
11
11
  export class Messages extends ComponentMessages {
12
12
  /**
13
- * The **All events** text that is displayed in the **Timeline** views when no vertical grouping is applied.
13
+ * Sets the text for **All events** in **Timeline** views when no vertical grouping is applied.
14
14
  */
15
15
  allEvents;
16
16
  /**
17
- * The **All day** text that is displayed in the *Day** and **Week** views.
17
+ * Sets the text for **All day** in **Day** and **Week** views.
18
18
  */
19
19
  allDay;
20
20
  /**
21
- * The date-header text that is displayed in the **Agenda** view.
21
+ * Sets the date-header text in the **Agenda** view.
22
22
  */
23
23
  dateHeader;
24
24
  /**
25
- * The time-header text that is displayed in the **Agenda** view.
25
+ * Sets the time-header text in the **Agenda** view.
26
26
  */
27
27
  timeHeader;
28
28
  /**
29
- * The event-header text that is displayed in the **Agenda** view.
29
+ * Sets the event-header text in the **Agenda** view.
30
30
  */
31
31
  eventHeader;
32
32
  /**
33
- * The title of the **Delete** icon.
33
+ * Sets the title for the **Delete** icon.
34
34
  */
35
35
  deleteTitle;
36
36
  /**
37
- * The title of the **Next** navigation button.
37
+ * Sets the title for the **Next** navigation button.
38
38
  */
39
39
  nextTitle;
40
40
  /**
41
- * The title of the **Previous** navigation button.
41
+ * Sets the title for the **Previous** navigation button.
42
42
  */
43
43
  previousTitle;
44
44
  /**
45
- * The text of the **Today** navigation button.
45
+ * Sets the text for the **Today** navigation button.
46
46
  */
47
47
  today;
48
48
  /**
49
- * The text of today's date in the header of the Calendar.
49
+ * Sets the text for today's date in the header of the Calendar.
50
50
  */
51
51
  calendarToday;
52
52
  /**
53
- * The text of the **Show full day** button that is displayed in the footer of the **Day**, **Week**, and **Timeline** views.
53
+ * Sets the text for the **Show full day** button in the footer of the **Day**, **Week**, and **Timeline** views.
54
54
  */
55
55
  showFullDay;
56
56
  /**
57
- * The text of the **Show work day** button that is displayed in the footer of the **Day**, **Week**, and **Timeline** views.
57
+ * Sets the text for the **Show work day** button in the footer of the **Day**, **Week**, and **Timeline** views.
58
58
  */
59
59
  showWorkDay;
60
60
  /**
61
- * The title of the **Day** view.
61
+ * Sets the title for the **Day** view.
62
62
  */
63
63
  dayViewTitle;
64
64
  /**
65
- * The title of the **Multi-Day** view.
65
+ * Sets the title for the **Multi-Day** view.
66
66
  */
67
67
  multiDayViewTitle;
68
68
  /**
69
- * The title of the **Week** view.
69
+ * Sets the title for the **Week** view.
70
70
  */
71
71
  weekViewTitle;
72
72
  /**
73
- * The title of the **Work Week** view.
73
+ * Sets the title for the **Work Week** view.
74
74
  */
75
75
  workWeekViewTitle;
76
76
  /**
77
- * The title of the **Month** view.
77
+ * Sets the title for the **Month** view.
78
78
  */
79
79
  monthViewTitle;
80
80
  /**
81
- * The title of the **Multi-Week** view.
81
+ * Sets the title for the **Multi-Week** view.
82
82
  */
83
83
  multiWeekViewTitle;
84
84
  /**
85
- * The title of the **Timeline** view.
85
+ * Sets the title for the **Timeline** view.
86
86
  */
87
87
  timelineViewTitle;
88
88
  /**
89
- * The title of the **Week** timeline view.
89
+ * Sets the title for the **Timeline Week** view.
90
90
  */
91
91
  timelineWeekViewTitle;
92
92
  /**
93
- * The title of the **Month** timeline view.
93
+ * Sets the title for the **Timeline Month** view.
94
94
  */
95
95
  timelineMonthViewTitle;
96
96
  /**
97
- * The title of the **Agenda** view.
97
+ * Sets the title for the **Agenda** view.
98
98
  */
99
99
  agendaViewTitle;
100
100
  /**
101
- * The title of the **Year** view.
101
+ * Sets the title for the **Year** view.
102
102
  */
103
103
  yearViewTitle;
104
104
  /**
105
- * The message displayed in **Year** view for any date that has no events.
105
+ * Sets the message shown in **Year** view for dates with no events.
106
106
  */
107
107
  yearViewNoEvents;
108
108
  /* ********************* */
109
109
  /* Editing Section Start */
110
110
  /* ********************* */
111
111
  /**
112
- * The text of the **Cancel** button displayed in the Scheduler dialogs.
112
+ * Sets the text for the **Cancel** button in Scheduler dialogs.
113
113
  */
114
114
  cancel;
115
115
  /**
116
- * The text of the **Save** button displayed in the Scheduler dialogs.
116
+ * Sets the text for the **Save** button in Scheduler dialogs.
117
117
  */
118
118
  save;
119
119
  /**
120
- * The text similar to 'Title' displayed in the Scheduler event editor.
120
+ * Sets the label for the **Title** field in the event editor.
121
121
  */
122
122
  editorEventTitle;
123
123
  /**
124
- * The text similar to 'Start' displayed in the Scheduler event editor.
124
+ * Sets the label for the **Start** field in the event editor.
125
125
  */
126
126
  editorEventStart;
127
127
  /**
128
- * The text similar to 'Start Time Zone' displayed in the Scheduler event editor.
128
+ * Sets the label for the **Start Time Zone** field in the event editor.
129
129
  */
130
130
  editorEventStartTimeZone;
131
131
  /**
132
- * The text similar to 'End' displayed in the Scheduler event editor.
132
+ * Sets the label for the **End** field in the event editor.
133
133
  */
134
134
  editorEventEnd;
135
135
  /**
136
- * The text similar to 'End Time Zone' displayed in the Scheduler event editor.
136
+ * Sets the label for the **End Time Zone** field in the event editor.
137
137
  */
138
138
  editorEventEndTimeZone;
139
139
  /**
140
- * The text similar to 'All Day Event' displayed in the Scheduler event editor.
140
+ * Sets the label for the **All Day Event** field in the event editor.
141
141
  */
142
142
  editorEventAllDay;
143
143
  /**
144
- * The text similar to 'Description' displayed in the Scheduler event editor.
144
+ * Sets the label for the **Description** field in the event editor.
145
145
  */
146
146
  editorEventDescription;
147
147
  /**
148
- * The text similar to 'Use separate Start and End Time Zones' displayed in the Scheduler event editor.
148
+ * Sets the label for the **Use separate Start and End Time Zones** option in the event editor.
149
149
  */
150
150
  editorEventSeparateTimeZones;
151
151
  /**
152
- * The text similar to 'Time Zone' displayed in the Scheduler event editor.
152
+ * Sets the label for the **Time Zone** field in the event editor.
153
153
  */
154
154
  editorEventTimeZone;
155
155
  /**
156
- * The **Today** button text in the popup of the DateTimePickers and DatePickers in the Scheduler event editor.
156
+ * Sets the **Today** button text in the popup of the DateTimePickers and DatePickers in the event editor.
157
157
  */
158
158
  editorDateInputsToday;
159
159
  /**
160
- * The title of the **Toggle** button in the popup of the DateTimePickers and DatePickers in the Scheduler event editor.
160
+ * Sets the title for the **Toggle** button in the popup of the DateTimePickers and DatePickers in the event editor.
161
161
  */
162
162
  editorDateInputsToggle;
163
163
  /**
164
- * The title of the **Parent View** button in the popup of the DateTimePickers and DatePickers in the Scheduler event editor.
164
+ * Sets the title for the **Parent View** button in the popup of the DateTimePickers and DatePickers in the event editor.
165
165
  */
166
166
  editorDateInputsParentViewButton;
167
167
  /**
168
- * The text of the **Now** button in the popup footer of the DateTimePickers and DatePickers in the Scheduler event editor.
168
+ * Sets the text for the **Now** button in the popup footer of the DateTimePickers and DatePickers in the event editor.
169
169
  */
170
170
  editorDateInputsNow;
171
171
  /**
172
- * The label of the **Now** button in the popup footer of the DateTimePickers and DatePickers in the Scheduler event editor.
172
+ * Sets the label for the **Now** button in the popup footer of the DateTimePickers and DatePickers in the event editor.
173
173
  */
174
174
  editorDateInputsNowLabel;
175
175
  /**
176
- * The text of the **Accept** button in the popup footer of the DateTimePickers and DatePickers in the Scheduler event editor.
176
+ * Sets the text for the **Accept** button in the popup footer of the DateTimePickers and DatePickers in the event editor.
177
177
  */
178
178
  editorDateInputsAccept;
179
179
  /**
180
- * The label of the **Accept** button in the popup footer of the DateTimePickers and DatePickers in the Scheduler event editor.
180
+ * Sets the label for the **Accept** button in the popup footer of the DateTimePickers and DatePickers in the event editor.
181
181
  */
182
182
  editorDateInputsAcceptLabel;
183
183
  /**
184
- * The text of the **Cancel** button in the popup footer of the DateTimePickers and DatePickers in the Scheduler event editor.
184
+ * Sets the text for the **Cancel** button in the popup footer of the DateTimePickers and DatePickers in the event editor.
185
185
  */
186
186
  editorDateInputsCancel;
187
187
  /**
188
- * The label of the **Cancel** button in the popup footer of the DateTimePickers and DatePickers in the Scheduler event editor.
188
+ * Sets the label for the **Cancel** button in the popup footer of the DateTimePickers and DatePickers in the event editor.
189
189
  */
190
190
  editorDateInputsCancelLabel;
191
191
  /**
192
- * The text of the **Date** tab in the popup header of the DateTimePickers and DatePickers in the Scheduler event editor.
192
+ * Sets the text for the **Date** tab in the popup header of the DateTimePickers and DatePickers in the event editor.
193
193
  */
194
194
  editorDateInputsDateTab;
195
195
  /**
196
- * The label of the **Date** tab in the popup header of the DateTimePickers and DatePickers in the Scheduler event editor.
196
+ * Sets the label for the **Date** tab in the popup header of the DateTimePickers and DatePickers in the event editor.
197
197
  */
198
198
  editorDateInputsDateTabLabel;
199
199
  /**
200
- * The text of the **Time** tab in the popup header of the DateTimePickers and DatePickers in the Scheduler event editor.
200
+ * Sets the text for the **Time** tab in the popup header of the DateTimePickers and DatePickers in the event editor.
201
201
  */
202
202
  editorDateInputsTimeTab;
203
203
  /**
204
- * The label of the **Time** tab in the popup header of the DateTimePickers and DatePickers in the Scheduler event editor.
204
+ * Sets the label for the **Time** tab in the popup header of the DateTimePickers and DatePickers in the event editor.
205
205
  */
206
206
  editorDateInputsTimeTabLabel;
207
207
  /**
208
- * The **Today** button text in the popup of the DatePickers in the Scheduler recurrence editor.
208
+ * Sets the **Today** button text in the popup of the DatePickers in the recurrence editor.
209
209
  */
210
210
  recurrenceEditorDateInputsToday;
211
211
  /**
212
- * The title of the **Toggle** button in the popup of the DatePickers in the Scheduler recurrence editor.
212
+ * Sets the title for the **Toggle** button in the popup of the DatePickers in the recurrence editor.
213
213
  */
214
214
  recurrenceEditorDateInputsToggle;
215
215
  /**
216
- * The title of the **Parent View** button in the popup of the DatePickers in the Scheduler recurrence editor.
216
+ * Sets the title for the **Parent View** button in the popup of the DatePickers in the recurrence editor.
217
217
  */
218
218
  recurrenceEditorDateInputsParentViewButton;
219
219
  /**
220
- * The title of the **Increment** button of the NumericTextBox in the Scheduler recurrence editor.
220
+ * Sets the title for the **Increment** button of the NumericTextBox in the recurrence editor.
221
221
  */
222
222
  recurrenceEditorNumericIncrement;
223
223
  /**
224
- * The title of the **Decrement** button of the NumericTextBox in the Scheduler recurrence editor.
224
+ * Sets the title for the **Decrement** button of the NumericTextBox in the recurrence editor.
225
225
  */
226
226
  recurrenceEditorNumericDecrement;
227
227
  /**
228
- * The text similar to 'Repeat' displayed in the Scheduler recurrence editor.
228
+ * Sets the label for the **Repeat** field in the recurrence editor.
229
229
  */
230
230
  recurrenceEditorRepeat;
231
231
  /**
232
- * The text similar to 'day(s)' displayed in the Scheduler recurrence editor.
232
+ * Sets the text for the **day(s)** label in the recurrence editor.
233
233
  */
234
234
  recurrenceEditorDailyInterval;
235
235
  /**
236
- * The text similar to 'Repeat every' displayed in the Scheduler recurrence editor.
236
+ * Sets the label for the **Repeat every** field in the recurrence editor (daily).
237
237
  */
238
238
  recurrenceEditorDailyRepeatEvery;
239
239
  /**
240
- * The text similar to 'week(s)' displayed in the Scheduler recurrence editor.
240
+ * Sets the text for the **week(s)** label in the recurrence editor.
241
241
  */
242
242
  recurrenceEditorWeeklyInterval;
243
243
  /**
244
- * The text similar to 'Repeat every' displayed in the Scheduler recurrence editor.
244
+ * Sets the label for the **Repeat every** field in the recurrence editor (weekly).
245
245
  */
246
246
  recurrenceEditorWeeklyRepeatEvery;
247
247
  /**
248
- * The text similar to 'Repeat on' displayed in the Scheduler recurrence editor.
248
+ * Sets the label for the **Repeat on** field in the recurrence editor (weekly).
249
249
  */
250
250
  recurrenceEditorWeeklyRepeatOn;
251
251
  /**
252
- * The text similar to 'Day' displayed in the Scheduler recurrence editor.
252
+ * Sets the label for the **Day** field in the recurrence editor (monthly).
253
253
  */
254
254
  recurrenceEditorMonthlyDay;
255
255
  /**
256
- * The text similar to 'month(s)' displayed in the Scheduler recurrence editor.
256
+ * Sets the text for the **month(s)** label in the recurrence editor.
257
257
  */
258
258
  recurrenceEditorMonthlyInterval;
259
259
  /**
260
- * The text similar to 'Repeat every' displayed in the Scheduler recurrence editor.
260
+ * Sets the label for the **Repeat every** field in the recurrence editor (monthly).
261
261
  */
262
262
  recurrenceEditorMonthlyRepeatEvery;
263
263
  /**
264
- * The text similar to 'Repeat on' displayed in the Scheduler recurrence editor.
264
+ * Sets the label for the **Repeat on** field in the recurrence editor (monthly).
265
265
  */
266
266
  recurrenceEditorMonthlyRepeatOn;
267
267
  /**
268
- * The text similar to 'of' displayed in the Scheduler recurrence editor.
268
+ * Sets the label for the **of** text in the recurrence editor (yearly).
269
269
  */
270
270
  recurrenceEditorYearlyOf;
271
271
  /**
272
- * The text similar to 'Repeat every' displayed in the Scheduler recurrence editor.
272
+ * Sets the label for the **Repeat every** field in the recurrence editor (yearly).
273
273
  */
274
274
  recurrenceEditorYearlyRepeatEvery;
275
275
  /**
276
- * The text similar to 'Repeat on' displayed in the Scheduler recurrence editor.
276
+ * Sets the label for the **Repeat on** field in the recurrence editor (yearly).
277
277
  */
278
278
  recurrenceEditorYearlyRepeatOn;
279
279
  /**
280
- * The text similar to 'year(s)' displayed in the Scheduler recurrence editor.
280
+ * Sets the text for the **year(s)** label in the recurrence editor.
281
281
  */
282
282
  recurrenceEditorYearlyInterval;
283
283
  /**
284
- * The text similar to 'Daily' displayed in the Scheduler recurrence editor.
284
+ * Sets the label for the **Daily** frequency in the recurrence editor.
285
285
  */
286
286
  recurrenceEditorFrequenciesDaily;
287
287
  /**
288
- * The text similar to 'Monthly' displayed in the Scheduler recurrence editor.
288
+ * Sets the label for the **Monthly** frequency in the recurrence editor.
289
289
  */
290
290
  recurrenceEditorFrequenciesMonthly;
291
291
  /**
292
- * The text similar to 'Never' displayed in the Scheduler recurrence editor.
292
+ * Sets the label for the **Never** frequency in the recurrence editor.
293
293
  */
294
294
  recurrenceEditorFrequenciesNever;
295
295
  /**
296
- * The text similar to 'Weekly' displayed in the Scheduler recurrence editor.
296
+ * Sets the label for the **Weekly** frequency in the recurrence editor.
297
297
  */
298
298
  recurrenceEditorFrequenciesWeekly;
299
299
  /**
300
- * The text similar to 'Yearly' displayed in the Scheduler recurrence editor.
300
+ * Sets the label for the **Yearly** frequency in the recurrence editor.
301
301
  */
302
302
  recurrenceEditorFrequenciesYearly;
303
303
  /**
304
- * The text similar to 'First' displayed in the Scheduler recurrence editor.
304
+ * Sets the label for the **First** offset position in the recurrence editor.
305
305
  */
306
306
  recurrenceEditorOffsetPositionsFirst;
307
307
  /**
308
- * The text similar to 'Second' displayed in the Scheduler recurrence editor.
308
+ * Sets the label for the **Second** offset position in the recurrence editor.
309
309
  */
310
310
  recurrenceEditorOffsetPositionsSecond;
311
311
  /**
312
- * The text similar to 'Third' displayed in the Scheduler recurrence editor.
312
+ * Sets the label for the **Third** offset position in the recurrence editor.
313
313
  */
314
314
  recurrenceEditorOffsetPositionsThird;
315
315
  /**
316
- * The text similar to 'Fourth' displayed in the Scheduler recurrence editor.
316
+ * Sets the label for the **Fourth** offset position in the recurrence editor.
317
317
  */
318
318
  recurrenceEditorOffsetPositionsFourth;
319
319
  /**
320
- * The text similar to 'Last' displayed in the Scheduler recurrence editor.
320
+ * Sets the label for the **Last** offset position in the recurrence editor.
321
321
  */
322
322
  recurrenceEditorOffsetPositionsLast;
323
323
  /**
324
- * The text similar to 'Day' displayed in the repeat by section of the monthly recurrence pattern.
324
+ * Sets the label for the **Day** option in the repeat by section of the monthly recurrence pattern.
325
325
  */
326
326
  recurrenceEditorWeekdaysDay;
327
327
  /**
328
- * The text similar to 'Weekday' displayed in the repeat by section of the monthly recurrence pattern.
328
+ * Sets the label for the **Weekday** option in the repeat by section of the monthly recurrence pattern.
329
329
  */
330
330
  recurrenceEditorWeekdaysWeekday;
331
331
  /**
332
- * The text similar to 'Weekend Day' displayed in the repeat by section of the monthly recurrence pattern.
332
+ * Sets the label for the **Weekend Day** option in the repeat by section of the monthly recurrence pattern.
333
333
  */
334
334
  recurrenceEditorWeekdaysWeekendday;
335
335
  /**
336
- * The text similar to 'After' displayed in the Scheduler recurrence editor.
336
+ * Sets the label for the **After** option in the recurrence editor.
337
337
  */
338
338
  recurrenceEditorEndAfter;
339
339
  /**
340
- * The text similar to 'occurrence(s)' displayed in the Scheduler recurrence editor.
340
+ * Sets the text for the **occurrence(s)** label in the recurrence editor.
341
341
  */
342
342
  recurrenceEditorEndOccurrence;
343
343
  /**
344
- * The text similar to 'End' displayed in the Scheduler recurrence editor.
344
+ * Sets the label for the **End** field in the recurrence editor.
345
345
  */
346
346
  recurrenceEditorEndLabel;
347
347
  /**
348
- * The text similar to 'Never' displayed in the Scheduler recurrence editor.
348
+ * Sets the label for the **Never** option in the recurrence editor.
349
349
  */
350
350
  recurrenceEditorEndNever;
351
351
  /**
352
- * The text similar to 'On' displayed in the Scheduler recurrence editor.
352
+ * Sets the label for the **On** option in the recurrence editor.
353
353
  */
354
354
  recurrenceEditorEndOn;
355
355
  /* ******************* */
@@ -359,55 +359,55 @@ export class Messages extends ComponentMessages {
359
359
  /* Dialogs Section Start */
360
360
  /* ********************* */
361
361
  /**
362
- * The text similar to **Event** displayed as title of the Scheduler event editor.
362
+ * Sets the label for the **Event** title in the event editor dialog.
363
363
  */
364
364
  editorTitle;
365
365
  /**
366
- * The text of the **Delete** button displayed in the Scheduler remove confirmation dialog.
366
+ * Sets the text for the **Delete** button in the remove confirmation dialog.
367
367
  */
368
368
  destroy;
369
369
  /**
370
- * The text similar to **Are you sure you want to delete this event?** displayed in Scheduler remove confirmation dialog.
370
+ * Sets the confirmation message for deleting an event.
371
371
  */
372
372
  deleteConfirmation;
373
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.
374
+ * Sets the confirmation message for editing a recurring event.
375
375
  */
376
376
  editRecurringConfirmation;
377
377
  /**
378
- * The text of the **Edit current occurrence** button displayed in the Scheduler recurring confirmation dialog.
378
+ * Sets the text for the **Edit current occurrence** button in the recurring confirmation dialog.
379
379
  */
380
380
  editOccurrence;
381
381
  /**
382
- * The text of the **Edit the series** button displayed in the Scheduler recurring confirmation dialog.
382
+ * Sets the text for the **Edit the series** button in the recurring confirmation dialog.
383
383
  */
384
384
  editSeries;
385
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.
386
+ * Sets the confirmation message for deleting a recurring event.
387
387
  */
388
388
  deleteRecurringConfirmation;
389
389
  /**
390
- * The text of the **Delete current occurrence** button displayed in the Scheduler recurring confirmation dialog.
390
+ * Sets the text for the **Delete current occurrence** button in the recurring confirmation dialog.
391
391
  */
392
392
  deleteOccurrence;
393
393
  /**
394
- * The text similar of the **Delete the series** button displayed in the Scheduler recurring confirmation dialog.
394
+ * Sets the text for the **Delete the series** button in the recurring confirmation dialog.
395
395
  */
396
396
  deleteSeries;
397
397
  /**
398
- * The title of the remove confirmation dialog, similar to **Delete event**.
398
+ * Sets the title for the remove confirmation dialog.
399
399
  */
400
400
  deleteDialogTitle;
401
401
  /**
402
- * The title of the recurring remove confirmation dialog, similar to **Delete Recurring Item**.
402
+ * Sets the title for the recurring remove confirmation dialog.
403
403
  */
404
404
  deleteRecurringDialogTitle;
405
405
  /**
406
- * The title of the recurring edit confirmation dialog, similar to **Edit Recurring Item**.
406
+ * Sets the title for the recurring edit confirmation dialog.
407
407
  */
408
408
  editRecurringDialogTitle;
409
409
  /**
410
- * The value of the aria-label attribute of the `<select>` element used for switching the Scheduler views.
410
+ * Sets the value of the aria-label attribute for the `select` element used to switch Scheduler views.
411
411
  */
412
412
  selectView;
413
413
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: Messages, deps: null, target: i0.ɵɵFactoryTarget.Directive });
@@ -10,7 +10,7 @@ export const packageMetadata = {
10
10
  productName: 'Kendo UI for Angular',
11
11
  productCode: 'KENDOUIANGULAR',
12
12
  productCodes: ['KENDOUIANGULAR'],
13
- publishDate: 1750152843,
14
- version: '19.1.2-develop.3',
13
+ publishDate: 1750431181,
14
+ version: '19.1.2-develop.5',
15
15
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
16
16
  };
@@ -13,20 +13,20 @@ import * as i0 from "@angular/core";
13
13
  import * as i1 from "./pdf.service";
14
14
  import * as i2 from "@progress/kendo-angular-l10n";
15
15
  /**
16
- * Represents the `export-to-PDF` command of the Scheduler.
17
- * You can apply this directive to any `button` element inside a
18
- * [`ToolbarTemplate`]({% slug toolbar_scheduler %}).
19
- * When the user clicks a button that is associated with the directive, the
20
- * [`pdfExport`]({% slug api_scheduler_schedulercomponent %}#toc-pdfexport) event
21
- * fires ([see example]({% slug pdfexport_scheduler %})).
16
+ * Represents the `export-to-PDF` command for the Scheduler.
22
17
  *
18
+ * You can apply this directive to any `button` element inside a [`ToolbarTemplate`](slug:toolbar_scheduler).
19
+ * When a user clicks a button associated with this directive, the [`pdfExport`](slug:api_scheduler_schedulercomponent#toc-pdfexport) event fires
20
+ * ([see example](slug:pdfexport_scheduler)).
21
+ *
22
+ * @example
23
23
  * ```html
24
24
  * <kendo-scheduler>
25
- * <ng-template kendoSchedulerToolbarTemplate>
26
- * <button kendoSchedulerPDFCommand>Export PDF</button>
27
- * </ng-template>
28
- * <kendo-scheduler-pdf fileName="Scheduler.pdf">
29
- * </kendo-scheduler-pdf>
25
+ * <ng-template kendoSchedulerToolbarTemplate>
26
+ * <button kendoSchedulerPDFCommand>Export to PDF</button>
27
+ * </ng-template>
28
+ * <kendo-scheduler-pdf fileName="Scheduler.pdf">
29
+ * </kendo-scheduler-pdf>
30
30
  * </kendo-scheduler>
31
31
  * ```
32
32
  */
@@ -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 class PDFExportEvent extends PreventableEvent {
10
10
  }
@@ -17,7 +17,15 @@ const createElement = (tagName, className) => {
17
17
  };
18
18
  const createDiv = (className) => createElement('div', className);
19
19
  /**
20
- * Configures the settings for the export of Scheduler in PDF ([see example]({% slug pdfexport_scheduler %})).
20
+ * Configures the settings for exporting the Scheduler to PDF
21
+ * ([see example](slug:pdfexport_scheduler)).
22
+ *
23
+ * @example
24
+ * ```html
25
+ * <kendo-scheduler >
26
+ * <kendo-scheduler-pdf fileName="Scheduler.pdf"> </kendo-scheduler-pdf>
27
+ * </kendo-scheduler>
28
+ * ```
21
29
  */
22
30
  export class PDFComponent {
23
31
  pdfService;
@@ -32,16 +40,19 @@ export class PDFComponent {
32
40
  */
33
41
  avoidLinks;
34
42
  /**
35
- * The creator of the PDF document.
43
+ * Sets the creator of the PDF document.
44
+ *
36
45
  * @default 'Kendo UI PDF Generator'
37
46
  */
38
47
  creator = 'Kendo UI PDF Generator';
39
48
  /**
40
- * The date when the PDF document is created. Defaults to `new Date()`.
49
+ * Sets the date when the PDF document is created.
50
+ *
51
+ * @default 'new Date()'
41
52
  */
42
53
  date;
43
54
  /**
44
- * The forced resolution of the images in the exported PDF document.
55
+ * Sets the forced resolution of the images in the exported PDF document.
45
56
  * By default, the images are exported at their full resolution.
46
57
  */
47
58
  imageResolution;
@@ -64,8 +75,8 @@ export class PDFComponent {
64
75
  */
65
76
  margin;
66
77
  /**
67
- * A scale factor. The text size on the screen might be too big for printing.
68
- * To scale down the output in PDF, use this option.
78
+ * Sets the scale factor for the output in PDF. Use this option when the text size on the screen is too big for printing.
79
+ *
69
80
  * @default 1
70
81
  */
71
82
  scale;
@@ -88,11 +99,11 @@ export class PDFComponent {
88
99
  */
89
100
  proxyURL;
90
101
  /**
91
- * A name or keyword which indicates where to display the document that is
92
- * returned from the proxy.
102
+ * Sets the name or keyword that indicates where to display the document returned from the proxy.
93
103
  *
94
104
  * To display the document in a new window or iframe, the proxy has to have the
95
105
  * `"Content-Disposition"` header set to `inline; filename="<fileName.pdf>"`.
106
+ *
96
107
  * @default '_self'
97
108
  */
98
109
  proxyTarget;