@progress/kendo-angular-scheduler 14.4.0-develop.12 → 14.4.0-develop.14
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/editing/date-time-picker.component.d.ts +4 -0
- package/editing/recurrence/recurrence-end-rule-editor.component.d.ts +3 -3
- package/editing/recurrence/recurrence-interval-editor.component.d.ts +3 -3
- package/editing/recurrence/recurrence-monthly-yearly-editor.component.d.ts +3 -3
- package/esm2020/editing/date-time-picker.component.mjs +62 -8
- package/esm2020/editing/recurrence/recurrence-end-rule-editor.component.mjs +35 -9
- package/esm2020/editing/recurrence/recurrence-interval-editor.component.mjs +19 -7
- package/esm2020/editing/recurrence/recurrence-monthly-yearly-editor.component.mjs +19 -7
- package/esm2020/localization/messages.mjs +31 -1
- package/esm2020/package-metadata.mjs +2 -2
- package/esm2020/scheduler.component.mjs +188 -98
- package/fesm2015/progress-kendo-angular-scheduler.mjs +348 -126
- package/fesm2020/progress-kendo-angular-scheduler.mjs +348 -126
- package/localization/messages.d.ts +110 -50
- package/package.json +12 -12
- package/schematics/ngAdd/index.js +2 -2
|
@@ -97,143 +97,203 @@ export declare class Messages extends ComponentMessages {
|
|
|
97
97
|
*/
|
|
98
98
|
agendaViewTitle: string;
|
|
99
99
|
/**
|
|
100
|
-
* The text of the **Cancel** button displayed in the
|
|
100
|
+
* The text of the **Cancel** button displayed in the Scheduler dialogs.
|
|
101
101
|
*/
|
|
102
102
|
cancel: string;
|
|
103
103
|
/**
|
|
104
|
-
* The text of the **Save** button displayed in
|
|
104
|
+
* The text of the **Save** button displayed in the Scheduler dialogs.
|
|
105
105
|
*/
|
|
106
106
|
save: string;
|
|
107
107
|
/**
|
|
108
|
-
* The text similar to 'Title' displayed in the
|
|
108
|
+
* The text similar to 'Title' displayed in the Scheduler event editor.
|
|
109
109
|
*/
|
|
110
110
|
editorEventTitle: string;
|
|
111
111
|
/**
|
|
112
|
-
* The text similar to 'Start' displayed in the
|
|
112
|
+
* The text similar to 'Start' displayed in the Scheduler event editor.
|
|
113
113
|
*/
|
|
114
114
|
editorEventStart: string;
|
|
115
115
|
/**
|
|
116
|
-
* The text similar to 'Start Time Zone' displayed in the
|
|
116
|
+
* The text similar to 'Start Time Zone' displayed in the Scheduler event editor.
|
|
117
117
|
*/
|
|
118
118
|
editorEventStartTimeZone: string;
|
|
119
119
|
/**
|
|
120
|
-
* The text similar to 'End' displayed in the
|
|
120
|
+
* The text similar to 'End' displayed in the Scheduler event editor.
|
|
121
121
|
*/
|
|
122
122
|
editorEventEnd: string;
|
|
123
123
|
/**
|
|
124
|
-
* The text similar to 'End Time Zone' displayed in the
|
|
124
|
+
* The text similar to 'End Time Zone' displayed in the Scheduler event editor.
|
|
125
125
|
*/
|
|
126
126
|
editorEventEndTimeZone: string;
|
|
127
127
|
/**
|
|
128
|
-
* The text similar to 'All Day Event' displayed in the
|
|
128
|
+
* The text similar to 'All Day Event' displayed in the Scheduler event editor.
|
|
129
129
|
*/
|
|
130
130
|
editorEventAllDay: string;
|
|
131
131
|
/**
|
|
132
|
-
* The text similar to 'Description' displayed in the
|
|
132
|
+
* The text similar to 'Description' displayed in the Scheduler event editor.
|
|
133
133
|
*/
|
|
134
134
|
editorEventDescription: string;
|
|
135
135
|
/**
|
|
136
|
-
* The text similar to 'Use separate Start and End Time Zones' displayed in the
|
|
136
|
+
* The text similar to 'Use separate Start and End Time Zones' displayed in the Scheduler event editor.
|
|
137
137
|
*/
|
|
138
138
|
editorEventSeparateTimeZones: string;
|
|
139
139
|
/**
|
|
140
|
-
* The text similar to 'Time Zone' displayed in the
|
|
140
|
+
* The text similar to 'Time Zone' displayed in the Scheduler event editor.
|
|
141
141
|
*/
|
|
142
142
|
editorEventTimeZone: string;
|
|
143
143
|
/**
|
|
144
|
-
* The text
|
|
144
|
+
* The **Today** button text in the popup of the DateTimePickers and DatePickers in the Scheduler event editor.
|
|
145
|
+
*/
|
|
146
|
+
editorDateInputsToday: string;
|
|
147
|
+
/**
|
|
148
|
+
* The title of the **Toggle** button in the popup of the DateTimePickers and DatePickers in the Scheduler event editor.
|
|
149
|
+
*/
|
|
150
|
+
editorDateInputsToggle: string;
|
|
151
|
+
/**
|
|
152
|
+
* The title of the **Parent View** button in the popup of the DateTimePickers and DatePickers in the Scheduler event editor.
|
|
153
|
+
*/
|
|
154
|
+
editorDateInputsParentViewButton: string;
|
|
155
|
+
/**
|
|
156
|
+
* The text of the **Now** button in the popup footer of the DateTimePickers and DatePickers in the Scheduler event editor.
|
|
157
|
+
*/
|
|
158
|
+
editorDateInputsNow: string;
|
|
159
|
+
/**
|
|
160
|
+
* The label of the **Now** button in the popup footer of the DateTimePickers and DatePickers in the Scheduler event editor.
|
|
161
|
+
*/
|
|
162
|
+
editorDateInputsNowLabel: string;
|
|
163
|
+
/**
|
|
164
|
+
* The text of the **Accept** button in the popup footer of the DateTimePickers and DatePickers in the Scheduler event editor.
|
|
165
|
+
*/
|
|
166
|
+
editorDateInputsAccept: string;
|
|
167
|
+
/**
|
|
168
|
+
* The label of the **Accept** button in the popup footer of the DateTimePickers and DatePickers in the Scheduler event editor.
|
|
169
|
+
*/
|
|
170
|
+
editorDateInputsAcceptLabel: string;
|
|
171
|
+
/**
|
|
172
|
+
* The text of the **Cancel** button in the popup footer of the DateTimePickers and DatePickers in the Scheduler event editor.
|
|
173
|
+
*/
|
|
174
|
+
editorDateInputsCancel: string;
|
|
175
|
+
/**
|
|
176
|
+
* The label of the **Cancel** button in the popup footer of the DateTimePickers and DatePickers in the Scheduler event editor.
|
|
177
|
+
*/
|
|
178
|
+
editorDateInputsCancelLabel: string;
|
|
179
|
+
/**
|
|
180
|
+
* The text of the **Date** tab in the popup header of the DateTimePickers and DatePickers in the Scheduler event editor.
|
|
181
|
+
*/
|
|
182
|
+
editorDateInputsDateTab: string;
|
|
183
|
+
/**
|
|
184
|
+
* The label of the **Date** tab in the popup header of the DateTimePickers and DatePickers in the Scheduler event editor.
|
|
185
|
+
*/
|
|
186
|
+
editorDateInputsDateTabLabel: string;
|
|
187
|
+
/**
|
|
188
|
+
* The text of the **Time** tab in the popup header of the DateTimePickers and DatePickers in the Scheduler event editor.
|
|
189
|
+
*/
|
|
190
|
+
editorDateInputsTimeTab: string;
|
|
191
|
+
/**
|
|
192
|
+
* The label of the **Time** tab in the popup header of the DateTimePickers and DatePickers in the Scheduler event editor.
|
|
193
|
+
*/
|
|
194
|
+
editorDateInputsTimeTabLabel: string;
|
|
195
|
+
/**
|
|
196
|
+
* The title of the **Increment** button of the NumericTextBox in the Scheduler recurrence editor.
|
|
197
|
+
*/
|
|
198
|
+
recurrenceEditorNumericIncrement: string;
|
|
199
|
+
/**
|
|
200
|
+
* The title of the **Decrement** button of the NumericTextBox in the Scheduler recurrence editor.
|
|
201
|
+
*/
|
|
202
|
+
recurrenceEditorNumericDecrement: string;
|
|
203
|
+
/**
|
|
204
|
+
* The text similar to 'Repeat' displayed in the Scheduler recurrence editor.
|
|
145
205
|
*/
|
|
146
206
|
recurrenceEditorRepeat: string;
|
|
147
207
|
/**
|
|
148
|
-
* The text similar to 'day(s)' displayed in the
|
|
208
|
+
* The text similar to 'day(s)' displayed in the Scheduler recurrence editor.
|
|
149
209
|
*/
|
|
150
210
|
recurrenceEditorDailyInterval: string;
|
|
151
211
|
/**
|
|
152
|
-
* The text similar to 'Repeat every' displayed in the
|
|
212
|
+
* The text similar to 'Repeat every' displayed in the Scheduler recurrence editor.
|
|
153
213
|
*/
|
|
154
214
|
recurrenceEditorDailyRepeatEvery: string;
|
|
155
215
|
/**
|
|
156
|
-
* The text similar to 'week(s)' displayed in the
|
|
216
|
+
* The text similar to 'week(s)' displayed in the Scheduler recurrence editor.
|
|
157
217
|
*/
|
|
158
218
|
recurrenceEditorWeeklyInterval: string;
|
|
159
219
|
/**
|
|
160
|
-
* The text similar to 'Repeat every' displayed in the
|
|
220
|
+
* The text similar to 'Repeat every' displayed in the Scheduler recurrence editor.
|
|
161
221
|
*/
|
|
162
222
|
recurrenceEditorWeeklyRepeatEvery: string;
|
|
163
223
|
/**
|
|
164
|
-
* The text similar to 'Repeat on' displayed in the
|
|
224
|
+
* The text similar to 'Repeat on' displayed in the Scheduler recurrence editor.
|
|
165
225
|
*/
|
|
166
226
|
recurrenceEditorWeeklyRepeatOn: string;
|
|
167
227
|
/**
|
|
168
|
-
* The text similar to 'Day' displayed in the
|
|
228
|
+
* The text similar to 'Day' displayed in the Scheduler recurrence editor.
|
|
169
229
|
*/
|
|
170
230
|
recurrenceEditorMonthlyDay: string;
|
|
171
231
|
/**
|
|
172
|
-
* The text similar to 'month(s)' displayed in the
|
|
232
|
+
* The text similar to 'month(s)' displayed in the Scheduler recurrence editor.
|
|
173
233
|
*/
|
|
174
234
|
recurrenceEditorMonthlyInterval: string;
|
|
175
235
|
/**
|
|
176
|
-
* The text similar to 'Repeat every' displayed in the
|
|
236
|
+
* The text similar to 'Repeat every' displayed in the Scheduler recurrence editor.
|
|
177
237
|
*/
|
|
178
238
|
recurrenceEditorMonthlyRepeatEvery: string;
|
|
179
239
|
/**
|
|
180
|
-
* The text similar to 'Repeat on' displayed in the
|
|
240
|
+
* The text similar to 'Repeat on' displayed in the Scheduler recurrence editor.
|
|
181
241
|
*/
|
|
182
242
|
recurrenceEditorMonthlyRepeatOn: string;
|
|
183
243
|
/**
|
|
184
|
-
* The text similar to 'of' displayed in the
|
|
244
|
+
* The text similar to 'of' displayed in the Scheduler recurrence editor.
|
|
185
245
|
*/
|
|
186
246
|
recurrenceEditorYearlyOf: string;
|
|
187
247
|
/**
|
|
188
|
-
* The text similar to 'Repeat every' displayed in the
|
|
248
|
+
* The text similar to 'Repeat every' displayed in the Scheduler recurrence editor.
|
|
189
249
|
*/
|
|
190
250
|
recurrenceEditorYearlyRepeatEvery: string;
|
|
191
251
|
/**
|
|
192
|
-
* The text similar to 'Repeat on' displayed in the
|
|
252
|
+
* The text similar to 'Repeat on' displayed in the Scheduler recurrence editor.
|
|
193
253
|
*/
|
|
194
254
|
recurrenceEditorYearlyRepeatOn: string;
|
|
195
255
|
/**
|
|
196
|
-
* The text similar to 'year(s)' displayed in the
|
|
256
|
+
* The text similar to 'year(s)' displayed in the Scheduler recurrence editor.
|
|
197
257
|
*/
|
|
198
258
|
recurrenceEditorYearlyInterval: string;
|
|
199
259
|
/**
|
|
200
|
-
* The text similar to 'Daily' displayed in the
|
|
260
|
+
* The text similar to 'Daily' displayed in the Scheduler recurrence editor.
|
|
201
261
|
*/
|
|
202
262
|
recurrenceEditorFrequenciesDaily: string;
|
|
203
263
|
/**
|
|
204
|
-
* The text similar to 'Monthly' displayed in the
|
|
264
|
+
* The text similar to 'Monthly' displayed in the Scheduler recurrence editor.
|
|
205
265
|
*/
|
|
206
266
|
recurrenceEditorFrequenciesMonthly: string;
|
|
207
267
|
/**
|
|
208
|
-
* The text similar to 'Never' displayed in the
|
|
268
|
+
* The text similar to 'Never' displayed in the Scheduler recurrence editor.
|
|
209
269
|
*/
|
|
210
270
|
recurrenceEditorFrequenciesNever: string;
|
|
211
271
|
/**
|
|
212
|
-
* The text similar to 'Weekly' displayed in the
|
|
272
|
+
* The text similar to 'Weekly' displayed in the Scheduler recurrence editor.
|
|
213
273
|
*/
|
|
214
274
|
recurrenceEditorFrequenciesWeekly: string;
|
|
215
275
|
/**
|
|
216
|
-
* The text similar to 'Yearly' displayed in the
|
|
276
|
+
* The text similar to 'Yearly' displayed in the Scheduler recurrence editor.
|
|
217
277
|
*/
|
|
218
278
|
recurrenceEditorFrequenciesYearly: string;
|
|
219
279
|
/**
|
|
220
|
-
* The text similar to 'First' displayed in the
|
|
280
|
+
* The text similar to 'First' displayed in the Scheduler recurrence editor.
|
|
221
281
|
*/
|
|
222
282
|
recurrenceEditorOffsetPositionsFirst: string;
|
|
223
283
|
/**
|
|
224
|
-
* The text similar to 'Second' displayed in the
|
|
284
|
+
* The text similar to 'Second' displayed in the Scheduler recurrence editor.
|
|
225
285
|
*/
|
|
226
286
|
recurrenceEditorOffsetPositionsSecond: string;
|
|
227
287
|
/**
|
|
228
|
-
* The text similar to 'Third' displayed in the
|
|
288
|
+
* The text similar to 'Third' displayed in the Scheduler recurrence editor.
|
|
229
289
|
*/
|
|
230
290
|
recurrenceEditorOffsetPositionsThird: string;
|
|
231
291
|
/**
|
|
232
|
-
* The text similar to 'Fourth' displayed in the
|
|
292
|
+
* The text similar to 'Fourth' displayed in the Scheduler recurrence editor.
|
|
233
293
|
*/
|
|
234
294
|
recurrenceEditorOffsetPositionsFourth: string;
|
|
235
295
|
/**
|
|
236
|
-
* The text similar to 'Last' displayed in the
|
|
296
|
+
* The text similar to 'Last' displayed in the Scheduler recurrence editor.
|
|
237
297
|
*/
|
|
238
298
|
recurrenceEditorOffsetPositionsLast: string;
|
|
239
299
|
/**
|
|
@@ -249,59 +309,59 @@ export declare class Messages extends ComponentMessages {
|
|
|
249
309
|
*/
|
|
250
310
|
recurrenceEditorWeekdaysWeekendday: string;
|
|
251
311
|
/**
|
|
252
|
-
* The text similar to 'After' displayed in the
|
|
312
|
+
* The text similar to 'After' displayed in the Scheduler recurrence editor.
|
|
253
313
|
*/
|
|
254
314
|
recurrenceEditorEndAfter: string;
|
|
255
315
|
/**
|
|
256
|
-
* The text similar to 'occurrence(s)' displayed in the
|
|
316
|
+
* The text similar to 'occurrence(s)' displayed in the Scheduler recurrence editor.
|
|
257
317
|
*/
|
|
258
318
|
recurrenceEditorEndOccurrence: string;
|
|
259
319
|
/**
|
|
260
|
-
* The text similar to 'End' displayed in the
|
|
320
|
+
* The text similar to 'End' displayed in the Scheduler recurrence editor.
|
|
261
321
|
*/
|
|
262
322
|
recurrenceEditorEndLabel: string;
|
|
263
323
|
/**
|
|
264
|
-
* The text similar to 'Never' displayed in the
|
|
324
|
+
* The text similar to 'Never' displayed in the Scheduler recurrence editor.
|
|
265
325
|
*/
|
|
266
326
|
recurrenceEditorEndNever: string;
|
|
267
327
|
/**
|
|
268
|
-
* The text similar to 'On' displayed in the
|
|
328
|
+
* The text similar to 'On' displayed in the Scheduler recurrence editor.
|
|
269
329
|
*/
|
|
270
330
|
recurrenceEditorEndOn: string;
|
|
271
331
|
/**
|
|
272
|
-
* The text similar to **Event** displayed as title of the
|
|
332
|
+
* The text similar to **Event** displayed as title of the Scheduler event editor.
|
|
273
333
|
*/
|
|
274
334
|
editorTitle: string;
|
|
275
335
|
/**
|
|
276
|
-
* The text of the **Delete** button displayed in the
|
|
336
|
+
* The text of the **Delete** button displayed in the Scheduler remove confirmation dialog.
|
|
277
337
|
*/
|
|
278
338
|
destroy: string;
|
|
279
339
|
/**
|
|
280
|
-
* The text similar to **Are you sure you want to delete this event?** displayed in
|
|
340
|
+
* The text similar to **Are you sure you want to delete this event?** displayed in Scheduler remove confirmation dialog.
|
|
281
341
|
*/
|
|
282
342
|
deleteConfirmation: string;
|
|
283
343
|
/**
|
|
284
|
-
* The text similar to **Do you want to edit only this event occurrence or the whole series?** displayed in the
|
|
344
|
+
* The text similar to **Do you want to edit only this event occurrence or the whole series?** displayed in the Scheduler recurring confirmation dialog.
|
|
285
345
|
*/
|
|
286
346
|
editRecurringConfirmation: string;
|
|
287
347
|
/**
|
|
288
|
-
* The text of the **Edit current occurrence** button displayed in the
|
|
348
|
+
* The text of the **Edit current occurrence** button displayed in the Scheduler recurring confirmation dialog.
|
|
289
349
|
*/
|
|
290
350
|
editOccurrence: string;
|
|
291
351
|
/**
|
|
292
|
-
* The text of the **Edit the series** button displayed in the
|
|
352
|
+
* The text of the **Edit the series** button displayed in the Scheduler recurring confirmation dialog.
|
|
293
353
|
*/
|
|
294
354
|
editSeries: string;
|
|
295
355
|
/**
|
|
296
|
-
* The text similar to **Do you want to delete only this event occurrence or the whole series?** displayed in the
|
|
356
|
+
* The text similar to **Do you want to delete only this event occurrence or the whole series?** displayed in the Scheduler recurring confirmation dialog.
|
|
297
357
|
*/
|
|
298
358
|
deleteRecurringConfirmation: string;
|
|
299
359
|
/**
|
|
300
|
-
* The text of the **Delete current occurrence** button displayed in the
|
|
360
|
+
* The text of the **Delete current occurrence** button displayed in the Scheduler recurring confirmation dialog.
|
|
301
361
|
*/
|
|
302
362
|
deleteOccurrence: string;
|
|
303
363
|
/**
|
|
304
|
-
* The text similar of the **Delete the series** button displayed in the
|
|
364
|
+
* The text similar of the **Delete the series** button displayed in the Scheduler recurring confirmation dialog.
|
|
305
365
|
*/
|
|
306
366
|
deleteSeries: string;
|
|
307
367
|
/**
|
|
@@ -321,5 +381,5 @@ export declare class Messages extends ComponentMessages {
|
|
|
321
381
|
*/
|
|
322
382
|
selectView: string;
|
|
323
383
|
static ɵfac: i0.ɵɵFactoryDeclaration<Messages, never>;
|
|
324
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<Messages, never, never, { "allEvents": "allEvents"; "allDay": "allDay"; "dateHeader": "dateHeader"; "timeHeader": "timeHeader"; "eventHeader": "eventHeader"; "deleteTitle": "deleteTitle"; "nextTitle": "nextTitle"; "previousTitle": "previousTitle"; "today": "today"; "calendarToday": "calendarToday"; "showFullDay": "showFullDay"; "showWorkDay": "showWorkDay"; "dayViewTitle": "dayViewTitle"; "multiDayViewTitle": "multiDayViewTitle"; "weekViewTitle": "weekViewTitle"; "workWeekViewTitle": "workWeekViewTitle"; "monthViewTitle": "monthViewTitle"; "multiWeekViewTitle": "multiWeekViewTitle"; "timelineViewTitle": "timelineViewTitle"; "timelineWeekViewTitle": "timelineWeekViewTitle"; "timelineMonthViewTitle": "timelineMonthViewTitle"; "agendaViewTitle": "agendaViewTitle"; "cancel": "cancel"; "save": "save"; "editorEventTitle": "editorEventTitle"; "editorEventStart": "editorEventStart"; "editorEventStartTimeZone": "editorEventStartTimeZone"; "editorEventEnd": "editorEventEnd"; "editorEventEndTimeZone": "editorEventEndTimeZone"; "editorEventAllDay": "editorEventAllDay"; "editorEventDescription": "editorEventDescription"; "editorEventSeparateTimeZones": "editorEventSeparateTimeZones"; "editorEventTimeZone": "editorEventTimeZone"; "recurrenceEditorRepeat": "recurrenceEditorRepeat"; "recurrenceEditorDailyInterval": "recurrenceEditorDailyInterval"; "recurrenceEditorDailyRepeatEvery": "recurrenceEditorDailyRepeatEvery"; "recurrenceEditorWeeklyInterval": "recurrenceEditorWeeklyInterval"; "recurrenceEditorWeeklyRepeatEvery": "recurrenceEditorWeeklyRepeatEvery"; "recurrenceEditorWeeklyRepeatOn": "recurrenceEditorWeeklyRepeatOn"; "recurrenceEditorMonthlyDay": "recurrenceEditorMonthlyDay"; "recurrenceEditorMonthlyInterval": "recurrenceEditorMonthlyInterval"; "recurrenceEditorMonthlyRepeatEvery": "recurrenceEditorMonthlyRepeatEvery"; "recurrenceEditorMonthlyRepeatOn": "recurrenceEditorMonthlyRepeatOn"; "recurrenceEditorYearlyOf": "recurrenceEditorYearlyOf"; "recurrenceEditorYearlyRepeatEvery": "recurrenceEditorYearlyRepeatEvery"; "recurrenceEditorYearlyRepeatOn": "recurrenceEditorYearlyRepeatOn"; "recurrenceEditorYearlyInterval": "recurrenceEditorYearlyInterval"; "recurrenceEditorFrequenciesDaily": "recurrenceEditorFrequenciesDaily"; "recurrenceEditorFrequenciesMonthly": "recurrenceEditorFrequenciesMonthly"; "recurrenceEditorFrequenciesNever": "recurrenceEditorFrequenciesNever"; "recurrenceEditorFrequenciesWeekly": "recurrenceEditorFrequenciesWeekly"; "recurrenceEditorFrequenciesYearly": "recurrenceEditorFrequenciesYearly"; "recurrenceEditorOffsetPositionsFirst": "recurrenceEditorOffsetPositionsFirst"; "recurrenceEditorOffsetPositionsSecond": "recurrenceEditorOffsetPositionsSecond"; "recurrenceEditorOffsetPositionsThird": "recurrenceEditorOffsetPositionsThird"; "recurrenceEditorOffsetPositionsFourth": "recurrenceEditorOffsetPositionsFourth"; "recurrenceEditorOffsetPositionsLast": "recurrenceEditorOffsetPositionsLast"; "recurrenceEditorWeekdaysDay": "recurrenceEditorWeekdaysDay"; "recurrenceEditorWeekdaysWeekday": "recurrenceEditorWeekdaysWeekday"; "recurrenceEditorWeekdaysWeekendday": "recurrenceEditorWeekdaysWeekendday"; "recurrenceEditorEndAfter": "recurrenceEditorEndAfter"; "recurrenceEditorEndOccurrence": "recurrenceEditorEndOccurrence"; "recurrenceEditorEndLabel": "recurrenceEditorEndLabel"; "recurrenceEditorEndNever": "recurrenceEditorEndNever"; "recurrenceEditorEndOn": "recurrenceEditorEndOn"; "editorTitle": "editorTitle"; "destroy": "destroy"; "deleteConfirmation": "deleteConfirmation"; "editRecurringConfirmation": "editRecurringConfirmation"; "editOccurrence": "editOccurrence"; "editSeries": "editSeries"; "deleteRecurringConfirmation": "deleteRecurringConfirmation"; "deleteOccurrence": "deleteOccurrence"; "deleteSeries": "deleteSeries"; "deleteDialogTitle": "deleteDialogTitle"; "deleteRecurringDialogTitle": "deleteRecurringDialogTitle"; "editRecurringDialogTitle": "editRecurringDialogTitle"; "selectView": "selectView"; }, {}, never>;
|
|
384
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<Messages, never, never, { "allEvents": "allEvents"; "allDay": "allDay"; "dateHeader": "dateHeader"; "timeHeader": "timeHeader"; "eventHeader": "eventHeader"; "deleteTitle": "deleteTitle"; "nextTitle": "nextTitle"; "previousTitle": "previousTitle"; "today": "today"; "calendarToday": "calendarToday"; "showFullDay": "showFullDay"; "showWorkDay": "showWorkDay"; "dayViewTitle": "dayViewTitle"; "multiDayViewTitle": "multiDayViewTitle"; "weekViewTitle": "weekViewTitle"; "workWeekViewTitle": "workWeekViewTitle"; "monthViewTitle": "monthViewTitle"; "multiWeekViewTitle": "multiWeekViewTitle"; "timelineViewTitle": "timelineViewTitle"; "timelineWeekViewTitle": "timelineWeekViewTitle"; "timelineMonthViewTitle": "timelineMonthViewTitle"; "agendaViewTitle": "agendaViewTitle"; "cancel": "cancel"; "save": "save"; "editorEventTitle": "editorEventTitle"; "editorEventStart": "editorEventStart"; "editorEventStartTimeZone": "editorEventStartTimeZone"; "editorEventEnd": "editorEventEnd"; "editorEventEndTimeZone": "editorEventEndTimeZone"; "editorEventAllDay": "editorEventAllDay"; "editorEventDescription": "editorEventDescription"; "editorEventSeparateTimeZones": "editorEventSeparateTimeZones"; "editorEventTimeZone": "editorEventTimeZone"; "editorDateInputsToday": "editorDateInputsToday"; "editorDateInputsToggle": "editorDateInputsToggle"; "editorDateInputsParentViewButton": "editorDateInputsParentViewButton"; "editorDateInputsNow": "editorDateInputsNow"; "editorDateInputsNowLabel": "editorDateInputsNowLabel"; "editorDateInputsAccept": "editorDateInputsAccept"; "editorDateInputsAcceptLabel": "editorDateInputsAcceptLabel"; "editorDateInputsCancel": "editorDateInputsCancel"; "editorDateInputsCancelLabel": "editorDateInputsCancelLabel"; "editorDateInputsDateTab": "editorDateInputsDateTab"; "editorDateInputsDateTabLabel": "editorDateInputsDateTabLabel"; "editorDateInputsTimeTab": "editorDateInputsTimeTab"; "editorDateInputsTimeTabLabel": "editorDateInputsTimeTabLabel"; "recurrenceEditorNumericIncrement": "recurrenceEditorNumericIncrement"; "recurrenceEditorNumericDecrement": "recurrenceEditorNumericDecrement"; "recurrenceEditorRepeat": "recurrenceEditorRepeat"; "recurrenceEditorDailyInterval": "recurrenceEditorDailyInterval"; "recurrenceEditorDailyRepeatEvery": "recurrenceEditorDailyRepeatEvery"; "recurrenceEditorWeeklyInterval": "recurrenceEditorWeeklyInterval"; "recurrenceEditorWeeklyRepeatEvery": "recurrenceEditorWeeklyRepeatEvery"; "recurrenceEditorWeeklyRepeatOn": "recurrenceEditorWeeklyRepeatOn"; "recurrenceEditorMonthlyDay": "recurrenceEditorMonthlyDay"; "recurrenceEditorMonthlyInterval": "recurrenceEditorMonthlyInterval"; "recurrenceEditorMonthlyRepeatEvery": "recurrenceEditorMonthlyRepeatEvery"; "recurrenceEditorMonthlyRepeatOn": "recurrenceEditorMonthlyRepeatOn"; "recurrenceEditorYearlyOf": "recurrenceEditorYearlyOf"; "recurrenceEditorYearlyRepeatEvery": "recurrenceEditorYearlyRepeatEvery"; "recurrenceEditorYearlyRepeatOn": "recurrenceEditorYearlyRepeatOn"; "recurrenceEditorYearlyInterval": "recurrenceEditorYearlyInterval"; "recurrenceEditorFrequenciesDaily": "recurrenceEditorFrequenciesDaily"; "recurrenceEditorFrequenciesMonthly": "recurrenceEditorFrequenciesMonthly"; "recurrenceEditorFrequenciesNever": "recurrenceEditorFrequenciesNever"; "recurrenceEditorFrequenciesWeekly": "recurrenceEditorFrequenciesWeekly"; "recurrenceEditorFrequenciesYearly": "recurrenceEditorFrequenciesYearly"; "recurrenceEditorOffsetPositionsFirst": "recurrenceEditorOffsetPositionsFirst"; "recurrenceEditorOffsetPositionsSecond": "recurrenceEditorOffsetPositionsSecond"; "recurrenceEditorOffsetPositionsThird": "recurrenceEditorOffsetPositionsThird"; "recurrenceEditorOffsetPositionsFourth": "recurrenceEditorOffsetPositionsFourth"; "recurrenceEditorOffsetPositionsLast": "recurrenceEditorOffsetPositionsLast"; "recurrenceEditorWeekdaysDay": "recurrenceEditorWeekdaysDay"; "recurrenceEditorWeekdaysWeekday": "recurrenceEditorWeekdaysWeekday"; "recurrenceEditorWeekdaysWeekendday": "recurrenceEditorWeekdaysWeekendday"; "recurrenceEditorEndAfter": "recurrenceEditorEndAfter"; "recurrenceEditorEndOccurrence": "recurrenceEditorEndOccurrence"; "recurrenceEditorEndLabel": "recurrenceEditorEndLabel"; "recurrenceEditorEndNever": "recurrenceEditorEndNever"; "recurrenceEditorEndOn": "recurrenceEditorEndOn"; "editorTitle": "editorTitle"; "destroy": "destroy"; "deleteConfirmation": "deleteConfirmation"; "editRecurringConfirmation": "editRecurringConfirmation"; "editOccurrence": "editOccurrence"; "editSeries": "editSeries"; "deleteRecurringConfirmation": "deleteRecurringConfirmation"; "deleteOccurrence": "deleteOccurrence"; "deleteSeries": "deleteSeries"; "deleteDialogTitle": "deleteDialogTitle"; "deleteRecurringDialogTitle": "deleteRecurringDialogTitle"; "editRecurringDialogTitle": "editRecurringDialogTitle"; "selectView": "selectView"; }, {}, never>;
|
|
325
385
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-scheduler",
|
|
3
|
-
"version": "14.4.0-develop.
|
|
3
|
+
"version": "14.4.0-develop.14",
|
|
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",
|
|
@@ -26,21 +26,21 @@
|
|
|
26
26
|
"@progress/kendo-data-query": "^1.0.0",
|
|
27
27
|
"@progress/kendo-drawing": "^1.19.0",
|
|
28
28
|
"@progress/kendo-licensing": "^1.0.2",
|
|
29
|
-
"@progress/kendo-angular-buttons": "14.4.0-develop.
|
|
30
|
-
"@progress/kendo-angular-common": "14.4.0-develop.
|
|
31
|
-
"@progress/kendo-angular-dateinputs": "14.4.0-develop.
|
|
32
|
-
"@progress/kendo-angular-dialog": "14.4.0-develop.
|
|
33
|
-
"@progress/kendo-angular-dropdowns": "14.4.0-develop.
|
|
34
|
-
"@progress/kendo-angular-icons": "14.4.0-develop.
|
|
35
|
-
"@progress/kendo-angular-inputs": "14.4.0-develop.
|
|
36
|
-
"@progress/kendo-angular-intl": "14.4.0-develop.
|
|
37
|
-
"@progress/kendo-angular-l10n": "14.4.0-develop.
|
|
38
|
-
"@progress/kendo-angular-popup": "14.4.0-develop.
|
|
29
|
+
"@progress/kendo-angular-buttons": "14.4.0-develop.14",
|
|
30
|
+
"@progress/kendo-angular-common": "14.4.0-develop.14",
|
|
31
|
+
"@progress/kendo-angular-dateinputs": "14.4.0-develop.14",
|
|
32
|
+
"@progress/kendo-angular-dialog": "14.4.0-develop.14",
|
|
33
|
+
"@progress/kendo-angular-dropdowns": "14.4.0-develop.14",
|
|
34
|
+
"@progress/kendo-angular-icons": "14.4.0-develop.14",
|
|
35
|
+
"@progress/kendo-angular-inputs": "14.4.0-develop.14",
|
|
36
|
+
"@progress/kendo-angular-intl": "14.4.0-develop.14",
|
|
37
|
+
"@progress/kendo-angular-l10n": "14.4.0-develop.14",
|
|
38
|
+
"@progress/kendo-angular-popup": "14.4.0-develop.14",
|
|
39
39
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
42
|
"tslib": "^2.3.1",
|
|
43
|
-
"@progress/kendo-angular-schematics": "14.4.0-develop.
|
|
43
|
+
"@progress/kendo-angular-schematics": "14.4.0-develop.14",
|
|
44
44
|
"@progress/kendo-date-math": "^1.3.2",
|
|
45
45
|
"@progress/kendo-draggable": "^3.0.2",
|
|
46
46
|
"@progress/kendo-file-saver": "^1.0.7",
|
|
@@ -4,9 +4,9 @@ const schematics_1 = require("@angular-devkit/schematics");
|
|
|
4
4
|
function default_1(options) {
|
|
5
5
|
const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'SchedulerModule', package: 'scheduler', peerDependencies: {
|
|
6
6
|
// peer dep of the dropdowns
|
|
7
|
-
'@progress/kendo-angular-treeview': '14.4.0-develop.
|
|
7
|
+
'@progress/kendo-angular-treeview': '14.4.0-develop.14',
|
|
8
8
|
// peer dependency of kendo-angular-inputs
|
|
9
|
-
'@progress/kendo-angular-dialog': '14.4.0-develop.
|
|
9
|
+
'@progress/kendo-angular-dialog': '14.4.0-develop.14',
|
|
10
10
|
// peer dependency of kendo-angular-icons
|
|
11
11
|
'@progress/kendo-svg-icons': '^2.0.0'
|
|
12
12
|
} });
|