@progress/kendo-angular-scheduler 19.1.2-develop.4 → 19.1.2-develop.6
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
|
@@ -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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
16
|
+
* Sets the text for **All day** in **Day** and **Week** views.
|
|
17
17
|
*/
|
|
18
18
|
allDay: string;
|
|
19
19
|
/**
|
|
20
|
-
*
|
|
20
|
+
* Sets the date-header text in the **Agenda** view.
|
|
21
21
|
*/
|
|
22
22
|
dateHeader: string;
|
|
23
23
|
/**
|
|
24
|
-
*
|
|
24
|
+
* Sets the time-header text in the **Agenda** view.
|
|
25
25
|
*/
|
|
26
26
|
timeHeader: string;
|
|
27
27
|
/**
|
|
28
|
-
*
|
|
28
|
+
* Sets the event-header text in the **Agenda** view.
|
|
29
29
|
*/
|
|
30
30
|
eventHeader: string;
|
|
31
31
|
/**
|
|
32
|
-
*
|
|
32
|
+
* Sets the title for the **Delete** icon.
|
|
33
33
|
*/
|
|
34
34
|
deleteTitle: string;
|
|
35
35
|
/**
|
|
36
|
-
*
|
|
36
|
+
* Sets the title for the **Next** navigation button.
|
|
37
37
|
*/
|
|
38
38
|
nextTitle: string;
|
|
39
39
|
/**
|
|
40
|
-
*
|
|
40
|
+
* Sets the title for the **Previous** navigation button.
|
|
41
41
|
*/
|
|
42
42
|
previousTitle: string;
|
|
43
43
|
/**
|
|
44
|
-
*
|
|
44
|
+
* Sets the text for the **Today** navigation button.
|
|
45
45
|
*/
|
|
46
46
|
today: string;
|
|
47
47
|
/**
|
|
48
|
-
*
|
|
48
|
+
* Sets the text for today's date in the header of the Calendar.
|
|
49
49
|
*/
|
|
50
50
|
calendarToday: string;
|
|
51
51
|
/**
|
|
52
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
60
|
+
* Sets the title for the **Day** view.
|
|
61
61
|
*/
|
|
62
62
|
dayViewTitle: string;
|
|
63
63
|
/**
|
|
64
|
-
*
|
|
64
|
+
* Sets the title for the **Multi-Day** view.
|
|
65
65
|
*/
|
|
66
66
|
multiDayViewTitle: string;
|
|
67
67
|
/**
|
|
68
|
-
*
|
|
68
|
+
* Sets the title for the **Week** view.
|
|
69
69
|
*/
|
|
70
70
|
weekViewTitle: string;
|
|
71
71
|
/**
|
|
72
|
-
*
|
|
72
|
+
* Sets the title for the **Work Week** view.
|
|
73
73
|
*/
|
|
74
74
|
workWeekViewTitle: string;
|
|
75
75
|
/**
|
|
76
|
-
*
|
|
76
|
+
* Sets the title for the **Month** view.
|
|
77
77
|
*/
|
|
78
78
|
monthViewTitle: string;
|
|
79
79
|
/**
|
|
80
|
-
*
|
|
80
|
+
* Sets the title for the **Multi-Week** view.
|
|
81
81
|
*/
|
|
82
82
|
multiWeekViewTitle: string;
|
|
83
83
|
/**
|
|
84
|
-
*
|
|
84
|
+
* Sets the title for the **Timeline** view.
|
|
85
85
|
*/
|
|
86
86
|
timelineViewTitle: string;
|
|
87
87
|
/**
|
|
88
|
-
*
|
|
88
|
+
* Sets the title for the **Timeline Week** view.
|
|
89
89
|
*/
|
|
90
90
|
timelineWeekViewTitle: string;
|
|
91
91
|
/**
|
|
92
|
-
*
|
|
92
|
+
* Sets the title for the **Timeline Month** view.
|
|
93
93
|
*/
|
|
94
94
|
timelineMonthViewTitle: string;
|
|
95
95
|
/**
|
|
96
|
-
*
|
|
96
|
+
* Sets the title for the **Agenda** view.
|
|
97
97
|
*/
|
|
98
98
|
agendaViewTitle: string;
|
|
99
99
|
/**
|
|
100
|
-
*
|
|
100
|
+
* Sets the title for the **Year** view.
|
|
101
101
|
*/
|
|
102
102
|
yearViewTitle: string;
|
|
103
103
|
/**
|
|
104
|
-
*
|
|
104
|
+
* Sets the message shown in **Year** view for dates with no events.
|
|
105
105
|
*/
|
|
106
106
|
yearViewNoEvents: string;
|
|
107
107
|
/**
|
|
108
|
-
*
|
|
108
|
+
* Sets the text for the **Cancel** button in Scheduler dialogs.
|
|
109
109
|
*/
|
|
110
110
|
cancel: string;
|
|
111
111
|
/**
|
|
112
|
-
*
|
|
112
|
+
* Sets the text for the **Save** button in Scheduler dialogs.
|
|
113
113
|
*/
|
|
114
114
|
save: string;
|
|
115
115
|
/**
|
|
116
|
-
*
|
|
116
|
+
* Sets the label for the **Title** field in the event editor.
|
|
117
117
|
*/
|
|
118
118
|
editorEventTitle: string;
|
|
119
119
|
/**
|
|
120
|
-
*
|
|
120
|
+
* Sets the label for the **Start** field in the event editor.
|
|
121
121
|
*/
|
|
122
122
|
editorEventStart: string;
|
|
123
123
|
/**
|
|
124
|
-
*
|
|
124
|
+
* Sets the label for the **Start Time Zone** field in the event editor.
|
|
125
125
|
*/
|
|
126
126
|
editorEventStartTimeZone: string;
|
|
127
127
|
/**
|
|
128
|
-
*
|
|
128
|
+
* Sets the label for the **End** field in the event editor.
|
|
129
129
|
*/
|
|
130
130
|
editorEventEnd: string;
|
|
131
131
|
/**
|
|
132
|
-
*
|
|
132
|
+
* Sets the label for the **End Time Zone** field in the event editor.
|
|
133
133
|
*/
|
|
134
134
|
editorEventEndTimeZone: string;
|
|
135
135
|
/**
|
|
136
|
-
*
|
|
136
|
+
* Sets the label for the **All Day Event** field in the event editor.
|
|
137
137
|
*/
|
|
138
138
|
editorEventAllDay: string;
|
|
139
139
|
/**
|
|
140
|
-
*
|
|
140
|
+
* Sets the label for the **Description** field in the event editor.
|
|
141
141
|
*/
|
|
142
142
|
editorEventDescription: string;
|
|
143
143
|
/**
|
|
144
|
-
*
|
|
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
|
-
*
|
|
148
|
+
* Sets the label for the **Time Zone** field in the event editor.
|
|
149
149
|
*/
|
|
150
150
|
editorEventTimeZone: string;
|
|
151
151
|
/**
|
|
152
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
216
|
+
* Sets the title for the **Increment** button of the NumericTextBox in the recurrence editor.
|
|
217
217
|
*/
|
|
218
218
|
recurrenceEditorNumericIncrement: string;
|
|
219
219
|
/**
|
|
220
|
-
*
|
|
220
|
+
* Sets the title for the **Decrement** button of the NumericTextBox in the recurrence editor.
|
|
221
221
|
*/
|
|
222
222
|
recurrenceEditorNumericDecrement: string;
|
|
223
223
|
/**
|
|
224
|
-
*
|
|
224
|
+
* Sets the label for the **Repeat** field in the recurrence editor.
|
|
225
225
|
*/
|
|
226
226
|
recurrenceEditorRepeat: string;
|
|
227
227
|
/**
|
|
228
|
-
*
|
|
228
|
+
* Sets the text for the **day(s)** label in the recurrence editor.
|
|
229
229
|
*/
|
|
230
230
|
recurrenceEditorDailyInterval: string;
|
|
231
231
|
/**
|
|
232
|
-
*
|
|
232
|
+
* Sets the label for the **Repeat every** field in the recurrence editor (daily).
|
|
233
233
|
*/
|
|
234
234
|
recurrenceEditorDailyRepeatEvery: string;
|
|
235
235
|
/**
|
|
236
|
-
*
|
|
236
|
+
* Sets the text for the **week(s)** label in the recurrence editor.
|
|
237
237
|
*/
|
|
238
238
|
recurrenceEditorWeeklyInterval: string;
|
|
239
239
|
/**
|
|
240
|
-
*
|
|
240
|
+
* Sets the label for the **Repeat every** field in the recurrence editor (weekly).
|
|
241
241
|
*/
|
|
242
242
|
recurrenceEditorWeeklyRepeatEvery: string;
|
|
243
243
|
/**
|
|
244
|
-
*
|
|
244
|
+
* Sets the label for the **Repeat on** field in the recurrence editor (weekly).
|
|
245
245
|
*/
|
|
246
246
|
recurrenceEditorWeeklyRepeatOn: string;
|
|
247
247
|
/**
|
|
248
|
-
*
|
|
248
|
+
* Sets the label for the **Day** field in the recurrence editor (monthly).
|
|
249
249
|
*/
|
|
250
250
|
recurrenceEditorMonthlyDay: string;
|
|
251
251
|
/**
|
|
252
|
-
*
|
|
252
|
+
* Sets the text for the **month(s)** label in the recurrence editor.
|
|
253
253
|
*/
|
|
254
254
|
recurrenceEditorMonthlyInterval: string;
|
|
255
255
|
/**
|
|
256
|
-
*
|
|
256
|
+
* Sets the label for the **Repeat every** field in the recurrence editor (monthly).
|
|
257
257
|
*/
|
|
258
258
|
recurrenceEditorMonthlyRepeatEvery: string;
|
|
259
259
|
/**
|
|
260
|
-
*
|
|
260
|
+
* Sets the label for the **Repeat on** field in the recurrence editor (monthly).
|
|
261
261
|
*/
|
|
262
262
|
recurrenceEditorMonthlyRepeatOn: string;
|
|
263
263
|
/**
|
|
264
|
-
*
|
|
264
|
+
* Sets the label for the **of** text in the recurrence editor (yearly).
|
|
265
265
|
*/
|
|
266
266
|
recurrenceEditorYearlyOf: string;
|
|
267
267
|
/**
|
|
268
|
-
*
|
|
268
|
+
* Sets the label for the **Repeat every** field in the recurrence editor (yearly).
|
|
269
269
|
*/
|
|
270
270
|
recurrenceEditorYearlyRepeatEvery: string;
|
|
271
271
|
/**
|
|
272
|
-
*
|
|
272
|
+
* Sets the label for the **Repeat on** field in the recurrence editor (yearly).
|
|
273
273
|
*/
|
|
274
274
|
recurrenceEditorYearlyRepeatOn: string;
|
|
275
275
|
/**
|
|
276
|
-
*
|
|
276
|
+
* Sets the text for the **year(s)** label in the recurrence editor.
|
|
277
277
|
*/
|
|
278
278
|
recurrenceEditorYearlyInterval: string;
|
|
279
279
|
/**
|
|
280
|
-
*
|
|
280
|
+
* Sets the label for the **Daily** frequency in the recurrence editor.
|
|
281
281
|
*/
|
|
282
282
|
recurrenceEditorFrequenciesDaily: string;
|
|
283
283
|
/**
|
|
284
|
-
*
|
|
284
|
+
* Sets the label for the **Monthly** frequency in the recurrence editor.
|
|
285
285
|
*/
|
|
286
286
|
recurrenceEditorFrequenciesMonthly: string;
|
|
287
287
|
/**
|
|
288
|
-
*
|
|
288
|
+
* Sets the label for the **Never** frequency in the recurrence editor.
|
|
289
289
|
*/
|
|
290
290
|
recurrenceEditorFrequenciesNever: string;
|
|
291
291
|
/**
|
|
292
|
-
*
|
|
292
|
+
* Sets the label for the **Weekly** frequency in the recurrence editor.
|
|
293
293
|
*/
|
|
294
294
|
recurrenceEditorFrequenciesWeekly: string;
|
|
295
295
|
/**
|
|
296
|
-
*
|
|
296
|
+
* Sets the label for the **Yearly** frequency in the recurrence editor.
|
|
297
297
|
*/
|
|
298
298
|
recurrenceEditorFrequenciesYearly: string;
|
|
299
299
|
/**
|
|
300
|
-
*
|
|
300
|
+
* Sets the label for the **First** offset position in the recurrence editor.
|
|
301
301
|
*/
|
|
302
302
|
recurrenceEditorOffsetPositionsFirst: string;
|
|
303
303
|
/**
|
|
304
|
-
*
|
|
304
|
+
* Sets the label for the **Second** offset position in the recurrence editor.
|
|
305
305
|
*/
|
|
306
306
|
recurrenceEditorOffsetPositionsSecond: string;
|
|
307
307
|
/**
|
|
308
|
-
*
|
|
308
|
+
* Sets the label for the **Third** offset position in the recurrence editor.
|
|
309
309
|
*/
|
|
310
310
|
recurrenceEditorOffsetPositionsThird: string;
|
|
311
311
|
/**
|
|
312
|
-
*
|
|
312
|
+
* Sets the label for the **Fourth** offset position in the recurrence editor.
|
|
313
313
|
*/
|
|
314
314
|
recurrenceEditorOffsetPositionsFourth: string;
|
|
315
315
|
/**
|
|
316
|
-
*
|
|
316
|
+
* Sets the label for the **Last** offset position in the recurrence editor.
|
|
317
317
|
*/
|
|
318
318
|
recurrenceEditorOffsetPositionsLast: string;
|
|
319
319
|
/**
|
|
320
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
332
|
+
* Sets the label for the **After** option in the recurrence editor.
|
|
333
333
|
*/
|
|
334
334
|
recurrenceEditorEndAfter: string;
|
|
335
335
|
/**
|
|
336
|
-
*
|
|
336
|
+
* Sets the text for the **occurrence(s)** label in the recurrence editor.
|
|
337
337
|
*/
|
|
338
338
|
recurrenceEditorEndOccurrence: string;
|
|
339
339
|
/**
|
|
340
|
-
*
|
|
340
|
+
* Sets the label for the **End** field in the recurrence editor.
|
|
341
341
|
*/
|
|
342
342
|
recurrenceEditorEndLabel: string;
|
|
343
343
|
/**
|
|
344
|
-
*
|
|
344
|
+
* Sets the label for the **Never** option in the recurrence editor.
|
|
345
345
|
*/
|
|
346
346
|
recurrenceEditorEndNever: string;
|
|
347
347
|
/**
|
|
348
|
-
*
|
|
348
|
+
* Sets the label for the **On** option in the recurrence editor.
|
|
349
349
|
*/
|
|
350
350
|
recurrenceEditorEndOn: string;
|
|
351
351
|
/**
|
|
352
|
-
*
|
|
352
|
+
* Sets the label for the **Event** title in the event editor dialog.
|
|
353
353
|
*/
|
|
354
354
|
editorTitle: string;
|
|
355
355
|
/**
|
|
356
|
-
*
|
|
356
|
+
* Sets the text for the **Delete** button in the remove confirmation dialog.
|
|
357
357
|
*/
|
|
358
358
|
destroy: string;
|
|
359
359
|
/**
|
|
360
|
-
*
|
|
360
|
+
* Sets the confirmation message for deleting an event.
|
|
361
361
|
*/
|
|
362
362
|
deleteConfirmation: string;
|
|
363
363
|
/**
|
|
364
|
-
*
|
|
364
|
+
* Sets the confirmation message for editing a recurring event.
|
|
365
365
|
*/
|
|
366
366
|
editRecurringConfirmation: string;
|
|
367
367
|
/**
|
|
368
|
-
*
|
|
368
|
+
* Sets the text for the **Edit current occurrence** button in the recurring confirmation dialog.
|
|
369
369
|
*/
|
|
370
370
|
editOccurrence: string;
|
|
371
371
|
/**
|
|
372
|
-
*
|
|
372
|
+
* Sets the text for the **Edit the series** button in the recurring confirmation dialog.
|
|
373
373
|
*/
|
|
374
374
|
editSeries: string;
|
|
375
375
|
/**
|
|
376
|
-
*
|
|
376
|
+
* Sets the confirmation message for deleting a recurring event.
|
|
377
377
|
*/
|
|
378
378
|
deleteRecurringConfirmation: string;
|
|
379
379
|
/**
|
|
380
|
-
*
|
|
380
|
+
* Sets the text for the **Delete current occurrence** button in the recurring confirmation dialog.
|
|
381
381
|
*/
|
|
382
382
|
deleteOccurrence: string;
|
|
383
383
|
/**
|
|
384
|
-
*
|
|
384
|
+
* Sets the text for the **Delete the series** button in the recurring confirmation dialog.
|
|
385
385
|
*/
|
|
386
386
|
deleteSeries: string;
|
|
387
387
|
/**
|
|
388
|
-
*
|
|
388
|
+
* Sets the title for the remove confirmation dialog.
|
|
389
389
|
*/
|
|
390
390
|
deleteDialogTitle: string;
|
|
391
391
|
/**
|
|
392
|
-
*
|
|
392
|
+
* Sets the title for the recurring remove confirmation dialog.
|
|
393
393
|
*/
|
|
394
394
|
deleteRecurringDialogTitle: string;
|
|
395
395
|
/**
|
|
396
|
-
*
|
|
396
|
+
* Sets the title for the recurring edit confirmation dialog.
|
|
397
397
|
*/
|
|
398
398
|
editRecurringDialogTitle: string;
|
|
399
399
|
/**
|
|
400
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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.
|
|
3
|
+
"version": "19.1.2-develop.6",
|
|
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":
|
|
22
|
+
"publishDate": 1750434000,
|
|
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.
|
|
36
|
-
"@progress/kendo-angular-buttons": "19.1.2-develop.
|
|
37
|
-
"@progress/kendo-angular-common": "19.1.2-develop.
|
|
38
|
-
"@progress/kendo-angular-dateinputs": "19.1.2-develop.
|
|
39
|
-
"@progress/kendo-angular-dialog": "19.1.2-develop.
|
|
40
|
-
"@progress/kendo-angular-dropdowns": "19.1.2-develop.
|
|
41
|
-
"@progress/kendo-angular-icons": "19.1.2-develop.
|
|
42
|
-
"@progress/kendo-angular-inputs": "19.1.2-develop.
|
|
43
|
-
"@progress/kendo-angular-intl": "19.1.2-develop.
|
|
44
|
-
"@progress/kendo-angular-l10n": "19.1.2-develop.
|
|
45
|
-
"@progress/kendo-angular-label": "19.1.2-develop.
|
|
46
|
-
"@progress/kendo-angular-popup": "19.1.2-develop.
|
|
35
|
+
"@progress/kendo-angular-tooltip": "19.1.2-develop.6",
|
|
36
|
+
"@progress/kendo-angular-buttons": "19.1.2-develop.6",
|
|
37
|
+
"@progress/kendo-angular-common": "19.1.2-develop.6",
|
|
38
|
+
"@progress/kendo-angular-dateinputs": "19.1.2-develop.6",
|
|
39
|
+
"@progress/kendo-angular-dialog": "19.1.2-develop.6",
|
|
40
|
+
"@progress/kendo-angular-dropdowns": "19.1.2-develop.6",
|
|
41
|
+
"@progress/kendo-angular-icons": "19.1.2-develop.6",
|
|
42
|
+
"@progress/kendo-angular-inputs": "19.1.2-develop.6",
|
|
43
|
+
"@progress/kendo-angular-intl": "19.1.2-develop.6",
|
|
44
|
+
"@progress/kendo-angular-l10n": "19.1.2-develop.6",
|
|
45
|
+
"@progress/kendo-angular-label": "19.1.2-develop.6",
|
|
46
|
+
"@progress/kendo-angular-popup": "19.1.2-develop.6",
|
|
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.
|
|
51
|
+
"@progress/kendo-angular-schematics": "19.1.2-develop.6",
|
|
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
|
|
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
|
-
*
|
|
21
|
-
*
|
|
22
|
-
*
|
|
23
|
-
*
|
|
24
|
-
*
|
|
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
|
-
*
|
|
7
|
+
* Provides the arguments for the `pdfExport` event.
|
|
8
8
|
*/
|
|
9
9
|
export declare class PDFExportEvent extends PreventableEvent {
|
|
10
10
|
}
|