@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.
- package/data-binding.directive.d.ts +12 -3
- package/directives.d.ts +42 -2
- package/editing/edit-dialog-template.directive.d.ts +15 -2
- package/editing/recurrence/recurrence-editor.component.d.ts +29 -10
- package/editing/timezone-editor.component.d.ts +13 -3
- package/editing-directives/base-edit.service.d.ts +8 -11
- package/editing-directives/edit-service.interface.d.ts +22 -24
- package/editing-directives/reactive-editing.directive.d.ts +15 -2
- package/esm2022/data-binding.directive.mjs +12 -3
- package/esm2022/directives.mjs +42 -2
- package/esm2022/editing/edit-dialog-template.directive.mjs +15 -2
- package/esm2022/editing/recurrence/recurrence-editor.component.mjs +29 -10
- package/esm2022/editing/timezone-editor.component.mjs +13 -3
- package/esm2022/editing-directives/base-edit.service.mjs +8 -11
- package/esm2022/editing-directives/reactive-editing.directive.mjs +15 -2
- package/esm2022/events/add-event.mjs +3 -3
- package/esm2022/events/cancel-event.mjs +2 -2
- package/esm2022/events/create-event.mjs +6 -6
- package/esm2022/events/date-change-event.mjs +4 -4
- package/esm2022/events/drag-end-event.mjs +8 -8
- package/esm2022/events/drag-event.mjs +8 -8
- package/esm2022/events/drag-start-event.mjs +4 -4
- package/esm2022/events/edit-event.mjs +4 -4
- package/esm2022/events/event-click-event.mjs +5 -5
- package/esm2022/events/event-keydown-event.mjs +4 -4
- package/esm2022/events/navigate-event.mjs +3 -3
- package/esm2022/events/remove-event.mjs +4 -4
- package/esm2022/events/resize-end-event.mjs +6 -6
- package/esm2022/events/resize-event.mjs +8 -8
- package/esm2022/events/resize-start-event.mjs +4 -4
- package/esm2022/events/save-event.mjs +3 -3
- package/esm2022/events/slot-click-event.mjs +7 -7
- package/esm2022/events/slot-drag-end-event.mjs +1 -1
- package/esm2022/events/slot-drag-event.mjs +7 -7
- package/esm2022/events/slot-drag-start-event.mjs +8 -7
- package/esm2022/localization/custom-messages.component.mjs +14 -1
- package/esm2022/localization/messages.mjs +98 -98
- package/esm2022/package-metadata.mjs +2 -2
- package/esm2022/pdf/pdf-command.directive.mjs +11 -11
- package/esm2022/pdf/pdf-export-event.mjs +1 -1
- package/esm2022/pdf/pdf.component.mjs +19 -8
- package/esm2022/pdf/pdf.module.mjs +7 -8
- package/esm2022/scheduler.component.mjs +62 -62
- package/esm2022/scheduler.module.mjs +6 -7
- package/esm2022/toolbar/navigation.component.mjs +16 -7
- package/esm2022/toolbar/toolbar-template.directive.mjs +18 -10
- package/esm2022/toolbar/toolbar.service.mjs +3 -4
- package/esm2022/toolbar/view-selector.component.mjs +14 -8
- package/esm2022/types/crud-operation.enum.mjs +3 -3
- package/esm2022/types/edit-mode.enum.mjs +2 -2
- package/esm2022/types/scheduler-view.mjs +1 -1
- package/esm2022/views/agenda/agenda-view.component.mjs +15 -11
- package/esm2022/views/common/slot-selectable.directive.mjs +16 -4
- package/esm2022/views/month/month-view.component.mjs +17 -16
- package/esm2022/views/month/multi-week-view.component.mjs +20 -18
- package/esm2022/views/multi-day/day-view.component.mjs +12 -7
- package/esm2022/views/multi-day/multi-day-view.component.mjs +16 -11
- package/esm2022/views/multi-day/week-view.component.mjs +14 -11
- package/esm2022/views/multi-day/work-week-view.component.mjs +8 -1
- package/esm2022/views/scheduler-view.directive.mjs +13 -3
- package/esm2022/views/templates/agenda-date-template.directive.mjs +13 -3
- package/esm2022/views/templates/agenda-time-template.directive.mjs +13 -3
- package/esm2022/views/templates/all-day-event-template.directive.mjs +13 -3
- package/esm2022/views/templates/all-day-slot-template.directive.mjs +13 -3
- package/esm2022/views/templates/date-header-template.directive.mjs +14 -4
- package/esm2022/views/templates/event-template.directive.mjs +13 -3
- package/esm2022/views/templates/group-header-template.directive.mjs +14 -4
- package/esm2022/views/templates/major-time-header-template.directive.mjs +13 -3
- package/esm2022/views/templates/minor-time-header-template.directive.mjs +13 -3
- package/esm2022/views/templates/month-day-slot-template.directive.mjs +13 -3
- package/esm2022/views/templates/multi-week-day-slot-template.directive.mjs +12 -3
- package/esm2022/views/templates/time-slot-template.directive.mjs +14 -4
- package/esm2022/views/timeline/timeline-month-view.component.mjs +16 -11
- package/esm2022/views/timeline/timeline-view.component.mjs +16 -11
- package/esm2022/views/timeline/timeline-week-view.component.mjs +18 -14
- package/esm2022/views/view-context.service.mjs +6 -6
- package/esm2022/views/view-state.service.mjs +9 -9
- package/esm2022/views/year/year-view.component.mjs +12 -7
- package/events/add-event.d.ts +3 -3
- package/events/cancel-event.d.ts +2 -2
- package/events/create-event.d.ts +6 -6
- package/events/date-change-event.d.ts +4 -4
- package/events/drag-end-event.d.ts +8 -8
- package/events/drag-event.d.ts +8 -8
- package/events/drag-start-event.d.ts +4 -4
- package/events/edit-event.d.ts +4 -4
- package/events/event-click-event.d.ts +5 -5
- package/events/event-keydown-event.d.ts +4 -4
- package/events/navigate-event.d.ts +3 -3
- package/events/remove-event.d.ts +4 -4
- package/events/resize-end-event.d.ts +6 -6
- package/events/resize-event.d.ts +8 -8
- package/events/resize-start-event.d.ts +4 -4
- package/events/save-event.d.ts +3 -3
- package/events/slot-click-event.d.ts +7 -7
- package/events/slot-drag-end-event.d.ts +1 -1
- package/events/slot-drag-event.d.ts +7 -7
- package/events/slot-drag-start-event.d.ts +8 -7
- package/fesm2022/progress-kendo-angular-scheduler.mjs +876 -543
- package/localization/custom-messages.component.d.ts +14 -1
- package/localization/messages.d.ts +98 -98
- package/navigation/focus-position.interface.d.ts +2 -3
- package/package.json +15 -15
- package/pdf/pdf-command.directive.d.ts +11 -11
- package/pdf/pdf-export-event.d.ts +1 -1
- package/pdf/pdf.component.d.ts +19 -8
- package/pdf/pdf.module.d.ts +7 -8
- package/scheduler.component.d.ts +62 -62
- package/scheduler.module.d.ts +6 -7
- package/schematics/ngAdd/index.js +3 -3
- package/toolbar/navigation.component.d.ts +16 -7
- package/toolbar/toolbar-template.directive.d.ts +18 -10
- package/toolbar/toolbar.service.d.ts +3 -4
- package/toolbar/view-selector.component.d.ts +14 -8
- package/types/actions.d.ts +51 -45
- package/types/create-form-group-args.interface.d.ts +1 -1
- package/types/crud-operation.enum.d.ts +3 -3
- package/types/current-time-settings.interface.d.ts +10 -8
- package/types/date-range.interface.d.ts +7 -11
- package/types/datepicker-options.interface.d.ts +33 -38
- package/types/edit-event-args.interface.d.ts +3 -4
- package/types/edit-mode.enum.d.ts +2 -2
- package/types/editable-settings.interface.d.ts +6 -6
- package/types/event-style-args.interface.d.ts +4 -4
- package/types/group.interface.d.ts +2 -2
- package/types/numeric-options.interface.d.ts +20 -16
- package/types/ongoing-events-settings.interface.d.ts +8 -6
- package/types/resource.interface.d.ts +8 -8
- package/types/scheduler-event.d.ts +13 -15
- package/types/scheduler-model-fields.interface.d.ts +34 -23
- package/types/scheduler-slot.interface.d.ts +7 -7
- package/types/scheduler-view.d.ts +3 -5
- package/types/slot-class-args.interface.d.ts +6 -6
- package/types/view-item.interface.d.ts +1 -1
- package/views/agenda/agenda-view.component.d.ts +15 -11
- package/views/common/slot-selectable.directive.d.ts +16 -4
- package/views/month/month-view.component.d.ts +17 -16
- package/views/month/multi-week-view.component.d.ts +20 -18
- package/views/multi-day/day-view.component.d.ts +12 -7
- package/views/multi-day/multi-day-view.component.d.ts +16 -11
- package/views/multi-day/week-view.component.d.ts +14 -11
- package/views/multi-day/work-week-view.component.d.ts +8 -1
- package/views/scheduler-view.directive.d.ts +13 -3
- package/views/templates/agenda-date-template.directive.d.ts +13 -3
- package/views/templates/agenda-time-template.directive.d.ts +13 -3
- package/views/templates/all-day-event-template.directive.d.ts +13 -3
- package/views/templates/all-day-slot-template.directive.d.ts +13 -3
- package/views/templates/date-header-template.directive.d.ts +14 -4
- package/views/templates/event-template.directive.d.ts +13 -3
- package/views/templates/group-header-template.directive.d.ts +14 -4
- package/views/templates/major-time-header-template.directive.d.ts +13 -3
- package/views/templates/minor-time-header-template.directive.d.ts +13 -3
- package/views/templates/month-day-slot-template.directive.d.ts +13 -3
- package/views/templates/multi-week-day-slot-template.directive.d.ts +12 -3
- package/views/templates/time-slot-template.directive.d.ts +14 -4
- package/views/timeline/timeline-month-view.component.d.ts +16 -11
- package/views/timeline/timeline-view.component.d.ts +16 -11
- package/views/timeline/timeline-week-view.component.d.ts +18 -14
- package/views/view-context.service.d.ts +6 -6
- package/views/view-state.service.d.ts +9 -9
- 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
|
-
*
|
|
13
|
+
* Sets the text for **All events** in **Timeline** views when no vertical grouping is applied.
|
|
14
14
|
*/
|
|
15
15
|
allEvents;
|
|
16
16
|
/**
|
|
17
|
-
*
|
|
17
|
+
* Sets the text for **All day** in **Day** and **Week** views.
|
|
18
18
|
*/
|
|
19
19
|
allDay;
|
|
20
20
|
/**
|
|
21
|
-
*
|
|
21
|
+
* Sets the date-header text in the **Agenda** view.
|
|
22
22
|
*/
|
|
23
23
|
dateHeader;
|
|
24
24
|
/**
|
|
25
|
-
*
|
|
25
|
+
* Sets the time-header text in the **Agenda** view.
|
|
26
26
|
*/
|
|
27
27
|
timeHeader;
|
|
28
28
|
/**
|
|
29
|
-
*
|
|
29
|
+
* Sets the event-header text in the **Agenda** view.
|
|
30
30
|
*/
|
|
31
31
|
eventHeader;
|
|
32
32
|
/**
|
|
33
|
-
*
|
|
33
|
+
* Sets the title for the **Delete** icon.
|
|
34
34
|
*/
|
|
35
35
|
deleteTitle;
|
|
36
36
|
/**
|
|
37
|
-
*
|
|
37
|
+
* Sets the title for the **Next** navigation button.
|
|
38
38
|
*/
|
|
39
39
|
nextTitle;
|
|
40
40
|
/**
|
|
41
|
-
*
|
|
41
|
+
* Sets the title for the **Previous** navigation button.
|
|
42
42
|
*/
|
|
43
43
|
previousTitle;
|
|
44
44
|
/**
|
|
45
|
-
*
|
|
45
|
+
* Sets the text for the **Today** navigation button.
|
|
46
46
|
*/
|
|
47
47
|
today;
|
|
48
48
|
/**
|
|
49
|
-
*
|
|
49
|
+
* Sets the text for today's date in the header of the Calendar.
|
|
50
50
|
*/
|
|
51
51
|
calendarToday;
|
|
52
52
|
/**
|
|
53
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
61
|
+
* Sets the title for the **Day** view.
|
|
62
62
|
*/
|
|
63
63
|
dayViewTitle;
|
|
64
64
|
/**
|
|
65
|
-
*
|
|
65
|
+
* Sets the title for the **Multi-Day** view.
|
|
66
66
|
*/
|
|
67
67
|
multiDayViewTitle;
|
|
68
68
|
/**
|
|
69
|
-
*
|
|
69
|
+
* Sets the title for the **Week** view.
|
|
70
70
|
*/
|
|
71
71
|
weekViewTitle;
|
|
72
72
|
/**
|
|
73
|
-
*
|
|
73
|
+
* Sets the title for the **Work Week** view.
|
|
74
74
|
*/
|
|
75
75
|
workWeekViewTitle;
|
|
76
76
|
/**
|
|
77
|
-
*
|
|
77
|
+
* Sets the title for the **Month** view.
|
|
78
78
|
*/
|
|
79
79
|
monthViewTitle;
|
|
80
80
|
/**
|
|
81
|
-
*
|
|
81
|
+
* Sets the title for the **Multi-Week** view.
|
|
82
82
|
*/
|
|
83
83
|
multiWeekViewTitle;
|
|
84
84
|
/**
|
|
85
|
-
*
|
|
85
|
+
* Sets the title for the **Timeline** view.
|
|
86
86
|
*/
|
|
87
87
|
timelineViewTitle;
|
|
88
88
|
/**
|
|
89
|
-
*
|
|
89
|
+
* Sets the title for the **Timeline Week** view.
|
|
90
90
|
*/
|
|
91
91
|
timelineWeekViewTitle;
|
|
92
92
|
/**
|
|
93
|
-
*
|
|
93
|
+
* Sets the title for the **Timeline Month** view.
|
|
94
94
|
*/
|
|
95
95
|
timelineMonthViewTitle;
|
|
96
96
|
/**
|
|
97
|
-
*
|
|
97
|
+
* Sets the title for the **Agenda** view.
|
|
98
98
|
*/
|
|
99
99
|
agendaViewTitle;
|
|
100
100
|
/**
|
|
101
|
-
*
|
|
101
|
+
* Sets the title for the **Year** view.
|
|
102
102
|
*/
|
|
103
103
|
yearViewTitle;
|
|
104
104
|
/**
|
|
105
|
-
*
|
|
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
|
-
*
|
|
112
|
+
* Sets the text for the **Cancel** button in Scheduler dialogs.
|
|
113
113
|
*/
|
|
114
114
|
cancel;
|
|
115
115
|
/**
|
|
116
|
-
*
|
|
116
|
+
* Sets the text for the **Save** button in Scheduler dialogs.
|
|
117
117
|
*/
|
|
118
118
|
save;
|
|
119
119
|
/**
|
|
120
|
-
*
|
|
120
|
+
* Sets the label for the **Title** field in the event editor.
|
|
121
121
|
*/
|
|
122
122
|
editorEventTitle;
|
|
123
123
|
/**
|
|
124
|
-
*
|
|
124
|
+
* Sets the label for the **Start** field in the event editor.
|
|
125
125
|
*/
|
|
126
126
|
editorEventStart;
|
|
127
127
|
/**
|
|
128
|
-
*
|
|
128
|
+
* Sets the label for the **Start Time Zone** field in the event editor.
|
|
129
129
|
*/
|
|
130
130
|
editorEventStartTimeZone;
|
|
131
131
|
/**
|
|
132
|
-
*
|
|
132
|
+
* Sets the label for the **End** field in the event editor.
|
|
133
133
|
*/
|
|
134
134
|
editorEventEnd;
|
|
135
135
|
/**
|
|
136
|
-
*
|
|
136
|
+
* Sets the label for the **End Time Zone** field in the event editor.
|
|
137
137
|
*/
|
|
138
138
|
editorEventEndTimeZone;
|
|
139
139
|
/**
|
|
140
|
-
*
|
|
140
|
+
* Sets the label for the **All Day Event** field in the event editor.
|
|
141
141
|
*/
|
|
142
142
|
editorEventAllDay;
|
|
143
143
|
/**
|
|
144
|
-
*
|
|
144
|
+
* Sets the label for the **Description** field in the event editor.
|
|
145
145
|
*/
|
|
146
146
|
editorEventDescription;
|
|
147
147
|
/**
|
|
148
|
-
*
|
|
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
|
-
*
|
|
152
|
+
* Sets the label for the **Time Zone** field in the event editor.
|
|
153
153
|
*/
|
|
154
154
|
editorEventTimeZone;
|
|
155
155
|
/**
|
|
156
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
208
|
+
* Sets the **Today** button text in the popup of the DatePickers in the recurrence editor.
|
|
209
209
|
*/
|
|
210
210
|
recurrenceEditorDateInputsToday;
|
|
211
211
|
/**
|
|
212
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
220
|
+
* Sets the title for the **Increment** button of the NumericTextBox in the recurrence editor.
|
|
221
221
|
*/
|
|
222
222
|
recurrenceEditorNumericIncrement;
|
|
223
223
|
/**
|
|
224
|
-
*
|
|
224
|
+
* Sets the title for the **Decrement** button of the NumericTextBox in the recurrence editor.
|
|
225
225
|
*/
|
|
226
226
|
recurrenceEditorNumericDecrement;
|
|
227
227
|
/**
|
|
228
|
-
*
|
|
228
|
+
* Sets the label for the **Repeat** field in the recurrence editor.
|
|
229
229
|
*/
|
|
230
230
|
recurrenceEditorRepeat;
|
|
231
231
|
/**
|
|
232
|
-
*
|
|
232
|
+
* Sets the text for the **day(s)** label in the recurrence editor.
|
|
233
233
|
*/
|
|
234
234
|
recurrenceEditorDailyInterval;
|
|
235
235
|
/**
|
|
236
|
-
*
|
|
236
|
+
* Sets the label for the **Repeat every** field in the recurrence editor (daily).
|
|
237
237
|
*/
|
|
238
238
|
recurrenceEditorDailyRepeatEvery;
|
|
239
239
|
/**
|
|
240
|
-
*
|
|
240
|
+
* Sets the text for the **week(s)** label in the recurrence editor.
|
|
241
241
|
*/
|
|
242
242
|
recurrenceEditorWeeklyInterval;
|
|
243
243
|
/**
|
|
244
|
-
*
|
|
244
|
+
* Sets the label for the **Repeat every** field in the recurrence editor (weekly).
|
|
245
245
|
*/
|
|
246
246
|
recurrenceEditorWeeklyRepeatEvery;
|
|
247
247
|
/**
|
|
248
|
-
*
|
|
248
|
+
* Sets the label for the **Repeat on** field in the recurrence editor (weekly).
|
|
249
249
|
*/
|
|
250
250
|
recurrenceEditorWeeklyRepeatOn;
|
|
251
251
|
/**
|
|
252
|
-
*
|
|
252
|
+
* Sets the label for the **Day** field in the recurrence editor (monthly).
|
|
253
253
|
*/
|
|
254
254
|
recurrenceEditorMonthlyDay;
|
|
255
255
|
/**
|
|
256
|
-
*
|
|
256
|
+
* Sets the text for the **month(s)** label in the recurrence editor.
|
|
257
257
|
*/
|
|
258
258
|
recurrenceEditorMonthlyInterval;
|
|
259
259
|
/**
|
|
260
|
-
*
|
|
260
|
+
* Sets the label for the **Repeat every** field in the recurrence editor (monthly).
|
|
261
261
|
*/
|
|
262
262
|
recurrenceEditorMonthlyRepeatEvery;
|
|
263
263
|
/**
|
|
264
|
-
*
|
|
264
|
+
* Sets the label for the **Repeat on** field in the recurrence editor (monthly).
|
|
265
265
|
*/
|
|
266
266
|
recurrenceEditorMonthlyRepeatOn;
|
|
267
267
|
/**
|
|
268
|
-
*
|
|
268
|
+
* Sets the label for the **of** text in the recurrence editor (yearly).
|
|
269
269
|
*/
|
|
270
270
|
recurrenceEditorYearlyOf;
|
|
271
271
|
/**
|
|
272
|
-
*
|
|
272
|
+
* Sets the label for the **Repeat every** field in the recurrence editor (yearly).
|
|
273
273
|
*/
|
|
274
274
|
recurrenceEditorYearlyRepeatEvery;
|
|
275
275
|
/**
|
|
276
|
-
*
|
|
276
|
+
* Sets the label for the **Repeat on** field in the recurrence editor (yearly).
|
|
277
277
|
*/
|
|
278
278
|
recurrenceEditorYearlyRepeatOn;
|
|
279
279
|
/**
|
|
280
|
-
*
|
|
280
|
+
* Sets the text for the **year(s)** label in the recurrence editor.
|
|
281
281
|
*/
|
|
282
282
|
recurrenceEditorYearlyInterval;
|
|
283
283
|
/**
|
|
284
|
-
*
|
|
284
|
+
* Sets the label for the **Daily** frequency in the recurrence editor.
|
|
285
285
|
*/
|
|
286
286
|
recurrenceEditorFrequenciesDaily;
|
|
287
287
|
/**
|
|
288
|
-
*
|
|
288
|
+
* Sets the label for the **Monthly** frequency in the recurrence editor.
|
|
289
289
|
*/
|
|
290
290
|
recurrenceEditorFrequenciesMonthly;
|
|
291
291
|
/**
|
|
292
|
-
*
|
|
292
|
+
* Sets the label for the **Never** frequency in the recurrence editor.
|
|
293
293
|
*/
|
|
294
294
|
recurrenceEditorFrequenciesNever;
|
|
295
295
|
/**
|
|
296
|
-
*
|
|
296
|
+
* Sets the label for the **Weekly** frequency in the recurrence editor.
|
|
297
297
|
*/
|
|
298
298
|
recurrenceEditorFrequenciesWeekly;
|
|
299
299
|
/**
|
|
300
|
-
*
|
|
300
|
+
* Sets the label for the **Yearly** frequency in the recurrence editor.
|
|
301
301
|
*/
|
|
302
302
|
recurrenceEditorFrequenciesYearly;
|
|
303
303
|
/**
|
|
304
|
-
*
|
|
304
|
+
* Sets the label for the **First** offset position in the recurrence editor.
|
|
305
305
|
*/
|
|
306
306
|
recurrenceEditorOffsetPositionsFirst;
|
|
307
307
|
/**
|
|
308
|
-
*
|
|
308
|
+
* Sets the label for the **Second** offset position in the recurrence editor.
|
|
309
309
|
*/
|
|
310
310
|
recurrenceEditorOffsetPositionsSecond;
|
|
311
311
|
/**
|
|
312
|
-
*
|
|
312
|
+
* Sets the label for the **Third** offset position in the recurrence editor.
|
|
313
313
|
*/
|
|
314
314
|
recurrenceEditorOffsetPositionsThird;
|
|
315
315
|
/**
|
|
316
|
-
*
|
|
316
|
+
* Sets the label for the **Fourth** offset position in the recurrence editor.
|
|
317
317
|
*/
|
|
318
318
|
recurrenceEditorOffsetPositionsFourth;
|
|
319
319
|
/**
|
|
320
|
-
*
|
|
320
|
+
* Sets the label for the **Last** offset position in the recurrence editor.
|
|
321
321
|
*/
|
|
322
322
|
recurrenceEditorOffsetPositionsLast;
|
|
323
323
|
/**
|
|
324
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
336
|
+
* Sets the label for the **After** option in the recurrence editor.
|
|
337
337
|
*/
|
|
338
338
|
recurrenceEditorEndAfter;
|
|
339
339
|
/**
|
|
340
|
-
*
|
|
340
|
+
* Sets the text for the **occurrence(s)** label in the recurrence editor.
|
|
341
341
|
*/
|
|
342
342
|
recurrenceEditorEndOccurrence;
|
|
343
343
|
/**
|
|
344
|
-
*
|
|
344
|
+
* Sets the label for the **End** field in the recurrence editor.
|
|
345
345
|
*/
|
|
346
346
|
recurrenceEditorEndLabel;
|
|
347
347
|
/**
|
|
348
|
-
*
|
|
348
|
+
* Sets the label for the **Never** option in the recurrence editor.
|
|
349
349
|
*/
|
|
350
350
|
recurrenceEditorEndNever;
|
|
351
351
|
/**
|
|
352
|
-
*
|
|
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
|
-
*
|
|
362
|
+
* Sets the label for the **Event** title in the event editor dialog.
|
|
363
363
|
*/
|
|
364
364
|
editorTitle;
|
|
365
365
|
/**
|
|
366
|
-
*
|
|
366
|
+
* Sets the text for the **Delete** button in the remove confirmation dialog.
|
|
367
367
|
*/
|
|
368
368
|
destroy;
|
|
369
369
|
/**
|
|
370
|
-
*
|
|
370
|
+
* Sets the confirmation message for deleting an event.
|
|
371
371
|
*/
|
|
372
372
|
deleteConfirmation;
|
|
373
373
|
/**
|
|
374
|
-
*
|
|
374
|
+
* Sets the confirmation message for editing a recurring event.
|
|
375
375
|
*/
|
|
376
376
|
editRecurringConfirmation;
|
|
377
377
|
/**
|
|
378
|
-
*
|
|
378
|
+
* Sets the text for the **Edit current occurrence** button in the recurring confirmation dialog.
|
|
379
379
|
*/
|
|
380
380
|
editOccurrence;
|
|
381
381
|
/**
|
|
382
|
-
*
|
|
382
|
+
* Sets the text for the **Edit the series** button in the recurring confirmation dialog.
|
|
383
383
|
*/
|
|
384
384
|
editSeries;
|
|
385
385
|
/**
|
|
386
|
-
*
|
|
386
|
+
* Sets the confirmation message for deleting a recurring event.
|
|
387
387
|
*/
|
|
388
388
|
deleteRecurringConfirmation;
|
|
389
389
|
/**
|
|
390
|
-
*
|
|
390
|
+
* Sets the text for the **Delete current occurrence** button in the recurring confirmation dialog.
|
|
391
391
|
*/
|
|
392
392
|
deleteOccurrence;
|
|
393
393
|
/**
|
|
394
|
-
*
|
|
394
|
+
* Sets the text for the **Delete the series** button in the recurring confirmation dialog.
|
|
395
395
|
*/
|
|
396
396
|
deleteSeries;
|
|
397
397
|
/**
|
|
398
|
-
*
|
|
398
|
+
* Sets the title for the remove confirmation dialog.
|
|
399
399
|
*/
|
|
400
400
|
deleteDialogTitle;
|
|
401
401
|
/**
|
|
402
|
-
*
|
|
402
|
+
* Sets the title for the recurring remove confirmation dialog.
|
|
403
403
|
*/
|
|
404
404
|
deleteRecurringDialogTitle;
|
|
405
405
|
/**
|
|
406
|
-
*
|
|
406
|
+
* Sets the title for the recurring edit confirmation dialog.
|
|
407
407
|
*/
|
|
408
408
|
editRecurringDialogTitle;
|
|
409
409
|
/**
|
|
410
|
-
*
|
|
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:
|
|
14
|
-
version: '19.1.2-develop.
|
|
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
|
|
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
|
-
*
|
|
26
|
-
*
|
|
27
|
-
*
|
|
28
|
-
*
|
|
29
|
-
*
|
|
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
|
-
*
|
|
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
|
|
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
|
-
*
|
|
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
|
-
*
|
|
49
|
+
* Sets the date when the PDF document is created.
|
|
50
|
+
*
|
|
51
|
+
* @default 'new Date()'
|
|
41
52
|
*/
|
|
42
53
|
date;
|
|
43
54
|
/**
|
|
44
|
-
*
|
|
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
|
-
*
|
|
68
|
-
*
|
|
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
|
-
*
|
|
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;
|