@progress/kendo-angular-scheduler 25.0.0-develop.7 → 25.0.0

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/index.d.ts CHANGED
@@ -4,23 +4,23 @@
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import * as i0 from '@angular/core';
6
6
  import { TemplateRef, ElementRef, NgZone, EventEmitter, OnDestroy, Renderer2, ViewContainerRef, ChangeDetectorRef, OnInit, AfterContentInit, QueryList, OnChanges, SimpleChanges, Injector, AfterContentChecked, PipeTransform, AfterViewInit } from '@angular/core';
7
- import { LocalizationService, ComponentMessages, MessageService } from '@progress/kendo-angular-l10n';
7
+ import { LocalizationService, ComponentMessages } from '@progress/kendo-angular-l10n';
8
8
  import { ResizeSensorComponent, ScrollbarService } from '@progress/kendo-angular-common';
9
9
  import { ZonedDate, Day } from '@progress/kendo-date-math';
10
10
  import { Observable, Subject, Subscription, BehaviorSubject } from 'rxjs';
11
11
  import { LicenseMessage } from '@progress/kendo-licensing';
12
12
  import { FormGroup, ControlValueAccessor, FormControl } from '@angular/forms';
13
+ import { SVGIcon } from '@progress/kendo-svg-icons';
13
14
  import { NumberFormatOptions, IntlService, CldrIntlService } from '@progress/kendo-angular-intl';
14
15
  import { DialogService } from '@progress/kendo-angular-dialog';
15
16
  import { pdf } from '@progress/kendo-drawing';
16
- import { Button, SegmentedItemSettings } from '@progress/kendo-angular-buttons';
17
+ import { Button, SegmentedItemSettings, ButtonComponent } from '@progress/kendo-angular-buttons';
17
18
  import { RecurrenceRule } from '@progress/kendo-recurrence';
18
- import { CalendarView, DateInputFormatPlaceholder, PopupSettings, CalendarComponent, DatePickerComponent, DateTimePickerComponent } from '@progress/kendo-angular-dateinputs';
19
- import { ComboBoxComponent, MultiSelectComponent, DropDownListComponent } from '@progress/kendo-angular-dropdowns';
19
+ import { CalendarView, DateInputFormatPlaceholder, PopupSettings, CalendarComponent } from '@progress/kendo-angular-dateinputs';
20
+ import { DropDownListComponent, MultiSelectComponent } from '@progress/kendo-angular-dropdowns';
20
21
  import { PopupService } from '@progress/kendo-angular-popup';
21
- import { SVGIcon } from '@progress/kendo-svg-icons';
22
22
  import { Draggable } from '@progress/kendo-draggable';
23
- import { TooltipDirective } from '@progress/kendo-angular-tooltip';
23
+ import { PopoverAnchorDirective } from '@progress/kendo-angular-tooltip';
24
24
 
25
25
  /**
26
26
  * Contains meta information about a Scheduler view.
@@ -271,6 +271,10 @@ interface SchedulerEvent {
271
271
  * Sets the recurrence exceptions, if any.
272
272
  */
273
273
  recurrenceExceptions?: Date[];
274
+ /**
275
+ * Specifies if the event is read-only.
276
+ */
277
+ readonly?: boolean;
274
278
  }
275
279
 
276
280
  /**
@@ -361,6 +365,12 @@ interface SchedulerModelFields {
361
365
  * @default "recurrenceExceptions"
362
366
  */
363
367
  recurrenceExceptions?: string;
368
+ /**
369
+ * Sets the name of the read-only flag model field.
370
+ *
371
+ * @default "readonly"
372
+ */
373
+ readonly?: string;
364
374
  }
365
375
 
366
376
  /**
@@ -395,6 +405,10 @@ interface Resource {
395
405
  * Specifies if events have multiple resource values.
396
406
  */
397
407
  multiple?: boolean;
408
+ /**
409
+ * Sets the icon for the resource.
410
+ */
411
+ icon?: SVGIcon;
398
412
  }
399
413
 
400
414
  /**
@@ -1350,6 +1364,10 @@ declare class MoreEventsClickEvent extends PreventableEvent {
1350
1364
  * The events that are hidden from the day slot.
1351
1365
  */
1352
1366
  moreEvents: SchedulerEvent[];
1367
+ /**
1368
+ * The date of the day slot.
1369
+ */
1370
+ date: Date;
1353
1371
  /**
1354
1372
  * @hidden
1355
1373
  */
@@ -1985,7 +2003,7 @@ declare class EditService$1 {
1985
2003
  private changedSource;
1986
2004
  constructor(ngZone: NgZone);
1987
2005
  endEdit(): void;
1988
- removeEvent(dataItem: any): void;
2006
+ removeEvent(dataItem: any, mode?: EditMode): void;
1989
2007
  addEvent(formGroup: FormGroup): void;
1990
2008
  editEvent(dataItem: any, formGroup?: FormGroup, mode?: EditMode): void;
1991
2009
  close(): void;
@@ -2035,6 +2053,32 @@ declare class EditDialogTemplateDirective {
2035
2053
  static ɵdir: i0.ɵɵDirectiveDeclaration<EditDialogTemplateDirective, "[kendoSchedulerEditDialogTemplate]", never, { "autoFocusedElement": { "alias": "autoFocusedElement"; "required": false; }; }, {}, never, never, true, never>;
2036
2054
  }
2037
2055
 
2056
+ /**
2057
+ * Represents the template directive for customizing the text of the recurrence button in the Scheduler edit form.
2058
+ * To define the template, nest an `<ng-template>` tag with the `kendoSchedulerRecurrenceButtonTextTemplate` directive
2059
+ * inside the `<kendo-scheduler>` tag.
2060
+ *
2061
+ * The template context is set to the current recurrence rule and the following additional fields are passed:
2062
+ * - `recurrenceRule`&mdash;The current recurrence rule as a string.
2063
+ * - `parsedRule`&mdash;The parsed `RecurrenceRule` object.
2064
+ * - `text`&mdash;The default button text that would have been displayed.
2065
+ *
2066
+ * @example
2067
+ * ```html
2068
+ * <kendo-scheduler>
2069
+ * <ng-template kendoSchedulerRecurrenceButtonTextTemplate let-recurrenceRule let-parsedRule="parsedRule" let-text="text">
2070
+ * <span>{{ rule ? 'Edit repeating pattern' : 'Repeat this event' }}</span>
2071
+ * </ng-template>
2072
+ * </kendo-scheduler>
2073
+ * ```
2074
+ */
2075
+ declare class RecurrenceButtonTextTemplateDirective {
2076
+ templateRef: TemplateRef<any>;
2077
+ constructor(templateRef: TemplateRef<any>);
2078
+ static ɵfac: i0.ɵɵFactoryDeclaration<RecurrenceButtonTextTemplateDirective, [{ optional: true; }]>;
2079
+ static ɵdir: i0.ɵɵDirectiveDeclaration<RecurrenceButtonTextTemplateDirective, "[kendoSchedulerRecurrenceButtonTextTemplate]", never, {}, {}, never, never, true, never>;
2080
+ }
2081
+
2038
2082
  /**
2039
2083
  * @hidden
2040
2084
  */
@@ -2128,10 +2172,16 @@ declare class FocusService implements OnDestroy {
2128
2172
  ngOnDestroy(): void;
2129
2173
  register(item: FocusableElement): void;
2130
2174
  unregister(item: FocusableElement): void;
2175
+ /**
2176
+ * Moves `item` to the position immediately after `anchor` in the navigation sequence.
2177
+ * Used to place the "show more" button right after the last visible event in its slot.
2178
+ */
2179
+ moveAfter(item: FocusableElement, anchor: FocusableElement): void;
2180
+ getFocusableByElement(element: Element): FocusableElement | undefined;
2131
2181
  focus(preventScroll?: boolean): void;
2132
2182
  focusContent(): void;
2133
2183
  focusToolbar(): void;
2134
- focusNext(options?: FocusPosition): boolean;
2184
+ focusNext(options?: FocusPosition, containerType?: string): boolean;
2135
2185
  focusByIndex(index: number, preventScroll?: boolean): void;
2136
2186
  private activate;
2137
2187
  private activateNext;
@@ -2140,6 +2190,7 @@ declare class FocusService implements OnDestroy {
2140
2190
  private shouldMoveFocusOnUnregister;
2141
2191
  private onFocusIn;
2142
2192
  private onFocusOut;
2193
+ private findRegisteredElement;
2143
2194
  static ɵfac: i0.ɵɵFactoryDeclaration<FocusService, [{ optional: true; }, { optional: true; }, null, null]>;
2144
2195
  static ɵprov: i0.ɵɵInjectableDeclaration<FocusService>;
2145
2196
  }
@@ -2210,6 +2261,32 @@ declare class FocusableDirective implements FocusableElement, OnInit {
2210
2261
  static ɵdir: i0.ɵɵDirectiveDeclaration<FocusableDirective, "[kendoSchedulerFocusIndex]", never, { "focusIndex": { "alias": "kendoSchedulerFocusIndex"; "required": false; }; "containerType": { "alias": "containerType"; "required": false; }; }, {}, never, never, true, never>;
2211
2262
  }
2212
2263
 
2264
+ /**
2265
+ * Represents the template directive for customizing the recurrence summary of the Recurrence Editor.
2266
+ * To define the template, nest an `<ng-template>` tag with the `kendoSchedulerRecurrenceSummaryTemplate` directive
2267
+ * inside the `<kendo-scheduler>` tag.
2268
+ *
2269
+ * The template context is set to the current recurrence rule and the following additional fields are passed:
2270
+ * - `recurrenceRule`&mdash;The current recurrence rule as a string.
2271
+ * - `parsedRule`&mdash;The parsed `RecurrenceRule` object.
2272
+ * - `text`&mdash;The default summary text that would have been displayed.
2273
+ *
2274
+ * @example
2275
+ * ```html
2276
+ * <kendo-scheduler>
2277
+ * <ng-template kendoSchedulerRecurrenceSummaryTemplate let-recurrenceRule let-parsedRule="parsedRule" let-text="text">
2278
+ * <span>{{ text }}</span>
2279
+ * </ng-template>
2280
+ * </kendo-scheduler>
2281
+ * ```
2282
+ */
2283
+ declare class RecurrenceSummaryTemplateDirective {
2284
+ templateRef: TemplateRef<any>;
2285
+ constructor(templateRef: TemplateRef<any>);
2286
+ static ɵfac: i0.ɵɵFactoryDeclaration<RecurrenceSummaryTemplateDirective, [{ optional: true; }]>;
2287
+ static ɵdir: i0.ɵɵDirectiveDeclaration<RecurrenceSummaryTemplateDirective, "[kendoSchedulerRecurrenceSummaryTemplate]", never, {}, {}, never, never, true, never>;
2288
+ }
2289
+
2213
2290
  /**
2214
2291
  * Represents the [Kendo UI Scheduler component for Angular](https://www.telerik.com/kendo-angular-ui/components/scheduler).
2215
2292
  *
@@ -2546,6 +2623,14 @@ declare class SchedulerComponent implements AfterContentInit, OnDestroy, OnInit
2546
2623
  * @hidden
2547
2624
  */
2548
2625
  editDialogTemplate: EditDialogTemplateDirective;
2626
+ /**
2627
+ * @hidden
2628
+ */
2629
+ recurrenceButtonTextTemplate: RecurrenceButtonTextTemplateDirective;
2630
+ /**
2631
+ * @hidden
2632
+ */
2633
+ recurrenceSummaryTemplate: RecurrenceSummaryTemplateDirective;
2549
2634
  /**
2550
2635
  * @hidden
2551
2636
  */
@@ -2661,6 +2746,10 @@ declare class SchedulerComponent implements AfterContentInit, OnDestroy, OnInit
2661
2746
  * @hidden
2662
2747
  */
2663
2748
  onToolbarWidthChange(width: number): void;
2749
+ /**
2750
+ * @hidden
2751
+ */
2752
+ onNewEventClick(): void;
2664
2753
  /**
2665
2754
  * Creates a popup editor for the new event.
2666
2755
  *
@@ -2770,7 +2859,7 @@ declare class SchedulerComponent implements AfterContentInit, OnDestroy, OnInit
2770
2859
  private intlChange;
2771
2860
  private attachElementEventHandlers;
2772
2861
  static ɵfac: i0.ɵɵFactoryDeclaration<SchedulerComponent, never>;
2773
- static ɵcmp: i0.ɵɵComponentDeclaration<SchedulerComponent, "kendo-scheduler", never, { "selectedViewIndex": { "alias": "selectedViewIndex"; "required": false; }; "editable": { "alias": "editable"; "required": false; }; "selectable": { "alias": "selectable"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "eventHeight": { "alias": "eventHeight"; "required": false; }; "columnWidth": { "alias": "columnWidth"; "required": false; }; "showWorkHours": { "alias": "showWorkHours"; "required": false; }; "startTime": { "alias": "startTime"; "required": false; }; "endTime": { "alias": "endTime"; "required": false; }; "workDayStart": { "alias": "workDayStart"; "required": false; }; "workDayEnd": { "alias": "workDayEnd"; "required": false; }; "workWeekStart": { "alias": "workWeekStart"; "required": false; }; "workWeekEnd": { "alias": "workWeekEnd"; "required": false; }; "weekStart": { "alias": "weekStart"; "required": false; }; "slotDuration": { "alias": "slotDuration"; "required": false; }; "slotDivisions": { "alias": "slotDivisions"; "required": false; }; "slotFill": { "alias": "slotFill"; "required": false; }; "allDaySlot": { "alias": "allDaySlot"; "required": false; }; "scrollTime": { "alias": "scrollTime"; "required": false; }; "group": { "alias": "group"; "required": false; }; "resources": { "alias": "resources"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "timezone": { "alias": "timezone"; "required": false; }; "events": { "alias": "events"; "required": false; }; "selectedDate": { "alias": "selectedDate"; "required": false; }; "modelFields": { "alias": "modelFields"; "required": false; }; "currentTimeMarker": { "alias": "currentTimeMarker"; "required": false; }; "highlightOngoingEvents": { "alias": "highlightOngoingEvents"; "required": false; }; "showToolbar": { "alias": "showToolbar"; "required": false; }; "showFooter": { "alias": "showFooter"; "required": false; }; "slotClass": { "alias": "slotClass"; "required": false; }; "eventClass": { "alias": "eventClass"; "required": false; }; "eventStyles": { "alias": "eventStyles"; "required": false; }; "hiddenDays": { "alias": "hiddenDays"; "required": false; }; "isSlotSelected": { "alias": "isSlotSelected"; "required": false; }; }, { "selectedViewIndexChange": "selectedViewIndexChange"; "navigate": "navigate"; "dateChange": "dateChange"; "slotClick": "slotClick"; "slotDblClick": "slotDblClick"; "create": "create"; "eventClick": "eventClick"; "eventDblClick": "eventDblClick"; "eventKeydown": "eventKeydown"; "cancel": "cancel"; "save": "save"; "remove": "remove"; "resizeStart": "resizeStart"; "resize": "resize"; "resizeEnd": "resizeEnd"; "dragStart": "dragStart"; "drag": "drag"; "dragEnd": "dragEnd"; "slotDragStart": "slotDragStart"; "slotDrag": "slotDrag"; "slotDragEnd": "slotDragEnd"; "pdfExport": "pdfExport"; "schedulerResize": "schedulerResize"; }, ["editDialogTemplate", "toolbarTemplate", "views", "allDayEventTemplate", "eventTemplate", "timeSlotTemplate", "minorTimeHeaderTemplate", "majorTimeHeaderTemplate", "monthDaySlotTemplate", "multiWeekDaySlotTemplate", "dateHeaderTemplate", "allDaySlotTemplate", "groupHeaderTemplate", "agendaDateTemplate", "agendaTimeTemplate"], never, true, never>;
2862
+ static ɵcmp: i0.ɵɵComponentDeclaration<SchedulerComponent, "kendo-scheduler", never, { "selectedViewIndex": { "alias": "selectedViewIndex"; "required": false; }; "editable": { "alias": "editable"; "required": false; }; "selectable": { "alias": "selectable"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "eventHeight": { "alias": "eventHeight"; "required": false; }; "columnWidth": { "alias": "columnWidth"; "required": false; }; "showWorkHours": { "alias": "showWorkHours"; "required": false; }; "startTime": { "alias": "startTime"; "required": false; }; "endTime": { "alias": "endTime"; "required": false; }; "workDayStart": { "alias": "workDayStart"; "required": false; }; "workDayEnd": { "alias": "workDayEnd"; "required": false; }; "workWeekStart": { "alias": "workWeekStart"; "required": false; }; "workWeekEnd": { "alias": "workWeekEnd"; "required": false; }; "weekStart": { "alias": "weekStart"; "required": false; }; "slotDuration": { "alias": "slotDuration"; "required": false; }; "slotDivisions": { "alias": "slotDivisions"; "required": false; }; "slotFill": { "alias": "slotFill"; "required": false; }; "allDaySlot": { "alias": "allDaySlot"; "required": false; }; "scrollTime": { "alias": "scrollTime"; "required": false; }; "group": { "alias": "group"; "required": false; }; "resources": { "alias": "resources"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "timezone": { "alias": "timezone"; "required": false; }; "events": { "alias": "events"; "required": false; }; "selectedDate": { "alias": "selectedDate"; "required": false; }; "modelFields": { "alias": "modelFields"; "required": false; }; "currentTimeMarker": { "alias": "currentTimeMarker"; "required": false; }; "highlightOngoingEvents": { "alias": "highlightOngoingEvents"; "required": false; }; "showToolbar": { "alias": "showToolbar"; "required": false; }; "showFooter": { "alias": "showFooter"; "required": false; }; "slotClass": { "alias": "slotClass"; "required": false; }; "eventClass": { "alias": "eventClass"; "required": false; }; "eventStyles": { "alias": "eventStyles"; "required": false; }; "hiddenDays": { "alias": "hiddenDays"; "required": false; }; "isSlotSelected": { "alias": "isSlotSelected"; "required": false; }; }, { "selectedViewIndexChange": "selectedViewIndexChange"; "navigate": "navigate"; "dateChange": "dateChange"; "slotClick": "slotClick"; "slotDblClick": "slotDblClick"; "create": "create"; "eventClick": "eventClick"; "eventDblClick": "eventDblClick"; "eventKeydown": "eventKeydown"; "cancel": "cancel"; "save": "save"; "remove": "remove"; "resizeStart": "resizeStart"; "resize": "resize"; "resizeEnd": "resizeEnd"; "dragStart": "dragStart"; "drag": "drag"; "dragEnd": "dragEnd"; "slotDragStart": "slotDragStart"; "slotDrag": "slotDrag"; "slotDragEnd": "slotDragEnd"; "pdfExport": "pdfExport"; "schedulerResize": "schedulerResize"; }, ["editDialogTemplate", "recurrenceButtonTextTemplate", "recurrenceSummaryTemplate", "toolbarTemplate", "views", "allDayEventTemplate", "eventTemplate", "timeSlotTemplate", "minorTimeHeaderTemplate", "majorTimeHeaderTemplate", "monthDaySlotTemplate", "multiWeekDaySlotTemplate", "dateHeaderTemplate", "allDaySlotTemplate", "groupHeaderTemplate", "agendaDateTemplate", "agendaTimeTemplate"], never, true, never>;
2774
2863
  }
2775
2864
 
2776
2865
  /**
@@ -2785,6 +2874,11 @@ declare class Messages$1 extends ComponentMessages {
2785
2874
  * Sets the text for **All day** in **Day** and **Week** views.
2786
2875
  */
2787
2876
  allDay: string;
2877
+ /**
2878
+ * Sets the text for the **more events** button in the Month view.
2879
+ * The `{count}` placeholder is replaced with the number of additional events.
2880
+ */
2881
+ moreEvents: string;
2788
2882
  /**
2789
2883
  * Sets the date-header text in the **Agenda** view.
2790
2884
  */
@@ -2897,6 +2991,10 @@ declare class Messages$1 extends ComponentMessages {
2897
2991
  * Sets the label for the **Start** field in the event editor.
2898
2992
  */
2899
2993
  editorEventStart: string;
2994
+ /**
2995
+ * Sets the label for the **Start Time** field in the event editor.
2996
+ */
2997
+ editorEventStartTime: string;
2900
2998
  /**
2901
2999
  * Sets the label for the **Start Time Zone** field in the event editor.
2902
3000
  */
@@ -2905,6 +3003,10 @@ declare class Messages$1 extends ComponentMessages {
2905
3003
  * Sets the label for the **End** field in the event editor.
2906
3004
  */
2907
3005
  editorEventEnd: string;
3006
+ /**
3007
+ * Sets the label for the **End Time** field in the event editor.
3008
+ */
3009
+ editorEventEndTime: string;
2908
3010
  /**
2909
3011
  * Sets the label for the **End Time Zone** field in the event editor.
2910
3012
  */
@@ -2917,66 +3019,98 @@ declare class Messages$1 extends ComponentMessages {
2917
3019
  * Sets the label for the **Description** field in the event editor.
2918
3020
  */
2919
3021
  editorEventDescription: string;
2920
- /**
2921
- * Sets the label for the **Use separate Start and End Time Zones** option in the event editor.
2922
- */
2923
- editorEventSeparateTimeZones: string;
2924
3022
  /**
2925
3023
  * Sets the label for the **Time Zone** field in the event editor.
2926
3024
  */
2927
3025
  editorEventTimeZone: string;
2928
3026
  /**
2929
- * Sets the **Today** button text in the popup of the DateTimePickers and DatePickers in the event editor.
3027
+ * Sets the text for the **Reset Time Zone** button in the event editor.
3028
+ */
3029
+ editorEventTimeZoneReset: string;
3030
+ /**
3031
+ * Sets the placeholder for the **Description** field in the event editor.
3032
+ */
3033
+ editorEventDescriptionPlaceholder: string;
3034
+ /**
3035
+ * Sets the text for the separator between the **Start** and **End** fields in the event editor.
3036
+ */
3037
+ editorEventDateRangeSeparator: string;
3038
+ /**
3039
+ * Sets the text for the separator between the **Start date** and **Start time** fields in the event editor.
3040
+ */
3041
+ editorEventDateRangeStart: string;
3042
+ /**
3043
+ * Sets the text for the **Make recurring** button in the event editor.
3044
+ */
3045
+ editorRecurrenceMakeRecurring: string;
3046
+ /**
3047
+ * Sets the text for the **Edit recurrence** button in the event editor.
3048
+ */
3049
+ editorRecurrenceEdit: string;
3050
+ /**
3051
+ * Sets the title for the recurrence dialog opened from the event editor.
3052
+ */
3053
+ editorRecurrenceDialogTitle: string;
3054
+ /**
3055
+ * Sets the text for the **Remove recurrence** button in the recurrence dialog.
3056
+ */
3057
+ editorRecurrenceRemove: string;
3058
+ /**
3059
+ * Sets the title for the remove recurrence confirmation dialog.
3060
+ */
3061
+ editorRecurrenceRemoveConfirmationTitle: string;
3062
+ /**
3063
+ * Sets the confirmation message for removing a recurrence.
3064
+ */
3065
+ editorRecurrenceRemoveConfirmation: string;
3066
+ /**
3067
+ * Sets the text for the **No** button in the remove recurrence confirmation dialog.
3068
+ */
3069
+ editorRecurrenceRemoveConfirmationNo: string;
3070
+ /**
3071
+ * Sets the text for the **Yes** button in the remove recurrence confirmation dialog.
3072
+ */
3073
+ editorRecurrenceRemoveConfirmationYes: string;
3074
+ /**
3075
+ * Sets the **Today** button text in the popup of the DatePickers in the event editor.
2930
3076
  */
2931
3077
  editorDateInputsToday: string;
2932
3078
  /**
2933
- * Sets the title for the **Toggle** button in the popup of the DateTimePickers and DatePickers in the event editor.
3079
+ * Sets the title for the **Toggle** button in the popup of the DatePickers in the event editor.
2934
3080
  */
2935
- editorDateInputsToggle: string;
3081
+ editorDatePickersToggle: string;
2936
3082
  /**
2937
- * Sets the title for the **Parent View** button in the popup of the DateTimePickers and DatePickers in the event editor.
3083
+ * Sets the title for the **Parent View** button in the popup of the DatePickers in the event editor.
2938
3084
  */
2939
3085
  editorDateInputsParentViewButton: string;
2940
3086
  /**
2941
- * Sets the text for the **Now** button in the popup footer of the DateTimePickers and DatePickers in the event editor.
3087
+ * Sets the text for the **Now** button in the popup header of the TimePickers in the event editor.
2942
3088
  */
2943
3089
  editorDateInputsNow: string;
2944
3090
  /**
2945
- * Sets the label for the **Now** button in the popup footer of the DateTimePickers and DatePickers in the event editor.
3091
+ * Sets the label for the **Now** button in the popup header of the TimePickers in the event editor.
2946
3092
  */
2947
3093
  editorDateInputsNowLabel: string;
2948
3094
  /**
2949
- * Sets the text for the **Accept** button in the popup footer of the DateTimePickers and DatePickers in the event editor.
3095
+ * Sets the text for the **Set** button in the popup footer of the TimePickers in the event editor.
2950
3096
  */
2951
3097
  editorDateInputsAccept: string;
2952
3098
  /**
2953
- * Sets the label for the **Accept** button in the popup footer of the DateTimePickers and DatePickers in the event editor.
3099
+ * Sets the label for the **Set** button in the popup footer of the TimePickers in the event editor.
2954
3100
  */
2955
3101
  editorDateInputsAcceptLabel: string;
2956
3102
  /**
2957
- * Sets the text for the **Cancel** button in the popup footer of the DateTimePickers and DatePickers in the event editor.
3103
+ * Sets the text for the **Cancel** button in the popup footer of the TimePickers in the event editor.
2958
3104
  */
2959
3105
  editorDateInputsCancel: string;
2960
3106
  /**
2961
- * Sets the label for the **Cancel** button in the popup footer of the DateTimePickers and DatePickers in the event editor.
3107
+ * Sets the label for the **Cancel** button in the popup footer of the TimePickers in the event editor.
2962
3108
  */
2963
3109
  editorDateInputsCancelLabel: string;
2964
3110
  /**
2965
- * Sets the text for the **Date** tab in the popup header of the DateTimePickers and DatePickers in the event editor.
2966
- */
2967
- editorDateInputsDateTab: string;
2968
- /**
2969
- * Sets the label for the **Date** tab in the popup header of the DateTimePickers and DatePickers in the event editor.
2970
- */
2971
- editorDateInputsDateTabLabel: string;
2972
- /**
2973
- * Sets the text for the **Time** tab in the popup header of the DateTimePickers and DatePickers in the event editor.
2974
- */
2975
- editorDateInputsTimeTab: string;
2976
- /**
2977
- * Sets the label for the **Time** tab in the popup header of the DateTimePickers and DatePickers in the event editor.
3111
+ * Sets the title for the **Toggle** button of the TimePickers in the event editor.
2978
3112
  */
2979
- editorDateInputsTimeTabLabel: string;
3113
+ editorTimePickersToggle: string;
2980
3114
  /**
2981
3115
  * Sets the **Today** button text in the popup of the DatePickers in the recurrence editor.
2982
3116
  */
@@ -3129,6 +3263,10 @@ declare class Messages$1 extends ComponentMessages {
3129
3263
  * Sets the label for the **Event** title in the event editor dialog.
3130
3264
  */
3131
3265
  editorTitle: string;
3266
+ /**
3267
+ * Sets the label for the **New event** title in the event editor dialog.
3268
+ */
3269
+ editorTitleNew: string;
3132
3270
  /**
3133
3271
  * Sets the text for the **Delete** button in the remove confirmation dialog.
3134
3272
  */
@@ -3177,8 +3315,16 @@ declare class Messages$1 extends ComponentMessages {
3177
3315
  * Sets the value of the aria-label attribute for the `select` element used to switch Scheduler views.
3178
3316
  */
3179
3317
  selectView: string;
3318
+ /**
3319
+ * Sets the text for the **New Event** button in the toolbar of the Scheduler.
3320
+ */
3321
+ newEvent: string;
3322
+ /**
3323
+ * Sets the text of the aria-label attribute for the **New Event** button in the toolbar of the Scheduler.
3324
+ */
3325
+ newEventLabel: string;
3180
3326
  static ɵfac: i0.ɵɵFactoryDeclaration<Messages$1, never>;
3181
- static ɵdir: i0.ɵɵDirectiveDeclaration<Messages$1, never, never, { "allEvents": { "alias": "allEvents"; "required": false; }; "allDay": { "alias": "allDay"; "required": false; }; "dateHeader": { "alias": "dateHeader"; "required": false; }; "timeHeader": { "alias": "timeHeader"; "required": false; }; "eventHeader": { "alias": "eventHeader"; "required": false; }; "resourceColumnHeaderLabel": { "alias": "resourceColumnHeaderLabel"; "required": false; }; "deleteTitle": { "alias": "deleteTitle"; "required": false; }; "nextTitle": { "alias": "nextTitle"; "required": false; }; "previousTitle": { "alias": "previousTitle"; "required": false; }; "toolbar": { "alias": "toolbar"; "required": false; }; "today": { "alias": "today"; "required": false; }; "calendarToday": { "alias": "calendarToday"; "required": false; }; "showFullDay": { "alias": "showFullDay"; "required": false; }; "showWorkDay": { "alias": "showWorkDay"; "required": false; }; "dayViewTitle": { "alias": "dayViewTitle"; "required": false; }; "multiDayViewTitle": { "alias": "multiDayViewTitle"; "required": false; }; "weekViewTitle": { "alias": "weekViewTitle"; "required": false; }; "workWeekViewTitle": { "alias": "workWeekViewTitle"; "required": false; }; "monthViewTitle": { "alias": "monthViewTitle"; "required": false; }; "multiWeekViewTitle": { "alias": "multiWeekViewTitle"; "required": false; }; "timelineViewTitle": { "alias": "timelineViewTitle"; "required": false; }; "timelineWeekViewTitle": { "alias": "timelineWeekViewTitle"; "required": false; }; "timelineMonthViewTitle": { "alias": "timelineMonthViewTitle"; "required": false; }; "agendaViewTitle": { "alias": "agendaViewTitle"; "required": false; }; "yearViewTitle": { "alias": "yearViewTitle"; "required": false; }; "yearViewNoEvents": { "alias": "yearViewNoEvents"; "required": false; }; "cancel": { "alias": "cancel"; "required": false; }; "save": { "alias": "save"; "required": false; }; "editorEventTitle": { "alias": "editorEventTitle"; "required": false; }; "editorEventStart": { "alias": "editorEventStart"; "required": false; }; "editorEventStartTimeZone": { "alias": "editorEventStartTimeZone"; "required": false; }; "editorEventEnd": { "alias": "editorEventEnd"; "required": false; }; "editorEventEndTimeZone": { "alias": "editorEventEndTimeZone"; "required": false; }; "editorEventAllDay": { "alias": "editorEventAllDay"; "required": false; }; "editorEventDescription": { "alias": "editorEventDescription"; "required": false; }; "editorEventSeparateTimeZones": { "alias": "editorEventSeparateTimeZones"; "required": false; }; "editorEventTimeZone": { "alias": "editorEventTimeZone"; "required": false; }; "editorDateInputsToday": { "alias": "editorDateInputsToday"; "required": false; }; "editorDateInputsToggle": { "alias": "editorDateInputsToggle"; "required": false; }; "editorDateInputsParentViewButton": { "alias": "editorDateInputsParentViewButton"; "required": false; }; "editorDateInputsNow": { "alias": "editorDateInputsNow"; "required": false; }; "editorDateInputsNowLabel": { "alias": "editorDateInputsNowLabel"; "required": false; }; "editorDateInputsAccept": { "alias": "editorDateInputsAccept"; "required": false; }; "editorDateInputsAcceptLabel": { "alias": "editorDateInputsAcceptLabel"; "required": false; }; "editorDateInputsCancel": { "alias": "editorDateInputsCancel"; "required": false; }; "editorDateInputsCancelLabel": { "alias": "editorDateInputsCancelLabel"; "required": false; }; "editorDateInputsDateTab": { "alias": "editorDateInputsDateTab"; "required": false; }; "editorDateInputsDateTabLabel": { "alias": "editorDateInputsDateTabLabel"; "required": false; }; "editorDateInputsTimeTab": { "alias": "editorDateInputsTimeTab"; "required": false; }; "editorDateInputsTimeTabLabel": { "alias": "editorDateInputsTimeTabLabel"; "required": false; }; "recurrenceEditorDateInputsToday": { "alias": "recurrenceEditorDateInputsToday"; "required": false; }; "recurrenceEditorDateInputsToggle": { "alias": "recurrenceEditorDateInputsToggle"; "required": false; }; "recurrenceEditorDateInputsParentViewButton": { "alias": "recurrenceEditorDateInputsParentViewButton"; "required": false; }; "recurrenceEditorNumericIncrement": { "alias": "recurrenceEditorNumericIncrement"; "required": false; }; "recurrenceEditorNumericDecrement": { "alias": "recurrenceEditorNumericDecrement"; "required": false; }; "recurrenceEditorRepeat": { "alias": "recurrenceEditorRepeat"; "required": false; }; "recurrenceEditorDailyInterval": { "alias": "recurrenceEditorDailyInterval"; "required": false; }; "recurrenceEditorDailyRepeatEvery": { "alias": "recurrenceEditorDailyRepeatEvery"; "required": false; }; "recurrenceEditorWeeklyInterval": { "alias": "recurrenceEditorWeeklyInterval"; "required": false; }; "recurrenceEditorWeeklyRepeatEvery": { "alias": "recurrenceEditorWeeklyRepeatEvery"; "required": false; }; "recurrenceEditorWeeklyRepeatOn": { "alias": "recurrenceEditorWeeklyRepeatOn"; "required": false; }; "recurrenceEditorMonthlyDay": { "alias": "recurrenceEditorMonthlyDay"; "required": false; }; "recurrenceEditorMonthlyInterval": { "alias": "recurrenceEditorMonthlyInterval"; "required": false; }; "recurrenceEditorMonthlyRepeatEvery": { "alias": "recurrenceEditorMonthlyRepeatEvery"; "required": false; }; "recurrenceEditorMonthlyRepeatOn": { "alias": "recurrenceEditorMonthlyRepeatOn"; "required": false; }; "recurrenceEditorYearlyOf": { "alias": "recurrenceEditorYearlyOf"; "required": false; }; "recurrenceEditorYearlyRepeatEvery": { "alias": "recurrenceEditorYearlyRepeatEvery"; "required": false; }; "recurrenceEditorYearlyRepeatOn": { "alias": "recurrenceEditorYearlyRepeatOn"; "required": false; }; "recurrenceEditorYearlyInterval": { "alias": "recurrenceEditorYearlyInterval"; "required": false; }; "recurrenceEditorFrequenciesDaily": { "alias": "recurrenceEditorFrequenciesDaily"; "required": false; }; "recurrenceEditorFrequenciesMonthly": { "alias": "recurrenceEditorFrequenciesMonthly"; "required": false; }; "recurrenceEditorFrequenciesNever": { "alias": "recurrenceEditorFrequenciesNever"; "required": false; }; "recurrenceEditorFrequenciesWeekly": { "alias": "recurrenceEditorFrequenciesWeekly"; "required": false; }; "recurrenceEditorFrequenciesYearly": { "alias": "recurrenceEditorFrequenciesYearly"; "required": false; }; "recurrenceEditorOffsetPositionsFirst": { "alias": "recurrenceEditorOffsetPositionsFirst"; "required": false; }; "recurrenceEditorOffsetPositionsSecond": { "alias": "recurrenceEditorOffsetPositionsSecond"; "required": false; }; "recurrenceEditorOffsetPositionsThird": { "alias": "recurrenceEditorOffsetPositionsThird"; "required": false; }; "recurrenceEditorOffsetPositionsFourth": { "alias": "recurrenceEditorOffsetPositionsFourth"; "required": false; }; "recurrenceEditorOffsetPositionsLast": { "alias": "recurrenceEditorOffsetPositionsLast"; "required": false; }; "recurrenceEditorWeekdaysDay": { "alias": "recurrenceEditorWeekdaysDay"; "required": false; }; "recurrenceEditorWeekdaysWeekday": { "alias": "recurrenceEditorWeekdaysWeekday"; "required": false; }; "recurrenceEditorWeekdaysWeekendday": { "alias": "recurrenceEditorWeekdaysWeekendday"; "required": false; }; "recurrenceEditorEndAfter": { "alias": "recurrenceEditorEndAfter"; "required": false; }; "recurrenceEditorEndOccurrence": { "alias": "recurrenceEditorEndOccurrence"; "required": false; }; "recurrenceEditorEndLabel": { "alias": "recurrenceEditorEndLabel"; "required": false; }; "recurrenceEditorEndNever": { "alias": "recurrenceEditorEndNever"; "required": false; }; "recurrenceEditorEndOn": { "alias": "recurrenceEditorEndOn"; "required": false; }; "editorTitle": { "alias": "editorTitle"; "required": false; }; "destroy": { "alias": "destroy"; "required": false; }; "deleteConfirmation": { "alias": "deleteConfirmation"; "required": false; }; "editRecurringConfirmation": { "alias": "editRecurringConfirmation"; "required": false; }; "editOccurrence": { "alias": "editOccurrence"; "required": false; }; "editSeries": { "alias": "editSeries"; "required": false; }; "deleteRecurringConfirmation": { "alias": "deleteRecurringConfirmation"; "required": false; }; "deleteOccurrence": { "alias": "deleteOccurrence"; "required": false; }; "deleteSeries": { "alias": "deleteSeries"; "required": false; }; "deleteDialogTitle": { "alias": "deleteDialogTitle"; "required": false; }; "deleteRecurringDialogTitle": { "alias": "deleteRecurringDialogTitle"; "required": false; }; "editRecurringDialogTitle": { "alias": "editRecurringDialogTitle"; "required": false; }; "selectView": { "alias": "selectView"; "required": false; }; }, {}, never, never, true, never>;
3327
+ static ɵdir: i0.ɵɵDirectiveDeclaration<Messages$1, never, never, { "allEvents": { "alias": "allEvents"; "required": false; }; "allDay": { "alias": "allDay"; "required": false; }; "moreEvents": { "alias": "moreEvents"; "required": false; }; "dateHeader": { "alias": "dateHeader"; "required": false; }; "timeHeader": { "alias": "timeHeader"; "required": false; }; "eventHeader": { "alias": "eventHeader"; "required": false; }; "resourceColumnHeaderLabel": { "alias": "resourceColumnHeaderLabel"; "required": false; }; "deleteTitle": { "alias": "deleteTitle"; "required": false; }; "nextTitle": { "alias": "nextTitle"; "required": false; }; "previousTitle": { "alias": "previousTitle"; "required": false; }; "toolbar": { "alias": "toolbar"; "required": false; }; "today": { "alias": "today"; "required": false; }; "calendarToday": { "alias": "calendarToday"; "required": false; }; "showFullDay": { "alias": "showFullDay"; "required": false; }; "showWorkDay": { "alias": "showWorkDay"; "required": false; }; "dayViewTitle": { "alias": "dayViewTitle"; "required": false; }; "multiDayViewTitle": { "alias": "multiDayViewTitle"; "required": false; }; "weekViewTitle": { "alias": "weekViewTitle"; "required": false; }; "workWeekViewTitle": { "alias": "workWeekViewTitle"; "required": false; }; "monthViewTitle": { "alias": "monthViewTitle"; "required": false; }; "multiWeekViewTitle": { "alias": "multiWeekViewTitle"; "required": false; }; "timelineViewTitle": { "alias": "timelineViewTitle"; "required": false; }; "timelineWeekViewTitle": { "alias": "timelineWeekViewTitle"; "required": false; }; "timelineMonthViewTitle": { "alias": "timelineMonthViewTitle"; "required": false; }; "agendaViewTitle": { "alias": "agendaViewTitle"; "required": false; }; "yearViewTitle": { "alias": "yearViewTitle"; "required": false; }; "yearViewNoEvents": { "alias": "yearViewNoEvents"; "required": false; }; "cancel": { "alias": "cancel"; "required": false; }; "save": { "alias": "save"; "required": false; }; "editorEventTitle": { "alias": "editorEventTitle"; "required": false; }; "editorEventStart": { "alias": "editorEventStart"; "required": false; }; "editorEventStartTime": { "alias": "editorEventStartTime"; "required": false; }; "editorEventStartTimeZone": { "alias": "editorEventStartTimeZone"; "required": false; }; "editorEventEnd": { "alias": "editorEventEnd"; "required": false; }; "editorEventEndTime": { "alias": "editorEventEndTime"; "required": false; }; "editorEventEndTimeZone": { "alias": "editorEventEndTimeZone"; "required": false; }; "editorEventAllDay": { "alias": "editorEventAllDay"; "required": false; }; "editorEventDescription": { "alias": "editorEventDescription"; "required": false; }; "editorEventTimeZone": { "alias": "editorEventTimeZone"; "required": false; }; "editorEventTimeZoneReset": { "alias": "editorEventTimeZoneReset"; "required": false; }; "editorEventDescriptionPlaceholder": { "alias": "editorEventDescriptionPlaceholder"; "required": false; }; "editorEventDateRangeSeparator": { "alias": "editorEventDateRangeSeparator"; "required": false; }; "editorEventDateRangeStart": { "alias": "editorEventDateRangeStart"; "required": false; }; "editorRecurrenceMakeRecurring": { "alias": "editorRecurrenceMakeRecurring"; "required": false; }; "editorRecurrenceEdit": { "alias": "editorRecurrenceEdit"; "required": false; }; "editorRecurrenceDialogTitle": { "alias": "editorRecurrenceDialogTitle"; "required": false; }; "editorRecurrenceRemove": { "alias": "editorRecurrenceRemove"; "required": false; }; "editorRecurrenceRemoveConfirmationTitle": { "alias": "editorRecurrenceRemoveConfirmationTitle"; "required": false; }; "editorRecurrenceRemoveConfirmation": { "alias": "editorRecurrenceRemoveConfirmation"; "required": false; }; "editorRecurrenceRemoveConfirmationNo": { "alias": "editorRecurrenceRemoveConfirmationNo"; "required": false; }; "editorRecurrenceRemoveConfirmationYes": { "alias": "editorRecurrenceRemoveConfirmationYes"; "required": false; }; "editorDateInputsToday": { "alias": "editorDateInputsToday"; "required": false; }; "editorDatePickersToggle": { "alias": "editorDatePickersToggle"; "required": false; }; "editorDateInputsParentViewButton": { "alias": "editorDateInputsParentViewButton"; "required": false; }; "editorDateInputsNow": { "alias": "editorDateInputsNow"; "required": false; }; "editorDateInputsNowLabel": { "alias": "editorDateInputsNowLabel"; "required": false; }; "editorDateInputsAccept": { "alias": "editorDateInputsAccept"; "required": false; }; "editorDateInputsAcceptLabel": { "alias": "editorDateInputsAcceptLabel"; "required": false; }; "editorDateInputsCancel": { "alias": "editorDateInputsCancel"; "required": false; }; "editorDateInputsCancelLabel": { "alias": "editorDateInputsCancelLabel"; "required": false; }; "editorTimePickersToggle": { "alias": "editorTimePickersToggle"; "required": false; }; "recurrenceEditorDateInputsToday": { "alias": "recurrenceEditorDateInputsToday"; "required": false; }; "recurrenceEditorDateInputsToggle": { "alias": "recurrenceEditorDateInputsToggle"; "required": false; }; "recurrenceEditorDateInputsParentViewButton": { "alias": "recurrenceEditorDateInputsParentViewButton"; "required": false; }; "recurrenceEditorNumericIncrement": { "alias": "recurrenceEditorNumericIncrement"; "required": false; }; "recurrenceEditorNumericDecrement": { "alias": "recurrenceEditorNumericDecrement"; "required": false; }; "recurrenceEditorRepeat": { "alias": "recurrenceEditorRepeat"; "required": false; }; "recurrenceEditorDailyInterval": { "alias": "recurrenceEditorDailyInterval"; "required": false; }; "recurrenceEditorDailyRepeatEvery": { "alias": "recurrenceEditorDailyRepeatEvery"; "required": false; }; "recurrenceEditorWeeklyInterval": { "alias": "recurrenceEditorWeeklyInterval"; "required": false; }; "recurrenceEditorWeeklyRepeatEvery": { "alias": "recurrenceEditorWeeklyRepeatEvery"; "required": false; }; "recurrenceEditorWeeklyRepeatOn": { "alias": "recurrenceEditorWeeklyRepeatOn"; "required": false; }; "recurrenceEditorMonthlyDay": { "alias": "recurrenceEditorMonthlyDay"; "required": false; }; "recurrenceEditorMonthlyInterval": { "alias": "recurrenceEditorMonthlyInterval"; "required": false; }; "recurrenceEditorMonthlyRepeatEvery": { "alias": "recurrenceEditorMonthlyRepeatEvery"; "required": false; }; "recurrenceEditorMonthlyRepeatOn": { "alias": "recurrenceEditorMonthlyRepeatOn"; "required": false; }; "recurrenceEditorYearlyOf": { "alias": "recurrenceEditorYearlyOf"; "required": false; }; "recurrenceEditorYearlyRepeatEvery": { "alias": "recurrenceEditorYearlyRepeatEvery"; "required": false; }; "recurrenceEditorYearlyRepeatOn": { "alias": "recurrenceEditorYearlyRepeatOn"; "required": false; }; "recurrenceEditorYearlyInterval": { "alias": "recurrenceEditorYearlyInterval"; "required": false; }; "recurrenceEditorFrequenciesDaily": { "alias": "recurrenceEditorFrequenciesDaily"; "required": false; }; "recurrenceEditorFrequenciesMonthly": { "alias": "recurrenceEditorFrequenciesMonthly"; "required": false; }; "recurrenceEditorFrequenciesNever": { "alias": "recurrenceEditorFrequenciesNever"; "required": false; }; "recurrenceEditorFrequenciesWeekly": { "alias": "recurrenceEditorFrequenciesWeekly"; "required": false; }; "recurrenceEditorFrequenciesYearly": { "alias": "recurrenceEditorFrequenciesYearly"; "required": false; }; "recurrenceEditorOffsetPositionsFirst": { "alias": "recurrenceEditorOffsetPositionsFirst"; "required": false; }; "recurrenceEditorOffsetPositionsSecond": { "alias": "recurrenceEditorOffsetPositionsSecond"; "required": false; }; "recurrenceEditorOffsetPositionsThird": { "alias": "recurrenceEditorOffsetPositionsThird"; "required": false; }; "recurrenceEditorOffsetPositionsFourth": { "alias": "recurrenceEditorOffsetPositionsFourth"; "required": false; }; "recurrenceEditorOffsetPositionsLast": { "alias": "recurrenceEditorOffsetPositionsLast"; "required": false; }; "recurrenceEditorWeekdaysDay": { "alias": "recurrenceEditorWeekdaysDay"; "required": false; }; "recurrenceEditorWeekdaysWeekday": { "alias": "recurrenceEditorWeekdaysWeekday"; "required": false; }; "recurrenceEditorWeekdaysWeekendday": { "alias": "recurrenceEditorWeekdaysWeekendday"; "required": false; }; "recurrenceEditorEndAfter": { "alias": "recurrenceEditorEndAfter"; "required": false; }; "recurrenceEditorEndOccurrence": { "alias": "recurrenceEditorEndOccurrence"; "required": false; }; "recurrenceEditorEndLabel": { "alias": "recurrenceEditorEndLabel"; "required": false; }; "recurrenceEditorEndNever": { "alias": "recurrenceEditorEndNever"; "required": false; }; "recurrenceEditorEndOn": { "alias": "recurrenceEditorEndOn"; "required": false; }; "editorTitle": { "alias": "editorTitle"; "required": false; }; "editorTitleNew": { "alias": "editorTitleNew"; "required": false; }; "destroy": { "alias": "destroy"; "required": false; }; "deleteConfirmation": { "alias": "deleteConfirmation"; "required": false; }; "editRecurringConfirmation": { "alias": "editRecurringConfirmation"; "required": false; }; "editOccurrence": { "alias": "editOccurrence"; "required": false; }; "editSeries": { "alias": "editSeries"; "required": false; }; "deleteRecurringConfirmation": { "alias": "deleteRecurringConfirmation"; "required": false; }; "deleteOccurrence": { "alias": "deleteOccurrence"; "required": false; }; "deleteSeries": { "alias": "deleteSeries"; "required": false; }; "deleteDialogTitle": { "alias": "deleteDialogTitle"; "required": false; }; "deleteRecurringDialogTitle": { "alias": "deleteRecurringDialogTitle"; "required": false; }; "editRecurringDialogTitle": { "alias": "editRecurringDialogTitle"; "required": false; }; "selectView": { "alias": "selectView"; "required": false; }; "newEvent": { "alias": "newEvent"; "required": false; }; "newEventLabel": { "alias": "newEventLabel"; "required": false; }; }, {}, never, never, true, never>;
3182
3328
  }
3183
3329
 
3184
3330
  /**
@@ -3627,16 +3773,16 @@ declare class AgendaViewComponent extends ConfigurationViewBase {
3627
3773
  get title(): string;
3628
3774
  /**
3629
3775
  * Sets the long-date format for the selected date in the Scheduler toolbar.
3630
- * Defaults to `'{0:D} - {1:D}'`, where `0` is the start and `1` is the end date.
3776
+ * Defaults to `'{0:M} - {1:M}'`, where `0` is the start and `1` is the end date.
3631
3777
  * For more information, see [Parsing and Formatting Dates and Numbers](https://www.telerik.com/kendo-angular-ui/components/globalization/internationalization/parsing-and-formatting#date-formatting).
3632
- * @default '{0:D} - {1:D}'
3778
+ * @default '{0:M} - {1:M}'
3633
3779
  */
3634
3780
  selectedDateFormat: string;
3635
3781
  /**
3636
3782
  * Sets the short-date format for the selected date in the Scheduler toolbar.
3637
- * Defaults to `'{0:d} - {1:d}'`, where `0` is the start and `1` is the end date.
3783
+ * Defaults to `'{0:m} - {1:m}'`, where `0` is the start and `1` is the end date.
3638
3784
  * For more information, see [Parsing and Formatting Dates and Numbers](https://www.telerik.com/kendo-angular-ui/components/globalization/internationalization/parsing-and-formatting#date-formatting).
3639
- * @default '{0:d} - {1:d}'
3785
+ * @default '{0:m} - {1:m}'
3640
3786
  */
3641
3787
  selectedShortDateFormat: string;
3642
3788
  /**
@@ -3851,14 +3997,14 @@ declare class DayViewComponent extends MultiDayViewBase {
3851
3997
  /**
3852
3998
  * Sets the long-date format for the selected date in the Scheduler toolbar.
3853
3999
  * For more information, see [Parsing and Formatting Dates and Numbers](https://www.telerik.com/kendo-angular-ui/components/globalization/internationalization/parsing-and-formatting#date-formatting).
3854
- * @default '{0:D}'
4000
+ * @default '{0:M}'
3855
4001
  */
3856
4002
  set selectedDateFormat(value: string);
3857
4003
  get selectedDateFormat(): string;
3858
4004
  /**
3859
4005
  * Sets the short-date format for the selected date in the Scheduler toolbar.
3860
4006
  * For more information, see [Parsing and Formatting Dates and Numbers](https://www.telerik.com/kendo-angular-ui/components/globalization/internationalization/parsing-and-formatting#date-formatting).
3861
- * @default '{0:d}'
4007
+ * @default '{0:m}'
3862
4008
  */
3863
4009
  set selectedShortDateFormat(value: string);
3864
4010
  get selectedShortDateFormat(): string;
@@ -4192,8 +4338,8 @@ declare class TimelineViewComponent extends TimelineBase {
4192
4338
  /**
4193
4339
  * Sets the long-date format for the selected date in the Scheduler toolbar.
4194
4340
  * For more information, see [Parsing and Formatting Dates and Numbers](https://www.telerik.com/kendo-angular-ui/components/globalization/internationalization/parsing-and-formatting#date-formatting).
4195
- * If `numberOfDays` is greater than 1, the default format displays a range: `'{0:D} - {1:D}'`, where `0` is the start and `1` is the end date.
4196
- * @default '{0:D}'
4341
+ * If `numberOfDays` is greater than 1, the default format displays a range: `'{0:M} - {1:M}'`, where `0` is the start and `1` is the end date.
4342
+ * @default '{0:M}'
4197
4343
  */
4198
4344
  set selectedDateFormat(format: string);
4199
4345
  get selectedDateFormat(): string;
@@ -4201,8 +4347,8 @@ declare class TimelineViewComponent extends TimelineBase {
4201
4347
  /**
4202
4348
  * Sets the short-date format for the selected date in the Scheduler toolbar.
4203
4349
  * For more information, see [Parsing and Formatting Dates and Numbers](https://www.telerik.com/kendo-angular-ui/components/globalization/internationalization/parsing-and-formatting#date-formatting).
4204
- * If `numberOfDays` is greater than 1, the default format displays a range: `'{0:d} - {1:d}'`, where `0` is the start and `1` is the end date.
4205
- * @default '{0:d}'
4350
+ * If `numberOfDays` is greater than 1, the default format displays a range: `'{0:m} - {1:m}'`, where `0` is the start and `1` is the end date.
4351
+ * @default '{0:m}'
4206
4352
  */
4207
4353
  set selectedShortDateFormat(format: string);
4208
4354
  get selectedShortDateFormat(): string;
@@ -4247,16 +4393,16 @@ declare class TimelineWeekViewComponent extends TimelineBase {
4247
4393
  get title(): string;
4248
4394
  /**
4249
4395
  * Sets the long-date format for the selected date in the Scheduler toolbar.
4250
- * Defaults to `'{0:D} - {1:D}'`, where `0` is the start and `1` is the end date.
4396
+ * Defaults to `'{0:M} - {1:M}'`, where `0` is the start and `1` is the end date.
4251
4397
  * For more information, see [Parsing and Formatting Dates and Numbers](https://www.telerik.com/kendo-angular-ui/components/globalization/internationalization/parsing-and-formatting#date-formatting).
4252
- * @default '{0:D} - {1:D}'
4398
+ * @default '{0:M} - {1:M}'
4253
4399
  */
4254
4400
  selectedDateFormat: string;
4255
4401
  /**
4256
4402
  * Sets the short-date format for the selected date in the Scheduler toolbar.
4257
- * Defaults to `'{0:d} - {1:d}'`, where `0` is the start and `1` is the end date.
4403
+ * Defaults to `'{0:m} - {1:m}'`, where `0` is the start and `1` is the end date.
4258
4404
  * For more information, see [Parsing and Formatting Dates and Numbers](https://www.telerik.com/kendo-angular-ui/components/globalization/internationalization/parsing-and-formatting#date-formatting).
4259
- * @default '{0:d} - {1:d}'
4405
+ * @default '{0:m} - {1:m}'
4260
4406
  */
4261
4407
  selectedShortDateFormat: string;
4262
4408
  /**
@@ -4299,16 +4445,16 @@ declare class WeekViewComponent extends MultiDayViewBase {
4299
4445
  get title(): string;
4300
4446
  /**
4301
4447
  * Sets the long-date format for the selected date in the Scheduler toolbar.
4302
- * Defaults to `'{0:D} - {1:D}'`, where `0` is the start and `1` is the end date.
4448
+ * Defaults to `'{0:M} - {1:M}'`, where `0` is the start and `1` is the end date.
4303
4449
  * For more information, see [Parsing and Formatting Dates and Numbers](https://www.telerik.com/kendo-angular-ui/components/globalization/internationalization/parsing-and-formatting#date-formatting).
4304
- * @default '{0:D} - {1:D}'
4450
+ * @default '{0:M} - {1:M}'
4305
4451
  */
4306
4452
  selectedDateFormat: string;
4307
4453
  /**
4308
4454
  * Sets the short-date format for the selected date in the Scheduler toolbar.
4309
- * Defaults to `'{0:d} - {1:d}'`, where `0` is the start and `1` is the end date.
4455
+ * Defaults to `'{0:m} - {1:m}'`, where `0` is the start and `1` is the end date.
4310
4456
  * For more information, see [Parsing and Formatting Dates and Numbers](https://www.telerik.com/kendo-angular-ui/components/globalization/internationalization/parsing-and-formatting#date-formatting).
4311
- * @default '{0:d} - {1:d}'
4457
+ * @default '{0:m} - {1:m}'
4312
4458
  */
4313
4459
  selectedShortDateFormat: string;
4314
4460
  /**
@@ -4530,7 +4676,7 @@ declare abstract class EditingDirectiveBase implements OnInit, OnDestroy {
4530
4676
  ngOnDestroy(): void;
4531
4677
  protected createDefaultService(): EditService<any>;
4532
4678
  protected addHandler(args: any): void;
4533
- protected removeHandler({ dataItem }: any): void;
4679
+ protected removeHandler({ dataItem, mode }: any): void;
4534
4680
  protected cancelHandler(): void;
4535
4681
  protected closeEditor(): void;
4536
4682
  protected handleUpdate(item: any, value: any, mode: EditMode): void;
@@ -4614,6 +4760,13 @@ interface FrequencyEntity {
4614
4760
  text: string;
4615
4761
  value: Frequency;
4616
4762
  }
4763
+ /**
4764
+ * @hidden
4765
+ */
4766
+ interface EndRuleEntity {
4767
+ text: string;
4768
+ value: EndRule;
4769
+ }
4617
4770
  /**
4618
4771
  * @hidden
4619
4772
  */
@@ -4659,6 +4812,7 @@ declare class RecurrenceService {
4659
4812
  */
4660
4813
  getUniqueId(): number;
4661
4814
  get frequencies(): Array<FrequencyEntity>;
4815
+ get endRules(): Array<EndRuleEntity>;
4662
4816
  get frequency(): string;
4663
4817
  setFrequency(freq: Frequency): void;
4664
4818
  set interval(newInterval: number);
@@ -4678,6 +4832,22 @@ declare class RecurrenceService {
4678
4832
  get repeatOnRule(): RepeatOnRule;
4679
4833
  set repeatOnRule(repeatOnRule: RepeatOnRule);
4680
4834
  onChange(): void;
4835
+ /**
4836
+ * @hidden
4837
+ *
4838
+ * Builds a human-readable description of the current recurrence rule
4839
+ * (e.g. "Repeats every month on the second weekend day.") displayed as a hint in the recurrence editor.
4840
+ * This text is composed in English and is not localizable.
4841
+ */
4842
+ get repeatsSummaryText(): string;
4843
+ private repeatsFrequencyText;
4844
+ private repeatsWeekDaysText;
4845
+ private repeatsMonthlyRepeatOnText;
4846
+ private repeatsYearlyRepeatOnText;
4847
+ private repeatsPositionText;
4848
+ private repeatsDayTypeText;
4849
+ private repeatsEndText;
4850
+ private textFor;
4681
4851
  static ɵfac: i0.ɵɵFactoryDeclaration<RecurrenceService, never>;
4682
4852
  static ɵprov: i0.ɵɵInjectableDeclaration<RecurrenceService>;
4683
4853
  }
@@ -4707,7 +4877,7 @@ declare class RecurrenceService {
4707
4877
  declare class RecurrenceEditorComponent implements ControlValueAccessor, OnInit, OnDestroy {
4708
4878
  private recurrenceService;
4709
4879
  private intl;
4710
- cssClass: boolean;
4880
+ private localization;
4711
4881
  /**
4712
4882
  * Sets the start date for the event.
4713
4883
  */
@@ -4739,21 +4909,41 @@ declare class RecurrenceEditorComponent implements ControlValueAccessor, OnInit,
4739
4909
  * Sets the options for the **End On** DatePicker in the recurrence `until` rule editor.
4740
4910
  */
4741
4911
  endOnOptions: DatePickerOptions;
4912
+ /**
4913
+ * @hidden
4914
+ */
4915
+ recurrenceSummaryTemplate: RecurrenceSummaryTemplateDirective;
4916
+ /**
4917
+ * @hidden
4918
+ */
4919
+ recurrenceRule: string;
4742
4920
  /**
4743
4921
  * Fires when the value of the component changes.
4744
4922
  */
4745
4923
  valueChange: EventEmitter<string>;
4746
4924
  private _start;
4747
4925
  private subscriptions;
4748
- constructor(recurrenceService: RecurrenceService, intl: IntlService);
4926
+ constructor(recurrenceService: RecurrenceService, intl: IntlService, localization: LocalizationService);
4749
4927
  /**
4750
4928
  * @hidden
4751
4929
  */
4752
4930
  get currentFreq(): Frequency;
4931
+ /**
4932
+ * @hidden
4933
+ */
4934
+ get currentParsedRule(): RecurrenceRule;
4935
+ /**
4936
+ * @hidden
4937
+ */
4938
+ get repeatsSummaryText(): string;
4753
4939
  /**
4754
4940
  * @hidden
4755
4941
  */
4756
4942
  ngOnInit(): void;
4943
+ /**
4944
+ * @hidden
4945
+ */
4946
+ textFor(key: string): string;
4757
4947
  ngOnChanges(changes: any): void;
4758
4948
  /**
4759
4949
  * @hidden
@@ -4775,7 +4965,7 @@ declare class RecurrenceEditorComponent implements ControlValueAccessor, OnInit,
4775
4965
  registerOnTouched(fn: any): void;
4776
4966
  private emitChange;
4777
4967
  static ɵfac: i0.ɵɵFactoryDeclaration<RecurrenceEditorComponent, never>;
4778
- static ɵcmp: i0.ɵɵComponentDeclaration<RecurrenceEditorComponent, "kendo-recurrence-editor", ["kendoRecurrenceEditor"], { "start": { "alias": "start"; "required": false; }; "timezone": { "alias": "timezone"; "required": false; }; "weekStart": { "alias": "weekStart"; "required": false; }; "repeatEveryOptions": { "alias": "repeatEveryOptions"; "required": false; }; "endAfterOptions": { "alias": "endAfterOptions"; "required": false; }; "repeatOnOptions": { "alias": "repeatOnOptions"; "required": false; }; "endOnOptions": { "alias": "endOnOptions"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, true, never>;
4968
+ static ɵcmp: i0.ɵɵComponentDeclaration<RecurrenceEditorComponent, "kendo-recurrence-editor", ["kendoRecurrenceEditor"], { "start": { "alias": "start"; "required": false; }; "timezone": { "alias": "timezone"; "required": false; }; "weekStart": { "alias": "weekStart"; "required": false; }; "repeatEveryOptions": { "alias": "repeatEveryOptions"; "required": false; }; "endAfterOptions": { "alias": "endAfterOptions"; "required": false; }; "repeatOnOptions": { "alias": "repeatOnOptions"; "required": false; }; "endOnOptions": { "alias": "endOnOptions"; "required": false; }; "recurrenceSummaryTemplate": { "alias": "recurrenceSummaryTemplate"; "required": false; }; "recurrenceRule": { "alias": "recurrenceRule"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, true, never>;
4779
4969
  }
4780
4970
 
4781
4971
  /**
@@ -4795,11 +4985,10 @@ declare class RecurrenceEditorComponent implements ControlValueAccessor, OnInit,
4795
4985
  */
4796
4986
  declare class TimeZoneEditorComponent implements ControlValueAccessor {
4797
4987
  private injector;
4798
- tzComboBox: ComboBoxComponent;
4799
- tzComboBoxControl: ComboBoxComponent;
4988
+ tzComboBox: DropDownListComponent;
4989
+ tzComboBoxControl: DropDownListComponent;
4800
4990
  /**
4801
4991
  * Specifies the width of the ComboBox that contains the names of the timezones.
4802
- * @default 260
4803
4992
  */
4804
4993
  width: number;
4805
4994
  /**
@@ -4817,6 +5006,7 @@ declare class TimeZoneEditorComponent implements ControlValueAccessor {
4817
5006
  tz: string;
4818
5007
  tzNames: Array<string>;
4819
5008
  tzSource: Array<string>;
5009
+ popupWidth: number;
4820
5010
  constructor(injector: Injector);
4821
5011
  /**
4822
5012
  * @hidden
@@ -4947,6 +5137,10 @@ declare class ToolbarNavigationComponent implements OnDestroy {
4947
5137
  * @default month
4948
5138
  */
4949
5139
  bottomView: CalendarView;
5140
+ /**
5141
+ * @hidden
5142
+ */
5143
+ responsiveLevel: number;
4950
5144
  /**
4951
5145
  * @hidden
4952
5146
  */
@@ -5010,7 +5204,7 @@ declare class ToolbarNavigationComponent implements OnDestroy {
5010
5204
  get arrowIcons(): string[];
5011
5205
  get arrowSVGIcons(): string[];
5012
5206
  static ɵfac: i0.ɵɵFactoryDeclaration<ToolbarNavigationComponent, never>;
5013
- static ɵcmp: i0.ɵɵComponentDeclaration<ToolbarNavigationComponent, "[kendoSchedulerToolbarNavigation]", never, { "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "activeView": { "alias": "activeView"; "required": false; }; "bottomView": { "alias": "bottomView"; "required": false; }; }, {}, never, never, true, never>;
5207
+ static ɵcmp: i0.ɵɵComponentDeclaration<ToolbarNavigationComponent, "[kendoSchedulerToolbarNavigation]", never, { "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "activeView": { "alias": "activeView"; "required": false; }; "bottomView": { "alias": "bottomView"; "required": false; }; "responsiveLevel": { "alias": "responsiveLevel"; "required": false; }; }, {}, never, never, true, never>;
5014
5208
  }
5015
5209
 
5016
5210
  /**
@@ -5023,7 +5217,7 @@ declare class ToolbarNavigationComponent implements OnDestroy {
5023
5217
  * ```html
5024
5218
  * <kendo-scheduler>
5025
5219
  * <ng-template kendoSchedulerToolbarTemplate>
5026
- * <div kendoSchedulerToolbarViewSelector responsiveBreakpoint]="960"></div>
5220
+ * <div kendoSchedulerToolbarViewSelector [displayMode]="'compact'"></div>
5027
5221
  * </ng-template>
5028
5222
  * </kendo-scheduler>
5029
5223
  * ```
@@ -5032,19 +5226,35 @@ declare class ToolbarViewSelectorComponent implements OnDestroy {
5032
5226
  private service;
5033
5227
  private localization;
5034
5228
  /**
5035
- * Sets the current width of the Toolbar in pixels for responsive calculations. Use the [`schedulerResize`](https://www.telerik.com/kendo-angular-ui/components/scheduler/api/schedulercomponent#schedulerresize) event to get the Toolbar width.
5229
+ * Specifies whether to render the default view-selection segmented control or the compact dropdown.
5230
+ *
5231
+ * @default 'default'
5036
5232
  */
5037
- toolbarWidth: number;
5233
+ displayMode: 'default' | 'compact';
5038
5234
  /**
5039
- * Sets the Toolbar width in pixels at which responsive behavior is enabled. When enabled, the ButtonGroup with the views is replaced by a `select` element.
5235
+ * @hidden
5236
+ * Sets the focus index for keyboard navigation within the Scheduler toolbar.
5237
+ * When `null`, the component does not participate in the Scheduler focus management.
5040
5238
  *
5041
- * @default 1024
5239
+ * @default null
5042
5240
  */
5043
- responsiveBreakpoint: number;
5241
+ focusIndex: number | null;
5242
+ /**
5243
+ * @hidden
5244
+ */
5245
+ responsiveLevel: number | null;
5044
5246
  /**
5045
5247
  * @hidden
5046
5248
  */
5047
5249
  get ctx(): ToolbarContext;
5250
+ /**
5251
+ * @hidden
5252
+ */
5253
+ get ctxViews(): any[];
5254
+ /**
5255
+ * @hidden
5256
+ */
5257
+ get showDropdown(): boolean;
5048
5258
  /**
5049
5259
  * @hidden
5050
5260
  */
@@ -5080,7 +5290,7 @@ declare class ToolbarViewSelectorComponent implements OnDestroy {
5080
5290
  isSelected(view: SchedulerView): boolean;
5081
5291
  private areSameViews;
5082
5292
  static ɵfac: i0.ɵɵFactoryDeclaration<ToolbarViewSelectorComponent, never>;
5083
- static ɵcmp: i0.ɵɵComponentDeclaration<ToolbarViewSelectorComponent, "[kendoSchedulerToolbarViewSelector]", never, { "toolbarWidth": { "alias": "toolbarWidth"; "required": false; }; "responsiveBreakpoint": { "alias": "responsiveBreakpoint"; "required": false; }; }, {}, never, never, true, never>;
5293
+ static ɵcmp: i0.ɵɵComponentDeclaration<ToolbarViewSelectorComponent, "[kendoSchedulerToolbarViewSelector]", never, { "displayMode": { "alias": "displayMode"; "required": false; }; "focusIndex": { "alias": "focusIndex"; "required": false; }; "responsiveLevel": { "alias": "responsiveLevel"; "required": false; }; }, {}, never, never, true, never>;
5084
5294
  }
5085
5295
 
5086
5296
  /**
@@ -5103,7 +5313,7 @@ declare class ToolbarViewSelectorComponent implements OnDestroy {
5103
5313
  */
5104
5314
  declare class SchedulerModule {
5105
5315
  static ɵfac: i0.ɵɵFactoryDeclaration<SchedulerModule, never>;
5106
- static ɵmod: i0.ɵɵNgModuleDeclaration<SchedulerModule, never, [typeof SchedulerComponent, typeof SchedulerCustomMessagesComponent, typeof SchedulerViewDirective, typeof DataBindingDirective, typeof SlotSelectableDirective, typeof PDFComponent, typeof PDFCommandDirective, typeof ShortcutsDirective, typeof AgendaViewComponent, typeof DayViewComponent, typeof MonthViewComponent, typeof MultiDayViewComponent, typeof MultiWeekViewComponent, typeof TimelineMonthViewComponent, typeof TimelineViewComponent, typeof TimelineWeekViewComponent, typeof WeekViewComponent, typeof WorkWeekViewComponent, typeof YearViewComponent, typeof ReactiveEditingDirective, typeof RecurrenceEditorComponent, typeof TimeZoneEditorComponent, typeof ToolbarNavigationComponent, typeof ToolbarTemplateDirective, typeof ToolbarViewSelectorComponent, typeof AgendaDateTemplateDirective, typeof AgendaTimeTemplateDirective, typeof AllDayEventTemplateDirective, typeof AllDaySlotTemplateDirective, typeof DateHeaderTemplateDirective, typeof EventTemplateDirective, typeof EditDialogTemplateDirective, typeof GroupHeaderTemplateDirective, typeof MajorTimeHeaderTemplateDirective, typeof MinorTimeHeaderTemplateDirective, typeof MonthDaySlotTemplateDirective, typeof MultiWeekDaySlotTemplateDirective, typeof TimeSlotTemplateDirective], [typeof SchedulerComponent, typeof SchedulerCustomMessagesComponent, typeof SchedulerViewDirective, typeof DataBindingDirective, typeof SlotSelectableDirective, typeof PDFComponent, typeof PDFCommandDirective, typeof ShortcutsDirective, typeof AgendaViewComponent, typeof DayViewComponent, typeof MonthViewComponent, typeof MultiDayViewComponent, typeof MultiWeekViewComponent, typeof TimelineMonthViewComponent, typeof TimelineViewComponent, typeof TimelineWeekViewComponent, typeof WeekViewComponent, typeof WorkWeekViewComponent, typeof YearViewComponent, typeof ReactiveEditingDirective, typeof RecurrenceEditorComponent, typeof TimeZoneEditorComponent, typeof ToolbarNavigationComponent, typeof ToolbarTemplateDirective, typeof ToolbarViewSelectorComponent, typeof AgendaDateTemplateDirective, typeof AgendaTimeTemplateDirective, typeof AllDayEventTemplateDirective, typeof AllDaySlotTemplateDirective, typeof DateHeaderTemplateDirective, typeof EventTemplateDirective, typeof EditDialogTemplateDirective, typeof GroupHeaderTemplateDirective, typeof MajorTimeHeaderTemplateDirective, typeof MinorTimeHeaderTemplateDirective, typeof MonthDaySlotTemplateDirective, typeof MultiWeekDaySlotTemplateDirective, typeof TimeSlotTemplateDirective]>;
5316
+ static ɵmod: i0.ɵɵNgModuleDeclaration<SchedulerModule, never, [typeof SchedulerComponent, typeof SchedulerCustomMessagesComponent, typeof SchedulerViewDirective, typeof DataBindingDirective, typeof SlotSelectableDirective, typeof PDFComponent, typeof PDFCommandDirective, typeof ShortcutsDirective, typeof AgendaViewComponent, typeof DayViewComponent, typeof MonthViewComponent, typeof MultiDayViewComponent, typeof MultiWeekViewComponent, typeof TimelineMonthViewComponent, typeof TimelineViewComponent, typeof TimelineWeekViewComponent, typeof WeekViewComponent, typeof WorkWeekViewComponent, typeof YearViewComponent, typeof ReactiveEditingDirective, typeof RecurrenceButtonTextTemplateDirective, typeof RecurrenceEditorComponent, typeof RecurrenceSummaryTemplateDirective, typeof TimeZoneEditorComponent, typeof ToolbarNavigationComponent, typeof ToolbarTemplateDirective, typeof ToolbarViewSelectorComponent, typeof AgendaDateTemplateDirective, typeof AgendaTimeTemplateDirective, typeof AllDayEventTemplateDirective, typeof AllDaySlotTemplateDirective, typeof DateHeaderTemplateDirective, typeof EventTemplateDirective, typeof EditDialogTemplateDirective, typeof GroupHeaderTemplateDirective, typeof MajorTimeHeaderTemplateDirective, typeof MinorTimeHeaderTemplateDirective, typeof MonthDaySlotTemplateDirective, typeof MultiWeekDaySlotTemplateDirective, typeof TimeSlotTemplateDirective], [typeof SchedulerComponent, typeof SchedulerCustomMessagesComponent, typeof SchedulerViewDirective, typeof DataBindingDirective, typeof SlotSelectableDirective, typeof PDFComponent, typeof PDFCommandDirective, typeof ShortcutsDirective, typeof AgendaViewComponent, typeof DayViewComponent, typeof MonthViewComponent, typeof MultiDayViewComponent, typeof MultiWeekViewComponent, typeof TimelineMonthViewComponent, typeof TimelineViewComponent, typeof TimelineWeekViewComponent, typeof WeekViewComponent, typeof WorkWeekViewComponent, typeof YearViewComponent, typeof ReactiveEditingDirective, typeof RecurrenceButtonTextTemplateDirective, typeof RecurrenceEditorComponent, typeof RecurrenceSummaryTemplateDirective, typeof TimeZoneEditorComponent, typeof ToolbarNavigationComponent, typeof ToolbarTemplateDirective, typeof ToolbarViewSelectorComponent, typeof AgendaDateTemplateDirective, typeof AgendaTimeTemplateDirective, typeof AllDayEventTemplateDirective, typeof AllDaySlotTemplateDirective, typeof DateHeaderTemplateDirective, typeof EventTemplateDirective, typeof EditDialogTemplateDirective, typeof GroupHeaderTemplateDirective, typeof MajorTimeHeaderTemplateDirective, typeof MinorTimeHeaderTemplateDirective, typeof MonthDaySlotTemplateDirective, typeof MultiWeekDaySlotTemplateDirective, typeof TimeSlotTemplateDirective]>;
5107
5317
  static ɵinj: i0.ɵɵInjectorDeclaration<SchedulerModule>;
5108
5318
  }
5109
5319
 
@@ -5188,6 +5398,7 @@ declare class EditDialogComponent implements OnDestroy {
5188
5398
  private element;
5189
5399
  private focusService;
5190
5400
  private intl;
5401
+ private injector;
5191
5402
  multipleResourceEditors: QueryList<MultipleResourceEditorComponent>;
5192
5403
  singleResourceEditors: QueryList<SingleResourceEditorComponent>;
5193
5404
  resources: Array<Resource>;
@@ -5195,6 +5406,8 @@ declare class EditDialogComponent implements OnDestroy {
5195
5406
  weekStart: Day;
5196
5407
  fields: any;
5197
5408
  editTemplate: EditDialogTemplateDirective;
5409
+ recurrenceButtonTextTemplate: RecurrenceButtonTextTemplateDirective;
5410
+ recurrenceEditorHintTemplate: RecurrenceSummaryTemplateDirective;
5198
5411
  get autoFocusedElement(): string;
5199
5412
  dialogTitle: string;
5200
5413
  isActive: boolean;
@@ -5202,22 +5415,56 @@ declare class EditDialogComponent implements OnDestroy {
5202
5415
  get isEditingSeries(): boolean;
5203
5416
  get eventTimezone(): string;
5204
5417
  get endTimezone(): string;
5418
+ get currentRule(): string;
5419
+ get currentParsedRule(): RecurrenceRule;
5420
+ startDateControl: FormControl;
5421
+ startTimeControl: FormControl;
5422
+ endDateControl: FormControl;
5423
+ endTimeControl: FormControl;
5205
5424
  recurrenceStart: Date;
5206
5425
  setTimeZone: boolean;
5207
5426
  setSeparateStartEndTimeZones: boolean;
5208
5427
  formGroup: FormGroup;
5209
5428
  editedEvent: any;
5210
5429
  isNew: boolean;
5211
- saveIcon: SVGIcon;
5212
- cancelIcon: SVGIcon;
5430
+ rightDoubleQuotesIcon: SVGIcon;
5431
+ clockIcon: SVGIcon;
5432
+ commentIcon: SVGIcon;
5433
+ globeIcon: SVGIcon;
5434
+ arrowRotateCwIcon: SVGIcon;
5435
+ trashIcon: SVGIcon;
5436
+ recurrenceDialogVisible: boolean;
5437
+ removeRecurrenceConfirmationVisible: boolean;
5438
+ recurrenceRuleControl: FormControl;
5439
+ hadRecurrenceRule: boolean;
5440
+ get hasRecurrenceRule(): boolean;
5441
+ get recurrenceButtonText(): string;
5213
5442
  private subs;
5214
5443
  private pendingNewEventData;
5215
- constructor(ngZone: NgZone, editService: EditService$1, localization: LocalizationService, changeDetector: ChangeDetectorRef, element: ElementRef, focusService: FocusService, intl: CldrIntlService);
5444
+ private recurrenceService;
5445
+ constructor(ngZone: NgZone, editService: EditService$1, localization: LocalizationService, changeDetector: ChangeDetectorRef, element: ElementRef, focusService: FocusService, intl: CldrIntlService, injector: Injector);
5216
5446
  onChange(): void;
5217
5447
  ngOnDestroy(): void;
5218
5448
  onCancel(e: any): void;
5219
5449
  onSave(e: any): void;
5220
5450
  onClose(): void;
5451
+ onDelete(e: any): void;
5452
+ onStartDateChange(value: Date): void;
5453
+ onStartTimeChange(value: Date): void;
5454
+ onEndDateChange(value: Date): void;
5455
+ onEndTimeChange(value: Date): void;
5456
+ onStartDateBlur(): void;
5457
+ onEndDateBlur(): void;
5458
+ onStartTimeBlur(): void;
5459
+ onEndTimeBlur(): void;
5460
+ showTimeZone(): void;
5461
+ resetTimeZone(): void;
5462
+ openRecurrenceDialog(): void;
5463
+ onRecurrenceSave(): void;
5464
+ onRecurrenceCancel(): void;
5465
+ onRemoveRecurrence(): void;
5466
+ onRemoveRecurrenceCancel(): void;
5467
+ onRemoveRecurrenceConfirm(): void;
5221
5468
  get hasAllDay(): boolean;
5222
5469
  get hasStartTimeZone(): boolean;
5223
5470
  get isStartTimeZoneVisible(): boolean;
@@ -5225,11 +5472,17 @@ declare class EditDialogComponent implements OnDestroy {
5225
5472
  get isEndTimeZoneVisible(): boolean;
5226
5473
  getFormValue(field?: string): any;
5227
5474
  textFor(key: string): string;
5228
- onResourceClick(resource: Resource): void;
5229
5475
  getControl(name: string): FormControl;
5230
5476
  private reset;
5477
+ private syncRecurrenceService;
5231
5478
  private addTimeZoneCheckboxesToFormGroup;
5232
5479
  private removeTimeZoneCheckboxesFromFormGroup;
5480
+ private syncDateTimeControls;
5481
+ private setDisabledState;
5482
+ private setDateTime;
5483
+ private setTime;
5484
+ private invalidateSiblingControl;
5485
+ private syncSubControls;
5233
5486
  private subscribeToFormGroupChanges;
5234
5487
  /**
5235
5488
  * Converts the event dates to "display dates" that look like the original date in its time zone.
@@ -5244,54 +5497,7 @@ declare class EditDialogComponent implements OnDestroy {
5244
5497
  private readDateAsLocal;
5245
5498
  private focusNewEvent;
5246
5499
  static ɵfac: i0.ɵɵFactoryDeclaration<EditDialogComponent, never>;
5247
- static ɵcmp: i0.ɵɵComponentDeclaration<EditDialogComponent, "kendo-scheduler-edit-dialog", never, { "resources": { "alias": "resources"; "required": false; }; "timezone": { "alias": "timezone"; "required": false; }; "weekStart": { "alias": "weekStart"; "required": false; }; "fields": { "alias": "fields"; "required": false; }; "editTemplate": { "alias": "editTemplate"; "required": false; }; }, {}, never, never, true, never>;
5248
- }
5249
-
5250
- /**
5251
- * @hidden
5252
- */
5253
- declare class SchedulerLocalizationService extends LocalizationService {
5254
- constructor(prefix: string, messageService: MessageService, _rtl: boolean);
5255
- static ɵfac: i0.ɵɵFactoryDeclaration<SchedulerLocalizationService, [null, { optional: true; }, { optional: true; }]>;
5256
- static ɵprov: i0.ɵɵInjectableDeclaration<SchedulerLocalizationService>;
5257
- }
5258
-
5259
- /**
5260
- * @hidden
5261
- */
5262
- declare class SchedulerDateTimePickerComponent implements ControlValueAccessor {
5263
- private injector;
5264
- private localization?;
5265
- datePicker: DatePickerComponent;
5266
- dateTimePicker: DateTimePickerComponent;
5267
- isAllDay: boolean;
5268
- valueChange: EventEmitter<Date>;
5269
- constructor(injector: Injector, localization?: SchedulerLocalizationService);
5270
- /**
5271
- * @hidden
5272
- */
5273
- get focusableId(): string;
5274
- get formControl(): FormControl;
5275
- textFor(key: string): string;
5276
- date: Date;
5277
- writeValue(newDate: any): void;
5278
- onValueChange(newValue: Date): void;
5279
- /**
5280
- * @hidden
5281
- */
5282
- focus(): void;
5283
- onTouchedCallback: Function;
5284
- onChangeCallback: Function;
5285
- /**
5286
- * @hidden
5287
- */
5288
- registerOnChange(fn: any): void;
5289
- /**
5290
- * @hidden
5291
- */
5292
- registerOnTouched(fn: any): void;
5293
- static ɵfac: i0.ɵɵFactoryDeclaration<SchedulerDateTimePickerComponent, never>;
5294
- static ɵcmp: i0.ɵɵComponentDeclaration<SchedulerDateTimePickerComponent, "kendo-scheduler-datetime-picker", never, { "isAllDay": { "alias": "isAllDay"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, true, never>;
5500
+ static ɵcmp: i0.ɵɵComponentDeclaration<EditDialogComponent, "kendo-scheduler-edit-dialog", never, { "resources": { "alias": "resources"; "required": false; }; "timezone": { "alias": "timezone"; "required": false; }; "weekStart": { "alias": "weekStart"; "required": false; }; "fields": { "alias": "fields"; "required": false; }; "editTemplate": { "alias": "editTemplate"; "required": false; }; "recurrenceButtonTextTemplate": { "alias": "recurrenceButtonTextTemplate"; "required": false; }; "recurrenceEditorHintTemplate": { "alias": "recurrenceEditorHintTemplate"; "required": false; }; }, {}, never, never, true, never>;
5295
5501
  }
5296
5502
 
5297
5503
  /**
@@ -5300,43 +5506,16 @@ declare class SchedulerDateTimePickerComponent implements ControlValueAccessor {
5300
5506
  declare class RecurrenceFrequencyEditorComponent implements OnInit {
5301
5507
  private recurrence;
5302
5508
  private localization;
5303
- weekDayButtons: QueryList<Button>;
5304
5509
  frequencies: Array<FrequencyEntity>;
5305
5510
  constructor(recurrence: RecurrenceService, localization: LocalizationService);
5306
5511
  ngOnInit(): void;
5307
5512
  get selected(): string;
5308
- onClick(newFreq: FrequencyEntity): void;
5513
+ onFrequencyChange(newFreq: Frequency): void;
5309
5514
  textFor(key: string): string;
5310
- onFrequencyClick(): void;
5311
5515
  static ɵfac: i0.ɵɵFactoryDeclaration<RecurrenceFrequencyEditorComponent, never>;
5312
5516
  static ɵcmp: i0.ɵɵComponentDeclaration<RecurrenceFrequencyEditorComponent, "kendo-recurrence-frequency-editor", never, {}, {}, never, never, true, never>;
5313
5517
  }
5314
5518
 
5315
- /**
5316
- * @hidden
5317
- */
5318
- declare class EndRuleRadioButtonDirective implements OnInit, AfterContentChecked, OnDestroy {
5319
- private el;
5320
- private renderer;
5321
- private recurrence;
5322
- private changeDetector;
5323
- type: string;
5324
- radioClass: boolean;
5325
- radioSizeClass: boolean;
5326
- endRuleId: string;
5327
- private destroyClick;
5328
- private endRule;
5329
- constructor(el: ElementRef, renderer: Renderer2, recurrence: RecurrenceService, changeDetector: ChangeDetectorRef);
5330
- ngOnInit(): void;
5331
- ngAfterContentChecked(): void;
5332
- ngOnDestroy(): void;
5333
- onClick(): void;
5334
- private setCheckedState;
5335
- get elem(): any;
5336
- static ɵfac: i0.ɵɵFactoryDeclaration<EndRuleRadioButtonDirective, never>;
5337
- static ɵdir: i0.ɵɵDirectiveDeclaration<EndRuleRadioButtonDirective, "[kendoRecurrenceEndRuleRadioButton]", never, { "endRuleId": { "alias": "kendoRecurrenceEndRuleRadioButton"; "required": false; }; }, {}, never, never, true, never>;
5338
- }
5339
-
5340
5519
  /**
5341
5520
  * @hidden
5342
5521
  */
@@ -5346,25 +5525,23 @@ declare class RecurrenceEndRuleEditorComponent implements OnDestroy {
5346
5525
  cssClass: boolean;
5347
5526
  set userNumericOptions(options: NumericTextBoxOptions);
5348
5527
  set userDatePickerOptions(options: DatePickerOptions);
5349
- endRuleRadioButtons: QueryList<EndRuleRadioButtonDirective>;
5350
5528
  countValue: number;
5351
5529
  untilValue: Date;
5352
5530
  numericOptions: NumericTextBoxOptions;
5353
5531
  datePickerOptions: DatePickerOptions;
5354
- uniqueId: number;
5355
5532
  private subscriptions;
5356
5533
  constructor(recurrence: RecurrenceService, localization?: LocalizationService);
5357
5534
  ngOnDestroy(): void;
5358
5535
  setEndRule(endRule: EndRule): void;
5359
5536
  get rrule(): RecurrenceRule;
5360
- get isCountDisabled(): boolean;
5361
- get isUntilDisabled(): boolean;
5537
+ get endRules(): Array<EndRuleEntity>;
5538
+ get selectedEndRule(): EndRule;
5539
+ onEndRuleChange(newEndRule: EndRule): void;
5362
5540
  onCountChange(value: number): void;
5363
5541
  onCountBlur(): void;
5364
5542
  onUntilChange(value: Date): void;
5365
5543
  onUntilBlur(): void;
5366
5544
  textFor(key: string): string;
5367
- onEndLabelClick(): void;
5368
5545
  private setInitialValues;
5369
5546
  private subscribeChanges;
5370
5547
  private createUntil;
@@ -5378,7 +5555,6 @@ declare class RecurrenceEndRuleEditorComponent implements OnDestroy {
5378
5555
  declare class RecurrenceIntervalEditorComponent implements OnDestroy {
5379
5556
  private recurrence;
5380
5557
  private localization?;
5381
- cssClass: boolean;
5382
5558
  set userNumericOptions(options: NumericTextBoxOptions);
5383
5559
  intervalValue: number;
5384
5560
  numericOptions: NumericTextBoxOptions;
@@ -5389,7 +5565,6 @@ declare class RecurrenceIntervalEditorComponent implements OnDestroy {
5389
5565
  onIntervalChange(newInterval: number): void;
5390
5566
  onIntervalBlur(): void;
5391
5567
  textForRepeatEvery(): string;
5392
- textForFrequency(): string;
5393
5568
  textFor(key: string): string;
5394
5569
  static ɵfac: i0.ɵɵFactoryDeclaration<RecurrenceIntervalEditorComponent, never>;
5395
5570
  static ɵcmp: i0.ɵɵComponentDeclaration<RecurrenceIntervalEditorComponent, "kendo-recurrence-interval-editor", never, { "userNumericOptions": { "alias": "userNumericOptions"; "required": false; }; }, {}, never, never, true, never>;
@@ -5471,16 +5646,17 @@ declare class RecurrenceMonthlyYearlyEditorComponent implements OnDestroy {
5471
5646
  declare class RecurrenceWeekdayRuleEditorComponent {
5472
5647
  private recurrence;
5473
5648
  private localization;
5474
- weekDayButtons: QueryList<Button>;
5649
+ weekDayButtons: QueryList<ButtonComponent>;
5475
5650
  weekDays: Array<WeekDayEntity>;
5476
5651
  selected: Array<boolean>;
5477
5652
  constructor(recurrence: RecurrenceService, localization: LocalizationService);
5478
5653
  setSelectedDays(): void;
5479
5654
  onDayClick(day: WeekDayEntity): void;
5480
5655
  isSelected(day: WeekDayEntity): boolean;
5656
+ get firstSelectedDay(): WeekDayEntity;
5481
5657
  serializeToWeekDayRuleArray(arr: Array<boolean>): Array<WeekDayRule>;
5482
5658
  get rrule(): RecurrenceRule;
5483
- capitalize(day: string): string;
5659
+ abbreviate(day: string): string;
5484
5660
  textFor(key: string): string;
5485
5661
  onWeeklyRepeatOnClick(): void;
5486
5662
  static ɵfac: i0.ɵɵFactoryDeclaration<RecurrenceWeekdayRuleEditorComponent, never>;
@@ -6343,7 +6519,10 @@ declare class BaseViewItem implements OnInit, OnChanges, OnDestroy, ViewItem {
6343
6519
  editable: any;
6344
6520
  dragHint: boolean;
6345
6521
  resources: any[];
6522
+ eventHeight: number | 'auto';
6346
6523
  className: boolean;
6524
+ get containerType(): string;
6525
+ get isReadonly(): boolean;
6347
6526
  get taskIndex(): string;
6348
6527
  get touchAction(): string;
6349
6528
  get eventTitle(): string;
@@ -6367,7 +6546,7 @@ declare class BaseViewItem implements OnInit, OnChanges, OnDestroy, ViewItem {
6367
6546
  get arrowIcons(): string[];
6368
6547
  get arrowSVGIcons(): SVGIcon[];
6369
6548
  static ɵfac: i0.ɵɵFactoryDeclaration<BaseViewItem, never>;
6370
- static ɵdir: i0.ɵɵDirectiveDeclaration<BaseViewItem, never, never, { "item": { "alias": "item"; "required": false; }; "resourceIndex": { "alias": "resourceIndex"; "required": false; }; "rangeIndex": { "alias": "rangeIndex"; "required": false; }; "index": { "alias": "index"; "required": false; }; "eventTemplate": { "alias": "eventTemplate"; "required": false; }; "editable": { "alias": "editable"; "required": false; }; "dragHint": { "alias": "dragHint"; "required": false; }; "resources": { "alias": "resources"; "required": false; }; }, {}, never, never, true, never>;
6549
+ static ɵdir: i0.ɵɵDirectiveDeclaration<BaseViewItem, never, never, { "item": { "alias": "item"; "required": false; }; "resourceIndex": { "alias": "resourceIndex"; "required": false; }; "rangeIndex": { "alias": "rangeIndex"; "required": false; }; "index": { "alias": "index"; "required": false; }; "eventTemplate": { "alias": "eventTemplate"; "required": false; }; "editable": { "alias": "editable"; "required": false; }; "dragHint": { "alias": "dragHint"; "required": false; }; "resources": { "alias": "resources"; "required": false; }; "eventHeight": { "alias": "eventHeight"; "required": false; }; }, {}, never, never, true, never>;
6371
6550
  }
6372
6551
 
6373
6552
  /**
@@ -6381,7 +6560,6 @@ declare class DayTimeViewItemComponent extends BaseViewItem {
6381
6560
  chevronDownIcon: SVGIcon;
6382
6561
  arrowRotateCwIcon: SVGIcon;
6383
6562
  arrowsNoRepeatIcon: SVGIcon;
6384
- xIcon: SVGIcon;
6385
6563
  vertical: boolean;
6386
6564
  isAllDay: boolean;
6387
6565
  name: string;
@@ -6495,6 +6673,7 @@ declare class TimelineMultiDayViewComponent extends DayTimeViewComponent {
6495
6673
  timeColspan(index: number): any;
6496
6674
  horizontalColspan(resourceIndex: number): any;
6497
6675
  verticalRowspan(resourceIndex: number): any;
6676
+ isToday(slot: any): boolean;
6498
6677
  handleScroll(): void;
6499
6678
  protected syncTables(): void;
6500
6679
  protected createTasks(items: ViewItem$1[], dateRange: DateRange): any[];
@@ -6545,7 +6724,7 @@ declare class MonthViewItemComponent extends BaseViewItem {
6545
6724
  chevronRightIcon: SVGIcon;
6546
6725
  arrowRotateCwIcon: SVGIcon;
6547
6726
  arrowsNoRepeatIcon: SVGIcon;
6548
- xIcon: SVGIcon;
6727
+ get eventTime(): string;
6549
6728
  constructor(slotService: MonthSlotService, localization: LocalizationService, focusService: FocusService, element: ElementRef, renderer: Renderer2, intl: IntlService);
6550
6729
  reflow(): void;
6551
6730
  static ɵfac: i0.ɵɵFactoryDeclaration<MonthViewItemComponent, never>;
@@ -6600,6 +6779,7 @@ declare class MonthResourceGroup implements ResourceGroup {
6600
6779
  * @hidden
6601
6780
  */
6602
6781
  declare class MonthSlotService extends BaseSlotService {
6782
+ currentPopover: PopoverAnchorDirective;
6603
6783
  layout(eventHeight: number | 'auto', eventsPerDay: number | 'auto', adaptiveSlotHeight: boolean): void;
6604
6784
  slotByIndex(slotIndex: string): any;
6605
6785
  forEachSlot(callback: any): void;
@@ -6628,9 +6808,10 @@ declare class YearViewInternalComponent extends BaseView implements AfterViewIni
6628
6808
  */
6629
6809
  dateRangeFn: (date: Date) => DateRange;
6630
6810
  private calendar;
6631
- tooltip: TooltipDirective;
6811
+ private popoverContainer;
6632
6812
  get arrowIcons(): string[];
6633
6813
  get arrowSVGIcons(): SVGIcon[];
6814
+ selectedPopoverDate: Date;
6634
6815
  chevronLeftIcon: SVGIcon;
6635
6816
  chevronRightIcon: SVGIcon;
6636
6817
  eventsPerSelectedDay: any[];
@@ -6638,16 +6819,12 @@ declare class YearViewInternalComponent extends BaseView implements AfterViewIni
6638
6819
  focusedDate: Date;
6639
6820
  private currentTd;
6640
6821
  private tds;
6641
- private isTooltipClicked;
6642
6822
  constructor(localization: LocalizationService, focusService: FocusService, intl: IntlService, viewContext: ViewContextService, viewState: ViewStateService, zone: NgZone, renderer: Renderer2, pdfService: PDFService, element: ElementRef, slotService: MonthSlotService, scrollbarService: ScrollbarService, changeDetector: ChangeDetectorRef);
6643
6823
  ngAfterViewInit(): void;
6644
6824
  getSlotClass(date: any): string[];
6645
6825
  getEventClasses(item: any, resources: any, isAllDay?: boolean): any;
6646
- onBlur(): void;
6647
6826
  getDate(element: ElementRef): Date;
6648
6827
  eventTitle(event: any): string;
6649
- onClick(event: any): void;
6650
- onMouseDown(): void;
6651
6828
  onKeydown(event: any): void;
6652
6829
  navigateToDay(date: Date): void;
6653
6830
  private eventsPerDay;
@@ -6721,7 +6898,7 @@ declare const KENDO_SCHEDULERPDF: readonly [typeof PDFComponent, typeof PDFComma
6721
6898
  * export class AppComponent {}
6722
6899
  * ```
6723
6900
  */
6724
- declare const KENDO_SCHEDULER: readonly [typeof SchedulerComponent, typeof SchedulerCustomMessagesComponent, typeof SchedulerViewDirective, typeof DataBindingDirective, typeof SlotSelectableDirective, typeof PDFComponent, typeof PDFCommandDirective, typeof ShortcutsDirective, typeof AgendaViewComponent, typeof DayViewComponent, typeof MonthViewComponent, typeof MultiDayViewComponent, typeof MultiWeekViewComponent, typeof TimelineMonthViewComponent, typeof TimelineViewComponent, typeof TimelineWeekViewComponent, typeof WeekViewComponent, typeof WorkWeekViewComponent, typeof YearViewComponent, typeof ReactiveEditingDirective, typeof RecurrenceEditorComponent, typeof TimeZoneEditorComponent, typeof ToolbarNavigationComponent, typeof ToolbarTemplateDirective, typeof ToolbarViewSelectorComponent, typeof AgendaDateTemplateDirective, typeof AgendaTimeTemplateDirective, typeof AllDayEventTemplateDirective, typeof AllDaySlotTemplateDirective, typeof DateHeaderTemplateDirective, typeof EventTemplateDirective, typeof EditDialogTemplateDirective, typeof GroupHeaderTemplateDirective, typeof MajorTimeHeaderTemplateDirective, typeof MinorTimeHeaderTemplateDirective, typeof MonthDaySlotTemplateDirective, typeof MultiWeekDaySlotTemplateDirective, typeof TimeSlotTemplateDirective];
6901
+ declare const KENDO_SCHEDULER: readonly [typeof SchedulerComponent, typeof SchedulerCustomMessagesComponent, typeof SchedulerViewDirective, typeof DataBindingDirective, typeof SlotSelectableDirective, typeof PDFComponent, typeof PDFCommandDirective, typeof ShortcutsDirective, typeof AgendaViewComponent, typeof DayViewComponent, typeof MonthViewComponent, typeof MultiDayViewComponent, typeof MultiWeekViewComponent, typeof TimelineMonthViewComponent, typeof TimelineViewComponent, typeof TimelineWeekViewComponent, typeof WeekViewComponent, typeof WorkWeekViewComponent, typeof YearViewComponent, typeof ReactiveEditingDirective, typeof RecurrenceButtonTextTemplateDirective, typeof RecurrenceEditorComponent, typeof RecurrenceSummaryTemplateDirective, typeof TimeZoneEditorComponent, typeof ToolbarNavigationComponent, typeof ToolbarTemplateDirective, typeof ToolbarViewSelectorComponent, typeof AgendaDateTemplateDirective, typeof AgendaTimeTemplateDirective, typeof AllDayEventTemplateDirective, typeof AllDaySlotTemplateDirective, typeof DateHeaderTemplateDirective, typeof EventTemplateDirective, typeof EditDialogTemplateDirective, typeof GroupHeaderTemplateDirective, typeof MajorTimeHeaderTemplateDirective, typeof MinorTimeHeaderTemplateDirective, typeof MonthDaySlotTemplateDirective, typeof MultiWeekDaySlotTemplateDirective, typeof TimeSlotTemplateDirective];
6725
6902
 
6726
- export { AddEvent, AgendaDateTemplateDirective, AgendaTimeTemplateDirective, AgendaViewComponent, AllDayEventTemplateDirective, AllDaySlotTemplateDirective, BaseEditService, CancelEvent, CreateEvent, CrudOperation, DataBindingDirective, DateChangeEvent, DateHeaderTemplateDirective, DaySlotDirective, DayTimeSlotService, DayTimeViewItemComponent, DayViewComponent, DragEndEvent, DragEvent, DragStartEvent, EditDialogComponent, EditDialogTemplateDirective, EditEvent, EditEventBase, EditMode, EndRuleRadioButtonDirective, EventClickEvent, EventKeydownEvent, EventTemplateDirective, FocusService, FocusableDirective, GroupHeaderTemplateDirective, HintContainerComponent, IsSlotSelectedArgs, KENDO_SCHEDULER, KENDO_SCHEDULERPDF, LoadingComponent, LocalizedMessagesDirective, MajorTimeHeaderTemplateDirective, MinorTimeHeaderTemplateDirective, MonthDaySlotTemplateDirective, MonthViewComponent, MoreEventsClickEvent, MultiDayViewComponent, MultiWeekDaySlotTemplateDirective, MultiWeekViewComponent, MultipleResourceEditorComponent, NavigateEvent, PDFCommandDirective, PDFComponent, PDFExportEvent, PDFModule, PDFService, ReactiveEditingDirective, RecurrenceEditorComponent, RecurrenceEditorCustomMessagesComponent, RecurrenceEditorLocalizedMessagesDirective, RecurrenceEndRuleEditorComponent, RecurrenceFrequencyEditorComponent, RecurrenceIntervalEditorComponent, RecurrenceMonthlyYearlyEditorComponent, RecurrenceWeekdayRuleEditorComponent, RemoveEvent, RepeatOnRadioButtonDirective, RepeatPipe, ResizeEndEvent, ResizeEvent, ResizeHintComponent, ResizeStartEvent, ResourceIteratorPipe, SaveEvent, SchedulerComponent, SchedulerCustomMessagesComponent, SchedulerDateTimePickerComponent, SchedulerModule, SchedulerView, SchedulerViewDirective, ShortcutsDirective, SingleResourceEditorComponent, SlotClickEvent, SlotDragEndEvent, SlotDragEvent, SlotDragStartEvent, SlotSelectableDirective, SortPipe, TimeSlotDirective, TimeSlotTemplateDirective, TimeZoneEditorComponent, TimelineBase, TimelineMonthViewComponent, TimelineMultiDayViewComponent, TimelineViewComponent, TimelineWeekViewComponent, ToolbarNavigationComponent, ToolbarService, ToolbarTemplateDirective, ToolbarViewSelectorComponent, VIEW_EVENT_MAP, ViewContextService, ViewFooterComponent, ViewStateService, WeekViewComponent, WorkHoursFooterDirective, WorkWeekViewComponent, YearViewComponent, YearViewInternalComponent };
6903
+ export { AddEvent, AgendaDateTemplateDirective, AgendaTimeTemplateDirective, AgendaViewComponent, AllDayEventTemplateDirective, AllDaySlotTemplateDirective, BaseEditService, CancelEvent, CreateEvent, CrudOperation, DataBindingDirective, DateChangeEvent, DateHeaderTemplateDirective, DaySlotDirective, DayTimeSlotService, DayTimeViewItemComponent, DayViewComponent, DragEndEvent, DragEvent, DragStartEvent, EditDialogComponent, EditDialogTemplateDirective, EditEvent, EditEventBase, EditMode, EventClickEvent, EventKeydownEvent, EventTemplateDirective, FocusService, FocusableDirective, GroupHeaderTemplateDirective, HintContainerComponent, IsSlotSelectedArgs, KENDO_SCHEDULER, KENDO_SCHEDULERPDF, LoadingComponent, LocalizedMessagesDirective, MajorTimeHeaderTemplateDirective, MinorTimeHeaderTemplateDirective, MonthDaySlotTemplateDirective, MonthViewComponent, MoreEventsClickEvent, MultiDayViewComponent, MultiWeekDaySlotTemplateDirective, MultiWeekViewComponent, MultipleResourceEditorComponent, NavigateEvent, PDFCommandDirective, PDFComponent, PDFExportEvent, PDFModule, PDFService, ReactiveEditingDirective, RecurrenceButtonTextTemplateDirective, RecurrenceEditorComponent, RecurrenceEditorCustomMessagesComponent, RecurrenceEditorLocalizedMessagesDirective, RecurrenceEndRuleEditorComponent, RecurrenceFrequencyEditorComponent, RecurrenceIntervalEditorComponent, RecurrenceMonthlyYearlyEditorComponent, RecurrenceSummaryTemplateDirective, RecurrenceWeekdayRuleEditorComponent, RemoveEvent, RepeatOnRadioButtonDirective, RepeatPipe, ResizeEndEvent, ResizeEvent, ResizeHintComponent, ResizeStartEvent, ResourceIteratorPipe, SaveEvent, SchedulerComponent, SchedulerCustomMessagesComponent, SchedulerModule, SchedulerView, SchedulerViewDirective, ShortcutsDirective, SingleResourceEditorComponent, SlotClickEvent, SlotDragEndEvent, SlotDragEvent, SlotDragStartEvent, SlotSelectableDirective, SortPipe, TimeSlotDirective, TimeSlotTemplateDirective, TimeZoneEditorComponent, TimelineBase, TimelineMonthViewComponent, TimelineMultiDayViewComponent, TimelineViewComponent, TimelineWeekViewComponent, ToolbarNavigationComponent, ToolbarService, ToolbarTemplateDirective, ToolbarViewSelectorComponent, VIEW_EVENT_MAP, ViewContextService, ViewFooterComponent, ViewStateService, WeekViewComponent, WorkHoursFooterDirective, WorkWeekViewComponent, YearViewComponent, YearViewInternalComponent };
6727
6904
  export type { CreateFormGroupArgs, CurrentTimeSettings, DatePickerOptions, DateRange, EditEventArgs, EditableSettings, EventStyleArgs, FocusNext, FocusPosition, FocusPrev, FocusToolbar, Group, NavigationAction, Next, NumericTextBoxOptions, OngoingEventsSettings, Prev, Resource, SchedulerEvent, SchedulerModelFields, SchedulerSlot, ScrollTime, SelectDate, ShowDate, SlotClassArgs, SlotRange$2 as SlotRange, Today, ToggleBusinessHours, ToolbarContext, ViewChange, ViewItem$1 as ViewItem };