@progress/kendo-angular-scheduler 25.0.0-develop.21 → 25.0.0-develop.23

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 hint text of the Recurrence Editor.
2266
+ * To define the template, nest an `<ng-template>` tag with the `kendoSchedulerRecurrenceEditorHintTemplate` 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 hint text that would have been displayed.
2273
+ *
2274
+ * @example
2275
+ * ```html
2276
+ * <kendo-scheduler>
2277
+ * <ng-template kendoSchedulerRecurrenceEditorHintTemplate let-recurrenceRule let-parsedRule="parsedRule" let-text="text">
2278
+ * <span>{{ text }}</span>
2279
+ * </ng-template>
2280
+ * </kendo-scheduler>
2281
+ * ```
2282
+ */
2283
+ declare class RecurrenceHintTemplateDirective {
2284
+ templateRef: TemplateRef<any>;
2285
+ constructor(templateRef: TemplateRef<any>);
2286
+ static ɵfac: i0.ɵɵFactoryDeclaration<RecurrenceHintTemplateDirective, [{ optional: true; }]>;
2287
+ static ɵdir: i0.ɵɵDirectiveDeclaration<RecurrenceHintTemplateDirective, "[kendoSchedulerRecurrenceEditorHintTemplate]", 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
+ recurrenceHintTemplate: RecurrenceHintTemplateDirective;
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", "recurrenceHintTemplate", "toolbarTemplate", "views", "allDayEventTemplate", "eventTemplate", "timeSlotTemplate", "minorTimeHeaderTemplate", "majorTimeHeaderTemplate", "monthDaySlotTemplate", "multiWeekDaySlotTemplate", "dateHeaderTemplate", "allDaySlotTemplate", "groupHeaderTemplate", "agendaDateTemplate", "agendaTimeTemplate"], never, true, never>;
2774
2863
  }
2775
2864
 
2776
2865
  /**
@@ -2785,6 +2874,11 @@ declare class Messages$1 extends ComponentMessages {
2785
2874
  * Sets the text for **All day** in **Day** and **Week** views.
2786
2875
  */
2787
2876
  allDay: string;
2877
+ /**
2878
+ * Sets the text for the **more events** button in the Month view.
2879
+ * The `{count}` placeholder is replaced with the number of additional events.
2880
+ */
2881
+ moreEvents: string;
2788
2882
  /**
2789
2883
  * Sets the date-header text in the **Agenda** view.
2790
2884
  */
@@ -2897,6 +2991,10 @@ declare class Messages$1 extends ComponentMessages {
2897
2991
  * Sets the label for the **Start** field in the event editor.
2898
2992
  */
2899
2993
  editorEventStart: string;
2994
+ /**
2995
+ * Sets the label for the **Start Time** field in the event editor.
2996
+ */
2997
+ editorEventStartTime: string;
2900
2998
  /**
2901
2999
  * Sets the label for the **Start Time Zone** field in the event editor.
2902
3000
  */
@@ -2905,6 +3003,10 @@ declare class Messages$1 extends ComponentMessages {
2905
3003
  * Sets the label for the **End** field in the event editor.
2906
3004
  */
2907
3005
  editorEventEnd: string;
3006
+ /**
3007
+ * Sets the label for the **End Time** field in the event editor.
3008
+ */
3009
+ editorEventEndTime: string;
2908
3010
  /**
2909
3011
  * Sets the label for the **End Time Zone** field in the event editor.
2910
3012
  */
@@ -2917,66 +3019,98 @@ declare class Messages$1 extends ComponentMessages {
2917
3019
  * Sets the label for the **Description** field in the event editor.
2918
3020
  */
2919
3021
  editorEventDescription: string;
2920
- /**
2921
- * Sets the label for the **Use separate Start and End Time Zones** option in the event editor.
2922
- */
2923
- editorEventSeparateTimeZones: string;
2924
3022
  /**
2925
3023
  * Sets the label for the **Time Zone** field in the event editor.
2926
3024
  */
2927
3025
  editorEventTimeZone: string;
2928
3026
  /**
2929
- * Sets the **Today** button text in the popup of the DateTimePickers and DatePickers in the event editor.
3027
+ * Sets the text for the **Reset Time Zone** button in the event editor.
3028
+ */
3029
+ editorEventTimeZoneReset: string;
3030
+ /**
3031
+ * Sets the placeholder for the **Description** field in the event editor.
3032
+ */
3033
+ editorEventDescriptionPlaceholder: string;
3034
+ /**
3035
+ * Sets the text for the separator between the **Start** and **End** fields in the event editor.
3036
+ */
3037
+ editorEventDateRangeSeparator: string;
3038
+ /**
3039
+ * Sets the text for the separator between the **Start date** and **Start time** fields in the event editor.
3040
+ */
3041
+ editorEventDateRangeStart: string;
3042
+ /**
3043
+ * Sets the text for the **Make recurring** button in the event editor.
3044
+ */
3045
+ editorRecurrenceMakeRecurring: string;
3046
+ /**
3047
+ * Sets the text for the **Edit recurrence** button in the event editor.
3048
+ */
3049
+ editorRecurrenceEdit: string;
3050
+ /**
3051
+ * Sets the title for the recurrence dialog opened from the event editor.
3052
+ */
3053
+ editorRecurrenceDialogTitle: string;
3054
+ /**
3055
+ * Sets the text for the **Remove recurrence** button in the recurrence dialog.
3056
+ */
3057
+ editorRecurrenceRemove: string;
3058
+ /**
3059
+ * Sets the title for the remove recurrence confirmation dialog.
3060
+ */
3061
+ editorRecurrenceRemoveConfirmationTitle: string;
3062
+ /**
3063
+ * Sets the confirmation message for removing a recurrence.
3064
+ */
3065
+ editorRecurrenceRemoveConfirmation: string;
3066
+ /**
3067
+ * Sets the text for the **No** button in the remove recurrence confirmation dialog.
3068
+ */
3069
+ editorRecurrenceRemoveConfirmationNo: string;
3070
+ /**
3071
+ * Sets the text for the **Yes** button in the remove recurrence confirmation dialog.
3072
+ */
3073
+ editorRecurrenceRemoveConfirmationYes: string;
3074
+ /**
3075
+ * Sets the **Today** button text in the popup of the DatePickers in the event editor.
2930
3076
  */
2931
3077
  editorDateInputsToday: string;
2932
3078
  /**
2933
- * Sets the title for the **Toggle** button in the popup of the DateTimePickers and DatePickers in the event editor.
3079
+ * Sets the title for the **Toggle** button in the popup of the DatePickers in the event editor.
2934
3080
  */
2935
- editorDateInputsToggle: string;
3081
+ editorDatePickersToggle: string;
2936
3082
  /**
2937
- * Sets the title for the **Parent View** button in the popup of the DateTimePickers and DatePickers in the event editor.
3083
+ * Sets the title for the **Parent View** button in the popup of the DatePickers in the event editor.
2938
3084
  */
2939
3085
  editorDateInputsParentViewButton: string;
2940
3086
  /**
2941
- * Sets the text for the **Now** button in the popup footer of the DateTimePickers and DatePickers in the event editor.
3087
+ * Sets the text for the **Now** button in the popup header of the TimePickers in the event editor.
2942
3088
  */
2943
3089
  editorDateInputsNow: string;
2944
3090
  /**
2945
- * Sets the label for the **Now** button in the popup footer of the DateTimePickers and DatePickers in the event editor.
3091
+ * Sets the label for the **Now** button in the popup header of the TimePickers in the event editor.
2946
3092
  */
2947
3093
  editorDateInputsNowLabel: string;
2948
3094
  /**
2949
- * Sets the text for the **Accept** button in the popup footer of the DateTimePickers and DatePickers in the event editor.
3095
+ * Sets the text for the **Set** button in the popup footer of the TimePickers in the event editor.
2950
3096
  */
2951
3097
  editorDateInputsAccept: string;
2952
3098
  /**
2953
- * Sets the label for the **Accept** button in the popup footer of the DateTimePickers and DatePickers in the event editor.
3099
+ * Sets the label for the **Set** button in the popup footer of the TimePickers in the event editor.
2954
3100
  */
2955
3101
  editorDateInputsAcceptLabel: string;
2956
3102
  /**
2957
- * Sets the text for the **Cancel** button in the popup footer of the DateTimePickers and DatePickers in the event editor.
3103
+ * Sets the text for the **Cancel** button in the popup footer of the TimePickers in the event editor.
2958
3104
  */
2959
3105
  editorDateInputsCancel: string;
2960
3106
  /**
2961
- * Sets the label for the **Cancel** button in the popup footer of the DateTimePickers and DatePickers in the event editor.
3107
+ * Sets the label for the **Cancel** button in the popup footer of the TimePickers in the event editor.
2962
3108
  */
2963
3109
  editorDateInputsCancelLabel: string;
2964
3110
  /**
2965
- * Sets the text for the **Date** tab in the popup header of the DateTimePickers and DatePickers in the event editor.
2966
- */
2967
- editorDateInputsDateTab: string;
2968
- /**
2969
- * Sets the label for the **Date** tab in the popup header of the DateTimePickers and DatePickers in the event editor.
2970
- */
2971
- editorDateInputsDateTabLabel: string;
2972
- /**
2973
- * Sets the text for the **Time** tab in the popup header of the DateTimePickers and DatePickers in the event editor.
2974
- */
2975
- editorDateInputsTimeTab: string;
2976
- /**
2977
- * Sets the label for the **Time** tab in the popup header of the DateTimePickers and DatePickers in the event editor.
3111
+ * Sets the title for the **Toggle** button of the TimePickers in the event editor.
2978
3112
  */
2979
- editorDateInputsTimeTabLabel: string;
3113
+ editorTimePickersToggle: string;
2980
3114
  /**
2981
3115
  * Sets the **Today** button text in the popup of the DatePickers in the recurrence editor.
2982
3116
  */
@@ -3129,6 +3263,10 @@ declare class Messages$1 extends ComponentMessages {
3129
3263
  * Sets the label for the **Event** title in the event editor dialog.
3130
3264
  */
3131
3265
  editorTitle: string;
3266
+ /**
3267
+ * Sets the label for the **New event** title in the event editor dialog.
3268
+ */
3269
+ editorTitleNew: string;
3132
3270
  /**
3133
3271
  * Sets the text for the **Delete** button in the remove confirmation dialog.
3134
3272
  */
@@ -3177,8 +3315,16 @@ declare class Messages$1 extends ComponentMessages {
3177
3315
  * Sets the value of the aria-label attribute for the `select` element used to switch Scheduler views.
3178
3316
  */
3179
3317
  selectView: string;
3318
+ /**
3319
+ * Sets the text for the **New Event** button in the toolbar of the Scheduler.
3320
+ */
3321
+ newEvent: string;
3322
+ /**
3323
+ * Sets the text of the aria-label attribute for the **New Event** button in the toolbar of the Scheduler.
3324
+ */
3325
+ newEventLabel: string;
3180
3326
  static ɵfac: i0.ɵɵFactoryDeclaration<Messages$1, never>;
3181
- static ɵdir: i0.ɵɵDirectiveDeclaration<Messages$1, never, never, { "allEvents": { "alias": "allEvents"; "required": false; }; "allDay": { "alias": "allDay"; "required": false; }; "dateHeader": { "alias": "dateHeader"; "required": false; }; "timeHeader": { "alias": "timeHeader"; "required": false; }; "eventHeader": { "alias": "eventHeader"; "required": false; }; "resourceColumnHeaderLabel": { "alias": "resourceColumnHeaderLabel"; "required": false; }; "deleteTitle": { "alias": "deleteTitle"; "required": false; }; "nextTitle": { "alias": "nextTitle"; "required": false; }; "previousTitle": { "alias": "previousTitle"; "required": false; }; "toolbar": { "alias": "toolbar"; "required": false; }; "today": { "alias": "today"; "required": false; }; "calendarToday": { "alias": "calendarToday"; "required": false; }; "showFullDay": { "alias": "showFullDay"; "required": false; }; "showWorkDay": { "alias": "showWorkDay"; "required": false; }; "dayViewTitle": { "alias": "dayViewTitle"; "required": false; }; "multiDayViewTitle": { "alias": "multiDayViewTitle"; "required": false; }; "weekViewTitle": { "alias": "weekViewTitle"; "required": false; }; "workWeekViewTitle": { "alias": "workWeekViewTitle"; "required": false; }; "monthViewTitle": { "alias": "monthViewTitle"; "required": false; }; "multiWeekViewTitle": { "alias": "multiWeekViewTitle"; "required": false; }; "timelineViewTitle": { "alias": "timelineViewTitle"; "required": false; }; "timelineWeekViewTitle": { "alias": "timelineWeekViewTitle"; "required": false; }; "timelineMonthViewTitle": { "alias": "timelineMonthViewTitle"; "required": false; }; "agendaViewTitle": { "alias": "agendaViewTitle"; "required": false; }; "yearViewTitle": { "alias": "yearViewTitle"; "required": false; }; "yearViewNoEvents": { "alias": "yearViewNoEvents"; "required": false; }; "cancel": { "alias": "cancel"; "required": false; }; "save": { "alias": "save"; "required": false; }; "editorEventTitle": { "alias": "editorEventTitle"; "required": false; }; "editorEventStart": { "alias": "editorEventStart"; "required": false; }; "editorEventStartTimeZone": { "alias": "editorEventStartTimeZone"; "required": false; }; "editorEventEnd": { "alias": "editorEventEnd"; "required": false; }; "editorEventEndTimeZone": { "alias": "editorEventEndTimeZone"; "required": false; }; "editorEventAllDay": { "alias": "editorEventAllDay"; "required": false; }; "editorEventDescription": { "alias": "editorEventDescription"; "required": false; }; "editorEventSeparateTimeZones": { "alias": "editorEventSeparateTimeZones"; "required": false; }; "editorEventTimeZone": { "alias": "editorEventTimeZone"; "required": false; }; "editorDateInputsToday": { "alias": "editorDateInputsToday"; "required": false; }; "editorDateInputsToggle": { "alias": "editorDateInputsToggle"; "required": false; }; "editorDateInputsParentViewButton": { "alias": "editorDateInputsParentViewButton"; "required": false; }; "editorDateInputsNow": { "alias": "editorDateInputsNow"; "required": false; }; "editorDateInputsNowLabel": { "alias": "editorDateInputsNowLabel"; "required": false; }; "editorDateInputsAccept": { "alias": "editorDateInputsAccept"; "required": false; }; "editorDateInputsAcceptLabel": { "alias": "editorDateInputsAcceptLabel"; "required": false; }; "editorDateInputsCancel": { "alias": "editorDateInputsCancel"; "required": false; }; "editorDateInputsCancelLabel": { "alias": "editorDateInputsCancelLabel"; "required": false; }; "editorDateInputsDateTab": { "alias": "editorDateInputsDateTab"; "required": false; }; "editorDateInputsDateTabLabel": { "alias": "editorDateInputsDateTabLabel"; "required": false; }; "editorDateInputsTimeTab": { "alias": "editorDateInputsTimeTab"; "required": false; }; "editorDateInputsTimeTabLabel": { "alias": "editorDateInputsTimeTabLabel"; "required": false; }; "recurrenceEditorDateInputsToday": { "alias": "recurrenceEditorDateInputsToday"; "required": false; }; "recurrenceEditorDateInputsToggle": { "alias": "recurrenceEditorDateInputsToggle"; "required": false; }; "recurrenceEditorDateInputsParentViewButton": { "alias": "recurrenceEditorDateInputsParentViewButton"; "required": false; }; "recurrenceEditorNumericIncrement": { "alias": "recurrenceEditorNumericIncrement"; "required": false; }; "recurrenceEditorNumericDecrement": { "alias": "recurrenceEditorNumericDecrement"; "required": false; }; "recurrenceEditorRepeat": { "alias": "recurrenceEditorRepeat"; "required": false; }; "recurrenceEditorDailyInterval": { "alias": "recurrenceEditorDailyInterval"; "required": false; }; "recurrenceEditorDailyRepeatEvery": { "alias": "recurrenceEditorDailyRepeatEvery"; "required": false; }; "recurrenceEditorWeeklyInterval": { "alias": "recurrenceEditorWeeklyInterval"; "required": false; }; "recurrenceEditorWeeklyRepeatEvery": { "alias": "recurrenceEditorWeeklyRepeatEvery"; "required": false; }; "recurrenceEditorWeeklyRepeatOn": { "alias": "recurrenceEditorWeeklyRepeatOn"; "required": false; }; "recurrenceEditorMonthlyDay": { "alias": "recurrenceEditorMonthlyDay"; "required": false; }; "recurrenceEditorMonthlyInterval": { "alias": "recurrenceEditorMonthlyInterval"; "required": false; }; "recurrenceEditorMonthlyRepeatEvery": { "alias": "recurrenceEditorMonthlyRepeatEvery"; "required": false; }; "recurrenceEditorMonthlyRepeatOn": { "alias": "recurrenceEditorMonthlyRepeatOn"; "required": false; }; "recurrenceEditorYearlyOf": { "alias": "recurrenceEditorYearlyOf"; "required": false; }; "recurrenceEditorYearlyRepeatEvery": { "alias": "recurrenceEditorYearlyRepeatEvery"; "required": false; }; "recurrenceEditorYearlyRepeatOn": { "alias": "recurrenceEditorYearlyRepeatOn"; "required": false; }; "recurrenceEditorYearlyInterval": { "alias": "recurrenceEditorYearlyInterval"; "required": false; }; "recurrenceEditorFrequenciesDaily": { "alias": "recurrenceEditorFrequenciesDaily"; "required": false; }; "recurrenceEditorFrequenciesMonthly": { "alias": "recurrenceEditorFrequenciesMonthly"; "required": false; }; "recurrenceEditorFrequenciesNever": { "alias": "recurrenceEditorFrequenciesNever"; "required": false; }; "recurrenceEditorFrequenciesWeekly": { "alias": "recurrenceEditorFrequenciesWeekly"; "required": false; }; "recurrenceEditorFrequenciesYearly": { "alias": "recurrenceEditorFrequenciesYearly"; "required": false; }; "recurrenceEditorOffsetPositionsFirst": { "alias": "recurrenceEditorOffsetPositionsFirst"; "required": false; }; "recurrenceEditorOffsetPositionsSecond": { "alias": "recurrenceEditorOffsetPositionsSecond"; "required": false; }; "recurrenceEditorOffsetPositionsThird": { "alias": "recurrenceEditorOffsetPositionsThird"; "required": false; }; "recurrenceEditorOffsetPositionsFourth": { "alias": "recurrenceEditorOffsetPositionsFourth"; "required": false; }; "recurrenceEditorOffsetPositionsLast": { "alias": "recurrenceEditorOffsetPositionsLast"; "required": false; }; "recurrenceEditorWeekdaysDay": { "alias": "recurrenceEditorWeekdaysDay"; "required": false; }; "recurrenceEditorWeekdaysWeekday": { "alias": "recurrenceEditorWeekdaysWeekday"; "required": false; }; "recurrenceEditorWeekdaysWeekendday": { "alias": "recurrenceEditorWeekdaysWeekendday"; "required": false; }; "recurrenceEditorEndAfter": { "alias": "recurrenceEditorEndAfter"; "required": false; }; "recurrenceEditorEndOccurrence": { "alias": "recurrenceEditorEndOccurrence"; "required": false; }; "recurrenceEditorEndLabel": { "alias": "recurrenceEditorEndLabel"; "required": false; }; "recurrenceEditorEndNever": { "alias": "recurrenceEditorEndNever"; "required": false; }; "recurrenceEditorEndOn": { "alias": "recurrenceEditorEndOn"; "required": false; }; "editorTitle": { "alias": "editorTitle"; "required": false; }; "destroy": { "alias": "destroy"; "required": false; }; "deleteConfirmation": { "alias": "deleteConfirmation"; "required": false; }; "editRecurringConfirmation": { "alias": "editRecurringConfirmation"; "required": false; }; "editOccurrence": { "alias": "editOccurrence"; "required": false; }; "editSeries": { "alias": "editSeries"; "required": false; }; "deleteRecurringConfirmation": { "alias": "deleteRecurringConfirmation"; "required": false; }; "deleteOccurrence": { "alias": "deleteOccurrence"; "required": false; }; "deleteSeries": { "alias": "deleteSeries"; "required": false; }; "deleteDialogTitle": { "alias": "deleteDialogTitle"; "required": false; }; "deleteRecurringDialogTitle": { "alias": "deleteRecurringDialogTitle"; "required": false; }; "editRecurringDialogTitle": { "alias": "editRecurringDialogTitle"; "required": false; }; "selectView": { "alias": "selectView"; "required": false; }; }, {}, never, never, true, never>;
3327
+ static ɵdir: i0.ɵɵDirectiveDeclaration<Messages$1, never, never, { "allEvents": { "alias": "allEvents"; "required": false; }; "allDay": { "alias": "allDay"; "required": false; }; "moreEvents": { "alias": "moreEvents"; "required": false; }; "dateHeader": { "alias": "dateHeader"; "required": false; }; "timeHeader": { "alias": "timeHeader"; "required": false; }; "eventHeader": { "alias": "eventHeader"; "required": false; }; "resourceColumnHeaderLabel": { "alias": "resourceColumnHeaderLabel"; "required": false; }; "deleteTitle": { "alias": "deleteTitle"; "required": false; }; "nextTitle": { "alias": "nextTitle"; "required": false; }; "previousTitle": { "alias": "previousTitle"; "required": false; }; "toolbar": { "alias": "toolbar"; "required": false; }; "today": { "alias": "today"; "required": false; }; "calendarToday": { "alias": "calendarToday"; "required": false; }; "showFullDay": { "alias": "showFullDay"; "required": false; }; "showWorkDay": { "alias": "showWorkDay"; "required": false; }; "dayViewTitle": { "alias": "dayViewTitle"; "required": false; }; "multiDayViewTitle": { "alias": "multiDayViewTitle"; "required": false; }; "weekViewTitle": { "alias": "weekViewTitle"; "required": false; }; "workWeekViewTitle": { "alias": "workWeekViewTitle"; "required": false; }; "monthViewTitle": { "alias": "monthViewTitle"; "required": false; }; "multiWeekViewTitle": { "alias": "multiWeekViewTitle"; "required": false; }; "timelineViewTitle": { "alias": "timelineViewTitle"; "required": false; }; "timelineWeekViewTitle": { "alias": "timelineWeekViewTitle"; "required": false; }; "timelineMonthViewTitle": { "alias": "timelineMonthViewTitle"; "required": false; }; "agendaViewTitle": { "alias": "agendaViewTitle"; "required": false; }; "yearViewTitle": { "alias": "yearViewTitle"; "required": false; }; "yearViewNoEvents": { "alias": "yearViewNoEvents"; "required": false; }; "cancel": { "alias": "cancel"; "required": false; }; "save": { "alias": "save"; "required": false; }; "editorEventTitle": { "alias": "editorEventTitle"; "required": false; }; "editorEventStart": { "alias": "editorEventStart"; "required": false; }; "editorEventStartTime": { "alias": "editorEventStartTime"; "required": false; }; "editorEventStartTimeZone": { "alias": "editorEventStartTimeZone"; "required": false; }; "editorEventEnd": { "alias": "editorEventEnd"; "required": false; }; "editorEventEndTime": { "alias": "editorEventEndTime"; "required": false; }; "editorEventEndTimeZone": { "alias": "editorEventEndTimeZone"; "required": false; }; "editorEventAllDay": { "alias": "editorEventAllDay"; "required": false; }; "editorEventDescription": { "alias": "editorEventDescription"; "required": false; }; "editorEventTimeZone": { "alias": "editorEventTimeZone"; "required": false; }; "editorEventTimeZoneReset": { "alias": "editorEventTimeZoneReset"; "required": false; }; "editorEventDescriptionPlaceholder": { "alias": "editorEventDescriptionPlaceholder"; "required": false; }; "editorEventDateRangeSeparator": { "alias": "editorEventDateRangeSeparator"; "required": false; }; "editorEventDateRangeStart": { "alias": "editorEventDateRangeStart"; "required": false; }; "editorRecurrenceMakeRecurring": { "alias": "editorRecurrenceMakeRecurring"; "required": false; }; "editorRecurrenceEdit": { "alias": "editorRecurrenceEdit"; "required": false; }; "editorRecurrenceDialogTitle": { "alias": "editorRecurrenceDialogTitle"; "required": false; }; "editorRecurrenceRemove": { "alias": "editorRecurrenceRemove"; "required": false; }; "editorRecurrenceRemoveConfirmationTitle": { "alias": "editorRecurrenceRemoveConfirmationTitle"; "required": false; }; "editorRecurrenceRemoveConfirmation": { "alias": "editorRecurrenceRemoveConfirmation"; "required": false; }; "editorRecurrenceRemoveConfirmationNo": { "alias": "editorRecurrenceRemoveConfirmationNo"; "required": false; }; "editorRecurrenceRemoveConfirmationYes": { "alias": "editorRecurrenceRemoveConfirmationYes"; "required": false; }; "editorDateInputsToday": { "alias": "editorDateInputsToday"; "required": false; }; "editorDatePickersToggle": { "alias": "editorDatePickersToggle"; "required": false; }; "editorDateInputsParentViewButton": { "alias": "editorDateInputsParentViewButton"; "required": false; }; "editorDateInputsNow": { "alias": "editorDateInputsNow"; "required": false; }; "editorDateInputsNowLabel": { "alias": "editorDateInputsNowLabel"; "required": false; }; "editorDateInputsAccept": { "alias": "editorDateInputsAccept"; "required": false; }; "editorDateInputsAcceptLabel": { "alias": "editorDateInputsAcceptLabel"; "required": false; }; "editorDateInputsCancel": { "alias": "editorDateInputsCancel"; "required": false; }; "editorDateInputsCancelLabel": { "alias": "editorDateInputsCancelLabel"; "required": false; }; "editorTimePickersToggle": { "alias": "editorTimePickersToggle"; "required": false; }; "recurrenceEditorDateInputsToday": { "alias": "recurrenceEditorDateInputsToday"; "required": false; }; "recurrenceEditorDateInputsToggle": { "alias": "recurrenceEditorDateInputsToggle"; "required": false; }; "recurrenceEditorDateInputsParentViewButton": { "alias": "recurrenceEditorDateInputsParentViewButton"; "required": false; }; "recurrenceEditorNumericIncrement": { "alias": "recurrenceEditorNumericIncrement"; "required": false; }; "recurrenceEditorNumericDecrement": { "alias": "recurrenceEditorNumericDecrement"; "required": false; }; "recurrenceEditorRepeat": { "alias": "recurrenceEditorRepeat"; "required": false; }; "recurrenceEditorDailyInterval": { "alias": "recurrenceEditorDailyInterval"; "required": false; }; "recurrenceEditorDailyRepeatEvery": { "alias": "recurrenceEditorDailyRepeatEvery"; "required": false; }; "recurrenceEditorWeeklyInterval": { "alias": "recurrenceEditorWeeklyInterval"; "required": false; }; "recurrenceEditorWeeklyRepeatEvery": { "alias": "recurrenceEditorWeeklyRepeatEvery"; "required": false; }; "recurrenceEditorWeeklyRepeatOn": { "alias": "recurrenceEditorWeeklyRepeatOn"; "required": false; }; "recurrenceEditorMonthlyDay": { "alias": "recurrenceEditorMonthlyDay"; "required": false; }; "recurrenceEditorMonthlyInterval": { "alias": "recurrenceEditorMonthlyInterval"; "required": false; }; "recurrenceEditorMonthlyRepeatEvery": { "alias": "recurrenceEditorMonthlyRepeatEvery"; "required": false; }; "recurrenceEditorMonthlyRepeatOn": { "alias": "recurrenceEditorMonthlyRepeatOn"; "required": false; }; "recurrenceEditorYearlyOf": { "alias": "recurrenceEditorYearlyOf"; "required": false; }; "recurrenceEditorYearlyRepeatEvery": { "alias": "recurrenceEditorYearlyRepeatEvery"; "required": false; }; "recurrenceEditorYearlyRepeatOn": { "alias": "recurrenceEditorYearlyRepeatOn"; "required": false; }; "recurrenceEditorYearlyInterval": { "alias": "recurrenceEditorYearlyInterval"; "required": false; }; "recurrenceEditorFrequenciesDaily": { "alias": "recurrenceEditorFrequenciesDaily"; "required": false; }; "recurrenceEditorFrequenciesMonthly": { "alias": "recurrenceEditorFrequenciesMonthly"; "required": false; }; "recurrenceEditorFrequenciesNever": { "alias": "recurrenceEditorFrequenciesNever"; "required": false; }; "recurrenceEditorFrequenciesWeekly": { "alias": "recurrenceEditorFrequenciesWeekly"; "required": false; }; "recurrenceEditorFrequenciesYearly": { "alias": "recurrenceEditorFrequenciesYearly"; "required": false; }; "recurrenceEditorOffsetPositionsFirst": { "alias": "recurrenceEditorOffsetPositionsFirst"; "required": false; }; "recurrenceEditorOffsetPositionsSecond": { "alias": "recurrenceEditorOffsetPositionsSecond"; "required": false; }; "recurrenceEditorOffsetPositionsThird": { "alias": "recurrenceEditorOffsetPositionsThird"; "required": false; }; "recurrenceEditorOffsetPositionsFourth": { "alias": "recurrenceEditorOffsetPositionsFourth"; "required": false; }; "recurrenceEditorOffsetPositionsLast": { "alias": "recurrenceEditorOffsetPositionsLast"; "required": false; }; "recurrenceEditorWeekdaysDay": { "alias": "recurrenceEditorWeekdaysDay"; "required": false; }; "recurrenceEditorWeekdaysWeekday": { "alias": "recurrenceEditorWeekdaysWeekday"; "required": false; }; "recurrenceEditorWeekdaysWeekendday": { "alias": "recurrenceEditorWeekdaysWeekendday"; "required": false; }; "recurrenceEditorEndAfter": { "alias": "recurrenceEditorEndAfter"; "required": false; }; "recurrenceEditorEndOccurrence": { "alias": "recurrenceEditorEndOccurrence"; "required": false; }; "recurrenceEditorEndLabel": { "alias": "recurrenceEditorEndLabel"; "required": false; }; "recurrenceEditorEndNever": { "alias": "recurrenceEditorEndNever"; "required": false; }; "recurrenceEditorEndOn": { "alias": "recurrenceEditorEndOn"; "required": false; }; "editorTitle": { "alias": "editorTitle"; "required": false; }; "editorTitleNew": { "alias": "editorTitleNew"; "required": false; }; "destroy": { "alias": "destroy"; "required": false; }; "deleteConfirmation": { "alias": "deleteConfirmation"; "required": false; }; "editRecurringConfirmation": { "alias": "editRecurringConfirmation"; "required": false; }; "editOccurrence": { "alias": "editOccurrence"; "required": false; }; "editSeries": { "alias": "editSeries"; "required": false; }; "deleteRecurringConfirmation": { "alias": "deleteRecurringConfirmation"; "required": false; }; "deleteOccurrence": { "alias": "deleteOccurrence"; "required": false; }; "deleteSeries": { "alias": "deleteSeries"; "required": false; }; "deleteDialogTitle": { "alias": "deleteDialogTitle"; "required": false; }; "deleteRecurringDialogTitle": { "alias": "deleteRecurringDialogTitle"; "required": false; }; "editRecurringDialogTitle": { "alias": "editRecurringDialogTitle"; "required": false; }; "selectView": { "alias": "selectView"; "required": false; }; "newEvent": { "alias": "newEvent"; "required": false; }; "newEventLabel": { "alias": "newEventLabel"; "required": false; }; }, {}, never, never, true, never>;
3182
3328
  }
3183
3329
 
3184
3330
  /**
@@ -3627,16 +3773,16 @@ declare class AgendaViewComponent extends ConfigurationViewBase {
3627
3773
  get title(): string;
3628
3774
  /**
3629
3775
  * Sets the long-date format for the selected date in the Scheduler toolbar.
3630
- * Defaults to `'{0:D} - {1:D}'`, where `0` is the start and `1` is the end date.
3776
+ * Defaults to `'{0:M} - {1:M}'`, where `0` is the start and `1` is the end date.
3631
3777
  * For more information, see [Parsing and Formatting Dates and Numbers](https://www.telerik.com/kendo-angular-ui/components/globalization/internationalization/parsing-and-formatting#date-formatting).
3632
- * @default '{0:D} - {1:D}'
3778
+ * @default '{0:M} - {1:M}'
3633
3779
  */
3634
3780
  selectedDateFormat: string;
3635
3781
  /**
3636
3782
  * Sets the short-date format for the selected date in the Scheduler toolbar.
3637
- * Defaults to `'{0:d} - {1:d}'`, where `0` is the start and `1` is the end date.
3783
+ * Defaults to `'{0:m} - {1:m}'`, where `0` is the start and `1` is the end date.
3638
3784
  * For more information, see [Parsing and Formatting Dates and Numbers](https://www.telerik.com/kendo-angular-ui/components/globalization/internationalization/parsing-and-formatting#date-formatting).
3639
- * @default '{0:d} - {1:d}'
3785
+ * @default '{0:m} - {1:m}'
3640
3786
  */
3641
3787
  selectedShortDateFormat: string;
3642
3788
  /**
@@ -3851,14 +3997,14 @@ declare class DayViewComponent extends MultiDayViewBase {
3851
3997
  /**
3852
3998
  * Sets the long-date format for the selected date in the Scheduler toolbar.
3853
3999
  * For more information, see [Parsing and Formatting Dates and Numbers](https://www.telerik.com/kendo-angular-ui/components/globalization/internationalization/parsing-and-formatting#date-formatting).
3854
- * @default '{0:D}'
4000
+ * @default '{0:M}'
3855
4001
  */
3856
4002
  set selectedDateFormat(value: string);
3857
4003
  get selectedDateFormat(): string;
3858
4004
  /**
3859
4005
  * Sets the short-date format for the selected date in the Scheduler toolbar.
3860
4006
  * For more information, see [Parsing and Formatting Dates and Numbers](https://www.telerik.com/kendo-angular-ui/components/globalization/internationalization/parsing-and-formatting#date-formatting).
3861
- * @default '{0:d}'
4007
+ * @default '{0:m}'
3862
4008
  */
3863
4009
  set selectedShortDateFormat(value: string);
3864
4010
  get selectedShortDateFormat(): string;
@@ -4192,8 +4338,8 @@ declare class TimelineViewComponent extends TimelineBase {
4192
4338
  /**
4193
4339
  * Sets the long-date format for the selected date in the Scheduler toolbar.
4194
4340
  * For more information, see [Parsing and Formatting Dates and Numbers](https://www.telerik.com/kendo-angular-ui/components/globalization/internationalization/parsing-and-formatting#date-formatting).
4195
- * If `numberOfDays` is greater than 1, the default format displays a range: `'{0:D} - {1:D}'`, where `0` is the start and `1` is the end date.
4196
- * @default '{0:D}'
4341
+ * If `numberOfDays` is greater than 1, the default format displays a range: `'{0:M} - {1:M}'`, where `0` is the start and `1` is the end date.
4342
+ * @default '{0:M}'
4197
4343
  */
4198
4344
  set selectedDateFormat(format: string);
4199
4345
  get selectedDateFormat(): string;
@@ -4201,8 +4347,8 @@ declare class TimelineViewComponent extends TimelineBase {
4201
4347
  /**
4202
4348
  * Sets the short-date format for the selected date in the Scheduler toolbar.
4203
4349
  * For more information, see [Parsing and Formatting Dates and Numbers](https://www.telerik.com/kendo-angular-ui/components/globalization/internationalization/parsing-and-formatting#date-formatting).
4204
- * If `numberOfDays` is greater than 1, the default format displays a range: `'{0:d} - {1:d}'`, where `0` is the start and `1` is the end date.
4205
- * @default '{0:d}'
4350
+ * If `numberOfDays` is greater than 1, the default format displays a range: `'{0:m} - {1:m}'`, where `0` is the start and `1` is the end date.
4351
+ * @default '{0:m}'
4206
4352
  */
4207
4353
  set selectedShortDateFormat(format: string);
4208
4354
  get selectedShortDateFormat(): string;
@@ -4247,16 +4393,16 @@ declare class TimelineWeekViewComponent extends TimelineBase {
4247
4393
  get title(): string;
4248
4394
  /**
4249
4395
  * Sets the long-date format for the selected date in the Scheduler toolbar.
4250
- * Defaults to `'{0:D} - {1:D}'`, where `0` is the start and `1` is the end date.
4396
+ * Defaults to `'{0:M} - {1:M}'`, where `0` is the start and `1` is the end date.
4251
4397
  * For more information, see [Parsing and Formatting Dates and Numbers](https://www.telerik.com/kendo-angular-ui/components/globalization/internationalization/parsing-and-formatting#date-formatting).
4252
- * @default '{0:D} - {1:D}'
4398
+ * @default '{0:M} - {1:M}'
4253
4399
  */
4254
4400
  selectedDateFormat: string;
4255
4401
  /**
4256
4402
  * Sets the short-date format for the selected date in the Scheduler toolbar.
4257
- * Defaults to `'{0:d} - {1:d}'`, where `0` is the start and `1` is the end date.
4403
+ * Defaults to `'{0:m} - {1:m}'`, where `0` is the start and `1` is the end date.
4258
4404
  * For more information, see [Parsing and Formatting Dates and Numbers](https://www.telerik.com/kendo-angular-ui/components/globalization/internationalization/parsing-and-formatting#date-formatting).
4259
- * @default '{0:d} - {1:d}'
4405
+ * @default '{0:m} - {1:m}'
4260
4406
  */
4261
4407
  selectedShortDateFormat: string;
4262
4408
  /**
@@ -4299,16 +4445,16 @@ declare class WeekViewComponent extends MultiDayViewBase {
4299
4445
  get title(): string;
4300
4446
  /**
4301
4447
  * Sets the long-date format for the selected date in the Scheduler toolbar.
4302
- * Defaults to `'{0:D} - {1:D}'`, where `0` is the start and `1` is the end date.
4448
+ * Defaults to `'{0:M} - {1:M}'`, where `0` is the start and `1` is the end date.
4303
4449
  * For more information, see [Parsing and Formatting Dates and Numbers](https://www.telerik.com/kendo-angular-ui/components/globalization/internationalization/parsing-and-formatting#date-formatting).
4304
- * @default '{0:D} - {1:D}'
4450
+ * @default '{0:M} - {1:M}'
4305
4451
  */
4306
4452
  selectedDateFormat: string;
4307
4453
  /**
4308
4454
  * Sets the short-date format for the selected date in the Scheduler toolbar.
4309
- * Defaults to `'{0:d} - {1:d}'`, where `0` is the start and `1` is the end date.
4455
+ * Defaults to `'{0:m} - {1:m}'`, where `0` is the start and `1` is the end date.
4310
4456
  * For more information, see [Parsing and Formatting Dates and Numbers](https://www.telerik.com/kendo-angular-ui/components/globalization/internationalization/parsing-and-formatting#date-formatting).
4311
- * @default '{0:d} - {1:d}'
4457
+ * @default '{0:m} - {1:m}'
4312
4458
  */
4313
4459
  selectedShortDateFormat: string;
4314
4460
  /**
@@ -4530,7 +4676,7 @@ declare abstract class EditingDirectiveBase implements OnInit, OnDestroy {
4530
4676
  ngOnDestroy(): void;
4531
4677
  protected createDefaultService(): EditService<any>;
4532
4678
  protected addHandler(args: any): void;
4533
- protected removeHandler({ dataItem }: any): void;
4679
+ protected removeHandler({ dataItem, mode }: any): void;
4534
4680
  protected cancelHandler(): void;
4535
4681
  protected closeEditor(): void;
4536
4682
  protected handleUpdate(item: any, value: any, mode: EditMode): void;
@@ -4614,6 +4760,13 @@ interface FrequencyEntity {
4614
4760
  text: string;
4615
4761
  value: Frequency;
4616
4762
  }
4763
+ /**
4764
+ * @hidden
4765
+ */
4766
+ interface EndRuleEntity {
4767
+ text: string;
4768
+ value: EndRule;
4769
+ }
4617
4770
  /**
4618
4771
  * @hidden
4619
4772
  */
@@ -4659,6 +4812,7 @@ declare class RecurrenceService {
4659
4812
  */
4660
4813
  getUniqueId(): number;
4661
4814
  get frequencies(): Array<FrequencyEntity>;
4815
+ get endRules(): Array<EndRuleEntity>;
4662
4816
  get frequency(): string;
4663
4817
  setFrequency(freq: Frequency): void;
4664
4818
  set interval(newInterval: number);
@@ -4678,6 +4832,22 @@ declare class RecurrenceService {
4678
4832
  get repeatOnRule(): RepeatOnRule;
4679
4833
  set repeatOnRule(repeatOnRule: RepeatOnRule);
4680
4834
  onChange(): void;
4835
+ /**
4836
+ * @hidden
4837
+ *
4838
+ * Builds a human-readable description of the current recurrence rule
4839
+ * (e.g. "Repeats every month on the second weekend day.") displayed as a hint in the recurrence editor.
4840
+ * This text is composed in English and is not localizable.
4841
+ */
4842
+ get repeatsHintText(): string;
4843
+ private repeatsFrequencyText;
4844
+ private repeatsWeekDaysText;
4845
+ private repeatsMonthlyRepeatOnText;
4846
+ private repeatsYearlyRepeatOnText;
4847
+ private repeatsPositionText;
4848
+ private repeatsDayTypeText;
4849
+ private repeatsEndText;
4850
+ private textFor;
4681
4851
  static ɵfac: i0.ɵɵFactoryDeclaration<RecurrenceService, never>;
4682
4852
  static ɵprov: i0.ɵɵInjectableDeclaration<RecurrenceService>;
4683
4853
  }
@@ -4707,7 +4877,7 @@ declare class RecurrenceService {
4707
4877
  declare class RecurrenceEditorComponent implements ControlValueAccessor, OnInit, OnDestroy {
4708
4878
  private recurrenceService;
4709
4879
  private intl;
4710
- cssClass: boolean;
4880
+ private localization;
4711
4881
  /**
4712
4882
  * Sets the start date for the event.
4713
4883
  */
@@ -4739,21 +4909,41 @@ declare class RecurrenceEditorComponent implements ControlValueAccessor, OnInit,
4739
4909
  * Sets the options for the **End On** DatePicker in the recurrence `until` rule editor.
4740
4910
  */
4741
4911
  endOnOptions: DatePickerOptions;
4912
+ /**
4913
+ * @hidden
4914
+ */
4915
+ recurrenceHintTemplate: RecurrenceHintTemplateDirective;
4916
+ /**
4917
+ * @hidden
4918
+ */
4919
+ recurrenceRule: string;
4742
4920
  /**
4743
4921
  * Fires when the value of the component changes.
4744
4922
  */
4745
4923
  valueChange: EventEmitter<string>;
4746
4924
  private _start;
4747
4925
  private subscriptions;
4748
- constructor(recurrenceService: RecurrenceService, intl: IntlService);
4926
+ constructor(recurrenceService: RecurrenceService, intl: IntlService, localization: LocalizationService);
4749
4927
  /**
4750
4928
  * @hidden
4751
4929
  */
4752
4930
  get currentFreq(): Frequency;
4931
+ /**
4932
+ * @hidden
4933
+ */
4934
+ get currentParsedRule(): RecurrenceRule;
4935
+ /**
4936
+ * @hidden
4937
+ */
4938
+ get repeatsHintText(): string;
4753
4939
  /**
4754
4940
  * @hidden
4755
4941
  */
4756
4942
  ngOnInit(): void;
4943
+ /**
4944
+ * @hidden
4945
+ */
4946
+ textFor(key: string): string;
4757
4947
  ngOnChanges(changes: any): void;
4758
4948
  /**
4759
4949
  * @hidden
@@ -4775,7 +4965,7 @@ declare class RecurrenceEditorComponent implements ControlValueAccessor, OnInit,
4775
4965
  registerOnTouched(fn: any): void;
4776
4966
  private emitChange;
4777
4967
  static ɵfac: i0.ɵɵFactoryDeclaration<RecurrenceEditorComponent, never>;
4778
- static ɵcmp: i0.ɵɵComponentDeclaration<RecurrenceEditorComponent, "kendo-recurrence-editor", ["kendoRecurrenceEditor"], { "start": { "alias": "start"; "required": false; }; "timezone": { "alias": "timezone"; "required": false; }; "weekStart": { "alias": "weekStart"; "required": false; }; "repeatEveryOptions": { "alias": "repeatEveryOptions"; "required": false; }; "endAfterOptions": { "alias": "endAfterOptions"; "required": false; }; "repeatOnOptions": { "alias": "repeatOnOptions"; "required": false; }; "endOnOptions": { "alias": "endOnOptions"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, true, never>;
4968
+ static ɵcmp: i0.ɵɵComponentDeclaration<RecurrenceEditorComponent, "kendo-recurrence-editor", ["kendoRecurrenceEditor"], { "start": { "alias": "start"; "required": false; }; "timezone": { "alias": "timezone"; "required": false; }; "weekStart": { "alias": "weekStart"; "required": false; }; "repeatEveryOptions": { "alias": "repeatEveryOptions"; "required": false; }; "endAfterOptions": { "alias": "endAfterOptions"; "required": false; }; "repeatOnOptions": { "alias": "repeatOnOptions"; "required": false; }; "endOnOptions": { "alias": "endOnOptions"; "required": false; }; "recurrenceHintTemplate": { "alias": "recurrenceHintTemplate"; "required": false; }; "recurrenceRule": { "alias": "recurrenceRule"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, true, never>;
4779
4969
  }
4780
4970
 
4781
4971
  /**
@@ -4795,11 +4985,10 @@ declare class RecurrenceEditorComponent implements ControlValueAccessor, OnInit,
4795
4985
  */
4796
4986
  declare class TimeZoneEditorComponent implements ControlValueAccessor {
4797
4987
  private injector;
4798
- tzComboBox: ComboBoxComponent;
4799
- tzComboBoxControl: ComboBoxComponent;
4988
+ tzComboBox: DropDownListComponent;
4989
+ tzComboBoxControl: DropDownListComponent;
4800
4990
  /**
4801
4991
  * Specifies the width of the ComboBox that contains the names of the timezones.
4802
- * @default 260
4803
4992
  */
4804
4993
  width: number;
4805
4994
  /**
@@ -4817,6 +5006,7 @@ declare class TimeZoneEditorComponent implements ControlValueAccessor {
4817
5006
  tz: string;
4818
5007
  tzNames: Array<string>;
4819
5008
  tzSource: Array<string>;
5009
+ popupWidth: number;
4820
5010
  constructor(injector: Injector);
4821
5011
  /**
4822
5012
  * @hidden
@@ -4947,6 +5137,10 @@ declare class ToolbarNavigationComponent implements OnDestroy {
4947
5137
  * @default month
4948
5138
  */
4949
5139
  bottomView: CalendarView;
5140
+ /**
5141
+ * @hidden
5142
+ */
5143
+ responsiveLevel: number;
4950
5144
  /**
4951
5145
  * @hidden
4952
5146
  */
@@ -5010,7 +5204,7 @@ declare class ToolbarNavigationComponent implements OnDestroy {
5010
5204
  get arrowIcons(): string[];
5011
5205
  get arrowSVGIcons(): string[];
5012
5206
  static ɵfac: i0.ɵɵFactoryDeclaration<ToolbarNavigationComponent, never>;
5013
- static ɵcmp: i0.ɵɵComponentDeclaration<ToolbarNavigationComponent, "[kendoSchedulerToolbarNavigation]", never, { "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "activeView": { "alias": "activeView"; "required": false; }; "bottomView": { "alias": "bottomView"; "required": false; }; }, {}, never, never, true, never>;
5207
+ static ɵcmp: i0.ɵɵComponentDeclaration<ToolbarNavigationComponent, "[kendoSchedulerToolbarNavigation]", never, { "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "activeView": { "alias": "activeView"; "required": false; }; "bottomView": { "alias": "bottomView"; "required": false; }; "responsiveLevel": { "alias": "responsiveLevel"; "required": false; }; }, {}, never, never, true, never>;
5014
5208
  }
5015
5209
 
5016
5210
  /**
@@ -5023,11 +5217,7 @@ declare class ToolbarNavigationComponent implements OnDestroy {
5023
5217
  * ```html
5024
5218
  * <kendo-scheduler>
5025
5219
  * <ng-template kendoSchedulerToolbarTemplate>
5026
- * <div
5027
- * kendoSchedulerToolbarViewSelector
5028
- * [responsiveBreakpoint]="960"
5029
- * [toolbarWidth]="toolbarWidth">
5030
- * </div>
5220
+ * <div kendoSchedulerToolbarViewSelector [displayMode]="'compact'"></div>
5031
5221
  * </ng-template>
5032
5222
  * </kendo-scheduler>
5033
5223
  * ```
@@ -5036,19 +5226,35 @@ declare class ToolbarViewSelectorComponent implements OnDestroy {
5036
5226
  private service;
5037
5227
  private localization;
5038
5228
  /**
5039
- * 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'
5040
5232
  */
5041
- toolbarWidth: number;
5233
+ displayMode: 'default' | 'compact';
5042
5234
  /**
5043
- * 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.
5044
5238
  *
5045
- * @default 1024
5239
+ * @default null
5046
5240
  */
5047
- responsiveBreakpoint: number;
5241
+ focusIndex: number | null;
5242
+ /**
5243
+ * @hidden
5244
+ */
5245
+ responsiveLevel: number | null;
5048
5246
  /**
5049
5247
  * @hidden
5050
5248
  */
5051
5249
  get ctx(): ToolbarContext;
5250
+ /**
5251
+ * @hidden
5252
+ */
5253
+ get ctxViews(): any[];
5254
+ /**
5255
+ * @hidden
5256
+ */
5257
+ get showDropdown(): boolean;
5052
5258
  /**
5053
5259
  * @hidden
5054
5260
  */
@@ -5084,7 +5290,7 @@ declare class ToolbarViewSelectorComponent implements OnDestroy {
5084
5290
  isSelected(view: SchedulerView): boolean;
5085
5291
  private areSameViews;
5086
5292
  static ɵfac: i0.ɵɵFactoryDeclaration<ToolbarViewSelectorComponent, never>;
5087
- 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>;
5088
5294
  }
5089
5295
 
5090
5296
  /**
@@ -5107,7 +5313,7 @@ declare class ToolbarViewSelectorComponent implements OnDestroy {
5107
5313
  */
5108
5314
  declare class SchedulerModule {
5109
5315
  static ɵfac: i0.ɵɵFactoryDeclaration<SchedulerModule, never>;
5110
- 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 RecurrenceHintTemplateDirective, 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 RecurrenceHintTemplateDirective, 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]>;
5111
5317
  static ɵinj: i0.ɵɵInjectorDeclaration<SchedulerModule>;
5112
5318
  }
5113
5319
 
@@ -5192,6 +5398,7 @@ declare class EditDialogComponent implements OnDestroy {
5192
5398
  private element;
5193
5399
  private focusService;
5194
5400
  private intl;
5401
+ private injector;
5195
5402
  multipleResourceEditors: QueryList<MultipleResourceEditorComponent>;
5196
5403
  singleResourceEditors: QueryList<SingleResourceEditorComponent>;
5197
5404
  resources: Array<Resource>;
@@ -5199,6 +5406,8 @@ declare class EditDialogComponent implements OnDestroy {
5199
5406
  weekStart: Day;
5200
5407
  fields: any;
5201
5408
  editTemplate: EditDialogTemplateDirective;
5409
+ recurrenceButtonTextTemplate: RecurrenceButtonTextTemplateDirective;
5410
+ recurrenceEditorHintTemplate: RecurrenceHintTemplateDirective;
5202
5411
  get autoFocusedElement(): string;
5203
5412
  dialogTitle: string;
5204
5413
  isActive: boolean;
@@ -5206,22 +5415,56 @@ declare class EditDialogComponent implements OnDestroy {
5206
5415
  get isEditingSeries(): boolean;
5207
5416
  get eventTimezone(): string;
5208
5417
  get endTimezone(): string;
5418
+ get currentRule(): string;
5419
+ get currentParsedRule(): RecurrenceRule;
5420
+ startDateControl: FormControl;
5421
+ startTimeControl: FormControl;
5422
+ endDateControl: FormControl;
5423
+ endTimeControl: FormControl;
5209
5424
  recurrenceStart: Date;
5210
5425
  setTimeZone: boolean;
5211
5426
  setSeparateStartEndTimeZones: boolean;
5212
5427
  formGroup: FormGroup;
5213
5428
  editedEvent: any;
5214
5429
  isNew: boolean;
5215
- saveIcon: SVGIcon;
5216
- 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;
5217
5442
  private subs;
5218
5443
  private pendingNewEventData;
5219
- 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);
5220
5446
  onChange(): void;
5221
5447
  ngOnDestroy(): void;
5222
5448
  onCancel(e: any): void;
5223
5449
  onSave(e: any): void;
5224
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;
5225
5468
  get hasAllDay(): boolean;
5226
5469
  get hasStartTimeZone(): boolean;
5227
5470
  get isStartTimeZoneVisible(): boolean;
@@ -5229,11 +5472,16 @@ declare class EditDialogComponent implements OnDestroy {
5229
5472
  get isEndTimeZoneVisible(): boolean;
5230
5473
  getFormValue(field?: string): any;
5231
5474
  textFor(key: string): string;
5232
- onResourceClick(resource: Resource): void;
5233
5475
  getControl(name: string): FormControl;
5234
5476
  private reset;
5477
+ private syncRecurrenceService;
5235
5478
  private addTimeZoneCheckboxesToFormGroup;
5236
5479
  private removeTimeZoneCheckboxesFromFormGroup;
5480
+ private syncDateTimeControls;
5481
+ private setDisabledState;
5482
+ private setDateTime;
5483
+ private setTime;
5484
+ private syncSubControls;
5237
5485
  private subscribeToFormGroupChanges;
5238
5486
  /**
5239
5487
  * Converts the event dates to "display dates" that look like the original date in its time zone.
@@ -5248,54 +5496,7 @@ declare class EditDialogComponent implements OnDestroy {
5248
5496
  private readDateAsLocal;
5249
5497
  private focusNewEvent;
5250
5498
  static ɵfac: i0.ɵɵFactoryDeclaration<EditDialogComponent, never>;
5251
- 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>;
5252
- }
5253
-
5254
- /**
5255
- * @hidden
5256
- */
5257
- declare class SchedulerLocalizationService extends LocalizationService {
5258
- constructor(prefix: string, messageService: MessageService, _rtl: boolean);
5259
- static ɵfac: i0.ɵɵFactoryDeclaration<SchedulerLocalizationService, [null, { optional: true; }, { optional: true; }]>;
5260
- static ɵprov: i0.ɵɵInjectableDeclaration<SchedulerLocalizationService>;
5261
- }
5262
-
5263
- /**
5264
- * @hidden
5265
- */
5266
- declare class SchedulerDateTimePickerComponent implements ControlValueAccessor {
5267
- private injector;
5268
- private localization?;
5269
- datePicker: DatePickerComponent;
5270
- dateTimePicker: DateTimePickerComponent;
5271
- isAllDay: boolean;
5272
- valueChange: EventEmitter<Date>;
5273
- constructor(injector: Injector, localization?: SchedulerLocalizationService);
5274
- /**
5275
- * @hidden
5276
- */
5277
- get focusableId(): string;
5278
- get formControl(): FormControl;
5279
- textFor(key: string): string;
5280
- date: Date;
5281
- writeValue(newDate: any): void;
5282
- onValueChange(newValue: Date): void;
5283
- /**
5284
- * @hidden
5285
- */
5286
- focus(): void;
5287
- onTouchedCallback: Function;
5288
- onChangeCallback: Function;
5289
- /**
5290
- * @hidden
5291
- */
5292
- registerOnChange(fn: any): void;
5293
- /**
5294
- * @hidden
5295
- */
5296
- registerOnTouched(fn: any): void;
5297
- static ɵfac: i0.ɵɵFactoryDeclaration<SchedulerDateTimePickerComponent, never>;
5298
- static ɵcmp: i0.ɵɵComponentDeclaration<SchedulerDateTimePickerComponent, "kendo-scheduler-datetime-picker", never, { "isAllDay": { "alias": "isAllDay"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, true, never>;
5499
+ 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>;
5299
5500
  }
5300
5501
 
5301
5502
  /**
@@ -5304,43 +5505,16 @@ declare class SchedulerDateTimePickerComponent implements ControlValueAccessor {
5304
5505
  declare class RecurrenceFrequencyEditorComponent implements OnInit {
5305
5506
  private recurrence;
5306
5507
  private localization;
5307
- weekDayButtons: QueryList<Button>;
5308
5508
  frequencies: Array<FrequencyEntity>;
5309
5509
  constructor(recurrence: RecurrenceService, localization: LocalizationService);
5310
5510
  ngOnInit(): void;
5311
5511
  get selected(): string;
5312
- onClick(newFreq: FrequencyEntity): void;
5512
+ onFrequencyChange(newFreq: Frequency): void;
5313
5513
  textFor(key: string): string;
5314
- onFrequencyClick(): void;
5315
5514
  static ɵfac: i0.ɵɵFactoryDeclaration<RecurrenceFrequencyEditorComponent, never>;
5316
5515
  static ɵcmp: i0.ɵɵComponentDeclaration<RecurrenceFrequencyEditorComponent, "kendo-recurrence-frequency-editor", never, {}, {}, never, never, true, never>;
5317
5516
  }
5318
5517
 
5319
- /**
5320
- * @hidden
5321
- */
5322
- declare class EndRuleRadioButtonDirective implements OnInit, AfterContentChecked, OnDestroy {
5323
- private el;
5324
- private renderer;
5325
- private recurrence;
5326
- private changeDetector;
5327
- type: string;
5328
- radioClass: boolean;
5329
- radioSizeClass: boolean;
5330
- endRuleId: string;
5331
- private destroyClick;
5332
- private endRule;
5333
- constructor(el: ElementRef, renderer: Renderer2, recurrence: RecurrenceService, changeDetector: ChangeDetectorRef);
5334
- ngOnInit(): void;
5335
- ngAfterContentChecked(): void;
5336
- ngOnDestroy(): void;
5337
- onClick(): void;
5338
- private setCheckedState;
5339
- get elem(): any;
5340
- static ɵfac: i0.ɵɵFactoryDeclaration<EndRuleRadioButtonDirective, never>;
5341
- static ɵdir: i0.ɵɵDirectiveDeclaration<EndRuleRadioButtonDirective, "[kendoRecurrenceEndRuleRadioButton]", never, { "endRuleId": { "alias": "kendoRecurrenceEndRuleRadioButton"; "required": false; }; }, {}, never, never, true, never>;
5342
- }
5343
-
5344
5518
  /**
5345
5519
  * @hidden
5346
5520
  */
@@ -5350,25 +5524,23 @@ declare class RecurrenceEndRuleEditorComponent implements OnDestroy {
5350
5524
  cssClass: boolean;
5351
5525
  set userNumericOptions(options: NumericTextBoxOptions);
5352
5526
  set userDatePickerOptions(options: DatePickerOptions);
5353
- endRuleRadioButtons: QueryList<EndRuleRadioButtonDirective>;
5354
5527
  countValue: number;
5355
5528
  untilValue: Date;
5356
5529
  numericOptions: NumericTextBoxOptions;
5357
5530
  datePickerOptions: DatePickerOptions;
5358
- uniqueId: number;
5359
5531
  private subscriptions;
5360
5532
  constructor(recurrence: RecurrenceService, localization?: LocalizationService);
5361
5533
  ngOnDestroy(): void;
5362
5534
  setEndRule(endRule: EndRule): void;
5363
5535
  get rrule(): RecurrenceRule;
5364
- get isCountDisabled(): boolean;
5365
- get isUntilDisabled(): boolean;
5536
+ get endRules(): Array<EndRuleEntity>;
5537
+ get selectedEndRule(): EndRule;
5538
+ onEndRuleChange(newEndRule: EndRule): void;
5366
5539
  onCountChange(value: number): void;
5367
5540
  onCountBlur(): void;
5368
5541
  onUntilChange(value: Date): void;
5369
5542
  onUntilBlur(): void;
5370
5543
  textFor(key: string): string;
5371
- onEndLabelClick(): void;
5372
5544
  private setInitialValues;
5373
5545
  private subscribeChanges;
5374
5546
  private createUntil;
@@ -5382,7 +5554,6 @@ declare class RecurrenceEndRuleEditorComponent implements OnDestroy {
5382
5554
  declare class RecurrenceIntervalEditorComponent implements OnDestroy {
5383
5555
  private recurrence;
5384
5556
  private localization?;
5385
- cssClass: boolean;
5386
5557
  set userNumericOptions(options: NumericTextBoxOptions);
5387
5558
  intervalValue: number;
5388
5559
  numericOptions: NumericTextBoxOptions;
@@ -5393,7 +5564,6 @@ declare class RecurrenceIntervalEditorComponent implements OnDestroy {
5393
5564
  onIntervalChange(newInterval: number): void;
5394
5565
  onIntervalBlur(): void;
5395
5566
  textForRepeatEvery(): string;
5396
- textForFrequency(): string;
5397
5567
  textFor(key: string): string;
5398
5568
  static ɵfac: i0.ɵɵFactoryDeclaration<RecurrenceIntervalEditorComponent, never>;
5399
5569
  static ɵcmp: i0.ɵɵComponentDeclaration<RecurrenceIntervalEditorComponent, "kendo-recurrence-interval-editor", never, { "userNumericOptions": { "alias": "userNumericOptions"; "required": false; }; }, {}, never, never, true, never>;
@@ -5475,16 +5645,17 @@ declare class RecurrenceMonthlyYearlyEditorComponent implements OnDestroy {
5475
5645
  declare class RecurrenceWeekdayRuleEditorComponent {
5476
5646
  private recurrence;
5477
5647
  private localization;
5478
- weekDayButtons: QueryList<Button>;
5648
+ weekDayButtons: QueryList<ButtonComponent>;
5479
5649
  weekDays: Array<WeekDayEntity>;
5480
5650
  selected: Array<boolean>;
5481
5651
  constructor(recurrence: RecurrenceService, localization: LocalizationService);
5482
5652
  setSelectedDays(): void;
5483
5653
  onDayClick(day: WeekDayEntity): void;
5484
5654
  isSelected(day: WeekDayEntity): boolean;
5655
+ get firstSelectedDay(): WeekDayEntity;
5485
5656
  serializeToWeekDayRuleArray(arr: Array<boolean>): Array<WeekDayRule>;
5486
5657
  get rrule(): RecurrenceRule;
5487
- capitalize(day: string): string;
5658
+ abbreviate(day: string): string;
5488
5659
  textFor(key: string): string;
5489
5660
  onWeeklyRepeatOnClick(): void;
5490
5661
  static ɵfac: i0.ɵɵFactoryDeclaration<RecurrenceWeekdayRuleEditorComponent, never>;
@@ -6347,7 +6518,10 @@ declare class BaseViewItem implements OnInit, OnChanges, OnDestroy, ViewItem {
6347
6518
  editable: any;
6348
6519
  dragHint: boolean;
6349
6520
  resources: any[];
6521
+ eventHeight: number | 'auto';
6350
6522
  className: boolean;
6523
+ get containerType(): string;
6524
+ get isReadonly(): boolean;
6351
6525
  get taskIndex(): string;
6352
6526
  get touchAction(): string;
6353
6527
  get eventTitle(): string;
@@ -6371,7 +6545,7 @@ declare class BaseViewItem implements OnInit, OnChanges, OnDestroy, ViewItem {
6371
6545
  get arrowIcons(): string[];
6372
6546
  get arrowSVGIcons(): SVGIcon[];
6373
6547
  static ɵfac: i0.ɵɵFactoryDeclaration<BaseViewItem, never>;
6374
- 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>;
6548
+ 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>;
6375
6549
  }
6376
6550
 
6377
6551
  /**
@@ -6385,7 +6559,6 @@ declare class DayTimeViewItemComponent extends BaseViewItem {
6385
6559
  chevronDownIcon: SVGIcon;
6386
6560
  arrowRotateCwIcon: SVGIcon;
6387
6561
  arrowsNoRepeatIcon: SVGIcon;
6388
- xIcon: SVGIcon;
6389
6562
  vertical: boolean;
6390
6563
  isAllDay: boolean;
6391
6564
  name: string;
@@ -6499,6 +6672,7 @@ declare class TimelineMultiDayViewComponent extends DayTimeViewComponent {
6499
6672
  timeColspan(index: number): any;
6500
6673
  horizontalColspan(resourceIndex: number): any;
6501
6674
  verticalRowspan(resourceIndex: number): any;
6675
+ isToday(slot: any): boolean;
6502
6676
  handleScroll(): void;
6503
6677
  protected syncTables(): void;
6504
6678
  protected createTasks(items: ViewItem$1[], dateRange: DateRange): any[];
@@ -6549,7 +6723,7 @@ declare class MonthViewItemComponent extends BaseViewItem {
6549
6723
  chevronRightIcon: SVGIcon;
6550
6724
  arrowRotateCwIcon: SVGIcon;
6551
6725
  arrowsNoRepeatIcon: SVGIcon;
6552
- xIcon: SVGIcon;
6726
+ get eventTime(): string;
6553
6727
  constructor(slotService: MonthSlotService, localization: LocalizationService, focusService: FocusService, element: ElementRef, renderer: Renderer2, intl: IntlService);
6554
6728
  reflow(): void;
6555
6729
  static ɵfac: i0.ɵɵFactoryDeclaration<MonthViewItemComponent, never>;
@@ -6604,6 +6778,7 @@ declare class MonthResourceGroup implements ResourceGroup {
6604
6778
  * @hidden
6605
6779
  */
6606
6780
  declare class MonthSlotService extends BaseSlotService {
6781
+ currentPopover: PopoverAnchorDirective;
6607
6782
  layout(eventHeight: number | 'auto', eventsPerDay: number | 'auto', adaptiveSlotHeight: boolean): void;
6608
6783
  slotByIndex(slotIndex: string): any;
6609
6784
  forEachSlot(callback: any): void;
@@ -6632,9 +6807,10 @@ declare class YearViewInternalComponent extends BaseView implements AfterViewIni
6632
6807
  */
6633
6808
  dateRangeFn: (date: Date) => DateRange;
6634
6809
  private calendar;
6635
- tooltip: TooltipDirective;
6810
+ private popoverContainer;
6636
6811
  get arrowIcons(): string[];
6637
6812
  get arrowSVGIcons(): SVGIcon[];
6813
+ selectedPopoverDate: Date;
6638
6814
  chevronLeftIcon: SVGIcon;
6639
6815
  chevronRightIcon: SVGIcon;
6640
6816
  eventsPerSelectedDay: any[];
@@ -6642,16 +6818,12 @@ declare class YearViewInternalComponent extends BaseView implements AfterViewIni
6642
6818
  focusedDate: Date;
6643
6819
  private currentTd;
6644
6820
  private tds;
6645
- private isTooltipClicked;
6646
6821
  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);
6647
6822
  ngAfterViewInit(): void;
6648
6823
  getSlotClass(date: any): string[];
6649
6824
  getEventClasses(item: any, resources: any, isAllDay?: boolean): any;
6650
- onBlur(): void;
6651
6825
  getDate(element: ElementRef): Date;
6652
6826
  eventTitle(event: any): string;
6653
- onClick(event: any): void;
6654
- onMouseDown(): void;
6655
6827
  onKeydown(event: any): void;
6656
6828
  navigateToDay(date: Date): void;
6657
6829
  private eventsPerDay;
@@ -6725,7 +6897,7 @@ declare const KENDO_SCHEDULERPDF: readonly [typeof PDFComponent, typeof PDFComma
6725
6897
  * export class AppComponent {}
6726
6898
  * ```
6727
6899
  */
6728
- 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];
6900
+ 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 RecurrenceHintTemplateDirective, 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];
6729
6901
 
6730
- 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 };
6902
+ 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, RecurrenceHintTemplateDirective, RecurrenceIntervalEditorComponent, RecurrenceMonthlyYearlyEditorComponent, 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 };
6731
6903
  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 };