@progress/kendo-angular-scheduler 25.0.0-develop.3 → 25.0.0-develop.31

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
  */
@@ -2813,6 +2907,10 @@ declare class Messages$1 extends ComponentMessages {
2813
2907
  * Sets the title for the **Previous** navigation button.
2814
2908
  */
2815
2909
  previousTitle: string;
2910
+ /**
2911
+ * Sets the label for the Scheduler toolbar.
2912
+ */
2913
+ toolbar: string;
2816
2914
  /**
2817
2915
  * Sets the text for the **Today** navigation button.
2818
2916
  */
@@ -2893,6 +2991,10 @@ declare class Messages$1 extends ComponentMessages {
2893
2991
  * Sets the label for the **Start** field in the event editor.
2894
2992
  */
2895
2993
  editorEventStart: string;
2994
+ /**
2995
+ * Sets the label for the **Start Time** field in the event editor.
2996
+ */
2997
+ editorEventStartTime: string;
2896
2998
  /**
2897
2999
  * Sets the label for the **Start Time Zone** field in the event editor.
2898
3000
  */
@@ -2901,6 +3003,10 @@ declare class Messages$1 extends ComponentMessages {
2901
3003
  * Sets the label for the **End** field in the event editor.
2902
3004
  */
2903
3005
  editorEventEnd: string;
3006
+ /**
3007
+ * Sets the label for the **End Time** field in the event editor.
3008
+ */
3009
+ editorEventEndTime: string;
2904
3010
  /**
2905
3011
  * Sets the label for the **End Time Zone** field in the event editor.
2906
3012
  */
@@ -2913,66 +3019,98 @@ declare class Messages$1 extends ComponentMessages {
2913
3019
  * Sets the label for the **Description** field in the event editor.
2914
3020
  */
2915
3021
  editorEventDescription: string;
2916
- /**
2917
- * Sets the label for the **Use separate Start and End Time Zones** option in the event editor.
2918
- */
2919
- editorEventSeparateTimeZones: string;
2920
3022
  /**
2921
3023
  * Sets the label for the **Time Zone** field in the event editor.
2922
3024
  */
2923
3025
  editorEventTimeZone: string;
2924
3026
  /**
2925
- * 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.
2926
3076
  */
2927
3077
  editorDateInputsToday: string;
2928
3078
  /**
2929
- * 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.
2930
3080
  */
2931
- editorDateInputsToggle: string;
3081
+ editorDatePickersToggle: string;
2932
3082
  /**
2933
- * 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.
2934
3084
  */
2935
3085
  editorDateInputsParentViewButton: string;
2936
3086
  /**
2937
- * 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.
2938
3088
  */
2939
3089
  editorDateInputsNow: string;
2940
3090
  /**
2941
- * 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.
2942
3092
  */
2943
3093
  editorDateInputsNowLabel: string;
2944
3094
  /**
2945
- * 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.
2946
3096
  */
2947
3097
  editorDateInputsAccept: string;
2948
3098
  /**
2949
- * 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.
2950
3100
  */
2951
3101
  editorDateInputsAcceptLabel: string;
2952
3102
  /**
2953
- * 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.
2954
3104
  */
2955
3105
  editorDateInputsCancel: string;
2956
3106
  /**
2957
- * 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.
2958
3108
  */
2959
3109
  editorDateInputsCancelLabel: string;
2960
3110
  /**
2961
- * Sets the text for the **Date** tab in the popup header of the DateTimePickers and DatePickers in the event editor.
2962
- */
2963
- editorDateInputsDateTab: string;
2964
- /**
2965
- * Sets the label for the **Date** 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.
2966
3112
  */
2967
- editorDateInputsDateTabLabel: string;
2968
- /**
2969
- * Sets the text for the **Time** tab in the popup header of the DateTimePickers and DatePickers in the event editor.
2970
- */
2971
- editorDateInputsTimeTab: string;
2972
- /**
2973
- * Sets the label for the **Time** tab in the popup header of the DateTimePickers and DatePickers in the event editor.
2974
- */
2975
- editorDateInputsTimeTabLabel: string;
3113
+ editorTimePickersToggle: string;
2976
3114
  /**
2977
3115
  * Sets the **Today** button text in the popup of the DatePickers in the recurrence editor.
2978
3116
  */
@@ -3125,6 +3263,10 @@ declare class Messages$1 extends ComponentMessages {
3125
3263
  * Sets the label for the **Event** title in the event editor dialog.
3126
3264
  */
3127
3265
  editorTitle: string;
3266
+ /**
3267
+ * Sets the label for the **New event** title in the event editor dialog.
3268
+ */
3269
+ editorTitleNew: string;
3128
3270
  /**
3129
3271
  * Sets the text for the **Delete** button in the remove confirmation dialog.
3130
3272
  */
@@ -3173,8 +3315,16 @@ declare class Messages$1 extends ComponentMessages {
3173
3315
  * Sets the value of the aria-label attribute for the `select` element used to switch Scheduler views.
3174
3316
  */
3175
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;
3176
3326
  static ɵfac: i0.ɵɵFactoryDeclaration<Messages$1, never>;
3177
- 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; }; "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>;
3178
3328
  }
3179
3329
 
3180
3330
  /**
@@ -3623,16 +3773,16 @@ declare class AgendaViewComponent extends ConfigurationViewBase {
3623
3773
  get title(): string;
3624
3774
  /**
3625
3775
  * Sets the long-date format for the selected date in the Scheduler toolbar.
3626
- * 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.
3627
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).
3628
- * @default '{0:D} - {1:D}'
3778
+ * @default '{0:M} - {1:M}'
3629
3779
  */
3630
3780
  selectedDateFormat: string;
3631
3781
  /**
3632
3782
  * Sets the short-date format for the selected date in the Scheduler toolbar.
3633
- * 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.
3634
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).
3635
- * @default '{0:d} - {1:d}'
3785
+ * @default '{0:m} - {1:m}'
3636
3786
  */
3637
3787
  selectedShortDateFormat: string;
3638
3788
  /**
@@ -3847,14 +3997,14 @@ declare class DayViewComponent extends MultiDayViewBase {
3847
3997
  /**
3848
3998
  * Sets the long-date format for the selected date in the Scheduler toolbar.
3849
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).
3850
- * @default '{0:D}'
4000
+ * @default '{0:M}'
3851
4001
  */
3852
4002
  set selectedDateFormat(value: string);
3853
4003
  get selectedDateFormat(): string;
3854
4004
  /**
3855
4005
  * Sets the short-date format for the selected date in the Scheduler toolbar.
3856
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).
3857
- * @default '{0:d}'
4007
+ * @default '{0:m}'
3858
4008
  */
3859
4009
  set selectedShortDateFormat(value: string);
3860
4010
  get selectedShortDateFormat(): string;
@@ -4188,8 +4338,8 @@ declare class TimelineViewComponent extends TimelineBase {
4188
4338
  /**
4189
4339
  * Sets the long-date format for the selected date in the Scheduler toolbar.
4190
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).
4191
- * 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.
4192
- * @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}'
4193
4343
  */
4194
4344
  set selectedDateFormat(format: string);
4195
4345
  get selectedDateFormat(): string;
@@ -4197,8 +4347,8 @@ declare class TimelineViewComponent extends TimelineBase {
4197
4347
  /**
4198
4348
  * Sets the short-date format for the selected date in the Scheduler toolbar.
4199
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).
4200
- * 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.
4201
- * @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}'
4202
4352
  */
4203
4353
  set selectedShortDateFormat(format: string);
4204
4354
  get selectedShortDateFormat(): string;
@@ -4243,16 +4393,16 @@ declare class TimelineWeekViewComponent extends TimelineBase {
4243
4393
  get title(): string;
4244
4394
  /**
4245
4395
  * Sets the long-date format for the selected date in the Scheduler toolbar.
4246
- * 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.
4247
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).
4248
- * @default '{0:D} - {1:D}'
4398
+ * @default '{0:M} - {1:M}'
4249
4399
  */
4250
4400
  selectedDateFormat: string;
4251
4401
  /**
4252
4402
  * Sets the short-date format for the selected date in the Scheduler toolbar.
4253
- * 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.
4254
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).
4255
- * @default '{0:d} - {1:d}'
4405
+ * @default '{0:m} - {1:m}'
4256
4406
  */
4257
4407
  selectedShortDateFormat: string;
4258
4408
  /**
@@ -4295,16 +4445,16 @@ declare class WeekViewComponent extends MultiDayViewBase {
4295
4445
  get title(): string;
4296
4446
  /**
4297
4447
  * Sets the long-date format for the selected date in the Scheduler toolbar.
4298
- * 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.
4299
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).
4300
- * @default '{0:D} - {1:D}'
4450
+ * @default '{0:M} - {1:M}'
4301
4451
  */
4302
4452
  selectedDateFormat: string;
4303
4453
  /**
4304
4454
  * Sets the short-date format for the selected date in the Scheduler toolbar.
4305
- * 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.
4306
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).
4307
- * @default '{0:d} - {1:d}'
4457
+ * @default '{0:m} - {1:m}'
4308
4458
  */
4309
4459
  selectedShortDateFormat: string;
4310
4460
  /**
@@ -4526,7 +4676,7 @@ declare abstract class EditingDirectiveBase implements OnInit, OnDestroy {
4526
4676
  ngOnDestroy(): void;
4527
4677
  protected createDefaultService(): EditService<any>;
4528
4678
  protected addHandler(args: any): void;
4529
- protected removeHandler({ dataItem }: any): void;
4679
+ protected removeHandler({ dataItem, mode }: any): void;
4530
4680
  protected cancelHandler(): void;
4531
4681
  protected closeEditor(): void;
4532
4682
  protected handleUpdate(item: any, value: any, mode: EditMode): void;
@@ -4610,6 +4760,13 @@ interface FrequencyEntity {
4610
4760
  text: string;
4611
4761
  value: Frequency;
4612
4762
  }
4763
+ /**
4764
+ * @hidden
4765
+ */
4766
+ interface EndRuleEntity {
4767
+ text: string;
4768
+ value: EndRule;
4769
+ }
4613
4770
  /**
4614
4771
  * @hidden
4615
4772
  */
@@ -4655,6 +4812,7 @@ declare class RecurrenceService {
4655
4812
  */
4656
4813
  getUniqueId(): number;
4657
4814
  get frequencies(): Array<FrequencyEntity>;
4815
+ get endRules(): Array<EndRuleEntity>;
4658
4816
  get frequency(): string;
4659
4817
  setFrequency(freq: Frequency): void;
4660
4818
  set interval(newInterval: number);
@@ -4674,6 +4832,22 @@ declare class RecurrenceService {
4674
4832
  get repeatOnRule(): RepeatOnRule;
4675
4833
  set repeatOnRule(repeatOnRule: RepeatOnRule);
4676
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;
4677
4851
  static ɵfac: i0.ɵɵFactoryDeclaration<RecurrenceService, never>;
4678
4852
  static ɵprov: i0.ɵɵInjectableDeclaration<RecurrenceService>;
4679
4853
  }
@@ -4703,7 +4877,7 @@ declare class RecurrenceService {
4703
4877
  declare class RecurrenceEditorComponent implements ControlValueAccessor, OnInit, OnDestroy {
4704
4878
  private recurrenceService;
4705
4879
  private intl;
4706
- cssClass: boolean;
4880
+ private localization;
4707
4881
  /**
4708
4882
  * Sets the start date for the event.
4709
4883
  */
@@ -4735,21 +4909,41 @@ declare class RecurrenceEditorComponent implements ControlValueAccessor, OnInit,
4735
4909
  * Sets the options for the **End On** DatePicker in the recurrence `until` rule editor.
4736
4910
  */
4737
4911
  endOnOptions: DatePickerOptions;
4912
+ /**
4913
+ * @hidden
4914
+ */
4915
+ recurrenceSummaryTemplate: RecurrenceSummaryTemplateDirective;
4916
+ /**
4917
+ * @hidden
4918
+ */
4919
+ recurrenceRule: string;
4738
4920
  /**
4739
4921
  * Fires when the value of the component changes.
4740
4922
  */
4741
4923
  valueChange: EventEmitter<string>;
4742
4924
  private _start;
4743
4925
  private subscriptions;
4744
- constructor(recurrenceService: RecurrenceService, intl: IntlService);
4926
+ constructor(recurrenceService: RecurrenceService, intl: IntlService, localization: LocalizationService);
4745
4927
  /**
4746
4928
  * @hidden
4747
4929
  */
4748
4930
  get currentFreq(): Frequency;
4931
+ /**
4932
+ * @hidden
4933
+ */
4934
+ get currentParsedRule(): RecurrenceRule;
4935
+ /**
4936
+ * @hidden
4937
+ */
4938
+ get repeatsSummaryText(): string;
4749
4939
  /**
4750
4940
  * @hidden
4751
4941
  */
4752
4942
  ngOnInit(): void;
4943
+ /**
4944
+ * @hidden
4945
+ */
4946
+ textFor(key: string): string;
4753
4947
  ngOnChanges(changes: any): void;
4754
4948
  /**
4755
4949
  * @hidden
@@ -4771,7 +4965,7 @@ declare class RecurrenceEditorComponent implements ControlValueAccessor, OnInit,
4771
4965
  registerOnTouched(fn: any): void;
4772
4966
  private emitChange;
4773
4967
  static ɵfac: i0.ɵɵFactoryDeclaration<RecurrenceEditorComponent, never>;
4774
- 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>;
4775
4969
  }
4776
4970
 
4777
4971
  /**
@@ -4791,11 +4985,10 @@ declare class RecurrenceEditorComponent implements ControlValueAccessor, OnInit,
4791
4985
  */
4792
4986
  declare class TimeZoneEditorComponent implements ControlValueAccessor {
4793
4987
  private injector;
4794
- tzComboBox: ComboBoxComponent;
4795
- tzComboBoxControl: ComboBoxComponent;
4988
+ tzComboBox: DropDownListComponent;
4989
+ tzComboBoxControl: DropDownListComponent;
4796
4990
  /**
4797
4991
  * Specifies the width of the ComboBox that contains the names of the timezones.
4798
- * @default 260
4799
4992
  */
4800
4993
  width: number;
4801
4994
  /**
@@ -4813,6 +5006,7 @@ declare class TimeZoneEditorComponent implements ControlValueAccessor {
4813
5006
  tz: string;
4814
5007
  tzNames: Array<string>;
4815
5008
  tzSource: Array<string>;
5009
+ popupWidth: number;
4816
5010
  constructor(injector: Injector);
4817
5011
  /**
4818
5012
  * @hidden
@@ -4943,6 +5137,10 @@ declare class ToolbarNavigationComponent implements OnDestroy {
4943
5137
  * @default month
4944
5138
  */
4945
5139
  bottomView: CalendarView;
5140
+ /**
5141
+ * @hidden
5142
+ */
5143
+ responsiveLevel: number;
4946
5144
  /**
4947
5145
  * @hidden
4948
5146
  */
@@ -5006,7 +5204,7 @@ declare class ToolbarNavigationComponent implements OnDestroy {
5006
5204
  get arrowIcons(): string[];
5007
5205
  get arrowSVGIcons(): string[];
5008
5206
  static ɵfac: i0.ɵɵFactoryDeclaration<ToolbarNavigationComponent, never>;
5009
- 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>;
5010
5208
  }
5011
5209
 
5012
5210
  /**
@@ -5019,7 +5217,7 @@ declare class ToolbarNavigationComponent implements OnDestroy {
5019
5217
  * ```html
5020
5218
  * <kendo-scheduler>
5021
5219
  * <ng-template kendoSchedulerToolbarTemplate>
5022
- * <div kendoSchedulerToolbarViewSelector responsiveBreakpoint]="960"></div>
5220
+ * <div kendoSchedulerToolbarViewSelector [displayMode]="'compact'"></div>
5023
5221
  * </ng-template>
5024
5222
  * </kendo-scheduler>
5025
5223
  * ```
@@ -5028,19 +5226,35 @@ declare class ToolbarViewSelectorComponent implements OnDestroy {
5028
5226
  private service;
5029
5227
  private localization;
5030
5228
  /**
5031
- * 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'
5032
5232
  */
5033
- toolbarWidth: number;
5233
+ displayMode: 'default' | 'compact';
5034
5234
  /**
5035
- * 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.
5036
5238
  *
5037
- * @default 1024
5239
+ * @default null
5038
5240
  */
5039
- responsiveBreakpoint: number;
5241
+ focusIndex: number | null;
5242
+ /**
5243
+ * @hidden
5244
+ */
5245
+ responsiveLevel: number | null;
5040
5246
  /**
5041
5247
  * @hidden
5042
5248
  */
5043
5249
  get ctx(): ToolbarContext;
5250
+ /**
5251
+ * @hidden
5252
+ */
5253
+ get ctxViews(): any[];
5254
+ /**
5255
+ * @hidden
5256
+ */
5257
+ get showDropdown(): boolean;
5044
5258
  /**
5045
5259
  * @hidden
5046
5260
  */
@@ -5076,7 +5290,7 @@ declare class ToolbarViewSelectorComponent implements OnDestroy {
5076
5290
  isSelected(view: SchedulerView): boolean;
5077
5291
  private areSameViews;
5078
5292
  static ɵfac: i0.ɵɵFactoryDeclaration<ToolbarViewSelectorComponent, never>;
5079
- 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>;
5080
5294
  }
5081
5295
 
5082
5296
  /**
@@ -5099,7 +5313,7 @@ declare class ToolbarViewSelectorComponent implements OnDestroy {
5099
5313
  */
5100
5314
  declare class SchedulerModule {
5101
5315
  static ɵfac: i0.ɵɵFactoryDeclaration<SchedulerModule, never>;
5102
- 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]>;
5103
5317
  static ɵinj: i0.ɵɵInjectorDeclaration<SchedulerModule>;
5104
5318
  }
5105
5319
 
@@ -5184,6 +5398,7 @@ declare class EditDialogComponent implements OnDestroy {
5184
5398
  private element;
5185
5399
  private focusService;
5186
5400
  private intl;
5401
+ private injector;
5187
5402
  multipleResourceEditors: QueryList<MultipleResourceEditorComponent>;
5188
5403
  singleResourceEditors: QueryList<SingleResourceEditorComponent>;
5189
5404
  resources: Array<Resource>;
@@ -5191,6 +5406,8 @@ declare class EditDialogComponent implements OnDestroy {
5191
5406
  weekStart: Day;
5192
5407
  fields: any;
5193
5408
  editTemplate: EditDialogTemplateDirective;
5409
+ recurrenceButtonTextTemplate: RecurrenceButtonTextTemplateDirective;
5410
+ recurrenceEditorHintTemplate: RecurrenceSummaryTemplateDirective;
5194
5411
  get autoFocusedElement(): string;
5195
5412
  dialogTitle: string;
5196
5413
  isActive: boolean;
@@ -5198,22 +5415,56 @@ declare class EditDialogComponent implements OnDestroy {
5198
5415
  get isEditingSeries(): boolean;
5199
5416
  get eventTimezone(): string;
5200
5417
  get endTimezone(): string;
5418
+ get currentRule(): string;
5419
+ get currentParsedRule(): RecurrenceRule;
5420
+ startDateControl: FormControl;
5421
+ startTimeControl: FormControl;
5422
+ endDateControl: FormControl;
5423
+ endTimeControl: FormControl;
5201
5424
  recurrenceStart: Date;
5202
5425
  setTimeZone: boolean;
5203
5426
  setSeparateStartEndTimeZones: boolean;
5204
5427
  formGroup: FormGroup;
5205
5428
  editedEvent: any;
5206
5429
  isNew: boolean;
5207
- saveIcon: SVGIcon;
5208
- 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;
5209
5442
  private subs;
5210
5443
  private pendingNewEventData;
5211
- 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);
5212
5446
  onChange(): void;
5213
5447
  ngOnDestroy(): void;
5214
5448
  onCancel(e: any): void;
5215
5449
  onSave(e: any): void;
5216
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;
5217
5468
  get hasAllDay(): boolean;
5218
5469
  get hasStartTimeZone(): boolean;
5219
5470
  get isStartTimeZoneVisible(): boolean;
@@ -5221,11 +5472,17 @@ declare class EditDialogComponent implements OnDestroy {
5221
5472
  get isEndTimeZoneVisible(): boolean;
5222
5473
  getFormValue(field?: string): any;
5223
5474
  textFor(key: string): string;
5224
- onResourceClick(resource: Resource): void;
5225
5475
  getControl(name: string): FormControl;
5226
5476
  private reset;
5477
+ private syncRecurrenceService;
5227
5478
  private addTimeZoneCheckboxesToFormGroup;
5228
5479
  private removeTimeZoneCheckboxesFromFormGroup;
5480
+ private syncDateTimeControls;
5481
+ private setDisabledState;
5482
+ private setDateTime;
5483
+ private setTime;
5484
+ private invalidateSiblingControl;
5485
+ private syncSubControls;
5229
5486
  private subscribeToFormGroupChanges;
5230
5487
  /**
5231
5488
  * Converts the event dates to "display dates" that look like the original date in its time zone.
@@ -5240,54 +5497,7 @@ declare class EditDialogComponent implements OnDestroy {
5240
5497
  private readDateAsLocal;
5241
5498
  private focusNewEvent;
5242
5499
  static ɵfac: i0.ɵɵFactoryDeclaration<EditDialogComponent, never>;
5243
- 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>;
5244
- }
5245
-
5246
- /**
5247
- * @hidden
5248
- */
5249
- declare class SchedulerLocalizationService extends LocalizationService {
5250
- constructor(prefix: string, messageService: MessageService, _rtl: boolean);
5251
- static ɵfac: i0.ɵɵFactoryDeclaration<SchedulerLocalizationService, [null, { optional: true; }, { optional: true; }]>;
5252
- static ɵprov: i0.ɵɵInjectableDeclaration<SchedulerLocalizationService>;
5253
- }
5254
-
5255
- /**
5256
- * @hidden
5257
- */
5258
- declare class SchedulerDateTimePickerComponent implements ControlValueAccessor {
5259
- private injector;
5260
- private localization?;
5261
- datePicker: DatePickerComponent;
5262
- dateTimePicker: DateTimePickerComponent;
5263
- isAllDay: boolean;
5264
- valueChange: EventEmitter<Date>;
5265
- constructor(injector: Injector, localization?: SchedulerLocalizationService);
5266
- /**
5267
- * @hidden
5268
- */
5269
- get focusableId(): string;
5270
- get formControl(): FormControl;
5271
- textFor(key: string): string;
5272
- date: Date;
5273
- writeValue(newDate: any): void;
5274
- onValueChange(newValue: Date): void;
5275
- /**
5276
- * @hidden
5277
- */
5278
- focus(): void;
5279
- onTouchedCallback: Function;
5280
- onChangeCallback: Function;
5281
- /**
5282
- * @hidden
5283
- */
5284
- registerOnChange(fn: any): void;
5285
- /**
5286
- * @hidden
5287
- */
5288
- registerOnTouched(fn: any): void;
5289
- static ɵfac: i0.ɵɵFactoryDeclaration<SchedulerDateTimePickerComponent, never>;
5290
- 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>;
5291
5501
  }
5292
5502
 
5293
5503
  /**
@@ -5296,43 +5506,16 @@ declare class SchedulerDateTimePickerComponent implements ControlValueAccessor {
5296
5506
  declare class RecurrenceFrequencyEditorComponent implements OnInit {
5297
5507
  private recurrence;
5298
5508
  private localization;
5299
- weekDayButtons: QueryList<Button>;
5300
5509
  frequencies: Array<FrequencyEntity>;
5301
5510
  constructor(recurrence: RecurrenceService, localization: LocalizationService);
5302
5511
  ngOnInit(): void;
5303
5512
  get selected(): string;
5304
- onClick(newFreq: FrequencyEntity): void;
5513
+ onFrequencyChange(newFreq: Frequency): void;
5305
5514
  textFor(key: string): string;
5306
- onFrequencyClick(): void;
5307
5515
  static ɵfac: i0.ɵɵFactoryDeclaration<RecurrenceFrequencyEditorComponent, never>;
5308
5516
  static ɵcmp: i0.ɵɵComponentDeclaration<RecurrenceFrequencyEditorComponent, "kendo-recurrence-frequency-editor", never, {}, {}, never, never, true, never>;
5309
5517
  }
5310
5518
 
5311
- /**
5312
- * @hidden
5313
- */
5314
- declare class EndRuleRadioButtonDirective implements OnInit, AfterContentChecked, OnDestroy {
5315
- private el;
5316
- private renderer;
5317
- private recurrence;
5318
- private changeDetector;
5319
- type: string;
5320
- radioClass: boolean;
5321
- radioSizeClass: boolean;
5322
- endRuleId: string;
5323
- private destroyClick;
5324
- private endRule;
5325
- constructor(el: ElementRef, renderer: Renderer2, recurrence: RecurrenceService, changeDetector: ChangeDetectorRef);
5326
- ngOnInit(): void;
5327
- ngAfterContentChecked(): void;
5328
- ngOnDestroy(): void;
5329
- onClick(): void;
5330
- private setCheckedState;
5331
- get elem(): any;
5332
- static ɵfac: i0.ɵɵFactoryDeclaration<EndRuleRadioButtonDirective, never>;
5333
- static ɵdir: i0.ɵɵDirectiveDeclaration<EndRuleRadioButtonDirective, "[kendoRecurrenceEndRuleRadioButton]", never, { "endRuleId": { "alias": "kendoRecurrenceEndRuleRadioButton"; "required": false; }; }, {}, never, never, true, never>;
5334
- }
5335
-
5336
5519
  /**
5337
5520
  * @hidden
5338
5521
  */
@@ -5342,25 +5525,23 @@ declare class RecurrenceEndRuleEditorComponent implements OnDestroy {
5342
5525
  cssClass: boolean;
5343
5526
  set userNumericOptions(options: NumericTextBoxOptions);
5344
5527
  set userDatePickerOptions(options: DatePickerOptions);
5345
- endRuleRadioButtons: QueryList<EndRuleRadioButtonDirective>;
5346
5528
  countValue: number;
5347
5529
  untilValue: Date;
5348
5530
  numericOptions: NumericTextBoxOptions;
5349
5531
  datePickerOptions: DatePickerOptions;
5350
- uniqueId: number;
5351
5532
  private subscriptions;
5352
5533
  constructor(recurrence: RecurrenceService, localization?: LocalizationService);
5353
5534
  ngOnDestroy(): void;
5354
5535
  setEndRule(endRule: EndRule): void;
5355
5536
  get rrule(): RecurrenceRule;
5356
- get isCountDisabled(): boolean;
5357
- get isUntilDisabled(): boolean;
5537
+ get endRules(): Array<EndRuleEntity>;
5538
+ get selectedEndRule(): EndRule;
5539
+ onEndRuleChange(newEndRule: EndRule): void;
5358
5540
  onCountChange(value: number): void;
5359
5541
  onCountBlur(): void;
5360
5542
  onUntilChange(value: Date): void;
5361
5543
  onUntilBlur(): void;
5362
5544
  textFor(key: string): string;
5363
- onEndLabelClick(): void;
5364
5545
  private setInitialValues;
5365
5546
  private subscribeChanges;
5366
5547
  private createUntil;
@@ -5374,7 +5555,6 @@ declare class RecurrenceEndRuleEditorComponent implements OnDestroy {
5374
5555
  declare class RecurrenceIntervalEditorComponent implements OnDestroy {
5375
5556
  private recurrence;
5376
5557
  private localization?;
5377
- cssClass: boolean;
5378
5558
  set userNumericOptions(options: NumericTextBoxOptions);
5379
5559
  intervalValue: number;
5380
5560
  numericOptions: NumericTextBoxOptions;
@@ -5385,7 +5565,6 @@ declare class RecurrenceIntervalEditorComponent implements OnDestroy {
5385
5565
  onIntervalChange(newInterval: number): void;
5386
5566
  onIntervalBlur(): void;
5387
5567
  textForRepeatEvery(): string;
5388
- textForFrequency(): string;
5389
5568
  textFor(key: string): string;
5390
5569
  static ɵfac: i0.ɵɵFactoryDeclaration<RecurrenceIntervalEditorComponent, never>;
5391
5570
  static ɵcmp: i0.ɵɵComponentDeclaration<RecurrenceIntervalEditorComponent, "kendo-recurrence-interval-editor", never, { "userNumericOptions": { "alias": "userNumericOptions"; "required": false; }; }, {}, never, never, true, never>;
@@ -5467,16 +5646,17 @@ declare class RecurrenceMonthlyYearlyEditorComponent implements OnDestroy {
5467
5646
  declare class RecurrenceWeekdayRuleEditorComponent {
5468
5647
  private recurrence;
5469
5648
  private localization;
5470
- weekDayButtons: QueryList<Button>;
5649
+ weekDayButtons: QueryList<ButtonComponent>;
5471
5650
  weekDays: Array<WeekDayEntity>;
5472
5651
  selected: Array<boolean>;
5473
5652
  constructor(recurrence: RecurrenceService, localization: LocalizationService);
5474
5653
  setSelectedDays(): void;
5475
5654
  onDayClick(day: WeekDayEntity): void;
5476
5655
  isSelected(day: WeekDayEntity): boolean;
5656
+ get firstSelectedDay(): WeekDayEntity;
5477
5657
  serializeToWeekDayRuleArray(arr: Array<boolean>): Array<WeekDayRule>;
5478
5658
  get rrule(): RecurrenceRule;
5479
- capitalize(day: string): string;
5659
+ abbreviate(day: string): string;
5480
5660
  textFor(key: string): string;
5481
5661
  onWeeklyRepeatOnClick(): void;
5482
5662
  static ɵfac: i0.ɵɵFactoryDeclaration<RecurrenceWeekdayRuleEditorComponent, never>;
@@ -5860,8 +6040,10 @@ declare class HintContainerComponent {
5860
6040
  * @hidden
5861
6041
  */
5862
6042
  declare class ViewFooterComponent {
6043
+ private localization;
5863
6044
  hostClasses: boolean;
5864
6045
  toolbarRole: string;
6046
+ get toolbarAriaLabel(): string;
5865
6047
  private sub;
5866
6048
  /**
5867
6049
  * @hidden
@@ -5870,7 +6052,7 @@ declare class ViewFooterComponent {
5870
6052
  inlineJustifyContentStyle: string;
5871
6053
  itemClick: EventEmitter<any>;
5872
6054
  items: any[];
5873
- constructor(viewState: ViewStateService);
6055
+ constructor(viewState: ViewStateService, localization: LocalizationService);
5874
6056
  ngOnDestroy(): void;
5875
6057
  onItemClick(e: any, item: any): void;
5876
6058
  static ɵfac: i0.ɵɵFactoryDeclaration<ViewFooterComponent, never>;
@@ -6337,7 +6519,10 @@ declare class BaseViewItem implements OnInit, OnChanges, OnDestroy, ViewItem {
6337
6519
  editable: any;
6338
6520
  dragHint: boolean;
6339
6521
  resources: any[];
6522
+ eventHeight: number | 'auto';
6340
6523
  className: boolean;
6524
+ get containerType(): string;
6525
+ get isReadonly(): boolean;
6341
6526
  get taskIndex(): string;
6342
6527
  get touchAction(): string;
6343
6528
  get eventTitle(): string;
@@ -6361,7 +6546,7 @@ declare class BaseViewItem implements OnInit, OnChanges, OnDestroy, ViewItem {
6361
6546
  get arrowIcons(): string[];
6362
6547
  get arrowSVGIcons(): SVGIcon[];
6363
6548
  static ɵfac: i0.ɵɵFactoryDeclaration<BaseViewItem, never>;
6364
- 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>;
6365
6550
  }
6366
6551
 
6367
6552
  /**
@@ -6375,7 +6560,6 @@ declare class DayTimeViewItemComponent extends BaseViewItem {
6375
6560
  chevronDownIcon: SVGIcon;
6376
6561
  arrowRotateCwIcon: SVGIcon;
6377
6562
  arrowsNoRepeatIcon: SVGIcon;
6378
- xIcon: SVGIcon;
6379
6563
  vertical: boolean;
6380
6564
  isAllDay: boolean;
6381
6565
  name: string;
@@ -6489,6 +6673,7 @@ declare class TimelineMultiDayViewComponent extends DayTimeViewComponent {
6489
6673
  timeColspan(index: number): any;
6490
6674
  horizontalColspan(resourceIndex: number): any;
6491
6675
  verticalRowspan(resourceIndex: number): any;
6676
+ isToday(slot: any): boolean;
6492
6677
  handleScroll(): void;
6493
6678
  protected syncTables(): void;
6494
6679
  protected createTasks(items: ViewItem$1[], dateRange: DateRange): any[];
@@ -6539,7 +6724,7 @@ declare class MonthViewItemComponent extends BaseViewItem {
6539
6724
  chevronRightIcon: SVGIcon;
6540
6725
  arrowRotateCwIcon: SVGIcon;
6541
6726
  arrowsNoRepeatIcon: SVGIcon;
6542
- xIcon: SVGIcon;
6727
+ get eventTime(): string;
6543
6728
  constructor(slotService: MonthSlotService, localization: LocalizationService, focusService: FocusService, element: ElementRef, renderer: Renderer2, intl: IntlService);
6544
6729
  reflow(): void;
6545
6730
  static ɵfac: i0.ɵɵFactoryDeclaration<MonthViewItemComponent, never>;
@@ -6594,6 +6779,7 @@ declare class MonthResourceGroup implements ResourceGroup {
6594
6779
  * @hidden
6595
6780
  */
6596
6781
  declare class MonthSlotService extends BaseSlotService {
6782
+ currentPopover: PopoverAnchorDirective;
6597
6783
  layout(eventHeight: number | 'auto', eventsPerDay: number | 'auto', adaptiveSlotHeight: boolean): void;
6598
6784
  slotByIndex(slotIndex: string): any;
6599
6785
  forEachSlot(callback: any): void;
@@ -6622,9 +6808,10 @@ declare class YearViewInternalComponent extends BaseView implements AfterViewIni
6622
6808
  */
6623
6809
  dateRangeFn: (date: Date) => DateRange;
6624
6810
  private calendar;
6625
- tooltip: TooltipDirective;
6811
+ private popoverContainer;
6626
6812
  get arrowIcons(): string[];
6627
6813
  get arrowSVGIcons(): SVGIcon[];
6814
+ selectedPopoverDate: Date;
6628
6815
  chevronLeftIcon: SVGIcon;
6629
6816
  chevronRightIcon: SVGIcon;
6630
6817
  eventsPerSelectedDay: any[];
@@ -6632,16 +6819,12 @@ declare class YearViewInternalComponent extends BaseView implements AfterViewIni
6632
6819
  focusedDate: Date;
6633
6820
  private currentTd;
6634
6821
  private tds;
6635
- private isTooltipClicked;
6636
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);
6637
6823
  ngAfterViewInit(): void;
6638
6824
  getSlotClass(date: any): string[];
6639
6825
  getEventClasses(item: any, resources: any, isAllDay?: boolean): any;
6640
- onBlur(): void;
6641
6826
  getDate(element: ElementRef): Date;
6642
6827
  eventTitle(event: any): string;
6643
- onClick(event: any): void;
6644
- onMouseDown(): void;
6645
6828
  onKeydown(event: any): void;
6646
6829
  navigateToDay(date: Date): void;
6647
6830
  private eventsPerDay;
@@ -6715,7 +6898,7 @@ declare const KENDO_SCHEDULERPDF: readonly [typeof PDFComponent, typeof PDFComma
6715
6898
  * export class AppComponent {}
6716
6899
  * ```
6717
6900
  */
6718
- 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];
6719
6902
 
6720
- 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 };
6721
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 };