@progress/kendo-angular-scheduler 14.4.0-develop.9 → 15.0.0-develop.2

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.
Files changed (44) hide show
  1. package/NOTICE.txt +146 -593
  2. package/editing/date-time-picker.component.d.ts +4 -0
  3. package/editing/recurrence/recurrence-end-rule-editor.component.d.ts +3 -3
  4. package/editing/recurrence/recurrence-interval-editor.component.d.ts +3 -3
  5. package/editing/recurrence/recurrence-monthly-yearly-editor.component.d.ts +3 -3
  6. package/esm2020/editing/date-time-picker.component.mjs +62 -8
  7. package/esm2020/editing/recurrence/recurrence-end-rule-editor.component.mjs +35 -9
  8. package/esm2020/editing/recurrence/recurrence-interval-editor.component.mjs +19 -7
  9. package/esm2020/editing/recurrence/recurrence-monthly-yearly-editor.component.mjs +19 -7
  10. package/esm2020/editing/resource-multiple-editor.component.mjs +1 -1
  11. package/esm2020/editing/timezone-editor.component.mjs +1 -1
  12. package/esm2020/index.mjs +1 -0
  13. package/esm2020/localization/messages.mjs +35 -1
  14. package/esm2020/navigation/shortcuts.directive.mjs +9 -0
  15. package/esm2020/package-metadata.mjs +2 -2
  16. package/esm2020/scheduler.component.mjs +200 -98
  17. package/esm2020/scheduler.module.mjs +8 -1
  18. package/esm2020/toolbar/navigation.component.mjs +9 -1
  19. package/esm2020/toolbar/toolbar.component.mjs +25 -3
  20. package/esm2020/views/timeline/timeline-month-view.component.mjs +13 -5
  21. package/esm2020/views/timeline/timeline-view.component.mjs +13 -5
  22. package/esm2020/views/timeline/timeline-week-view.component.mjs +12 -5
  23. package/esm2020/views/year/utils.mjs +60 -0
  24. package/esm2020/views/year/year-view-internal.component.mjs +418 -0
  25. package/esm2020/views/year/year-view.component.mjs +115 -0
  26. package/esm2020/views/year/year-view.module.mjs +47 -0
  27. package/fesm2015/progress-kendo-angular-scheduler.mjs +1043 -157
  28. package/fesm2020/progress-kendo-angular-scheduler.mjs +1037 -157
  29. package/index.d.ts +1 -0
  30. package/localization/messages.d.ts +118 -50
  31. package/package.json +13 -12
  32. package/scheduler.module.d.ts +15 -13
  33. package/schematics/ngAdd/index.js +2 -2
  34. package/toolbar/navigation.component.d.ts +10 -2
  35. package/toolbar/toolbar.component.d.ts +9 -0
  36. package/types/scheduler-slot.interface.d.ts +4 -0
  37. package/types/slot-class-args.interface.d.ts +4 -0
  38. package/views/timeline/timeline-month-view.component.d.ts +4 -1
  39. package/views/timeline/timeline-view.component.d.ts +4 -1
  40. package/views/timeline/timeline-week-view.component.d.ts +3 -1
  41. package/views/year/utils.d.ts +21 -0
  42. package/views/year/year-view-internal.component.d.ts +82 -0
  43. package/views/year/year-view.component.d.ts +56 -0
  44. package/views/year/year-view.module.d.ts +19 -0
@@ -8,11 +8,11 @@ import * as i1$1 from '@progress/kendo-angular-l10n';
8
8
  import { LocalizationService, L10N_PREFIX, RTL, ComponentMessages } from '@progress/kendo-angular-l10n';
9
9
  import * as i7 from '@progress/kendo-angular-common';
10
10
  import { hasObservers, isDocumentAvailable, isVisible as isVisible$1, scrollbarWidth, isChanged, Keys, shouldShowValidationUI, anyChanged, ResizeSensorComponent, EventsModule, ResizeSensorModule, guid, WatermarkModule } from '@progress/kendo-angular-common';
11
- import { isEqualDate, timezoneNames, ZonedDate, toLocalDate, getDate, Day, MS_PER_DAY as MS_PER_DAY$1, addDays, firstDayOfMonth, firstDayInWeek, addMonths, addWeeks } from '@progress/kendo-date-math';
11
+ import { isEqualDate, timezoneNames, ZonedDate, toLocalDate, getDate, Day, MS_PER_DAY as MS_PER_DAY$1, addDays, firstDayOfMonth, firstDayInWeek, addMonths, addWeeks, addYears } from '@progress/kendo-date-math';
12
12
  import { auditTime, buffer, filter, map, debounceTime, take, switchMap, tap, distinctUntilChanged } from 'rxjs/operators';
13
13
  import { validatePackage } from '@progress/kendo-licensing';
14
- import * as i6 from '@progress/kendo-angular-dateinputs';
15
- import { PreventableEvent as PreventableEvent$1, CalendarModule, DateInputsModule } from '@progress/kendo-angular-dateinputs';
14
+ import * as i2 from '@progress/kendo-angular-dateinputs';
15
+ import { PreventableEvent as PreventableEvent$1, CalendarModule, MultiViewCalendarComponent, CalendarsModule, DateInputsModule } from '@progress/kendo-angular-dateinputs';
16
16
  import { Subject, BehaviorSubject, fromEvent, Subscription, combineLatest, merge } from 'rxjs';
17
17
  import * as i14 from '@angular/forms';
18
18
  import { NG_VALUE_ACCESSOR, FormControl, FormGroup, ReactiveFormsModule } from '@angular/forms';
@@ -38,6 +38,8 @@ import { orderBy, groupBy } from '@progress/kendo-data-query';
38
38
  import * as i4$1 from '@progress/kendo-angular-icons';
39
39
  import { IconsModule } from '@progress/kendo-angular-icons';
40
40
  import { Draggable } from '@progress/kendo-draggable';
41
+ import * as i11$1 from '@progress/kendo-angular-tooltip';
42
+ import { TooltipDirective, TooltipsModule } from '@progress/kendo-angular-tooltip';
41
43
  import { drawDOM, exportPDF } from '@progress/kendo-drawing';
42
44
  import { saveAs } from '@progress/kendo-file-saver';
43
45
 
@@ -48,8 +50,8 @@ const packageMetadata = {
48
50
  name: '@progress/kendo-angular-scheduler',
49
51
  productName: 'Kendo UI for Angular',
50
52
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
51
- publishDate: 1705406821,
52
- version: '14.4.0-develop.9',
53
+ publishDate: 1706611125,
54
+ version: '15.0.0-develop.2',
53
55
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
54
56
  };
55
57
 
@@ -2459,7 +2461,7 @@ class ToolbarNavigationComponent {
2459
2461
  }
2460
2462
  }
2461
2463
  ToolbarNavigationComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ToolbarNavigationComponent, deps: [{ token: i1$2.PopupService }, { token: ToolbarService }, { token: i1$1.LocalizationService }, { token: i0.ChangeDetectorRef }, { token: ViewContextService }], target: i0.ɵɵFactoryTarget.Component });
2462
- ToolbarNavigationComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: ToolbarNavigationComponent, selector: "[kendoSchedulerToolbarNavigation]", inputs: { min: "min", max: "max" }, host: { properties: { "class.k-toolbar-group": "this.hostClass" } }, providers: [
2464
+ ToolbarNavigationComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: ToolbarNavigationComponent, selector: "[kendoSchedulerToolbarNavigation]", inputs: { min: "min", max: "max", activeView: "activeView", bottomView: "bottomView" }, host: { properties: { "class.k-toolbar-group": "this.hostClass" } }, providers: [
2463
2465
  PopupService
2464
2466
  ], viewQueries: [{ propertyName: "calendar", first: true, predicate: ["calendar"], descendants: true }], ngImport: i0, template: `
2465
2467
  <span class="k-scheduler-navigation k-button-group k-button-group-solid" role="group">
@@ -2517,6 +2519,8 @@ ToolbarNavigationComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0
2517
2519
  <kendo-calendar
2518
2520
  #calendar
2519
2521
  (blur)="onBlur()"
2522
+ [activeView]="activeView"
2523
+ [bottomView]="bottomView"
2520
2524
  (keydown.escape)="toggleSelectedDate({ nativeElement: anchor }, template); anchor.focus();"
2521
2525
  (valueChange)="selectDate($event)"
2522
2526
  [value]="ctx.selectedDate | async" [min]="min" [max]="max">
@@ -2524,7 +2528,7 @@ ToolbarNavigationComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0
2524
2528
  </kendo-calendar-messages>
2525
2529
  </kendo-calendar>
2526
2530
  </ng-template>
2527
- `, isInline: true, components: [{ type: i4.ButtonComponent, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }, { type: i6.CalendarComponent, selector: "kendo-calendar", inputs: ["id", "focusedDate", "min", "max", "rangeValidation", "selection", "value", "disabled", "tabindex", "tabIndex", "disabledDates", "navigation", "activeView", "bottomView", "topView", "type", "animateNavigation", "weekNumber", "cellTemplate", "monthCellTemplate", "yearCellTemplate", "decadeCellTemplate", "centuryCellTemplate", "weekNumberTemplate", "headerTitleTemplate", "navigationItemTemplate", "size"], outputs: ["activeViewChange", "navigate", "activeViewDateChange", "blur", "focus", "valueChange"], exportAs: ["kendo-calendar"] }, { type: i6.CalendarCustomMessagesComponent, selector: "kendo-calendar-messages" }], directives: [{ type: FocusableDirective, selector: "[kendoSchedulerFocusIndex]", inputs: ["kendoSchedulerFocusIndex", "containerType"] }], pipes: { "async": i11.AsyncPipe }, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2531
+ `, isInline: true, components: [{ type: i4.ButtonComponent, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }, { type: i2.CalendarComponent, selector: "kendo-calendar", inputs: ["id", "focusedDate", "min", "max", "rangeValidation", "selection", "value", "disabled", "tabindex", "tabIndex", "disabledDates", "navigation", "activeView", "bottomView", "topView", "type", "animateNavigation", "weekNumber", "cellTemplate", "monthCellTemplate", "yearCellTemplate", "decadeCellTemplate", "centuryCellTemplate", "weekNumberTemplate", "headerTitleTemplate", "navigationItemTemplate", "size"], outputs: ["activeViewChange", "navigate", "activeViewDateChange", "blur", "focus", "valueChange"], exportAs: ["kendo-calendar"] }, { type: i2.CalendarCustomMessagesComponent, selector: "kendo-calendar-messages" }], directives: [{ type: FocusableDirective, selector: "[kendoSchedulerFocusIndex]", inputs: ["kendoSchedulerFocusIndex", "containerType"] }], pipes: { "async": i11.AsyncPipe }, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2528
2532
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ToolbarNavigationComponent, decorators: [{
2529
2533
  type: Component,
2530
2534
  args: [{
@@ -2590,6 +2594,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
2590
2594
  <kendo-calendar
2591
2595
  #calendar
2592
2596
  (blur)="onBlur()"
2597
+ [activeView]="activeView"
2598
+ [bottomView]="bottomView"
2593
2599
  (keydown.escape)="toggleSelectedDate({ nativeElement: anchor }, template); anchor.focus();"
2594
2600
  (valueChange)="selectDate($event)"
2595
2601
  [value]="ctx.selectedDate | async" [min]="min" [max]="max">
@@ -2609,6 +2615,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
2609
2615
  type: Input
2610
2616
  }], max: [{
2611
2617
  type: Input
2618
+ }], activeView: [{
2619
+ type: Input
2620
+ }], bottomView: [{
2621
+ type: Input
2612
2622
  }] } });
2613
2623
 
2614
2624
  /**
@@ -2773,6 +2783,20 @@ class ToolbarComponent {
2773
2783
  this.subs = new Subscription();
2774
2784
  this.subs.add(service.action.subscribe(action => this.navigate.next(action)));
2775
2785
  }
2786
+ /**
2787
+ * @hidden
2788
+ */
2789
+ get activeView() {
2790
+ var _a;
2791
+ return ((_a = this.service.context.selectedView) === null || _a === void 0 ? void 0 : _a.name) === 'year' ? 'decade' : 'month';
2792
+ }
2793
+ /**
2794
+ * @hidden
2795
+ */
2796
+ get bottomView() {
2797
+ var _a;
2798
+ return ((_a = this.service.context.selectedView) === null || _a === void 0 ? void 0 : _a.name) === 'year' ? 'decade' : 'month';
2799
+ }
2776
2800
  ngOnInit() {
2777
2801
  this.subs.add(this.selectedDate.subscribe(date => this.templateContext.selectedDate = date));
2778
2802
  this.subs.add(this.dateRange.subscribe(dateRange => this.templateContext.dateRange = dateRange));
@@ -2812,13 +2836,18 @@ ToolbarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", versi
2812
2836
  </ng-template>
2813
2837
 
2814
2838
  <ng-template #defaultTemplate>
2815
- <div kendoSchedulerToolbarNavigation [min]="min" [max]="max"></div>
2839
+ <div kendoSchedulerToolbarNavigation
2840
+ [min]="min"
2841
+ [max]="max"
2842
+ [activeView]="activeView"
2843
+ [bottomView]="bottomView">
2844
+ </div>
2816
2845
  <span class="k-spacer"></span>
2817
2846
  <div kendoSchedulerToolbarViewSelector [toolbarWidth]="toolbarWidth"></div>
2818
2847
  </ng-template>
2819
2848
 
2820
2849
  <kendo-resize-sensor (resize)="resizeHandler()" [style]="'display: contents;'"></kendo-resize-sensor>
2821
- `, isInline: true, components: [{ type: ToolbarNavigationComponent, selector: "[kendoSchedulerToolbarNavigation]", inputs: ["min", "max"] }, { type: ToolbarViewSelectorComponent, selector: "[kendoSchedulerToolbarViewSelector]", inputs: ["toolbarWidth", "responsiveBreakpoint"] }, { type: i7.ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }], directives: [{ type: i11.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i11.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }] });
2850
+ `, isInline: true, components: [{ type: ToolbarNavigationComponent, selector: "[kendoSchedulerToolbarNavigation]", inputs: ["min", "max", "activeView", "bottomView"] }, { type: ToolbarViewSelectorComponent, selector: "[kendoSchedulerToolbarViewSelector]", inputs: ["toolbarWidth", "responsiveBreakpoint"] }, { type: i7.ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }], directives: [{ type: i11.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i11.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }] });
2822
2851
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ToolbarComponent, decorators: [{
2823
2852
  type: Component,
2824
2853
  args: [{
@@ -2832,7 +2861,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
2832
2861
  </ng-template>
2833
2862
 
2834
2863
  <ng-template #defaultTemplate>
2835
- <div kendoSchedulerToolbarNavigation [min]="min" [max]="max"></div>
2864
+ <div kendoSchedulerToolbarNavigation
2865
+ [min]="min"
2866
+ [max]="max"
2867
+ [activeView]="activeView"
2868
+ [bottomView]="bottomView">
2869
+ </div>
2836
2870
  <span class="k-spacer"></span>
2837
2871
  <div kendoSchedulerToolbarViewSelector [toolbarWidth]="toolbarWidth"></div>
2838
2872
  </ng-template>
@@ -2970,7 +3004,7 @@ MultipleResourceEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion:
2970
3004
  {{ getField(dataItem, resource.textField) }}
2971
3005
  </ng-template>
2972
3006
  </kendo-multiselect>
2973
- `, isInline: true, components: [{ type: i1$3.MultiSelectComponent, selector: "kendo-multiselect", inputs: ["showStickyHeader", "focusableId", "autoClose", "loading", "data", "value", "valueField", "textField", "tabindex", "tabIndex", "size", "rounded", "fillMode", "placeholder", "adaptiveMode", "title", "subtitle", "disabled", "itemDisabled", "checkboxes", "readonly", "filterable", "virtual", "popupSettings", "listHeight", "valuePrimitive", "clearButton", "tagMapper", "allowCustom", "valueNormalizer"], outputs: ["filterChange", "valueChange", "open", "opened", "close", "closed", "focus", "blur", "removeTag"], exportAs: ["kendoMultiSelect"] }], directives: [{ type: i1$3.ItemTemplateDirective, selector: "[kendoDropDownListItemTemplate],[kendoComboBoxItemTemplate],[kendoAutoCompleteItemTemplate],[kendoMultiSelectItemTemplate]" }, { type: i11.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i11.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { type: i1$3.TagTemplateDirective, selector: "[kendoMultiSelectTagTemplate],[kendoMultiSelectTreeTagTemplate]" }] });
3007
+ `, isInline: true, components: [{ type: i1$3.MultiSelectComponent, selector: "kendo-multiselect", inputs: ["showStickyHeader", "focusableId", "autoClose", "loading", "data", "value", "valueField", "textField", "tabindex", "tabIndex", "size", "rounded", "fillMode", "placeholder", "adaptiveMode", "title", "subtitle", "disabled", "itemDisabled", "checkboxes", "readonly", "filterable", "virtual", "popupSettings", "listHeight", "valuePrimitive", "clearButton", "tagMapper", "allowCustom", "valueNormalizer"], outputs: ["filterChange", "valueChange", "open", "opened", "close", "closed", "focus", "blur", "inputFocus", "inputBlur", "removeTag"], exportAs: ["kendoMultiSelect"] }], directives: [{ type: i1$3.ItemTemplateDirective, selector: "[kendoDropDownListItemTemplate],[kendoComboBoxItemTemplate],[kendoAutoCompleteItemTemplate],[kendoMultiSelectItemTemplate]" }, { type: i11.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i11.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { type: i1$3.TagTemplateDirective, selector: "[kendoMultiSelectTagTemplate],[kendoMultiSelectTreeTagTemplate]" }] });
2974
3008
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: MultipleResourceEditorComponent, decorators: [{
2975
3009
  type: Component,
2976
3010
  args: [{
@@ -3112,7 +3146,8 @@ const SCHEDULER_DATETIMEPICKER_VALUE_ACCESSOR = {
3112
3146
  * @hidden
3113
3147
  */
3114
3148
  class SchedulerDateTimePickerComponent {
3115
- constructor() {
3149
+ constructor(localization) {
3150
+ this.localization = localization;
3116
3151
  this.valueChange = new EventEmitter();
3117
3152
  this.onTouchedCallback = (_) => { };
3118
3153
  this.onChangeCallback = (_) => { };
@@ -3124,6 +3159,9 @@ class SchedulerDateTimePickerComponent {
3124
3159
  var _a, _b;
3125
3160
  return this.isAllDay ? (_a = this.datePicker) === null || _a === void 0 ? void 0 : _a.focusableId : (_b = this.dateTimePicker) === null || _b === void 0 ? void 0 : _b.focusableId;
3126
3161
  }
3162
+ textFor(key) {
3163
+ return this.localization.get(key);
3164
+ }
3127
3165
  writeValue(newDate) {
3128
3166
  if (newDate instanceof Date) {
3129
3167
  this.date = newDate;
@@ -3152,7 +3190,7 @@ class SchedulerDateTimePickerComponent {
3152
3190
  this.onTouchedCallback = fn;
3153
3191
  }
3154
3192
  }
3155
- SchedulerDateTimePickerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SchedulerDateTimePickerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
3193
+ SchedulerDateTimePickerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SchedulerDateTimePickerComponent, deps: [{ token: SchedulerLocalizationService }], target: i0.ɵɵFactoryTarget.Component });
3156
3194
  SchedulerDateTimePickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: SchedulerDateTimePickerComponent, selector: "kendo-scheduler-datetime-picker", inputs: { isAllDay: "isAllDay" }, outputs: { valueChange: "valueChange" }, providers: [
3157
3195
  SCHEDULER_DATETIMEPICKER_VALUE_ACCESSOR
3158
3196
  ], viewQueries: [{ propertyName: "datePicker", first: true, predicate: ["datepicker"], descendants: true }, { propertyName: "dateTimePicker", first: true, predicate: ["datetimepicker"], descendants: true }], ngImport: i0, template: `
@@ -3161,14 +3199,38 @@ SchedulerDateTimePickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion:
3161
3199
  #datepicker
3162
3200
  [(value)]='date'
3163
3201
  (valueChange)='onValueChange($event)'
3164
- ></kendo-datepicker>
3202
+ >
3203
+ <kendo-datepicker-messages
3204
+ [today]="textFor('editorDateInputsToday')"
3205
+ [toggle]="textFor('editorDateInputsToggle')"
3206
+ [parentViewButtonTitle]="textFor('editorDateInputsParentViewButton')"
3207
+ >
3208
+ </kendo-datepicker-messages>
3209
+ </kendo-datepicker>
3165
3210
  <kendo-datetimepicker
3166
3211
  *ngIf='!isAllDay'
3167
3212
  #datetimepicker
3168
3213
  [(value)]='date'
3169
3214
  (valueChange)='onValueChange($event)'
3170
3215
  >
3171
- `, isInline: true, components: [{ type: i6.DatePickerComponent, selector: "kendo-datepicker", inputs: ["focusableId", "cellTemplate", "monthCellTemplate", "yearCellTemplate", "decadeCellTemplate", "centuryCellTemplate", "weekNumberTemplate", "headerTitleTemplate", "navigationItemTemplate", "activeView", "bottomView", "topView", "calendarType", "animateCalendarNavigation", "disabled", "readonly", "readOnlyInput", "popupSettings", "navigation", "min", "max", "incompleteDateValidation", "autoCorrectParts", "autoSwitchParts", "autoSwitchKeys", "enableMouseWheel", "allowCaretMode", "autoFill", "focusedDate", "value", "format", "twoDigitYearMax", "formatPlaceholder", "placeholder", "tabindex", "tabIndex", "disabledDates", "title", "subtitle", "rangeValidation", "disabledDatesValidation", "weekNumber", "size", "rounded", "fillMode", "adaptiveMode"], outputs: ["valueChange", "focus", "blur", "open", "close"], exportAs: ["kendo-datepicker"] }, { type: i6.DateTimePickerComponent, selector: "kendo-datetimepicker", inputs: ["focusableId", "value", "format", "twoDigitYearMax", "tabindex", "disabledDates", "popupSettings", "title", "subtitle", "disabled", "readonly", "readOnlyInput", "cancelButton", "formatPlaceholder", "placeholder", "steps", "focusedDate", "calendarType", "animateCalendarNavigation", "weekNumber", "min", "max", "rangeValidation", "disabledDatesValidation", "incompleteDateValidation", "autoCorrectParts", "autoSwitchParts", "autoSwitchKeys", "enableMouseWheel", "allowCaretMode", "autoFill", "adaptiveMode", "defaultTab", "size", "rounded", "fillMode"], outputs: ["valueChange", "open", "close", "focus", "blur"], exportAs: ["kendo-datetimepicker"] }], directives: [{ type: i11.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
3216
+ <kendo-datetimepicker-messages
3217
+ [toggle]="textFor('editorDateInputsToggle')"
3218
+ [today]="textFor('editorDateInputsToday')"
3219
+ [accept]="textFor('editorDateInputsAccept')"
3220
+ [acceptLabel]="textFor('editorDateInputsAcceptLabel')"
3221
+ [cancelLabel]="textFor('editorDateInputsCancelLabel')"
3222
+ [cancel]="textFor('editorDateInputsCancel')"
3223
+ [now]="textFor('editorDateInputsNow')"
3224
+ [nowLabel]="textFor('editorDateInputsNowLabel')"
3225
+ [dateTab]="textFor('editorDateInputsDateTab')"
3226
+ [dateTabLabel]="textFor('editorDateInputsDateTabLabel')"
3227
+ [timeTab]="textFor('editorDateInputsTimeTab')"
3228
+ [timeTabLabel]="textFor('editorDateInputsTimeTabLabel')"
3229
+ [parentViewButtonTitle]="textFor('editorDateInputsParentViewButton')"
3230
+ >
3231
+ </kendo-datetimepicker-messages>
3232
+ </kendo-datetimepicker>
3233
+ `, isInline: true, components: [{ type: i2.DatePickerComponent, selector: "kendo-datepicker", inputs: ["focusableId", "cellTemplate", "monthCellTemplate", "yearCellTemplate", "decadeCellTemplate", "centuryCellTemplate", "weekNumberTemplate", "headerTitleTemplate", "navigationItemTemplate", "activeView", "bottomView", "topView", "calendarType", "animateCalendarNavigation", "disabled", "readonly", "readOnlyInput", "popupSettings", "navigation", "min", "max", "incompleteDateValidation", "autoCorrectParts", "autoSwitchParts", "autoSwitchKeys", "enableMouseWheel", "allowCaretMode", "autoFill", "focusedDate", "value", "format", "twoDigitYearMax", "formatPlaceholder", "placeholder", "tabindex", "tabIndex", "disabledDates", "title", "subtitle", "rangeValidation", "disabledDatesValidation", "weekNumber", "size", "rounded", "fillMode", "adaptiveMode"], outputs: ["valueChange", "focus", "blur", "open", "close"], exportAs: ["kendo-datepicker"] }, { type: i2.DatePickerCustomMessagesComponent, selector: "kendo-datepicker-messages" }, { type: i2.DateTimePickerComponent, selector: "kendo-datetimepicker", inputs: ["focusableId", "value", "format", "twoDigitYearMax", "tabindex", "disabledDates", "popupSettings", "title", "subtitle", "disabled", "readonly", "readOnlyInput", "cancelButton", "formatPlaceholder", "placeholder", "steps", "focusedDate", "calendarType", "animateCalendarNavigation", "weekNumber", "min", "max", "rangeValidation", "disabledDatesValidation", "incompleteDateValidation", "autoCorrectParts", "autoSwitchParts", "autoSwitchKeys", "enableMouseWheel", "allowCaretMode", "autoFill", "adaptiveMode", "defaultTab", "size", "rounded", "fillMode"], outputs: ["valueChange", "open", "close", "focus", "blur"], exportAs: ["kendo-datetimepicker"] }, { type: i2.DateTimePickerCustomMessagesComponent, selector: "kendo-datetimepicker-messages" }], directives: [{ type: i11.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
3172
3234
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SchedulerDateTimePickerComponent, decorators: [{
3173
3235
  type: Component,
3174
3236
  args: [{
@@ -3182,16 +3244,40 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
3182
3244
  #datepicker
3183
3245
  [(value)]='date'
3184
3246
  (valueChange)='onValueChange($event)'
3185
- ></kendo-datepicker>
3247
+ >
3248
+ <kendo-datepicker-messages
3249
+ [today]="textFor('editorDateInputsToday')"
3250
+ [toggle]="textFor('editorDateInputsToggle')"
3251
+ [parentViewButtonTitle]="textFor('editorDateInputsParentViewButton')"
3252
+ >
3253
+ </kendo-datepicker-messages>
3254
+ </kendo-datepicker>
3186
3255
  <kendo-datetimepicker
3187
3256
  *ngIf='!isAllDay'
3188
3257
  #datetimepicker
3189
3258
  [(value)]='date'
3190
3259
  (valueChange)='onValueChange($event)'
3191
3260
  >
3261
+ <kendo-datetimepicker-messages
3262
+ [toggle]="textFor('editorDateInputsToggle')"
3263
+ [today]="textFor('editorDateInputsToday')"
3264
+ [accept]="textFor('editorDateInputsAccept')"
3265
+ [acceptLabel]="textFor('editorDateInputsAcceptLabel')"
3266
+ [cancelLabel]="textFor('editorDateInputsCancelLabel')"
3267
+ [cancel]="textFor('editorDateInputsCancel')"
3268
+ [now]="textFor('editorDateInputsNow')"
3269
+ [nowLabel]="textFor('editorDateInputsNowLabel')"
3270
+ [dateTab]="textFor('editorDateInputsDateTab')"
3271
+ [dateTabLabel]="textFor('editorDateInputsDateTabLabel')"
3272
+ [timeTab]="textFor('editorDateInputsTimeTab')"
3273
+ [timeTabLabel]="textFor('editorDateInputsTimeTabLabel')"
3274
+ [parentViewButtonTitle]="textFor('editorDateInputsParentViewButton')"
3275
+ >
3276
+ </kendo-datetimepicker-messages>
3277
+ </kendo-datetimepicker>
3192
3278
  `
3193
3279
  }]
3194
- }], propDecorators: { datePicker: [{
3280
+ }], ctorParameters: function () { return [{ type: SchedulerLocalizationService }]; }, propDecorators: { datePicker: [{
3195
3281
  type: ViewChild,
3196
3282
  args: ['datepicker']
3197
3283
  }], dateTimePicker: [{
@@ -3294,7 +3380,7 @@ TimeZoneEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
3294
3380
  (filterChange)="onTimeZoneFilterChange($event)"
3295
3381
  (valueChange)="onTimeZoneChange($event)">
3296
3382
  </kendo-combobox>
3297
- `, isInline: true, components: [{ type: i1$3.ComboBoxComponent, selector: "kendo-combobox", inputs: ["icon", "svgIcon", "showStickyHeader", "focusableId", "allowCustom", "data", "value", "textField", "valueField", "valuePrimitive", "valueNormalizer", "placeholder", "adaptiveMode", "title", "subtitle", "popupSettings", "listHeight", "loading", "suggest", "clearButton", "disabled", "itemDisabled", "readonly", "tabindex", "tabIndex", "filterable", "virtual", "size", "rounded", "fillMode"], outputs: ["valueChange", "selectionChange", "filterChange", "open", "opened", "close", "closed", "focus", "blur"], exportAs: ["kendoComboBox"] }] });
3383
+ `, isInline: true, components: [{ type: i1$3.ComboBoxComponent, selector: "kendo-combobox", inputs: ["icon", "svgIcon", "showStickyHeader", "focusableId", "allowCustom", "data", "value", "textField", "valueField", "valuePrimitive", "valueNormalizer", "placeholder", "adaptiveMode", "title", "subtitle", "popupSettings", "listHeight", "loading", "suggest", "clearButton", "disabled", "itemDisabled", "readonly", "tabindex", "tabIndex", "filterable", "virtual", "size", "rounded", "fillMode"], outputs: ["valueChange", "selectionChange", "filterChange", "open", "opened", "close", "closed", "focus", "blur", "inputFocus", "inputBlur"], exportAs: ["kendoComboBox"] }] });
3298
3384
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: TimeZoneEditorComponent, decorators: [{
3299
3385
  type: Component,
3300
3386
  args: [{
@@ -3749,7 +3835,7 @@ class RecurrenceIntervalEditorComponent {
3749
3835
  return this.localization.get(key);
3750
3836
  }
3751
3837
  }
3752
- RecurrenceIntervalEditorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RecurrenceIntervalEditorComponent, deps: [{ token: RecurrenceService }, { token: i1$1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
3838
+ RecurrenceIntervalEditorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RecurrenceIntervalEditorComponent, deps: [{ token: RecurrenceService }, { token: SchedulerLocalizationService }], target: i0.ɵɵFactoryTarget.Component });
3753
3839
  RecurrenceIntervalEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: RecurrenceIntervalEditorComponent, selector: "kendo-recurrence-interval-editor", inputs: { userNumericOptions: "userNumericOptions" }, host: { properties: { "class.k-scheduler-recurrence-interval-editor": "this.cssClass" } }, ngImport: i0, template: `
3754
3840
  <div class="k-form-field">
3755
3841
  <kendo-label
@@ -3774,12 +3860,18 @@ RecurrenceIntervalEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion
3774
3860
  [title]="numericOptions.title"
3775
3861
  [(value)]="intervalValue"
3776
3862
  (blur)="onIntervalBlur()"
3777
- (valueChange)="onIntervalChange($event)">
3863
+ (valueChange)="onIntervalChange($event)"
3864
+ >
3865
+ <kendo-numerictextbox-messages
3866
+ [increment]="textFor('recurrenceEditorNumericIncrement')"
3867
+ [decrement]="textFor('recurrenceEditorNumericDecrement')"
3868
+ >
3869
+ </kendo-numerictextbox-messages>
3778
3870
  </kendo-numerictextbox>
3779
3871
  <span>&nbsp;{{ textForFrequency() }}</span>
3780
3872
  </div>
3781
3873
  </div>
3782
- `, isInline: true, components: [{ type: i3.LabelComponent, selector: "kendo-label", inputs: ["text", "for", "optional", "labelCssStyle", "labelCssClass"], exportAs: ["kendoLabel"] }, { type: i5.NumericTextBoxComponent, selector: "kendo-numerictextbox", inputs: ["focusableId", "disabled", "readonly", "title", "autoCorrect", "format", "max", "min", "decimals", "placeholder", "step", "spinners", "rangeValidation", "tabindex", "tabIndex", "changeValueOnScroll", "selectOnFocus", "value", "maxlength", "size", "rounded", "fillMode"], outputs: ["valueChange", "focus", "blur"], exportAs: ["kendoNumericTextBox"] }] });
3874
+ `, isInline: true, components: [{ type: i3.LabelComponent, selector: "kendo-label", inputs: ["text", "for", "optional", "labelCssStyle", "labelCssClass"], exportAs: ["kendoLabel"] }, { type: i5.NumericTextBoxComponent, selector: "kendo-numerictextbox", inputs: ["focusableId", "disabled", "readonly", "title", "autoCorrect", "format", "max", "min", "decimals", "placeholder", "step", "spinners", "rangeValidation", "tabindex", "tabIndex", "changeValueOnScroll", "selectOnFocus", "value", "maxlength", "size", "rounded", "fillMode"], outputs: ["valueChange", "focus", "blur", "inputFocus", "inputBlur"], exportAs: ["kendoNumericTextBox"] }, { type: i5.NumericTextBoxCustomMessagesComponent, selector: "kendo-numerictextbox-messages" }] });
3783
3875
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RecurrenceIntervalEditorComponent, decorators: [{
3784
3876
  type: Component,
3785
3877
  args: [{
@@ -3808,14 +3900,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
3808
3900
  [title]="numericOptions.title"
3809
3901
  [(value)]="intervalValue"
3810
3902
  (blur)="onIntervalBlur()"
3811
- (valueChange)="onIntervalChange($event)">
3903
+ (valueChange)="onIntervalChange($event)"
3904
+ >
3905
+ <kendo-numerictextbox-messages
3906
+ [increment]="textFor('recurrenceEditorNumericIncrement')"
3907
+ [decrement]="textFor('recurrenceEditorNumericDecrement')"
3908
+ >
3909
+ </kendo-numerictextbox-messages>
3812
3910
  </kendo-numerictextbox>
3813
3911
  <span>&nbsp;{{ textForFrequency() }}</span>
3814
3912
  </div>
3815
3913
  </div>
3816
3914
  `
3817
3915
  }]
3818
- }], ctorParameters: function () { return [{ type: RecurrenceService }, { type: i1$1.LocalizationService }]; }, propDecorators: { cssClass: [{
3916
+ }], ctorParameters: function () { return [{ type: RecurrenceService }, { type: SchedulerLocalizationService }]; }, propDecorators: { cssClass: [{
3819
3917
  type: HostBinding,
3820
3918
  args: ['class.k-scheduler-recurrence-interval-editor']
3821
3919
  }], userNumericOptions: [{
@@ -4219,7 +4317,7 @@ class RecurrenceMonthlyYearlyEditorComponent {
4219
4317
  }
4220
4318
  }
4221
4319
  }
4222
- RecurrenceMonthlyYearlyEditorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RecurrenceMonthlyYearlyEditorComponent, deps: [{ token: RecurrenceService }, { token: i1$1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
4320
+ RecurrenceMonthlyYearlyEditorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RecurrenceMonthlyYearlyEditorComponent, deps: [{ token: RecurrenceService }, { token: SchedulerLocalizationService }], target: i0.ɵɵFactoryTarget.Component });
4223
4321
  RecurrenceMonthlyYearlyEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: RecurrenceMonthlyYearlyEditorComponent, selector: "kendo-recurrence-monthly-yearly-editor", inputs: { userNumericOptions: "userNumericOptions" }, viewQueries: [{ propertyName: "repeatOnRadioButtons", predicate: RepeatOnRadioButtonDirective, descendants: true }], ngImport: i0, template: `
4224
4322
  <div class='k-form-field'>
4225
4323
  <kendo-label
@@ -4267,7 +4365,13 @@ RecurrenceMonthlyYearlyEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVe
4267
4365
  [title]="numericOptions.title"
4268
4366
  [value]='monthDay'
4269
4367
  (valueChange)='onMonthDayChange($event)'
4270
- [disabled]="isDisabled('monthday')">
4368
+ [disabled]="isDisabled('monthday')"
4369
+ >
4370
+ <kendo-numerictextbox-messages
4371
+ [increment]="textFor('recurrenceEditorNumericIncrement')"
4372
+ [decrement]="textFor('recurrenceEditorNumericDecrement')"
4373
+ >
4374
+ </kendo-numerictextbox-messages>
4271
4375
  </kendo-numerictextbox>
4272
4376
  </li>
4273
4377
  <li class='k-radio-list-item'>
@@ -4316,7 +4420,7 @@ RecurrenceMonthlyYearlyEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVe
4316
4420
  </ul>
4317
4421
  </div>
4318
4422
  </div>
4319
- `, isInline: true, components: [{ type: i3.LabelComponent, selector: "kendo-label", inputs: ["text", "for", "optional", "labelCssStyle", "labelCssClass"], exportAs: ["kendoLabel"] }, { type: i1$3.DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["customIconClass", "showStickyHeader", "icon", "svgIcon", "loading", "data", "value", "textField", "valueField", "adaptiveMode", "title", "subtitle", "popupSettings", "listHeight", "defaultItem", "disabled", "itemDisabled", "readonly", "filterable", "virtual", "ignoreCase", "delay", "valuePrimitive", "tabindex", "tabIndex", "size", "rounded", "fillMode", "leftRightArrowsNavigation", "id"], outputs: ["valueChange", "filterChange", "selectionChange", "open", "opened", "close", "closed", "focus", "blur"], exportAs: ["kendoDropDownList"] }, { type: i5.NumericTextBoxComponent, selector: "kendo-numerictextbox", inputs: ["focusableId", "disabled", "readonly", "title", "autoCorrect", "format", "max", "min", "decimals", "placeholder", "step", "spinners", "rangeValidation", "tabindex", "tabIndex", "changeValueOnScroll", "selectOnFocus", "value", "maxlength", "size", "rounded", "fillMode"], outputs: ["valueChange", "focus", "blur"], exportAs: ["kendoNumericTextBox"] }], directives: [{ type: RepeatOnRadioButtonDirective, selector: "[kendoRecurrenceRepeatOnRadioButton]", inputs: ["kendoRecurrenceRepeatOnRadioButton"] }, { type: i3.LabelDirective, selector: "label[for]", inputs: ["for", "labelClass"] }, { type: i11.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
4423
+ `, isInline: true, components: [{ type: i3.LabelComponent, selector: "kendo-label", inputs: ["text", "for", "optional", "labelCssStyle", "labelCssClass"], exportAs: ["kendoLabel"] }, { type: i1$3.DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["customIconClass", "showStickyHeader", "icon", "svgIcon", "loading", "data", "value", "textField", "valueField", "adaptiveMode", "title", "subtitle", "popupSettings", "listHeight", "defaultItem", "disabled", "itemDisabled", "readonly", "filterable", "virtual", "ignoreCase", "delay", "valuePrimitive", "tabindex", "tabIndex", "size", "rounded", "fillMode", "leftRightArrowsNavigation", "id"], outputs: ["valueChange", "filterChange", "selectionChange", "open", "opened", "close", "closed", "focus", "blur"], exportAs: ["kendoDropDownList"] }, { type: i5.NumericTextBoxComponent, selector: "kendo-numerictextbox", inputs: ["focusableId", "disabled", "readonly", "title", "autoCorrect", "format", "max", "min", "decimals", "placeholder", "step", "spinners", "rangeValidation", "tabindex", "tabIndex", "changeValueOnScroll", "selectOnFocus", "value", "maxlength", "size", "rounded", "fillMode"], outputs: ["valueChange", "focus", "blur", "inputFocus", "inputBlur"], exportAs: ["kendoNumericTextBox"] }, { type: i5.NumericTextBoxCustomMessagesComponent, selector: "kendo-numerictextbox-messages" }], directives: [{ type: RepeatOnRadioButtonDirective, selector: "[kendoRecurrenceRepeatOnRadioButton]", inputs: ["kendoRecurrenceRepeatOnRadioButton"] }, { type: i3.LabelDirective, selector: "label[for]", inputs: ["for", "labelClass"] }, { type: i11.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
4320
4424
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RecurrenceMonthlyYearlyEditorComponent, decorators: [{
4321
4425
  type: Component,
4322
4426
  args: [{
@@ -4368,7 +4472,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
4368
4472
  [title]="numericOptions.title"
4369
4473
  [value]='monthDay'
4370
4474
  (valueChange)='onMonthDayChange($event)'
4371
- [disabled]="isDisabled('monthday')">
4475
+ [disabled]="isDisabled('monthday')"
4476
+ >
4477
+ <kendo-numerictextbox-messages
4478
+ [increment]="textFor('recurrenceEditorNumericIncrement')"
4479
+ [decrement]="textFor('recurrenceEditorNumericDecrement')"
4480
+ >
4481
+ </kendo-numerictextbox-messages>
4372
4482
  </kendo-numerictextbox>
4373
4483
  </li>
4374
4484
  <li class='k-radio-list-item'>
@@ -4419,7 +4529,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
4419
4529
  </div>
4420
4530
  `
4421
4531
  }]
4422
- }], ctorParameters: function () { return [{ type: RecurrenceService }, { type: i1$1.LocalizationService }]; }, propDecorators: { userNumericOptions: [{
4532
+ }], ctorParameters: function () { return [{ type: RecurrenceService }, { type: SchedulerLocalizationService }]; }, propDecorators: { userNumericOptions: [{
4423
4533
  type: Input
4424
4534
  }], repeatOnRadioButtons: [{
4425
4535
  type: ViewChildren,
@@ -4594,7 +4704,7 @@ class RecurrenceEndRuleEditorComponent {
4594
4704
  return ZonedDate.fromUTCDate(untilDate, this.recurrence.timezone).toLocalDate();
4595
4705
  }
4596
4706
  }
4597
- RecurrenceEndRuleEditorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RecurrenceEndRuleEditorComponent, deps: [{ token: RecurrenceService }, { token: i1$1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
4707
+ RecurrenceEndRuleEditorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RecurrenceEndRuleEditorComponent, deps: [{ token: RecurrenceService }, { token: SchedulerLocalizationService }], target: i0.ɵɵFactoryTarget.Component });
4598
4708
  RecurrenceEndRuleEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: RecurrenceEndRuleEditorComponent, selector: "kendo-recurrence-end-rule-editor", inputs: { userNumericOptions: "userNumericOptions", userDatePickerOptions: "userDatePickerOptions" }, host: { properties: { "class.k-scheduler-recurrence-end-rule-editor": "this.cssClass" } }, viewQueries: [{ propertyName: "endRuleRadioButtons", predicate: EndRuleRadioButtonDirective, descendants: true }], ngImport: i0, template: `
4599
4709
  <div class="k-form-field">
4600
4710
  <kendo-label
@@ -4632,7 +4742,13 @@ RecurrenceEndRuleEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion:
4632
4742
  [title]="numericOptions.title"
4633
4743
  [(value)]='countValue'
4634
4744
  (blur)="onCountBlur()"
4635
- (valueChange)='onCountChange($event)'>
4745
+ (valueChange)='onCountChange($event)'
4746
+ >
4747
+ <kendo-numerictextbox-messages
4748
+ [increment]="textFor('recurrenceEditorNumericIncrement')"
4749
+ [decrement]="textFor('recurrenceEditorNumericDecrement')"
4750
+ >
4751
+ </kendo-numerictextbox-messages>
4636
4752
  </kendo-numerictextbox>
4637
4753
  <span>{{ textFor('endOccurrence') }}</span>
4638
4754
  </li>
@@ -4664,13 +4780,20 @@ RecurrenceEndRuleEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion:
4664
4780
  [popupSettings]="datePickerOptions.popupSettings"
4665
4781
  [(value)]='untilValue'
4666
4782
  (blur)="onUntilBlur()"
4667
- (valueChange)='onUntilChange($event)'>
4783
+ (valueChange)='onUntilChange($event)'
4784
+ >
4785
+ <kendo-datepicker-messages
4786
+ [today]="textFor('editorDateInputsToday')"
4787
+ [toggle]="textFor('editorDateInputsToggle')"
4788
+ [parentViewButtonTitle]="textFor('editorDateInputsParentViewButton')"
4789
+ >
4790
+ </kendo-datepicker-messages>
4668
4791
  </kendo-datepicker>
4669
4792
  </li>
4670
4793
  </ul>
4671
4794
  </div>
4672
4795
  </div>
4673
- `, isInline: true, components: [{ type: i3.LabelComponent, selector: "kendo-label", inputs: ["text", "for", "optional", "labelCssStyle", "labelCssClass"], exportAs: ["kendoLabel"] }, { type: i5.NumericTextBoxComponent, selector: "kendo-numerictextbox", inputs: ["focusableId", "disabled", "readonly", "title", "autoCorrect", "format", "max", "min", "decimals", "placeholder", "step", "spinners", "rangeValidation", "tabindex", "tabIndex", "changeValueOnScroll", "selectOnFocus", "value", "maxlength", "size", "rounded", "fillMode"], outputs: ["valueChange", "focus", "blur"], exportAs: ["kendoNumericTextBox"] }, { type: i6.DatePickerComponent, selector: "kendo-datepicker", inputs: ["focusableId", "cellTemplate", "monthCellTemplate", "yearCellTemplate", "decadeCellTemplate", "centuryCellTemplate", "weekNumberTemplate", "headerTitleTemplate", "navigationItemTemplate", "activeView", "bottomView", "topView", "calendarType", "animateCalendarNavigation", "disabled", "readonly", "readOnlyInput", "popupSettings", "navigation", "min", "max", "incompleteDateValidation", "autoCorrectParts", "autoSwitchParts", "autoSwitchKeys", "enableMouseWheel", "allowCaretMode", "autoFill", "focusedDate", "value", "format", "twoDigitYearMax", "formatPlaceholder", "placeholder", "tabindex", "tabIndex", "disabledDates", "title", "subtitle", "rangeValidation", "disabledDatesValidation", "weekNumber", "size", "rounded", "fillMode", "adaptiveMode"], outputs: ["valueChange", "focus", "blur", "open", "close"], exportAs: ["kendo-datepicker"] }], directives: [{ type: EndRuleRadioButtonDirective, selector: "[kendoRecurrenceEndRuleRadioButton]", inputs: ["kendoRecurrenceEndRuleRadioButton"] }, { type: i3.LabelDirective, selector: "label[for]", inputs: ["for", "labelClass"] }] });
4796
+ `, isInline: true, components: [{ type: i3.LabelComponent, selector: "kendo-label", inputs: ["text", "for", "optional", "labelCssStyle", "labelCssClass"], exportAs: ["kendoLabel"] }, { type: i5.NumericTextBoxComponent, selector: "kendo-numerictextbox", inputs: ["focusableId", "disabled", "readonly", "title", "autoCorrect", "format", "max", "min", "decimals", "placeholder", "step", "spinners", "rangeValidation", "tabindex", "tabIndex", "changeValueOnScroll", "selectOnFocus", "value", "maxlength", "size", "rounded", "fillMode"], outputs: ["valueChange", "focus", "blur", "inputFocus", "inputBlur"], exportAs: ["kendoNumericTextBox"] }, { type: i5.NumericTextBoxCustomMessagesComponent, selector: "kendo-numerictextbox-messages" }, { type: i2.DatePickerComponent, selector: "kendo-datepicker", inputs: ["focusableId", "cellTemplate", "monthCellTemplate", "yearCellTemplate", "decadeCellTemplate", "centuryCellTemplate", "weekNumberTemplate", "headerTitleTemplate", "navigationItemTemplate", "activeView", "bottomView", "topView", "calendarType", "animateCalendarNavigation", "disabled", "readonly", "readOnlyInput", "popupSettings", "navigation", "min", "max", "incompleteDateValidation", "autoCorrectParts", "autoSwitchParts", "autoSwitchKeys", "enableMouseWheel", "allowCaretMode", "autoFill", "focusedDate", "value", "format", "twoDigitYearMax", "formatPlaceholder", "placeholder", "tabindex", "tabIndex", "disabledDates", "title", "subtitle", "rangeValidation", "disabledDatesValidation", "weekNumber", "size", "rounded", "fillMode", "adaptiveMode"], outputs: ["valueChange", "focus", "blur", "open", "close"], exportAs: ["kendo-datepicker"] }, { type: i2.DatePickerCustomMessagesComponent, selector: "kendo-datepicker-messages" }], directives: [{ type: EndRuleRadioButtonDirective, selector: "[kendoRecurrenceEndRuleRadioButton]", inputs: ["kendoRecurrenceEndRuleRadioButton"] }, { type: i3.LabelDirective, selector: "label[for]", inputs: ["for", "labelClass"] }] });
4674
4797
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RecurrenceEndRuleEditorComponent, decorators: [{
4675
4798
  type: Component,
4676
4799
  args: [{
@@ -4712,7 +4835,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
4712
4835
  [title]="numericOptions.title"
4713
4836
  [(value)]='countValue'
4714
4837
  (blur)="onCountBlur()"
4715
- (valueChange)='onCountChange($event)'>
4838
+ (valueChange)='onCountChange($event)'
4839
+ >
4840
+ <kendo-numerictextbox-messages
4841
+ [increment]="textFor('recurrenceEditorNumericIncrement')"
4842
+ [decrement]="textFor('recurrenceEditorNumericDecrement')"
4843
+ >
4844
+ </kendo-numerictextbox-messages>
4716
4845
  </kendo-numerictextbox>
4717
4846
  <span>{{ textFor('endOccurrence') }}</span>
4718
4847
  </li>
@@ -4744,7 +4873,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
4744
4873
  [popupSettings]="datePickerOptions.popupSettings"
4745
4874
  [(value)]='untilValue'
4746
4875
  (blur)="onUntilBlur()"
4747
- (valueChange)='onUntilChange($event)'>
4876
+ (valueChange)='onUntilChange($event)'
4877
+ >
4878
+ <kendo-datepicker-messages
4879
+ [today]="textFor('editorDateInputsToday')"
4880
+ [toggle]="textFor('editorDateInputsToggle')"
4881
+ [parentViewButtonTitle]="textFor('editorDateInputsParentViewButton')"
4882
+ >
4883
+ </kendo-datepicker-messages>
4748
4884
  </kendo-datepicker>
4749
4885
  </li>
4750
4886
  </ul>
@@ -4752,7 +4888,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
4752
4888
  </div>
4753
4889
  `
4754
4890
  }]
4755
- }], ctorParameters: function () { return [{ type: RecurrenceService }, { type: i1$1.LocalizationService }]; }, propDecorators: { cssClass: [{
4891
+ }], ctorParameters: function () { return [{ type: RecurrenceService }, { type: SchedulerLocalizationService }]; }, propDecorators: { cssClass: [{
4756
4892
  type: HostBinding,
4757
4893
  args: ['class.k-scheduler-recurrence-end-rule-editor']
4758
4894
  }], userNumericOptions: [{
@@ -5875,7 +6011,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
5875
6011
  class Messages extends ComponentMessages {
5876
6012
  }
5877
6013
  Messages.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: Messages, deps: null, target: i0.ɵɵFactoryTarget.Directive });
5878
- Messages.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: Messages, inputs: { allEvents: "allEvents", allDay: "allDay", dateHeader: "dateHeader", timeHeader: "timeHeader", eventHeader: "eventHeader", deleteTitle: "deleteTitle", nextTitle: "nextTitle", previousTitle: "previousTitle", today: "today", calendarToday: "calendarToday", showFullDay: "showFullDay", showWorkDay: "showWorkDay", dayViewTitle: "dayViewTitle", multiDayViewTitle: "multiDayViewTitle", weekViewTitle: "weekViewTitle", workWeekViewTitle: "workWeekViewTitle", monthViewTitle: "monthViewTitle", multiWeekViewTitle: "multiWeekViewTitle", timelineViewTitle: "timelineViewTitle", timelineWeekViewTitle: "timelineWeekViewTitle", timelineMonthViewTitle: "timelineMonthViewTitle", agendaViewTitle: "agendaViewTitle", cancel: "cancel", save: "save", editorEventTitle: "editorEventTitle", editorEventStart: "editorEventStart", editorEventStartTimeZone: "editorEventStartTimeZone", editorEventEnd: "editorEventEnd", editorEventEndTimeZone: "editorEventEndTimeZone", editorEventAllDay: "editorEventAllDay", editorEventDescription: "editorEventDescription", editorEventSeparateTimeZones: "editorEventSeparateTimeZones", editorEventTimeZone: "editorEventTimeZone", recurrenceEditorRepeat: "recurrenceEditorRepeat", recurrenceEditorDailyInterval: "recurrenceEditorDailyInterval", recurrenceEditorDailyRepeatEvery: "recurrenceEditorDailyRepeatEvery", recurrenceEditorWeeklyInterval: "recurrenceEditorWeeklyInterval", recurrenceEditorWeeklyRepeatEvery: "recurrenceEditorWeeklyRepeatEvery", recurrenceEditorWeeklyRepeatOn: "recurrenceEditorWeeklyRepeatOn", recurrenceEditorMonthlyDay: "recurrenceEditorMonthlyDay", recurrenceEditorMonthlyInterval: "recurrenceEditorMonthlyInterval", recurrenceEditorMonthlyRepeatEvery: "recurrenceEditorMonthlyRepeatEvery", recurrenceEditorMonthlyRepeatOn: "recurrenceEditorMonthlyRepeatOn", recurrenceEditorYearlyOf: "recurrenceEditorYearlyOf", recurrenceEditorYearlyRepeatEvery: "recurrenceEditorYearlyRepeatEvery", recurrenceEditorYearlyRepeatOn: "recurrenceEditorYearlyRepeatOn", recurrenceEditorYearlyInterval: "recurrenceEditorYearlyInterval", recurrenceEditorFrequenciesDaily: "recurrenceEditorFrequenciesDaily", recurrenceEditorFrequenciesMonthly: "recurrenceEditorFrequenciesMonthly", recurrenceEditorFrequenciesNever: "recurrenceEditorFrequenciesNever", recurrenceEditorFrequenciesWeekly: "recurrenceEditorFrequenciesWeekly", recurrenceEditorFrequenciesYearly: "recurrenceEditorFrequenciesYearly", recurrenceEditorOffsetPositionsFirst: "recurrenceEditorOffsetPositionsFirst", recurrenceEditorOffsetPositionsSecond: "recurrenceEditorOffsetPositionsSecond", recurrenceEditorOffsetPositionsThird: "recurrenceEditorOffsetPositionsThird", recurrenceEditorOffsetPositionsFourth: "recurrenceEditorOffsetPositionsFourth", recurrenceEditorOffsetPositionsLast: "recurrenceEditorOffsetPositionsLast", recurrenceEditorWeekdaysDay: "recurrenceEditorWeekdaysDay", recurrenceEditorWeekdaysWeekday: "recurrenceEditorWeekdaysWeekday", recurrenceEditorWeekdaysWeekendday: "recurrenceEditorWeekdaysWeekendday", recurrenceEditorEndAfter: "recurrenceEditorEndAfter", recurrenceEditorEndOccurrence: "recurrenceEditorEndOccurrence", recurrenceEditorEndLabel: "recurrenceEditorEndLabel", recurrenceEditorEndNever: "recurrenceEditorEndNever", recurrenceEditorEndOn: "recurrenceEditorEndOn", editorTitle: "editorTitle", destroy: "destroy", deleteConfirmation: "deleteConfirmation", editRecurringConfirmation: "editRecurringConfirmation", editOccurrence: "editOccurrence", editSeries: "editSeries", deleteRecurringConfirmation: "deleteRecurringConfirmation", deleteOccurrence: "deleteOccurrence", deleteSeries: "deleteSeries", deleteDialogTitle: "deleteDialogTitle", deleteRecurringDialogTitle: "deleteRecurringDialogTitle", editRecurringDialogTitle: "editRecurringDialogTitle", selectView: "selectView" }, usesInheritance: true, ngImport: i0 });
6014
+ Messages.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: Messages, inputs: { allEvents: "allEvents", allDay: "allDay", dateHeader: "dateHeader", timeHeader: "timeHeader", eventHeader: "eventHeader", deleteTitle: "deleteTitle", nextTitle: "nextTitle", previousTitle: "previousTitle", today: "today", calendarToday: "calendarToday", showFullDay: "showFullDay", showWorkDay: "showWorkDay", dayViewTitle: "dayViewTitle", multiDayViewTitle: "multiDayViewTitle", weekViewTitle: "weekViewTitle", workWeekViewTitle: "workWeekViewTitle", monthViewTitle: "monthViewTitle", multiWeekViewTitle: "multiWeekViewTitle", timelineViewTitle: "timelineViewTitle", timelineWeekViewTitle: "timelineWeekViewTitle", timelineMonthViewTitle: "timelineMonthViewTitle", agendaViewTitle: "agendaViewTitle", yearViewTitle: "yearViewTitle", yearViewNoEvents: "yearViewNoEvents", cancel: "cancel", save: "save", editorEventTitle: "editorEventTitle", editorEventStart: "editorEventStart", editorEventStartTimeZone: "editorEventStartTimeZone", editorEventEnd: "editorEventEnd", editorEventEndTimeZone: "editorEventEndTimeZone", editorEventAllDay: "editorEventAllDay", editorEventDescription: "editorEventDescription", editorEventSeparateTimeZones: "editorEventSeparateTimeZones", editorEventTimeZone: "editorEventTimeZone", editorDateInputsToday: "editorDateInputsToday", editorDateInputsToggle: "editorDateInputsToggle", editorDateInputsParentViewButton: "editorDateInputsParentViewButton", editorDateInputsNow: "editorDateInputsNow", editorDateInputsNowLabel: "editorDateInputsNowLabel", editorDateInputsAccept: "editorDateInputsAccept", editorDateInputsAcceptLabel: "editorDateInputsAcceptLabel", editorDateInputsCancel: "editorDateInputsCancel", editorDateInputsCancelLabel: "editorDateInputsCancelLabel", editorDateInputsDateTab: "editorDateInputsDateTab", editorDateInputsDateTabLabel: "editorDateInputsDateTabLabel", editorDateInputsTimeTab: "editorDateInputsTimeTab", editorDateInputsTimeTabLabel: "editorDateInputsTimeTabLabel", recurrenceEditorNumericIncrement: "recurrenceEditorNumericIncrement", recurrenceEditorNumericDecrement: "recurrenceEditorNumericDecrement", recurrenceEditorRepeat: "recurrenceEditorRepeat", recurrenceEditorDailyInterval: "recurrenceEditorDailyInterval", recurrenceEditorDailyRepeatEvery: "recurrenceEditorDailyRepeatEvery", recurrenceEditorWeeklyInterval: "recurrenceEditorWeeklyInterval", recurrenceEditorWeeklyRepeatEvery: "recurrenceEditorWeeklyRepeatEvery", recurrenceEditorWeeklyRepeatOn: "recurrenceEditorWeeklyRepeatOn", recurrenceEditorMonthlyDay: "recurrenceEditorMonthlyDay", recurrenceEditorMonthlyInterval: "recurrenceEditorMonthlyInterval", recurrenceEditorMonthlyRepeatEvery: "recurrenceEditorMonthlyRepeatEvery", recurrenceEditorMonthlyRepeatOn: "recurrenceEditorMonthlyRepeatOn", recurrenceEditorYearlyOf: "recurrenceEditorYearlyOf", recurrenceEditorYearlyRepeatEvery: "recurrenceEditorYearlyRepeatEvery", recurrenceEditorYearlyRepeatOn: "recurrenceEditorYearlyRepeatOn", recurrenceEditorYearlyInterval: "recurrenceEditorYearlyInterval", recurrenceEditorFrequenciesDaily: "recurrenceEditorFrequenciesDaily", recurrenceEditorFrequenciesMonthly: "recurrenceEditorFrequenciesMonthly", recurrenceEditorFrequenciesNever: "recurrenceEditorFrequenciesNever", recurrenceEditorFrequenciesWeekly: "recurrenceEditorFrequenciesWeekly", recurrenceEditorFrequenciesYearly: "recurrenceEditorFrequenciesYearly", recurrenceEditorOffsetPositionsFirst: "recurrenceEditorOffsetPositionsFirst", recurrenceEditorOffsetPositionsSecond: "recurrenceEditorOffsetPositionsSecond", recurrenceEditorOffsetPositionsThird: "recurrenceEditorOffsetPositionsThird", recurrenceEditorOffsetPositionsFourth: "recurrenceEditorOffsetPositionsFourth", recurrenceEditorOffsetPositionsLast: "recurrenceEditorOffsetPositionsLast", recurrenceEditorWeekdaysDay: "recurrenceEditorWeekdaysDay", recurrenceEditorWeekdaysWeekday: "recurrenceEditorWeekdaysWeekday", recurrenceEditorWeekdaysWeekendday: "recurrenceEditorWeekdaysWeekendday", recurrenceEditorEndAfter: "recurrenceEditorEndAfter", recurrenceEditorEndOccurrence: "recurrenceEditorEndOccurrence", recurrenceEditorEndLabel: "recurrenceEditorEndLabel", recurrenceEditorEndNever: "recurrenceEditorEndNever", recurrenceEditorEndOn: "recurrenceEditorEndOn", editorTitle: "editorTitle", destroy: "destroy", deleteConfirmation: "deleteConfirmation", editRecurringConfirmation: "editRecurringConfirmation", editOccurrence: "editOccurrence", editSeries: "editSeries", deleteRecurringConfirmation: "deleteRecurringConfirmation", deleteOccurrence: "deleteOccurrence", deleteSeries: "deleteSeries", deleteDialogTitle: "deleteDialogTitle", deleteRecurringDialogTitle: "deleteRecurringDialogTitle", editRecurringDialogTitle: "editRecurringDialogTitle", selectView: "selectView" }, usesInheritance: true, ngImport: i0 });
5879
6015
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: Messages, decorators: [{
5880
6016
  type: Directive
5881
6017
  }], propDecorators: { allEvents: [{
@@ -5922,6 +6058,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
5922
6058
  type: Input
5923
6059
  }], agendaViewTitle: [{
5924
6060
  type: Input
6061
+ }], yearViewTitle: [{
6062
+ type: Input
6063
+ }], yearViewNoEvents: [{
6064
+ type: Input
5925
6065
  }], cancel: [{
5926
6066
  type: Input
5927
6067
  }], save: [{
@@ -5944,6 +6084,36 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
5944
6084
  type: Input
5945
6085
  }], editorEventTimeZone: [{
5946
6086
  type: Input
6087
+ }], editorDateInputsToday: [{
6088
+ type: Input
6089
+ }], editorDateInputsToggle: [{
6090
+ type: Input
6091
+ }], editorDateInputsParentViewButton: [{
6092
+ type: Input
6093
+ }], editorDateInputsNow: [{
6094
+ type: Input
6095
+ }], editorDateInputsNowLabel: [{
6096
+ type: Input
6097
+ }], editorDateInputsAccept: [{
6098
+ type: Input
6099
+ }], editorDateInputsAcceptLabel: [{
6100
+ type: Input
6101
+ }], editorDateInputsCancel: [{
6102
+ type: Input
6103
+ }], editorDateInputsCancelLabel: [{
6104
+ type: Input
6105
+ }], editorDateInputsDateTab: [{
6106
+ type: Input
6107
+ }], editorDateInputsDateTabLabel: [{
6108
+ type: Input
6109
+ }], editorDateInputsTimeTab: [{
6110
+ type: Input
6111
+ }], editorDateInputsTimeTabLabel: [{
6112
+ type: Input
6113
+ }], recurrenceEditorNumericIncrement: [{
6114
+ type: Input
6115
+ }], recurrenceEditorNumericDecrement: [{
6116
+ type: Input
5947
6117
  }], recurrenceEditorRepeat: [{
5948
6118
  type: Input
5949
6119
  }], recurrenceEditorDailyInterval: [{
@@ -6964,112 +7134,163 @@ SchedulerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ver
6964
7134
  i18n-agendaViewTitle="kendo.scheduler.agendaViewTitle|The agenda view title."
6965
7135
  agendaViewTitle="Agenda"
6966
7136
 
6967
- i18n-cancel="kendo.scheduler.cancel|The text similar to 'Cancel' displayed in scheduler."
7137
+ i18n-yearViewTitle="kendo.scheduler.yearViewTitle|The year view title."
7138
+ yearViewTitle="Year"
7139
+
7140
+ i18n-yearViewNoEvents="kendo.scheduler.yearViewNoEvents|The year view no events message."
7141
+ yearViewNoEvents="No events on this date."
7142
+
7143
+ i18n-cancel="kendo.scheduler.cancel|The text similar to 'Cancel' displayed in the Scheduler."
6968
7144
  cancel="Cancel"
6969
7145
 
6970
- i18n-save="kendo.scheduler.save|The text similar to 'Save' displayed in scheduler."
7146
+ i18n-save="kendo.scheduler.save|The text similar to 'Save' displayed in the Scheduler."
6971
7147
  save="Save"
6972
7148
 
6973
- i18n-editorEventTitle="kendo.scheduler.editorEventTitle|The text similar to 'Title' displayed in the scheduler event editor."
7149
+ i18n-editorEventTitle="kendo.scheduler.editorEventTitle|The text similar to 'Title' displayed in the Scheduler event editor."
6974
7150
  editorEventTitle='Title'
6975
7151
 
6976
- i18n-editorEventStart="kendo.scheduler.editorEventStart|The text similar to 'Start' displayed in the scheduler event editor."
7152
+ i18n-editorEventStart="kendo.scheduler.editorEventStart|The text similar to 'Start' displayed in the Scheduler event editor."
6977
7153
  editorEventStart="Start"
6978
7154
 
6979
- i18n-editorEventStartTimeZone="kendo.scheduler.editorEventStartTimeZone|The text similar to 'Start Time Zone' displayed in the scheduler event editor."
7155
+ i18n-editorEventStartTimeZone="kendo.scheduler.editorEventStartTimeZone|The text similar to 'Start Time Zone' displayed in the Scheduler event editor."
6980
7156
  editorEventStartTimeZone="Start Time Zone"
6981
7157
 
6982
- i18n-editorEventEnd="kendo.scheduler.editorEventEnd|The text similar to 'End' displayed in the scheduler event editor."
7158
+ i18n-editorEventEnd="kendo.scheduler.editorEventEnd|The text similar to 'End' displayed in the Scheduler event editor."
6983
7159
  editorEventEnd="End"
6984
7160
 
6985
- i18n-editorEventEndTimeZone="kendo.scheduler.editorEventEndTimeZone|The text similar to 'End Time Zone' displayed in the scheduler event editor."
7161
+ i18n-editorEventEndTimeZone="kendo.scheduler.editorEventEndTimeZone|The text similar to 'End Time Zone' displayed in the Scheduler event editor."
6986
7162
  editorEventEndTimeZone="End Time Zone"
6987
7163
 
6988
- i18n-editorEventAllDay="kendo.scheduler.editorEventAllDay|The text similar to 'All Day event' displayed in the scheduler event editor."
7164
+ i18n-editorEventAllDay="kendo.scheduler.editorEventAllDay|The text similar to 'All Day event' displayed in the Scheduler event editor."
6989
7165
  editorEventAllDay="All Day Event"
6990
7166
 
6991
- i18n-editorEventDescription="kendo.scheduler.editorEventDescription|The text similar to 'Description' displayed in the scheduler event editor."
7167
+ i18n-editorEventDescription="kendo.scheduler.editorEventDescription|The text similar to 'Description' displayed in the Scheduler event editor."
6992
7168
  editorEventDescription="Description"
6993
7169
 
6994
- i18n-editorEventSeparateTimeZones="kendo.scheduler.editorEventSeparateTimeZones|The text similar to 'Use separate Start and End Time Zones' displayed in the scheduler event editor."
7170
+ i18n-editorEventSeparateTimeZones="kendo.scheduler.editorEventSeparateTimeZones|The text similar to 'Use separate Start and End Time Zones' displayed in the Scheduler event editor."
6995
7171
  editorEventSeparateTimeZones="End in different Time Zone"
6996
7172
 
6997
- i18n-editorEventTimeZone="kendo.scheduler.editorEventTimeZone|The text similar to 'Time Zone' displayed in the scheduler event editor."
7173
+ i18n-editorEventTimeZone="kendo.scheduler.editorEventTimeZone|The text similar to 'Time Zone' displayed in the Scheduler event editor."
6998
7174
  editorEventTimeZone='Specify Time Zone'
6999
7175
 
7000
- i18n-editorTitle="kendo.scheduler.editorTitle|The text similar to 'Event' displayed as title of the scheduler event editor."
7176
+ i18n-editorTitle="kendo.scheduler.editorTitle|The text similar to 'Event' displayed as title of the Scheduler event editor."
7001
7177
  editorTitle='Event'
7002
7178
 
7003
- i18n-recurrenceEditorRepeat="kendo.scheduler.recurrenceEditorRepeat|The text similar to 'Repeat' displayed in the scheduler recurrence editor."
7179
+ i18n-editorDateInputsToday="kendo.scheduler.editorDateInputsToday|The Today button text in the popup of the DateTimePickers and DatePickers in the Scheduler event editor."
7180
+ editorDateInputsToday='Today'
7181
+
7182
+ i18n-editorDateInputsToggle="kendo.scheduler.editorDateInputsToggle|The title of the Toggle button of the DateTimePickers and DatePickers in the Scheduler event editor."
7183
+ editorDateInputsToggle='Toggle calendar'
7184
+
7185
+ i18n-editorDateInputsParentViewButton="kendo.scheduler.editorDateInputsParentViewButton|The title of the Parent View button in the popup of the DateTimePickers and DatePickers in the Scheduler event editor."
7186
+ editorDateInputsParentViewButton='Navigate to parent view'
7187
+
7188
+ i18n-editorDateInputsNow="kendo.scheduler.editorDateInputsAccept|The text of the Now button in the popup footer of the DateTimePickers and DatePickers in the Scheduler event editor."
7189
+ editorDateInputsAccept='Now'
7190
+
7191
+ i18n-editorDateInputsNowLabel="kendo.scheduler.editorDateInputsAcceptLabel|The label of the Now button in the popup footer of the DateTimePickers and DatePickers in the Scheduler event editor."
7192
+ editorDateInputsAcceptLabel='Select now'
7193
+
7194
+ i18n-editorDateInputsAccept="kendo.scheduler.editorDateInputsAccept|The text of the Accept button in the popup footer of the DateTimePickers and DatePickers in the Scheduler event editor."
7195
+ editorDateInputsAccept='Set'
7196
+
7197
+ i18n-editorDateInputsAcceptLabel="kendo.scheduler.editorDateInputsAcceptLabel|The label of the Accept button in the popup footer of the DateTimePickers and DatePickers in the Scheduler event editor."
7198
+ editorDateInputsAcceptLabel='Set'
7199
+
7200
+ i18n-editorDateInputsCancel="kendo.scheduler.editorDateInputsCancel|The text of the Cancel button in the popup footer of the DateTimePickers and DatePickers in the Scheduler event editor."
7201
+ editorDateInputsCancel='Cancel'
7202
+
7203
+ i18n-editorDateInputsCancelLabel="kendo.scheduler.editorDateInputsCancelLabel|The label of the Cancel button in the popup footer of the DateTimePickers and DatePickers in the Scheduler event editor."
7204
+ editorDateInputsCancelLabel='Cancel'
7205
+
7206
+ i18n-editorDateInputsDateTab="kendo.scheduler.editorDateInputsDateTab|The text of the Date tab in the popup header of the DateTimePickers and DatePickers in the Scheduler event editor."
7207
+ editorDateInputsDateTab='Date'
7208
+
7209
+ i18n-editorDateInputsDateTabLabel="kendo.scheduler.editorDateInputsDateTabLabel|The label of the Date tab in the popup header of the DateTimePickers and DatePickers in the Scheduler event editor."
7210
+ editorDateInputsDateTabLabel='Date tab'
7211
+
7212
+ i18n-editorDateInputsTimeTab="kendo.scheduler.editorDateInputsTimeTab|The text of the Time tab in the popup header of the DateTimePickers and DatePickers in the Scheduler event editor."
7213
+ editorDateInputsTimeTab='Time'
7214
+
7215
+ i18n-editorDateInputsTimeTabLabel="kendo.scheduler.editorDateInputsTimeTabLabel|The label of the Time tab in the popup header of the DateTimePickers and DatePickers in the Scheduler event editor."
7216
+ editorDateInputsTimeTabLabel='Time tab'
7217
+
7218
+ i18n-recurrenceEditorNumericIncrement="kendo.scheduler.editorNumericIncrement|The title of the Increment button of the NumericTextBox in the Scheduler recurrence editor."
7219
+ recurrenceEditorNumericIncrement='Increase value'
7220
+
7221
+ i18n-recurrenceEditorNumericDecrement="kendo.scheduler.editorNumericDecrement|The title of the Decrement button of the NumericTextBox in the Scheduler recurrence editor."
7222
+ recurrenceEditorNumericDecrement='Decrease value'
7223
+
7224
+ i18n-recurrenceEditorRepeat="kendo.scheduler.recurrenceEditorRepeat|The text similar to 'Repeat' displayed in the Scheduler recurrence editor."
7004
7225
  recurrenceEditorRepeat='Repeat'
7005
7226
 
7006
- i18n-recurrenceEditorDailyInterval="kendo.scheduler.recurrenceEditorDailyInterval|The text similar to 'day(s)' displayed in the scheduler recurrence editor."
7227
+ i18n-recurrenceEditorDailyInterval="kendo.scheduler.recurrenceEditorDailyInterval|The text similar to 'day(s)' displayed in the Scheduler recurrence editor."
7007
7228
  recurrenceEditorDailyInterval='day(s)'
7008
7229
 
7009
- i18n-recurrenceEditorDailyRepeatEvery="kendo.scheduler.recurrenceEditorDailyRepeatEvery|The text similar to 'Repeat every' displayed in the scheduler recurrence editor."
7230
+ i18n-recurrenceEditorDailyRepeatEvery="kendo.scheduler.recurrenceEditorDailyRepeatEvery|The text similar to 'Repeat every' displayed in the Scheduler recurrence editor."
7010
7231
  recurrenceEditorDailyRepeatEvery='Repeat every'
7011
7232
 
7012
- i18n-recurrenceEditorWeeklyInterval="kendo.scheduler.recurrenceEditorWeeklyInterval|The text similar to 'week(s)' displayed in the scheduler recurrence editor."
7233
+ i18n-recurrenceEditorWeeklyInterval="kendo.scheduler.recurrenceEditorWeeklyInterval|The text similar to 'week(s)' displayed in the Scheduler recurrence editor."
7013
7234
  recurrenceEditorWeeklyInterval='week(s)'
7014
7235
 
7015
- i18n-recurrenceEditorWeeklyRepeatEvery="kendo.scheduler.recurrenceEditorWeeklyRepeatEvery|The text similar to 'Repeat every' displayed in the scheduler recurrence editor."
7236
+ i18n-recurrenceEditorWeeklyRepeatEvery="kendo.scheduler.recurrenceEditorWeeklyRepeatEvery|The text similar to 'Repeat every' displayed in the Scheduler recurrence editor."
7016
7237
  recurrenceEditorWeeklyRepeatEvery='Repeat every'
7017
7238
 
7018
- i18n-recurrenceEditorWeeklyRepeatOn="kendo.scheduler.recurrenceEditorWeeklyRepeatOn|The text similar to 'Repeat on' displayed in the scheduler recurrence editor."
7239
+ i18n-recurrenceEditorWeeklyRepeatOn="kendo.scheduler.recurrenceEditorWeeklyRepeatOn|The text similar to 'Repeat on' displayed in the Scheduler recurrence editor."
7019
7240
  recurrenceEditorWeeklyRepeatOn='Repeat on'
7020
7241
 
7021
- i18n-recurrenceEditorMonthlyDay="kendo.scheduler.recurrenceEditorMonthlyDay|The text similar to 'Day' displayed in the scheduler recurrence editor."
7242
+ i18n-recurrenceEditorMonthlyDay="kendo.scheduler.recurrenceEditorMonthlyDay|The text similar to 'Day' displayed in the Scheduler recurrence editor."
7022
7243
  recurrenceEditorMonthlyDay='Day'
7023
7244
 
7024
- i18n-recurrenceEditorMonthlyInterval="kendo.scheduler.recurrenceEditorMonthlyInterval|The text similar to 'month(s)' displayed in the scheduler recurrence editor."
7245
+ i18n-recurrenceEditorMonthlyInterval="kendo.scheduler.recurrenceEditorMonthlyInterval|The text similar to 'month(s)' displayed in the Scheduler recurrence editor."
7025
7246
  recurrenceEditorMonthlyInterval='month(s)'
7026
7247
 
7027
- i18n-recurrenceEditorMonthlyRepeatEvery="kendo.scheduler.recurrenceEditorMonthlyRepeatEvery|The text similar to 'Repeat every' displayed in the scheduler recurrence editor."
7248
+ i18n-recurrenceEditorMonthlyRepeatEvery="kendo.scheduler.recurrenceEditorMonthlyRepeatEvery|The text similar to 'Repeat every' displayed in the Scheduler recurrence editor."
7028
7249
  recurrenceEditorMonthlyRepeatEvery='Repeat every'
7029
7250
 
7030
- i18n-recurrenceEditorMonthlyRepeatOn="kendo.scheduler.recurrenceEditorMonthlyRepeatOn|The text similar to 'Repeat on' displayed in the scheduler recurrence editor."
7251
+ i18n-recurrenceEditorMonthlyRepeatOn="kendo.scheduler.recurrenceEditorMonthlyRepeatOn|The text similar to 'Repeat on' displayed in the Scheduler recurrence editor."
7031
7252
  recurrenceEditorMonthlyRepeatOn='Repeat on'
7032
7253
 
7033
- i18n-recurrenceEditorYearlyOf="kendo.scheduler.recurrenceEditorYearlyOf|The text similar to 'of' displayed in the scheduler recurrence editor."
7254
+ i18n-recurrenceEditorYearlyOf="kendo.scheduler.recurrenceEditorYearlyOf|The text similar to 'of' displayed in the Scheduler recurrence editor."
7034
7255
  recurrenceEditorYearlyOf='of'
7035
7256
 
7036
- i18n-recurrenceEditorYearlyRepeatEvery="kendo.scheduler.recurrenceEditorYearlyRepeatEvery|The text similar to 'Repeat every' displayed in the scheduler recurrence editor."
7257
+ i18n-recurrenceEditorYearlyRepeatEvery="kendo.scheduler.recurrenceEditorYearlyRepeatEvery|The text similar to 'Repeat every' displayed in the Scheduler recurrence editor."
7037
7258
  recurrenceEditorYearlyRepeatEvery='Repeat every'
7038
7259
 
7039
- i18n-recurrenceEditorYearlyRepeatOn="kendo.scheduler.recurrenceEditorYearlyRepeatOn|The text similar to 'Repeat on' displayed in the scheduler recurrence editor."
7260
+ i18n-recurrenceEditorYearlyRepeatOn="kendo.scheduler.recurrenceEditorYearlyRepeatOn|The text similar to 'Repeat on' displayed in the Scheduler recurrence editor."
7040
7261
  recurrenceEditorYearlyRepeatOn='Repeat on'
7041
7262
 
7042
- i18n-recurrenceEditorYearlyInterval="kendo.scheduler.recurrenceEditorYearlyInterval|The text similar to 'year(s)' displayed in the scheduler recurrence editor."
7263
+ i18n-recurrenceEditorYearlyInterval="kendo.scheduler.recurrenceEditorYearlyInterval|The text similar to 'year(s)' displayed in the Scheduler recurrence editor."
7043
7264
  recurrenceEditorYearlyInterval='year(s)'
7044
7265
 
7045
- i18n-recurrenceEditorFrequenciesDaily="kendo.scheduler.recurrenceEditorFrequenciesDaily|The text similar to 'Daily' displayed in the scheduler recurrence editor."
7266
+ i18n-recurrenceEditorFrequenciesDaily="kendo.scheduler.recurrenceEditorFrequenciesDaily|The text similar to 'Daily' displayed in the Scheduler recurrence editor."
7046
7267
  recurrenceEditorFrequenciesDaily='Daily'
7047
7268
 
7048
- i18n-recurrenceEditorFrequenciesMonthly="kendo.scheduler.recurrenceEditorFrequenciesMonthly|The text similar to 'Monthly' displayed in the scheduler recurrence editor."
7269
+ i18n-recurrenceEditorFrequenciesMonthly="kendo.scheduler.recurrenceEditorFrequenciesMonthly|The text similar to 'Monthly' displayed in the Scheduler recurrence editor."
7049
7270
  recurrenceEditorFrequenciesMonthly='Monthly'
7050
7271
 
7051
- i18n-recurrenceEditorFrequenciesNever="kendo.scheduler.recurrenceEditorFrequenciesNever|The text similar to 'Never' displayed in the scheduler recurrence editor."
7272
+ i18n-recurrenceEditorFrequenciesNever="kendo.scheduler.recurrenceEditorFrequenciesNever|The text similar to 'Never' displayed in the Scheduler recurrence editor."
7052
7273
  recurrenceEditorFrequenciesNever='Never'
7053
7274
 
7054
- i18n-recurrenceEditorFrequenciesWeekly="kendo.scheduler.recurrenceEditorFrequenciesWeekly|The text similar to 'Weekly' displayed in the scheduler recurrence editor."
7275
+ i18n-recurrenceEditorFrequenciesWeekly="kendo.scheduler.recurrenceEditorFrequenciesWeekly|The text similar to 'Weekly' displayed in the Scheduler recurrence editor."
7055
7276
  recurrenceEditorFrequenciesWeekly='Weekly'
7056
7277
 
7057
- i18n-recurrenceEditorFrequenciesYearly="kendo.scheduler.recurrenceEditorFrequenciesYearly|The text similar to 'Yearly' displayed in the scheduler recurrence editor."
7278
+ i18n-recurrenceEditorFrequenciesYearly="kendo.scheduler.recurrenceEditorFrequenciesYearly|The text similar to 'Yearly' displayed in the Scheduler recurrence editor."
7058
7279
  recurrenceEditorFrequenciesYearly='Yearly'
7059
7280
 
7060
- i18n-recurrenceEditorOffsetPositionsFirst="kendo.scheduler.recurrenceEditorOffsetPositionsFirst|The text similar to 'First' displayed in the scheduler recurrence editor."
7281
+ i18n-recurrenceEditorOffsetPositionsFirst="kendo.scheduler.recurrenceEditorOffsetPositionsFirst|The text similar to 'First' displayed in the Scheduler recurrence editor."
7061
7282
  recurrenceEditorOffsetPositionsFirst='First'
7062
7283
 
7063
- i18n-recurrenceEditorOffsetPositionsSecond="kendo.scheduler.recurrenceEditorOffsetPositionsSecond|The text similar to 'Second' displayed in the scheduler recurrence editor."
7284
+ i18n-recurrenceEditorOffsetPositionsSecond="kendo.scheduler.recurrenceEditorOffsetPositionsSecond|The text similar to 'Second' displayed in the Scheduler recurrence editor."
7064
7285
  recurrenceEditorOffsetPositionsSecond='Second'
7065
7286
 
7066
- i18n-recurrenceEditorOffsetPositionsThird="kendo.scheduler.recurrenceEditorOffsetPositionsThird|The text similar to 'Third' displayed in the scheduler recurrence editor."
7287
+ i18n-recurrenceEditorOffsetPositionsThird="kendo.scheduler.recurrenceEditorOffsetPositionsThird|The text similar to 'Third' displayed in the Scheduler recurrence editor."
7067
7288
  recurrenceEditorOffsetPositionsThird='Third'
7068
7289
 
7069
- i18n-recurrenceEditorOffsetPositionsFourth="kendo.scheduler.recurrenceEditorOffsetPositionsFourth|The text similar to 'Fourth' displayed in the scheduler recurrence editor."
7290
+ i18n-recurrenceEditorOffsetPositionsFourth="kendo.scheduler.recurrenceEditorOffsetPositionsFourth|The text similar to 'Fourth' displayed in the Scheduler recurrence editor."
7070
7291
  recurrenceEditorOffsetPositionsFourth='Fourth'
7071
7292
 
7072
- i18n-recurrenceEditorOffsetPositionsLast="kendo.scheduler.recurrenceEditorOffsetPositionsLast|The text similar to 'Last' displayed in the scheduler recurrence editor."
7293
+ i18n-recurrenceEditorOffsetPositionsLast="kendo.scheduler.recurrenceEditorOffsetPositionsLast|The text similar to 'Last' displayed in the Scheduler recurrence editor."
7073
7294
  recurrenceEditorOffsetPositionsLast='Last'
7074
7295
 
7075
7296
  i18n-recurrenceEditorWeekdaysDay="kendo.scheduler.recurrenceEditorWeekdaysDay|The text similar to 'Day' displayed in the repeat by section of the monthly recurrence pattern."
@@ -7081,43 +7302,43 @@ SchedulerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ver
7081
7302
  i18n-recurrenceEditorWeekdaysWeekendday="kendo.scheduler.recurrenceEditorWeekdaysWeekendday|The text similar to 'Weekend Day' displayed in the repeat by section of the monthly recurrence pattern."
7082
7303
  recurrenceEditorWeekdaysWeekendday='Weekend Day'
7083
7304
 
7084
- i18n-recurrenceEditorEndAfter="kendo.scheduler.recurrenceEditorEndAfter|The text similar to 'After' displayed in the scheduler recurrence editor."
7305
+ i18n-recurrenceEditorEndAfter="kendo.scheduler.recurrenceEditorEndAfter|The text similar to 'After' displayed in the Scheduler recurrence editor."
7085
7306
  recurrenceEditorEndAfter='After'
7086
7307
 
7087
- i18n-recurrenceEditorEndOccurrence="kendo.scheduler.recurrenceEditorEndOccurrence|The text similar to 'occurrence(s)' displayed in the scheduler recurrence editor."
7308
+ i18n-recurrenceEditorEndOccurrence="kendo.scheduler.recurrenceEditorEndOccurrence|The text similar to 'occurrence(s)' displayed in the Scheduler recurrence editor."
7088
7309
  recurrenceEditorEndOccurrence='occurrence(s)'
7089
7310
 
7090
- i18n-recurrenceEditorEndLabel="kendo.scheduler.recurrenceEditorEndLabel|The text similar to 'End' displayed in the scheduler recurrence editor."
7311
+ i18n-recurrenceEditorEndLabel="kendo.scheduler.recurrenceEditorEndLabel|The text similar to 'End' displayed in the Scheduler recurrence editor."
7091
7312
  recurrenceEditorEndLabel='End'
7092
7313
 
7093
- i18n-recurrenceEditorEndNever="kendo.scheduler.recurrenceEditorEndNever|The text similar to 'Never' displayed in the scheduler recurrence editor."
7314
+ i18n-recurrenceEditorEndNever="kendo.scheduler.recurrenceEditorEndNever|The text similar to 'Never' displayed in the Scheduler recurrence editor."
7094
7315
  recurrenceEditorEndNever='Never'
7095
7316
 
7096
- i18n-recurrenceEditorEndOn="kendo.scheduler.recurrenceEditorEndOn|The text similar to 'On' displayed in the scheduler recurrence editor."
7317
+ i18n-recurrenceEditorEndOn="kendo.scheduler.recurrenceEditorEndOn|The text similar to 'On' displayed in the Scheduler recurrence editor."
7097
7318
  recurrenceEditorEndOn='On'
7098
7319
 
7099
- i18n-destroy="kendo.scheduler.destroy|The text of the 'Delete' button displayed in the scheduler remove confirmation dialog."
7320
+ i18n-destroy="kendo.scheduler.destroy|The text of the 'Delete' button displayed in the Scheduler remove confirmation dialog."
7100
7321
  destroy='Delete'
7101
7322
 
7102
- i18n-deleteConfirmation="kendo.scheduler.deleteConfirmation|The text similar to 'Are you sure you want to delete this event?' displayed in scheduler remove confirmation dialog."
7323
+ i18n-deleteConfirmation="kendo.scheduler.deleteConfirmation|The text similar to 'Are you sure you want to delete this event?' displayed in Scheduler remove confirmation dialog."
7103
7324
  deleteConfirmation='Are you sure you want to delete this event?'
7104
7325
 
7105
- i18n-editRecurringConfirmation="kendo.scheduler.editRecurringConfirmation|The text similar to 'Do you want to edit only this event occurrence or the whole series?' displayed in the scheduler recurring confirmation dialog."
7326
+ i18n-editRecurringConfirmation="kendo.scheduler.editRecurringConfirmation|The text similar to 'Do you want to edit only this event occurrence or the whole series?' displayed in the Scheduler recurring confirmation dialog."
7106
7327
  editRecurringConfirmation='Do you want to edit only this event occurrence or the whole series?'
7107
7328
 
7108
- i18n-editOccurrence="kendo.scheduler.editOccurrence|The text of the 'Edit current occurrence' button displayed in the scheduler recurring confirmation dialog."
7329
+ i18n-editOccurrence="kendo.scheduler.editOccurrence|The text of the 'Edit current occurrence' button displayed in the Scheduler recurring confirmation dialog."
7109
7330
  editOccurrence='Edit current occurrence'
7110
7331
 
7111
- i18n-editSeries="kendo.scheduler.editSeries|The text of the 'Edit the series' button displayed in the scheduler recurring confirmation dialog."
7332
+ i18n-editSeries="kendo.scheduler.editSeries|The text of the 'Edit the series' button displayed in the Scheduler recurring confirmation dialog."
7112
7333
  editSeries='Edit the series'
7113
7334
 
7114
- i18n-deleteRecurringConfirmation="kendo.scheduler.deleteRecurringConfirmation|The text similar to 'Do you want to delete only this event occurrence or the whole series?' displayed in the scheduler recurring confirmation dialog."
7335
+ i18n-deleteRecurringConfirmation="kendo.scheduler.deleteRecurringConfirmation|The text similar to 'Do you want to delete only this event occurrence or the whole series?' displayed in the Scheduler recurring confirmation dialog."
7115
7336
  deleteRecurringConfirmation='Do you want to delete only this event occurrence or the whole series?'
7116
7337
 
7117
- i18n-deleteOccurrence="kendo.scheduler.deleteOccurrence|The text of the 'Delete current occurrence' button displayed in the scheduler recurring confirmation dialog."
7338
+ i18n-deleteOccurrence="kendo.scheduler.deleteOccurrence|The text of the 'Delete current occurrence' button displayed in the Scheduler recurring confirmation dialog."
7118
7339
  deleteOccurrence='Delete current occurrence'
7119
7340
 
7120
- i18n-deleteSeries="kendo.scheduler.deleteSeries|The text similar of the 'Delete the series' button displayed in the scheduler recurring confirmation dialog."
7341
+ i18n-deleteSeries="kendo.scheduler.deleteSeries|The text similar of the 'Delete the series' button displayed in the Scheduler recurring confirmation dialog."
7121
7342
  deleteSeries='Delete the series'
7122
7343
 
7123
7344
  i18n-deleteDialogTitle="kendo.scheduler.deleteDialogTitle|The title of the remove confirmation dialog, similar to 'Delete Event'."
@@ -7260,112 +7481,163 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
7260
7481
  i18n-agendaViewTitle="kendo.scheduler.agendaViewTitle|The agenda view title."
7261
7482
  agendaViewTitle="Agenda"
7262
7483
 
7263
- i18n-cancel="kendo.scheduler.cancel|The text similar to 'Cancel' displayed in scheduler."
7484
+ i18n-yearViewTitle="kendo.scheduler.yearViewTitle|The year view title."
7485
+ yearViewTitle="Year"
7486
+
7487
+ i18n-yearViewNoEvents="kendo.scheduler.yearViewNoEvents|The year view no events message."
7488
+ yearViewNoEvents="No events on this date."
7489
+
7490
+ i18n-cancel="kendo.scheduler.cancel|The text similar to 'Cancel' displayed in the Scheduler."
7264
7491
  cancel="Cancel"
7265
7492
 
7266
- i18n-save="kendo.scheduler.save|The text similar to 'Save' displayed in scheduler."
7493
+ i18n-save="kendo.scheduler.save|The text similar to 'Save' displayed in the Scheduler."
7267
7494
  save="Save"
7268
7495
 
7269
- i18n-editorEventTitle="kendo.scheduler.editorEventTitle|The text similar to 'Title' displayed in the scheduler event editor."
7496
+ i18n-editorEventTitle="kendo.scheduler.editorEventTitle|The text similar to 'Title' displayed in the Scheduler event editor."
7270
7497
  editorEventTitle='Title'
7271
7498
 
7272
- i18n-editorEventStart="kendo.scheduler.editorEventStart|The text similar to 'Start' displayed in the scheduler event editor."
7499
+ i18n-editorEventStart="kendo.scheduler.editorEventStart|The text similar to 'Start' displayed in the Scheduler event editor."
7273
7500
  editorEventStart="Start"
7274
7501
 
7275
- i18n-editorEventStartTimeZone="kendo.scheduler.editorEventStartTimeZone|The text similar to 'Start Time Zone' displayed in the scheduler event editor."
7502
+ i18n-editorEventStartTimeZone="kendo.scheduler.editorEventStartTimeZone|The text similar to 'Start Time Zone' displayed in the Scheduler event editor."
7276
7503
  editorEventStartTimeZone="Start Time Zone"
7277
7504
 
7278
- i18n-editorEventEnd="kendo.scheduler.editorEventEnd|The text similar to 'End' displayed in the scheduler event editor."
7505
+ i18n-editorEventEnd="kendo.scheduler.editorEventEnd|The text similar to 'End' displayed in the Scheduler event editor."
7279
7506
  editorEventEnd="End"
7280
7507
 
7281
- i18n-editorEventEndTimeZone="kendo.scheduler.editorEventEndTimeZone|The text similar to 'End Time Zone' displayed in the scheduler event editor."
7508
+ i18n-editorEventEndTimeZone="kendo.scheduler.editorEventEndTimeZone|The text similar to 'End Time Zone' displayed in the Scheduler event editor."
7282
7509
  editorEventEndTimeZone="End Time Zone"
7283
7510
 
7284
- i18n-editorEventAllDay="kendo.scheduler.editorEventAllDay|The text similar to 'All Day event' displayed in the scheduler event editor."
7511
+ i18n-editorEventAllDay="kendo.scheduler.editorEventAllDay|The text similar to 'All Day event' displayed in the Scheduler event editor."
7285
7512
  editorEventAllDay="All Day Event"
7286
7513
 
7287
- i18n-editorEventDescription="kendo.scheduler.editorEventDescription|The text similar to 'Description' displayed in the scheduler event editor."
7514
+ i18n-editorEventDescription="kendo.scheduler.editorEventDescription|The text similar to 'Description' displayed in the Scheduler event editor."
7288
7515
  editorEventDescription="Description"
7289
7516
 
7290
- i18n-editorEventSeparateTimeZones="kendo.scheduler.editorEventSeparateTimeZones|The text similar to 'Use separate Start and End Time Zones' displayed in the scheduler event editor."
7517
+ i18n-editorEventSeparateTimeZones="kendo.scheduler.editorEventSeparateTimeZones|The text similar to 'Use separate Start and End Time Zones' displayed in the Scheduler event editor."
7291
7518
  editorEventSeparateTimeZones="End in different Time Zone"
7292
7519
 
7293
- i18n-editorEventTimeZone="kendo.scheduler.editorEventTimeZone|The text similar to 'Time Zone' displayed in the scheduler event editor."
7520
+ i18n-editorEventTimeZone="kendo.scheduler.editorEventTimeZone|The text similar to 'Time Zone' displayed in the Scheduler event editor."
7294
7521
  editorEventTimeZone='Specify Time Zone'
7295
7522
 
7296
- i18n-editorTitle="kendo.scheduler.editorTitle|The text similar to 'Event' displayed as title of the scheduler event editor."
7523
+ i18n-editorTitle="kendo.scheduler.editorTitle|The text similar to 'Event' displayed as title of the Scheduler event editor."
7297
7524
  editorTitle='Event'
7298
7525
 
7299
- i18n-recurrenceEditorRepeat="kendo.scheduler.recurrenceEditorRepeat|The text similar to 'Repeat' displayed in the scheduler recurrence editor."
7526
+ i18n-editorDateInputsToday="kendo.scheduler.editorDateInputsToday|The Today button text in the popup of the DateTimePickers and DatePickers in the Scheduler event editor."
7527
+ editorDateInputsToday='Today'
7528
+
7529
+ i18n-editorDateInputsToggle="kendo.scheduler.editorDateInputsToggle|The title of the Toggle button of the DateTimePickers and DatePickers in the Scheduler event editor."
7530
+ editorDateInputsToggle='Toggle calendar'
7531
+
7532
+ i18n-editorDateInputsParentViewButton="kendo.scheduler.editorDateInputsParentViewButton|The title of the Parent View button in the popup of the DateTimePickers and DatePickers in the Scheduler event editor."
7533
+ editorDateInputsParentViewButton='Navigate to parent view'
7534
+
7535
+ i18n-editorDateInputsNow="kendo.scheduler.editorDateInputsAccept|The text of the Now button in the popup footer of the DateTimePickers and DatePickers in the Scheduler event editor."
7536
+ editorDateInputsAccept='Now'
7537
+
7538
+ i18n-editorDateInputsNowLabel="kendo.scheduler.editorDateInputsAcceptLabel|The label of the Now button in the popup footer of the DateTimePickers and DatePickers in the Scheduler event editor."
7539
+ editorDateInputsAcceptLabel='Select now'
7540
+
7541
+ i18n-editorDateInputsAccept="kendo.scheduler.editorDateInputsAccept|The text of the Accept button in the popup footer of the DateTimePickers and DatePickers in the Scheduler event editor."
7542
+ editorDateInputsAccept='Set'
7543
+
7544
+ i18n-editorDateInputsAcceptLabel="kendo.scheduler.editorDateInputsAcceptLabel|The label of the Accept button in the popup footer of the DateTimePickers and DatePickers in the Scheduler event editor."
7545
+ editorDateInputsAcceptLabel='Set'
7546
+
7547
+ i18n-editorDateInputsCancel="kendo.scheduler.editorDateInputsCancel|The text of the Cancel button in the popup footer of the DateTimePickers and DatePickers in the Scheduler event editor."
7548
+ editorDateInputsCancel='Cancel'
7549
+
7550
+ i18n-editorDateInputsCancelLabel="kendo.scheduler.editorDateInputsCancelLabel|The label of the Cancel button in the popup footer of the DateTimePickers and DatePickers in the Scheduler event editor."
7551
+ editorDateInputsCancelLabel='Cancel'
7552
+
7553
+ i18n-editorDateInputsDateTab="kendo.scheduler.editorDateInputsDateTab|The text of the Date tab in the popup header of the DateTimePickers and DatePickers in the Scheduler event editor."
7554
+ editorDateInputsDateTab='Date'
7555
+
7556
+ i18n-editorDateInputsDateTabLabel="kendo.scheduler.editorDateInputsDateTabLabel|The label of the Date tab in the popup header of the DateTimePickers and DatePickers in the Scheduler event editor."
7557
+ editorDateInputsDateTabLabel='Date tab'
7558
+
7559
+ i18n-editorDateInputsTimeTab="kendo.scheduler.editorDateInputsTimeTab|The text of the Time tab in the popup header of the DateTimePickers and DatePickers in the Scheduler event editor."
7560
+ editorDateInputsTimeTab='Time'
7561
+
7562
+ i18n-editorDateInputsTimeTabLabel="kendo.scheduler.editorDateInputsTimeTabLabel|The label of the Time tab in the popup header of the DateTimePickers and DatePickers in the Scheduler event editor."
7563
+ editorDateInputsTimeTabLabel='Time tab'
7564
+
7565
+ i18n-recurrenceEditorNumericIncrement="kendo.scheduler.editorNumericIncrement|The title of the Increment button of the NumericTextBox in the Scheduler recurrence editor."
7566
+ recurrenceEditorNumericIncrement='Increase value'
7567
+
7568
+ i18n-recurrenceEditorNumericDecrement="kendo.scheduler.editorNumericDecrement|The title of the Decrement button of the NumericTextBox in the Scheduler recurrence editor."
7569
+ recurrenceEditorNumericDecrement='Decrease value'
7570
+
7571
+ i18n-recurrenceEditorRepeat="kendo.scheduler.recurrenceEditorRepeat|The text similar to 'Repeat' displayed in the Scheduler recurrence editor."
7300
7572
  recurrenceEditorRepeat='Repeat'
7301
7573
 
7302
- i18n-recurrenceEditorDailyInterval="kendo.scheduler.recurrenceEditorDailyInterval|The text similar to 'day(s)' displayed in the scheduler recurrence editor."
7574
+ i18n-recurrenceEditorDailyInterval="kendo.scheduler.recurrenceEditorDailyInterval|The text similar to 'day(s)' displayed in the Scheduler recurrence editor."
7303
7575
  recurrenceEditorDailyInterval='day(s)'
7304
7576
 
7305
- i18n-recurrenceEditorDailyRepeatEvery="kendo.scheduler.recurrenceEditorDailyRepeatEvery|The text similar to 'Repeat every' displayed in the scheduler recurrence editor."
7577
+ i18n-recurrenceEditorDailyRepeatEvery="kendo.scheduler.recurrenceEditorDailyRepeatEvery|The text similar to 'Repeat every' displayed in the Scheduler recurrence editor."
7306
7578
  recurrenceEditorDailyRepeatEvery='Repeat every'
7307
7579
 
7308
- i18n-recurrenceEditorWeeklyInterval="kendo.scheduler.recurrenceEditorWeeklyInterval|The text similar to 'week(s)' displayed in the scheduler recurrence editor."
7580
+ i18n-recurrenceEditorWeeklyInterval="kendo.scheduler.recurrenceEditorWeeklyInterval|The text similar to 'week(s)' displayed in the Scheduler recurrence editor."
7309
7581
  recurrenceEditorWeeklyInterval='week(s)'
7310
7582
 
7311
- i18n-recurrenceEditorWeeklyRepeatEvery="kendo.scheduler.recurrenceEditorWeeklyRepeatEvery|The text similar to 'Repeat every' displayed in the scheduler recurrence editor."
7583
+ i18n-recurrenceEditorWeeklyRepeatEvery="kendo.scheduler.recurrenceEditorWeeklyRepeatEvery|The text similar to 'Repeat every' displayed in the Scheduler recurrence editor."
7312
7584
  recurrenceEditorWeeklyRepeatEvery='Repeat every'
7313
7585
 
7314
- i18n-recurrenceEditorWeeklyRepeatOn="kendo.scheduler.recurrenceEditorWeeklyRepeatOn|The text similar to 'Repeat on' displayed in the scheduler recurrence editor."
7586
+ i18n-recurrenceEditorWeeklyRepeatOn="kendo.scheduler.recurrenceEditorWeeklyRepeatOn|The text similar to 'Repeat on' displayed in the Scheduler recurrence editor."
7315
7587
  recurrenceEditorWeeklyRepeatOn='Repeat on'
7316
7588
 
7317
- i18n-recurrenceEditorMonthlyDay="kendo.scheduler.recurrenceEditorMonthlyDay|The text similar to 'Day' displayed in the scheduler recurrence editor."
7589
+ i18n-recurrenceEditorMonthlyDay="kendo.scheduler.recurrenceEditorMonthlyDay|The text similar to 'Day' displayed in the Scheduler recurrence editor."
7318
7590
  recurrenceEditorMonthlyDay='Day'
7319
7591
 
7320
- i18n-recurrenceEditorMonthlyInterval="kendo.scheduler.recurrenceEditorMonthlyInterval|The text similar to 'month(s)' displayed in the scheduler recurrence editor."
7592
+ i18n-recurrenceEditorMonthlyInterval="kendo.scheduler.recurrenceEditorMonthlyInterval|The text similar to 'month(s)' displayed in the Scheduler recurrence editor."
7321
7593
  recurrenceEditorMonthlyInterval='month(s)'
7322
7594
 
7323
- i18n-recurrenceEditorMonthlyRepeatEvery="kendo.scheduler.recurrenceEditorMonthlyRepeatEvery|The text similar to 'Repeat every' displayed in the scheduler recurrence editor."
7595
+ i18n-recurrenceEditorMonthlyRepeatEvery="kendo.scheduler.recurrenceEditorMonthlyRepeatEvery|The text similar to 'Repeat every' displayed in the Scheduler recurrence editor."
7324
7596
  recurrenceEditorMonthlyRepeatEvery='Repeat every'
7325
7597
 
7326
- i18n-recurrenceEditorMonthlyRepeatOn="kendo.scheduler.recurrenceEditorMonthlyRepeatOn|The text similar to 'Repeat on' displayed in the scheduler recurrence editor."
7598
+ i18n-recurrenceEditorMonthlyRepeatOn="kendo.scheduler.recurrenceEditorMonthlyRepeatOn|The text similar to 'Repeat on' displayed in the Scheduler recurrence editor."
7327
7599
  recurrenceEditorMonthlyRepeatOn='Repeat on'
7328
7600
 
7329
- i18n-recurrenceEditorYearlyOf="kendo.scheduler.recurrenceEditorYearlyOf|The text similar to 'of' displayed in the scheduler recurrence editor."
7601
+ i18n-recurrenceEditorYearlyOf="kendo.scheduler.recurrenceEditorYearlyOf|The text similar to 'of' displayed in the Scheduler recurrence editor."
7330
7602
  recurrenceEditorYearlyOf='of'
7331
7603
 
7332
- i18n-recurrenceEditorYearlyRepeatEvery="kendo.scheduler.recurrenceEditorYearlyRepeatEvery|The text similar to 'Repeat every' displayed in the scheduler recurrence editor."
7604
+ i18n-recurrenceEditorYearlyRepeatEvery="kendo.scheduler.recurrenceEditorYearlyRepeatEvery|The text similar to 'Repeat every' displayed in the Scheduler recurrence editor."
7333
7605
  recurrenceEditorYearlyRepeatEvery='Repeat every'
7334
7606
 
7335
- i18n-recurrenceEditorYearlyRepeatOn="kendo.scheduler.recurrenceEditorYearlyRepeatOn|The text similar to 'Repeat on' displayed in the scheduler recurrence editor."
7607
+ i18n-recurrenceEditorYearlyRepeatOn="kendo.scheduler.recurrenceEditorYearlyRepeatOn|The text similar to 'Repeat on' displayed in the Scheduler recurrence editor."
7336
7608
  recurrenceEditorYearlyRepeatOn='Repeat on'
7337
7609
 
7338
- i18n-recurrenceEditorYearlyInterval="kendo.scheduler.recurrenceEditorYearlyInterval|The text similar to 'year(s)' displayed in the scheduler recurrence editor."
7610
+ i18n-recurrenceEditorYearlyInterval="kendo.scheduler.recurrenceEditorYearlyInterval|The text similar to 'year(s)' displayed in the Scheduler recurrence editor."
7339
7611
  recurrenceEditorYearlyInterval='year(s)'
7340
7612
 
7341
- i18n-recurrenceEditorFrequenciesDaily="kendo.scheduler.recurrenceEditorFrequenciesDaily|The text similar to 'Daily' displayed in the scheduler recurrence editor."
7613
+ i18n-recurrenceEditorFrequenciesDaily="kendo.scheduler.recurrenceEditorFrequenciesDaily|The text similar to 'Daily' displayed in the Scheduler recurrence editor."
7342
7614
  recurrenceEditorFrequenciesDaily='Daily'
7343
7615
 
7344
- i18n-recurrenceEditorFrequenciesMonthly="kendo.scheduler.recurrenceEditorFrequenciesMonthly|The text similar to 'Monthly' displayed in the scheduler recurrence editor."
7616
+ i18n-recurrenceEditorFrequenciesMonthly="kendo.scheduler.recurrenceEditorFrequenciesMonthly|The text similar to 'Monthly' displayed in the Scheduler recurrence editor."
7345
7617
  recurrenceEditorFrequenciesMonthly='Monthly'
7346
7618
 
7347
- i18n-recurrenceEditorFrequenciesNever="kendo.scheduler.recurrenceEditorFrequenciesNever|The text similar to 'Never' displayed in the scheduler recurrence editor."
7619
+ i18n-recurrenceEditorFrequenciesNever="kendo.scheduler.recurrenceEditorFrequenciesNever|The text similar to 'Never' displayed in the Scheduler recurrence editor."
7348
7620
  recurrenceEditorFrequenciesNever='Never'
7349
7621
 
7350
- i18n-recurrenceEditorFrequenciesWeekly="kendo.scheduler.recurrenceEditorFrequenciesWeekly|The text similar to 'Weekly' displayed in the scheduler recurrence editor."
7622
+ i18n-recurrenceEditorFrequenciesWeekly="kendo.scheduler.recurrenceEditorFrequenciesWeekly|The text similar to 'Weekly' displayed in the Scheduler recurrence editor."
7351
7623
  recurrenceEditorFrequenciesWeekly='Weekly'
7352
7624
 
7353
- i18n-recurrenceEditorFrequenciesYearly="kendo.scheduler.recurrenceEditorFrequenciesYearly|The text similar to 'Yearly' displayed in the scheduler recurrence editor."
7625
+ i18n-recurrenceEditorFrequenciesYearly="kendo.scheduler.recurrenceEditorFrequenciesYearly|The text similar to 'Yearly' displayed in the Scheduler recurrence editor."
7354
7626
  recurrenceEditorFrequenciesYearly='Yearly'
7355
7627
 
7356
- i18n-recurrenceEditorOffsetPositionsFirst="kendo.scheduler.recurrenceEditorOffsetPositionsFirst|The text similar to 'First' displayed in the scheduler recurrence editor."
7628
+ i18n-recurrenceEditorOffsetPositionsFirst="kendo.scheduler.recurrenceEditorOffsetPositionsFirst|The text similar to 'First' displayed in the Scheduler recurrence editor."
7357
7629
  recurrenceEditorOffsetPositionsFirst='First'
7358
7630
 
7359
- i18n-recurrenceEditorOffsetPositionsSecond="kendo.scheduler.recurrenceEditorOffsetPositionsSecond|The text similar to 'Second' displayed in the scheduler recurrence editor."
7631
+ i18n-recurrenceEditorOffsetPositionsSecond="kendo.scheduler.recurrenceEditorOffsetPositionsSecond|The text similar to 'Second' displayed in the Scheduler recurrence editor."
7360
7632
  recurrenceEditorOffsetPositionsSecond='Second'
7361
7633
 
7362
- i18n-recurrenceEditorOffsetPositionsThird="kendo.scheduler.recurrenceEditorOffsetPositionsThird|The text similar to 'Third' displayed in the scheduler recurrence editor."
7634
+ i18n-recurrenceEditorOffsetPositionsThird="kendo.scheduler.recurrenceEditorOffsetPositionsThird|The text similar to 'Third' displayed in the Scheduler recurrence editor."
7363
7635
  recurrenceEditorOffsetPositionsThird='Third'
7364
7636
 
7365
- i18n-recurrenceEditorOffsetPositionsFourth="kendo.scheduler.recurrenceEditorOffsetPositionsFourth|The text similar to 'Fourth' displayed in the scheduler recurrence editor."
7637
+ i18n-recurrenceEditorOffsetPositionsFourth="kendo.scheduler.recurrenceEditorOffsetPositionsFourth|The text similar to 'Fourth' displayed in the Scheduler recurrence editor."
7366
7638
  recurrenceEditorOffsetPositionsFourth='Fourth'
7367
7639
 
7368
- i18n-recurrenceEditorOffsetPositionsLast="kendo.scheduler.recurrenceEditorOffsetPositionsLast|The text similar to 'Last' displayed in the scheduler recurrence editor."
7640
+ i18n-recurrenceEditorOffsetPositionsLast="kendo.scheduler.recurrenceEditorOffsetPositionsLast|The text similar to 'Last' displayed in the Scheduler recurrence editor."
7369
7641
  recurrenceEditorOffsetPositionsLast='Last'
7370
7642
 
7371
7643
  i18n-recurrenceEditorWeekdaysDay="kendo.scheduler.recurrenceEditorWeekdaysDay|The text similar to 'Day' displayed in the repeat by section of the monthly recurrence pattern."
@@ -7377,43 +7649,43 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
7377
7649
  i18n-recurrenceEditorWeekdaysWeekendday="kendo.scheduler.recurrenceEditorWeekdaysWeekendday|The text similar to 'Weekend Day' displayed in the repeat by section of the monthly recurrence pattern."
7378
7650
  recurrenceEditorWeekdaysWeekendday='Weekend Day'
7379
7651
 
7380
- i18n-recurrenceEditorEndAfter="kendo.scheduler.recurrenceEditorEndAfter|The text similar to 'After' displayed in the scheduler recurrence editor."
7652
+ i18n-recurrenceEditorEndAfter="kendo.scheduler.recurrenceEditorEndAfter|The text similar to 'After' displayed in the Scheduler recurrence editor."
7381
7653
  recurrenceEditorEndAfter='After'
7382
7654
 
7383
- i18n-recurrenceEditorEndOccurrence="kendo.scheduler.recurrenceEditorEndOccurrence|The text similar to 'occurrence(s)' displayed in the scheduler recurrence editor."
7655
+ i18n-recurrenceEditorEndOccurrence="kendo.scheduler.recurrenceEditorEndOccurrence|The text similar to 'occurrence(s)' displayed in the Scheduler recurrence editor."
7384
7656
  recurrenceEditorEndOccurrence='occurrence(s)'
7385
7657
 
7386
- i18n-recurrenceEditorEndLabel="kendo.scheduler.recurrenceEditorEndLabel|The text similar to 'End' displayed in the scheduler recurrence editor."
7658
+ i18n-recurrenceEditorEndLabel="kendo.scheduler.recurrenceEditorEndLabel|The text similar to 'End' displayed in the Scheduler recurrence editor."
7387
7659
  recurrenceEditorEndLabel='End'
7388
7660
 
7389
- i18n-recurrenceEditorEndNever="kendo.scheduler.recurrenceEditorEndNever|The text similar to 'Never' displayed in the scheduler recurrence editor."
7661
+ i18n-recurrenceEditorEndNever="kendo.scheduler.recurrenceEditorEndNever|The text similar to 'Never' displayed in the Scheduler recurrence editor."
7390
7662
  recurrenceEditorEndNever='Never'
7391
7663
 
7392
- i18n-recurrenceEditorEndOn="kendo.scheduler.recurrenceEditorEndOn|The text similar to 'On' displayed in the scheduler recurrence editor."
7664
+ i18n-recurrenceEditorEndOn="kendo.scheduler.recurrenceEditorEndOn|The text similar to 'On' displayed in the Scheduler recurrence editor."
7393
7665
  recurrenceEditorEndOn='On'
7394
7666
 
7395
- i18n-destroy="kendo.scheduler.destroy|The text of the 'Delete' button displayed in the scheduler remove confirmation dialog."
7667
+ i18n-destroy="kendo.scheduler.destroy|The text of the 'Delete' button displayed in the Scheduler remove confirmation dialog."
7396
7668
  destroy='Delete'
7397
7669
 
7398
- i18n-deleteConfirmation="kendo.scheduler.deleteConfirmation|The text similar to 'Are you sure you want to delete this event?' displayed in scheduler remove confirmation dialog."
7670
+ i18n-deleteConfirmation="kendo.scheduler.deleteConfirmation|The text similar to 'Are you sure you want to delete this event?' displayed in Scheduler remove confirmation dialog."
7399
7671
  deleteConfirmation='Are you sure you want to delete this event?'
7400
7672
 
7401
- i18n-editRecurringConfirmation="kendo.scheduler.editRecurringConfirmation|The text similar to 'Do you want to edit only this event occurrence or the whole series?' displayed in the scheduler recurring confirmation dialog."
7673
+ i18n-editRecurringConfirmation="kendo.scheduler.editRecurringConfirmation|The text similar to 'Do you want to edit only this event occurrence or the whole series?' displayed in the Scheduler recurring confirmation dialog."
7402
7674
  editRecurringConfirmation='Do you want to edit only this event occurrence or the whole series?'
7403
7675
 
7404
- i18n-editOccurrence="kendo.scheduler.editOccurrence|The text of the 'Edit current occurrence' button displayed in the scheduler recurring confirmation dialog."
7676
+ i18n-editOccurrence="kendo.scheduler.editOccurrence|The text of the 'Edit current occurrence' button displayed in the Scheduler recurring confirmation dialog."
7405
7677
  editOccurrence='Edit current occurrence'
7406
7678
 
7407
- i18n-editSeries="kendo.scheduler.editSeries|The text of the 'Edit the series' button displayed in the scheduler recurring confirmation dialog."
7679
+ i18n-editSeries="kendo.scheduler.editSeries|The text of the 'Edit the series' button displayed in the Scheduler recurring confirmation dialog."
7408
7680
  editSeries='Edit the series'
7409
7681
 
7410
- i18n-deleteRecurringConfirmation="kendo.scheduler.deleteRecurringConfirmation|The text similar to 'Do you want to delete only this event occurrence or the whole series?' displayed in the scheduler recurring confirmation dialog."
7682
+ i18n-deleteRecurringConfirmation="kendo.scheduler.deleteRecurringConfirmation|The text similar to 'Do you want to delete only this event occurrence or the whole series?' displayed in the Scheduler recurring confirmation dialog."
7411
7683
  deleteRecurringConfirmation='Do you want to delete only this event occurrence or the whole series?'
7412
7684
 
7413
- i18n-deleteOccurrence="kendo.scheduler.deleteOccurrence|The text of the 'Delete current occurrence' button displayed in the scheduler recurring confirmation dialog."
7685
+ i18n-deleteOccurrence="kendo.scheduler.deleteOccurrence|The text of the 'Delete current occurrence' button displayed in the Scheduler recurring confirmation dialog."
7414
7686
  deleteOccurrence='Delete current occurrence'
7415
7687
 
7416
- i18n-deleteSeries="kendo.scheduler.deleteSeries|The text similar of the 'Delete the series' button displayed in the scheduler recurring confirmation dialog."
7688
+ i18n-deleteSeries="kendo.scheduler.deleteSeries|The text similar of the 'Delete the series' button displayed in the Scheduler recurring confirmation dialog."
7417
7689
  deleteSeries='Delete the series'
7418
7690
 
7419
7691
  i18n-deleteDialogTitle="kendo.scheduler.deleteDialogTitle|The title of the remove confirmation dialog, similar to 'Delete Event'."
@@ -7816,7 +8088,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
7816
8088
  /**
7817
8089
  * @hidden
7818
8090
  */
7819
- const createTasks$2 = (periodStart, periodEnd, items) => {
8091
+ const createTasks$3 = (periodStart, periodEnd, items) => {
7820
8092
  const tasks = [];
7821
8093
  const utcStart = toUTCDate(periodStart);
7822
8094
  const utcEnd = toUTCDate(periodEnd);
@@ -9875,7 +10147,7 @@ const last = (arr) => arr[arr.length - 1];
9875
10147
  /**
9876
10148
  * @hidden
9877
10149
  */
9878
- const createTasks$1 = (periodStart, periodEnd, items, ranges) => {
10150
+ const createTasks$2 = (periodStart, periodEnd, items, ranges) => {
9879
10151
  const tasks = [];
9880
10152
  const utcStart = toUTCDate(periodStart);
9881
10153
  const utcEnd = toUTCDate(periodEnd);
@@ -11396,7 +11668,7 @@ class MonthViewRendererComponent extends BaseView {
11396
11668
  }
11397
11669
  createTasks(items, dateRange) {
11398
11670
  this.weeks = this.createDaySlots(dateRange);
11399
- return createTasks$1(dateRange.start, dateRange.end, items, this.weeks);
11671
+ return createTasks$2(dateRange.start, dateRange.end, items, this.weeks);
11400
11672
  }
11401
11673
  onTasksChange() {
11402
11674
  updateTaskData(this.tasks);
@@ -13015,7 +13287,7 @@ const isMultiDay = ({ start, end }) => {
13015
13287
  };
13016
13288
  //check start and times or update day ranges to have them
13017
13289
  /** @hidden */
13018
- const createTasks = (periodStart, periodEnd, items, ranges) => {
13290
+ const createTasks$1 = (periodStart, periodEnd, items, ranges) => {
13019
13291
  const tasks = [];
13020
13292
  const utcStart = toUTCDate(periodStart);
13021
13293
  const utcEnd = toUTCDate(periodEnd);
@@ -13811,7 +14083,7 @@ class MultiDayViewRendererComponent extends DayTimeViewComponent {
13811
14083
  start: toUTCTime(daySlot.start, startTimeSlot.start),
13812
14084
  end: nextDateEnd ? toUTCDate(daySlot.end) : toUTCTime(daySlot.start, endTimeSlot)
13813
14085
  }));
13814
- return createTasks(dateRange.start, dateRange.end, items, ranges);
14086
+ return createTasks$1(dateRange.start, dateRange.end, items, ranges);
13815
14087
  }
13816
14088
  onTasksChange() {
13817
14089
  this.items.next(this.tasks.filter(task => !task.isAllDay));
@@ -15236,7 +15508,7 @@ class TimelineMultiDayViewComponent extends DayTimeViewComponent {
15236
15508
  return result;
15237
15509
  }
15238
15510
  createTasks(items, dateRange) {
15239
- return createTasks$2(dateRange.start, dateRange.end, items);
15511
+ return createTasks$3(dateRange.start, dateRange.end, items);
15240
15512
  }
15241
15513
  onTasksChange() {
15242
15514
  this.items.next(this.tasks);
@@ -15659,11 +15931,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
15659
15931
  class TimelineViewComponent extends TimelineBase {
15660
15932
  constructor(localization, changeDetector, viewContext, viewState) {
15661
15933
  super(localization, changeDetector, viewContext, viewState);
15662
- /**
15663
- * Specifies the number of days that the view will render.
15664
- * @default 1
15665
- */
15666
- this.numberOfDays = 1;
15934
+ this._numberOfDays = 1;
15667
15935
  /**
15668
15936
  * The invariant name for this view.
15669
15937
  * @default 'timeline'
@@ -15708,6 +15976,18 @@ class TimelineViewComponent extends TimelineBase {
15708
15976
  }
15709
15977
  return this.numberOfDays && this.numberOfDays > 1 ? '{0:d} - {1:d}' : '{0:d}';
15710
15978
  }
15979
+ /**
15980
+ * Specifies the number of days that the view will render.
15981
+ * > Normalized to `1` if the provided value is <= 0.
15982
+ * @default 1
15983
+ */
15984
+ set numberOfDays(days) {
15985
+ this._numberOfDays = days > 0 ? days : 1;
15986
+ }
15987
+ ;
15988
+ get numberOfDays() {
15989
+ return this._numberOfDays;
15990
+ }
15711
15991
  }
15712
15992
  TimelineViewComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: TimelineViewComponent, deps: [{ token: i1$1.LocalizationService }, { token: i0.ChangeDetectorRef }, { token: ViewContextService }, { token: ViewStateService }], target: i0.ɵɵFactoryTarget.Component });
15713
15993
  TimelineViewComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: TimelineViewComponent, selector: "kendo-scheduler-timeline-view", inputs: { selectedDateFormat: "selectedDateFormat", selectedShortDateFormat: "selectedShortDateFormat", numberOfDays: "numberOfDays" }, providers: [{
@@ -15823,11 +16103,7 @@ class TimelineWeekViewComponent extends TimelineBase {
15823
16103
  * @default '{0:d} - {1:d}'
15824
16104
  */
15825
16105
  this.selectedShortDateFormat = '{0:d} - {1:d}';
15826
- /**
15827
- * Specifies the number of weeks that the view will render.
15828
- * @default 1
15829
- */
15830
- this.numberOfWeeks = 1;
16106
+ this._numberOfWeeks = 1;
15831
16107
  /**
15832
16108
  * The invariant name for this view.
15833
16109
  * @default 'timelineWeek'
@@ -15846,6 +16122,17 @@ class TimelineWeekViewComponent extends TimelineBase {
15846
16122
  get title() {
15847
16123
  return this.localization.get('timelineWeekViewTitle');
15848
16124
  }
16125
+ /**
16126
+ * Specifies the number of weeks that the view will render.
16127
+ * @default 1
16128
+ */
16129
+ set numberOfWeeks(weeks) {
16130
+ this._numberOfWeeks = weeks > 0 ? weeks : 1;
16131
+ }
16132
+ ;
16133
+ get numberOfWeeks() {
16134
+ return this._numberOfWeeks;
16135
+ }
15849
16136
  }
15850
16137
  TimelineWeekViewComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: TimelineWeekViewComponent, deps: [{ token: i1$4.IntlService }, { token: i1$1.LocalizationService }, { token: i0.ChangeDetectorRef }, { token: ViewContextService }, { token: ViewStateService }], target: i0.ɵɵFactoryTarget.Component });
15851
16138
  TimelineWeekViewComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: TimelineWeekViewComponent, selector: "kendo-scheduler-timeline-week-view", inputs: { selectedDateFormat: "selectedDateFormat", selectedShortDateFormat: "selectedShortDateFormat", numberOfWeeks: "numberOfWeeks" }, providers: [{
@@ -15949,11 +16236,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
15949
16236
  class TimelineMonthViewComponent extends TimelineBase {
15950
16237
  constructor(localization, changeDetector, viewContext, viewState) {
15951
16238
  super(localization, changeDetector, viewContext, viewState);
15952
- /**
15953
- * Specifies the number of months that the view will render.
15954
- * @default 1
15955
- */
15956
- this.numberOfMonths = 1;
16239
+ this._numberOfMonths = 1;
15957
16240
  /**
15958
16241
  * The invariant name for this view.
15959
16242
  * @default 'timelineMonth'
@@ -16016,6 +16299,18 @@ class TimelineMonthViewComponent extends TimelineBase {
16016
16299
  }
16017
16300
  return this.numberOfMonths && this.numberOfMonths > 1 ? '{0:y} - {1:y}' : '{0:y}';
16018
16301
  }
16302
+ /**
16303
+ * Specifies the number of months that the view will render.
16304
+ * > Normalized to `1` if the provided value is <= 0.
16305
+ * @default 1
16306
+ */
16307
+ set numberOfMonths(months) {
16308
+ this._numberOfMonths = months > 0 ? months : 1;
16309
+ }
16310
+ ;
16311
+ get numberOfMonths() {
16312
+ return this._numberOfMonths;
16313
+ }
16019
16314
  }
16020
16315
  TimelineMonthViewComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: TimelineMonthViewComponent, deps: [{ token: i1$1.LocalizationService }, { token: i0.ChangeDetectorRef }, { token: ViewContextService }, { token: ViewStateService }], target: i0.ɵɵFactoryTarget.Component });
16021
16316
  TimelineMonthViewComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: TimelineMonthViewComponent, selector: "kendo-scheduler-timeline-month-view", inputs: { selectedDateFormat: "selectedDateFormat", selectedShortDateFormat: "selectedShortDateFormat", numberOfMonths: "numberOfMonths" }, providers: [{
@@ -16662,6 +16957,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
16662
16957
  }], ctorParameters: function () { return [{ type: i1$1.LocalizationService }]; } });
16663
16958
 
16664
16959
  const isContentWrapper = element => hasClasses(element, 'k-scheduler-content');
16960
+ const CALENDAR_TAG = 'KENDO-CALENDAR-HORIZONTAL';
16665
16961
  /**
16666
16962
  * @hidden
16667
16963
  */
@@ -16754,6 +17050,10 @@ class ShortcutsDirective {
16754
17050
  }, {
16755
17051
  match: e => (e.keyCode === Keys.ArrowUp || e.keyCode === Keys.ArrowLeft) && noModifiers(e) && !isContentWrapper(e.target),
16756
17052
  action: e => {
17053
+ //use the MultiViewCalendar navigation for Year View
17054
+ if (e.target.tagName === CALENDAR_TAG) {
17055
+ return;
17056
+ }
16757
17057
  const prevented = this.scheduler.onNavigationAction({ type: 'focus-prev' });
16758
17058
  if (!prevented) {
16759
17059
  const item = this.focusService.activeItem;
@@ -16767,6 +17067,10 @@ class ShortcutsDirective {
16767
17067
  }, {
16768
17068
  match: e => (e.keyCode === Keys.ArrowDown || e.keyCode === Keys.ArrowRight) && noModifiers(e) && !isContentWrapper(e.target),
16769
17069
  action: e => {
17070
+ //use the MultiViewCalendar navigation for Year View
17071
+ if (e.target.tagName === CALENDAR_TAG) {
17072
+ return;
17073
+ }
16770
17074
  const prevented = this.scheduler.onNavigationAction({ type: 'focus-next' });
16771
17075
  if (!prevented) {
16772
17076
  const isInToolbar = this.focusService.activeItem.containerType === 'toolbar';
@@ -16928,6 +17232,583 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
16928
17232
  type: Output
16929
17233
  }] } });
16930
17234
 
17235
+ /**
17236
+ * @hidden
17237
+ */
17238
+ const createTasks = (periodStart, periodEnd, items, ranges) => {
17239
+ const tasks = [];
17240
+ const utcStart = toUTCDateTime(periodStart);
17241
+ const utcEnd = toUTCDateTime(periodEnd);
17242
+ for (let index = 0; index < items.length; index++) {
17243
+ const item = items[index];
17244
+ const data = {};
17245
+ const startTime = item.start.toUTCDate();
17246
+ const end = item.end;
17247
+ const endTime = (item.end.getTime() !== end.getTime() ? end.addDays(1) : end).toUTCDate();
17248
+ if (intersects(startTime, endTime, utcStart, utcEnd)) {
17249
+ for (let rangeIdx = 0; rangeIdx < ranges.length; rangeIdx++) {
17250
+ const range = ranges[rangeIdx];
17251
+ const rangeStart = toUTCDate(range);
17252
+ const rangeEnd = toUTCDate(addDays(range, 1));
17253
+ if (intersects(startTime, endTime, rangeStart, rangeEnd)) {
17254
+ const task = {
17255
+ index,
17256
+ startTime: startTime > rangeStart ? startTime : rangeStart,
17257
+ endTime: endTime < rangeEnd ? endTime : rangeEnd,
17258
+ start: item.start,
17259
+ end: item.end,
17260
+ event: item.event,
17261
+ isAllDay: item.event.isAllDay,
17262
+ rangeIndex: rangeIdx,
17263
+ data: data
17264
+ };
17265
+ task.head = endTime > rangeEnd && startTime > rangeStart;
17266
+ task.tail = startTime < rangeStart && endTime < rangeEnd;
17267
+ task.mid = endTime > rangeEnd && startTime < rangeStart;
17268
+ task.isMultiDay = task.head || task.mid || task.tail;
17269
+ tasks.push(task);
17270
+ }
17271
+ }
17272
+ }
17273
+ }
17274
+ return sortTasksByTime(tasks);
17275
+ };
17276
+ /**
17277
+ * @hidden
17278
+ */
17279
+ const noop = (_) => { };
17280
+ /**
17281
+ * @hidden
17282
+ */
17283
+ const yearEnd = (year) => new Date(year, 11, 31, 23, 59, 59, 999);
17284
+ /**
17285
+ * @hidden
17286
+ */
17287
+ const yearStart = (year) => new Date(year, 0, 1, 0, 0, 0, 0);
17288
+
17289
+ const today = new Date(Date.now());
17290
+ const getDateAttribute = (element) => { var _a; return (_a = element === null || element === void 0 ? void 0 : element.querySelector('span>span[date]')) === null || _a === void 0 ? void 0 : _a.getAttribute('date'); };
17291
+ /**
17292
+ * @hidden
17293
+ */
17294
+ class YearViewInternalComponent extends BaseView {
17295
+ constructor(localization, focusService, intl, viewContext, viewState, zone, renderer, pdfService, element, slotService, scrollBarWidthService, changeDetector, localeId) {
17296
+ super(viewContext, viewState, intl, slotService, zone, renderer, element, pdfService, localization, changeDetector, scrollBarWidthService);
17297
+ this.localization = localization;
17298
+ this.focusService = focusService;
17299
+ this.intl = intl;
17300
+ this.localeId = localeId;
17301
+ this.caretAltLeftIcon = caretAltLeftIcon;
17302
+ this.caretAltRightIcon = caretAltRightIcon;
17303
+ this.eventsPerSelectedDay = [];
17304
+ this.days = [];
17305
+ this.tds = [];
17306
+ this.isTooltipClicked = false;
17307
+ this.slotByIndex = (slotIndex, args) => noop(slotIndex);
17308
+ this.dragHintSize = (startSlot, endSlot) => noop(startSlot);
17309
+ this.dragRanges = (slot) => noop(slot);
17310
+ this.slotByPosition = (x, y, container) => noop(x);
17311
+ this.cachedTds = [];
17312
+ }
17313
+ get arrowIcons() {
17314
+ return !this.localization.rtl
17315
+ ? ['caret-alt-left', 'caret-alt-right']
17316
+ : ['caret-alt-right', 'caret-alt-left'];
17317
+ }
17318
+ get arrowSVGIcons() {
17319
+ return !this.localization.rtl
17320
+ ? [this.caretAltLeftIcon, this.caretAltRightIcon]
17321
+ : [this.caretAltRightIcon, this.caretAltLeftIcon];
17322
+ }
17323
+ ngAfterViewInit() {
17324
+ this.updateTds();
17325
+ super.ngAfterViewInit();
17326
+ }
17327
+ getSlotClass(date) {
17328
+ if (this.slotClass) {
17329
+ return this.slotClass({
17330
+ start: date,
17331
+ end: addDays(date, 1),
17332
+ events: this.eventsPerDay(date),
17333
+ });
17334
+ }
17335
+ }
17336
+ getEventClasses(item, resources, isAllDay) {
17337
+ if (this.eventClass) {
17338
+ return this.eventClass({
17339
+ event: item.event,
17340
+ resources,
17341
+ isAllDay,
17342
+ });
17343
+ }
17344
+ }
17345
+ onBlur() {
17346
+ if (!this.isTooltipClicked) {
17347
+ this.tooltip.hide();
17348
+ }
17349
+ this.isTooltipClicked = false;
17350
+ }
17351
+ getDate(element) {
17352
+ return new Date(getDateAttribute(element.nativeElement));
17353
+ }
17354
+ eventTitle(event) {
17355
+ const startTime = toLocalDate(event.startTime);
17356
+ const endTime = toLocalDate(event.endTime);
17357
+ const time = formatEventTime(startTime, endTime, event.isAllDay, this.localeId);
17358
+ return `${time}, ${event.event.title}`;
17359
+ }
17360
+ onClick(event) {
17361
+ if (event.target.tagName === 'SPAN') {
17362
+ const clickedDate = getDateAttribute(event.target.closest('td.k-calendar-td'));
17363
+ if (clickedDate === getDateAttribute(this.currentTd)) {
17364
+ this.tooltip.show(this.currentTd);
17365
+ }
17366
+ }
17367
+ else {
17368
+ this.tooltip.hide();
17369
+ }
17370
+ }
17371
+ onMouseDown() {
17372
+ this.isTooltipClicked = true;
17373
+ }
17374
+ onKeydown(event) {
17375
+ if (event.key === 'Backspace' || event.key === 'Delete') {
17376
+ this.tooltip.hide();
17377
+ }
17378
+ if (event.key === 'Enter' && !this.tooltip.popupRef) {
17379
+ this.tooltip.show(this.currentTd);
17380
+ return;
17381
+ }
17382
+ if (event.key === 'Enter' && this.tooltip.popupRef && (getDateAttribute(this.currentTd) === this.calendar.focusedDate.toString())) {
17383
+ this.navigateToDay(new Date(getDateAttribute(this.currentTd)));
17384
+ }
17385
+ }
17386
+ navigateToDay(date) {
17387
+ this.tooltip.hide();
17388
+ this.zone.run(() => {
17389
+ this.viewState.navigateTo({ viewName: 'day', date: new Date(date) });
17390
+ });
17391
+ }
17392
+ eventsPerDay(date) {
17393
+ var _a;
17394
+ return ((_a = this.tasksPerDay(date)) === null || _a === void 0 ? void 0 : _a.map((task) => task.event)) || [];
17395
+ }
17396
+ tasksPerDay(date) {
17397
+ var _a, _b, _c;
17398
+ if (((_a = this.resources) === null || _a === void 0 ? void 0 : _a.length) > 0) {
17399
+ return (_b = this.tasks) === null || _b === void 0 ? void 0 : _b.filter((event) => event.resources.length > 0 &&
17400
+ event.startTime.getUTCDate() === date.getDate() &&
17401
+ event.startTime.getUTCMonth() === date.getMonth());
17402
+ }
17403
+ else {
17404
+ return (_c = this.tasks) === null || _c === void 0 ? void 0 : _c.filter((event) => event.startTime.getUTCDate() === date.getDate() && event.startTime.getUTCMonth() === date.getMonth());
17405
+ }
17406
+ }
17407
+ onValueChange(date) {
17408
+ this.eventsPerSelectedDay = this.tasksPerDay(date);
17409
+ this.currentTd = this.tds.find((td) => getDateAttribute(td) === date.toString());
17410
+ if (this.tooltip.popupRef) {
17411
+ this.tooltip.hide();
17412
+ }
17413
+ }
17414
+ hasEvent(date) {
17415
+ return this.tasksPerDay(date).length > 0;
17416
+ }
17417
+ createPDFElement() {
17418
+ const element = this.element.nativeElement.cloneNode(true);
17419
+ element.style.width = `${this.element.nativeElement.offsetWidth}px`;
17420
+ element.querySelector('.k-scheduler-layout').style.height = 'auto';
17421
+ this.pdfService.elementReady.emit({
17422
+ element: element,
17423
+ });
17424
+ }
17425
+ onSelectDate(date) {
17426
+ const year = date.getFullYear();
17427
+ this.focusedDate = new Date(year, today.getMonth(), today.getDate());
17428
+ const start = yearStart(year);
17429
+ this.selectedDate = start;
17430
+ const dateRange = this.dateRange(date);
17431
+ this.viewState.notifyDateRange(dateRange);
17432
+ this.days = this.createDaySlots(dateRange);
17433
+ if (this.calendar) {
17434
+ this.calendar.min = start;
17435
+ this.calendar.max = yearEnd(start.getFullYear());
17436
+ this.updateTds();
17437
+ }
17438
+ }
17439
+ onAction(e) {
17440
+ const now = this.selectedDate;
17441
+ if (e.type === 'next' || e.type === 'prev') {
17442
+ const offset = e.type === 'next' ? 1 : -1;
17443
+ const next = addYears(now, offset);
17444
+ this.viewState.notifyNextDate(next);
17445
+ this.calendar.min = next;
17446
+ this.calendar.max = yearEnd(next.getFullYear());
17447
+ this.focusedDate = new Date(next.getFullYear(), today.getMonth(), today.getDate());
17448
+ }
17449
+ }
17450
+ createTasks(items, dateRange) {
17451
+ this.days = this.createDaySlots(dateRange);
17452
+ return createTasks(dateRange.start, dateRange.end, items, this.days);
17453
+ }
17454
+ reflow() {
17455
+ this.updateContentHeight();
17456
+ const content = this.content.nativeElement;
17457
+ if (this.contentHeight === 'auto') {
17458
+ // bigger size changes cause the table to overflow the container and in horizontal scrollbars
17459
+ // this changes the table and slots size during rendering before the browser re-adjusts the 100% table width
17460
+ content.style.overflow = 'visible';
17461
+ }
17462
+ if (this.contentHeight === 'auto') {
17463
+ content.style.overflow = '';
17464
+ }
17465
+ }
17466
+ dateRange(date = this.selectedDate) {
17467
+ return this.dateRangeFn(date);
17468
+ }
17469
+ onTasksChange() {
17470
+ this.items.next(this.tasks);
17471
+ }
17472
+ createDaySlots({ start }) {
17473
+ const days = [];
17474
+ const monthsPerYear = 12;
17475
+ let date = start;
17476
+ for (let idx = 0; idx < monthsPerYear; idx++) {
17477
+ const monthTotalDays = this.getLastDayOfMonth(date.getFullYear(), date.getMonth());
17478
+ for (let dayIdx = 0; dayIdx < monthTotalDays; dayIdx++) {
17479
+ days.push(date);
17480
+ const nextDay = addDays(date, 1);
17481
+ date = nextDay;
17482
+ }
17483
+ }
17484
+ return days;
17485
+ }
17486
+ getLastDayOfMonth(year, month) {
17487
+ return new Date(year, month + 1, 0).getDate();
17488
+ }
17489
+ updateTds() {
17490
+ this.cachedTds.forEach((td) => {
17491
+ this.renderer.setAttribute(td, 'class', 'k-calendar-td');
17492
+ });
17493
+ this.cachedTds = [];
17494
+ this.tds = Array.from(this.calendar.element.nativeElement.querySelectorAll('.k-calendar-td:not(.k-other-month)'));
17495
+ if (this.slotClass) {
17496
+ this.tds.forEach((td) => {
17497
+ const date = toUTCDate(new Date(getDateAttribute(td)));
17498
+ const userClass = this.getSlotClass(date);
17499
+ if (userClass) {
17500
+ this.renderer.addClass(td, userClass);
17501
+ this.cachedTds.push(td);
17502
+ }
17503
+ });
17504
+ }
17505
+ }
17506
+ }
17507
+ YearViewInternalComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: YearViewInternalComponent, deps: [{ token: i1$1.LocalizationService }, { token: FocusService }, { token: i1$4.IntlService }, { token: ViewContextService }, { token: ViewStateService }, { token: i0.NgZone }, { token: i0.Renderer2 }, { token: PDFService }, { token: i0.ElementRef }, { token: MonthSlotService }, { token: i7.ScrollbarWidthService }, { token: i0.ChangeDetectorRef }, { token: LOCALE_ID }], target: i0.ɵɵFactoryTarget.Component });
17508
+ YearViewInternalComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: YearViewInternalComponent, selector: "year-view-internal", inputs: { newRange: "newRange", dateRangeFn: "dateRangeFn", selectedDateFormat: "selectedDateFormat", selectedShortDateFormat: "selectedShortDateFormat" }, providers: [MonthSlotService], viewQueries: [{ propertyName: "calendar", first: true, predicate: MultiViewCalendarComponent, descendants: true }, { propertyName: "tooltip", first: true, predicate: TooltipDirective, descendants: true }], usesInheritance: true, ngImport: i0, template: `
17509
+ <div #content class="k-scheduler-layout k-scheduler-layout-flex k-scheduler-yearview">
17510
+ <div class="k-scheduler-body">
17511
+ <kendo-multiviewcalendar
17512
+ [showOtherMonthDates]="false"
17513
+ [showCalendarHeader]="false"
17514
+ [showViewHeader]="true"
17515
+ [views]="12"
17516
+ [focusedDate]="focusedDate"
17517
+ kendoTooltip
17518
+ filter=".k-calendar-td"
17519
+ showOn="none"
17520
+ [tooltipTemplate]="template"
17521
+ position="right"
17522
+ tooltipContentClass="k-scheduler-tooltip"
17523
+ [tooltipWidth]="220"
17524
+ [collision]="{ horizontal: 'flip', vertical: 'flip' }"
17525
+ (valueChange)="onValueChange($event)"
17526
+ (blur)="onBlur()"
17527
+ >
17528
+ <ng-template kendoCalendarMonthCellTemplate let-date let-context="cellContext">
17529
+ <span *ngIf="!context.isOtherMonth" [attr.date]="date">{{ date.getDate() }}</span>
17530
+ <span *ngIf="!context.isOtherMonth && hasEvent(date)" class="k-day-indicator"></span>
17531
+ </ng-template>
17532
+ </kendo-multiviewcalendar>
17533
+ </div>
17534
+ </div>
17535
+ <ng-template #template let-anchor>
17536
+ <div
17537
+ class="k-tooltip-title k-text-center"
17538
+ (click)="navigateToDay(getDate(anchor))"
17539
+ (mousedown)="onMouseDown()"
17540
+ >
17541
+ <div class="k-month">{{ intl.formatDate(getDate(anchor), 'MMM') }}</div>
17542
+ <div class="k-link k-day k-text-primary">{{ intl.formatDate(getDate(anchor), 'dd') }}</div>
17543
+ </div>
17544
+ <div class="k-tooltip-events-container" (mousedown)="onMouseDown()">
17545
+ <div class="k-tooltip-events">
17546
+ <div
17547
+ *ngFor="let event of eventsPerSelectedDay"
17548
+ class="k-tooltip-event k-event"
17549
+ [title]="eventTitle(event)"
17550
+ [ngClass]="getEventClasses(event, event.resources)"
17551
+ [ngStyle]="getEventStyles(event, event.resources[0], event.isAllDay)"
17552
+ >
17553
+ <kendo-icon-wrapper
17554
+ *ngIf="event.tail || event.mid"
17555
+ [name]="arrowIcons[0]"
17556
+ [svgIcon]="arrowSVGIcons[0]"
17557
+ >
17558
+ </kendo-icon-wrapper>
17559
+ <div class="k-event-title k-text-ellipsis">{{ event.event.title }}</div>
17560
+ <span class="k-spacer"></span>
17561
+ <span
17562
+ class="k-event-time"
17563
+ *ngIf="(event.isMultiDay && event.head && !event.isAllDay) || !event.isMultiDay"
17564
+ >{{ intl.formatDate(event.start, 't') }}</span
17565
+ >
17566
+ <kendo-icon-wrapper
17567
+ *ngIf="event.head || event.mid"
17568
+ [name]="arrowIcons[1]"
17569
+ [svgIcon]="arrowSVGIcons[1]"
17570
+ >
17571
+ </kendo-icon-wrapper>
17572
+ </div>
17573
+ </div>
17574
+ </div>
17575
+ <div *ngIf="eventsPerSelectedDay.length === 0" class="k-no-data k-text-center">
17576
+ {{ localization.get('yearViewNoEvents') }}
17577
+ </div>
17578
+ </ng-template>
17579
+ `, isInline: true, components: [{ type: i2.MultiViewCalendarComponent, selector: "kendo-multiviewcalendar", inputs: ["showOtherMonthDates", "showCalendarHeader", "id", "focusedDate", "min", "max", "rangeValidation", "disabledDatesRangeValidation", "selection", "value", "disabled", "tabindex", "tabIndex", "isActive", "disabledDates", "activeView", "bottomView", "topView", "showViewHeader", "animateNavigation", "weekNumber", "activeRangeEnd", "selectionRange", "views", "orientation", "cellTemplate", "monthCellTemplate", "yearCellTemplate", "decadeCellTemplate", "centuryCellTemplate", "weekNumberTemplate", "headerTitleTemplate"], outputs: ["activeViewChange", "navigate", "cellEnter", "cellLeave", "valueChange", "blur", "focus", "focusCalendar", "onClosePopup", "onTabPress", "onShiftTabPress"], exportAs: ["kendo-multiviewcalendar"] }, { type: i4$1.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i11$1.TooltipDirective, selector: "[kendoTooltip]", inputs: ["filter", "position", "titleTemplate", "showOn", "showAfter", "callout", "closable", "offset", "tooltipWidth", "tooltipHeight", "tooltipClass", "tooltipContentClass", "collision", "closeTitle", "tooltipTemplate"], exportAs: ["kendoTooltip"] }, { type: i2.MonthCellTemplateDirective, selector: "[kendoCalendarMonthCellTemplate]" }, { type: i11.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i11.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i11.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i11.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }] });
17580
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: YearViewInternalComponent, decorators: [{
17581
+ type: Component,
17582
+ args: [{
17583
+ selector: 'year-view-internal',
17584
+ providers: [MonthSlotService],
17585
+ template: `
17586
+ <div #content class="k-scheduler-layout k-scheduler-layout-flex k-scheduler-yearview">
17587
+ <div class="k-scheduler-body">
17588
+ <kendo-multiviewcalendar
17589
+ [showOtherMonthDates]="false"
17590
+ [showCalendarHeader]="false"
17591
+ [showViewHeader]="true"
17592
+ [views]="12"
17593
+ [focusedDate]="focusedDate"
17594
+ kendoTooltip
17595
+ filter=".k-calendar-td"
17596
+ showOn="none"
17597
+ [tooltipTemplate]="template"
17598
+ position="right"
17599
+ tooltipContentClass="k-scheduler-tooltip"
17600
+ [tooltipWidth]="220"
17601
+ [collision]="{ horizontal: 'flip', vertical: 'flip' }"
17602
+ (valueChange)="onValueChange($event)"
17603
+ (blur)="onBlur()"
17604
+ >
17605
+ <ng-template kendoCalendarMonthCellTemplate let-date let-context="cellContext">
17606
+ <span *ngIf="!context.isOtherMonth" [attr.date]="date">{{ date.getDate() }}</span>
17607
+ <span *ngIf="!context.isOtherMonth && hasEvent(date)" class="k-day-indicator"></span>
17608
+ </ng-template>
17609
+ </kendo-multiviewcalendar>
17610
+ </div>
17611
+ </div>
17612
+ <ng-template #template let-anchor>
17613
+ <div
17614
+ class="k-tooltip-title k-text-center"
17615
+ (click)="navigateToDay(getDate(anchor))"
17616
+ (mousedown)="onMouseDown()"
17617
+ >
17618
+ <div class="k-month">{{ intl.formatDate(getDate(anchor), 'MMM') }}</div>
17619
+ <div class="k-link k-day k-text-primary">{{ intl.formatDate(getDate(anchor), 'dd') }}</div>
17620
+ </div>
17621
+ <div class="k-tooltip-events-container" (mousedown)="onMouseDown()">
17622
+ <div class="k-tooltip-events">
17623
+ <div
17624
+ *ngFor="let event of eventsPerSelectedDay"
17625
+ class="k-tooltip-event k-event"
17626
+ [title]="eventTitle(event)"
17627
+ [ngClass]="getEventClasses(event, event.resources)"
17628
+ [ngStyle]="getEventStyles(event, event.resources[0], event.isAllDay)"
17629
+ >
17630
+ <kendo-icon-wrapper
17631
+ *ngIf="event.tail || event.mid"
17632
+ [name]="arrowIcons[0]"
17633
+ [svgIcon]="arrowSVGIcons[0]"
17634
+ >
17635
+ </kendo-icon-wrapper>
17636
+ <div class="k-event-title k-text-ellipsis">{{ event.event.title }}</div>
17637
+ <span class="k-spacer"></span>
17638
+ <span
17639
+ class="k-event-time"
17640
+ *ngIf="(event.isMultiDay && event.head && !event.isAllDay) || !event.isMultiDay"
17641
+ >{{ intl.formatDate(event.start, 't') }}</span
17642
+ >
17643
+ <kendo-icon-wrapper
17644
+ *ngIf="event.head || event.mid"
17645
+ [name]="arrowIcons[1]"
17646
+ [svgIcon]="arrowSVGIcons[1]"
17647
+ >
17648
+ </kendo-icon-wrapper>
17649
+ </div>
17650
+ </div>
17651
+ </div>
17652
+ <div *ngIf="eventsPerSelectedDay.length === 0" class="k-no-data k-text-center">
17653
+ {{ localization.get('yearViewNoEvents') }}
17654
+ </div>
17655
+ </ng-template>
17656
+ `,
17657
+ }]
17658
+ }], ctorParameters: function () {
17659
+ return [{ type: i1$1.LocalizationService }, { type: FocusService }, { type: i1$4.IntlService }, { type: ViewContextService }, { type: ViewStateService }, { type: i0.NgZone }, { type: i0.Renderer2 }, { type: PDFService }, { type: i0.ElementRef }, { type: MonthSlotService }, { type: i7.ScrollbarWidthService }, { type: i0.ChangeDetectorRef }, { type: undefined, decorators: [{
17660
+ type: Inject,
17661
+ args: [LOCALE_ID]
17662
+ }] }];
17663
+ }, propDecorators: { newRange: [{
17664
+ type: Input
17665
+ }], dateRangeFn: [{
17666
+ type: Input
17667
+ }], calendar: [{
17668
+ type: ViewChild,
17669
+ args: [MultiViewCalendarComponent]
17670
+ }], tooltip: [{
17671
+ type: ViewChild,
17672
+ args: [TooltipDirective]
17673
+ }], selectedDateFormat: [{
17674
+ type: Input
17675
+ }], selectedShortDateFormat: [{
17676
+ type: Input
17677
+ }] } });
17678
+
17679
+ /**
17680
+ * The component for rendering the **Year** view.
17681
+ */
17682
+ class YearViewComponent extends ConfigurationViewBase {
17683
+ constructor(localization, changeDetector, viewContext, viewState, intl) {
17684
+ super(localization, changeDetector, viewContext, viewState);
17685
+ this.intl = intl;
17686
+ /**
17687
+ * The long-date format for displaying the
17688
+ * selected year in the Scheduler toolbar.
17689
+ * For more information, see [Parsing and Formatting Dates and Numbers]({% slug parsingandformatting_intl %}#toc-date-formatting).
17690
+ * @default '{0:yyy}'
17691
+ */
17692
+ this.selectedDateFormat = '{0:yyy}';
17693
+ /**
17694
+ * The short-date format for displaying the
17695
+ * selected year in the Scheduler toolbar.
17696
+ * For more information, see [Parsing and Formatting Dates and Numbers]({% slug parsingandformatting_intl %}#toc-date-formatting).
17697
+ * @default '{0:yyy}'
17698
+ */
17699
+ this.selectedShortDateFormat = '{0:yyy}';
17700
+ /**
17701
+ * The invariant name for this view.
17702
+ * @default 'year'
17703
+ */
17704
+ this.name = 'year';
17705
+ }
17706
+ /**
17707
+ * @hidden
17708
+ */
17709
+ get title() {
17710
+ return this.localization.get('yearViewTitle');
17711
+ }
17712
+ /**
17713
+ * @hidden
17714
+ */
17715
+ dateRange(date) {
17716
+ const year = date.getFullYear();
17717
+ const start = yearStart(year);
17718
+ const end = yearEnd(year);
17719
+ const text = this.intl.format(this.selectedDateFormat, start);
17720
+ const shortText = this.intl.format(this.selectedShortDateFormat, start);
17721
+ return { start, end, text, shortText };
17722
+ }
17723
+ /**
17724
+ * @hidden
17725
+ */
17726
+ newRange(date, direction = 1) {
17727
+ return new Date(addYears(date, direction));
17728
+ }
17729
+ }
17730
+ YearViewComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: YearViewComponent, deps: [{ token: i1$1.LocalizationService }, { token: i0.ChangeDetectorRef }, { token: ViewContextService }, { token: ViewStateService }, { token: i1$4.IntlService }], target: i0.ɵɵFactoryTarget.Component });
17731
+ YearViewComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: YearViewComponent, selector: "kendo-scheduler-year-view", inputs: { selectedDateFormat: "selectedDateFormat", selectedShortDateFormat: "selectedShortDateFormat" }, providers: [{
17732
+ provide: SchedulerView,
17733
+ useExisting: forwardRef(() => YearViewComponent)
17734
+ }], usesInheritance: true, ngImport: i0, template: `
17735
+ <ng-template #content>
17736
+ <year-view-internal
17737
+ [selectedDateFormat]="selectedDateFormat"
17738
+ [selectedShortDateFormat]="selectedShortDateFormat"
17739
+ [slotClass]="viewSlotClass"
17740
+ [eventClass]="viewEventClass"
17741
+ [eventStyles]="viewEventStyles"
17742
+ [dateRangeFn]="dateRange"
17743
+ [newRange]="newRange">
17744
+ </year-view-internal>
17745
+ </ng-template>
17746
+ `, isInline: true, components: [{ type: YearViewInternalComponent, selector: "year-view-internal", inputs: ["newRange", "dateRangeFn", "selectedDateFormat", "selectedShortDateFormat"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
17747
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: YearViewComponent, decorators: [{
17748
+ type: Component,
17749
+ args: [{
17750
+ changeDetection: ChangeDetectionStrategy.OnPush,
17751
+ selector: 'kendo-scheduler-year-view',
17752
+ providers: [{
17753
+ provide: SchedulerView,
17754
+ useExisting: forwardRef(() => YearViewComponent)
17755
+ }],
17756
+ template: `
17757
+ <ng-template #content>
17758
+ <year-view-internal
17759
+ [selectedDateFormat]="selectedDateFormat"
17760
+ [selectedShortDateFormat]="selectedShortDateFormat"
17761
+ [slotClass]="viewSlotClass"
17762
+ [eventClass]="viewEventClass"
17763
+ [eventStyles]="viewEventStyles"
17764
+ [dateRangeFn]="dateRange"
17765
+ [newRange]="newRange">
17766
+ </year-view-internal>
17767
+ </ng-template>
17768
+ `
17769
+ }]
17770
+ }], ctorParameters: function () { return [{ type: i1$1.LocalizationService }, { type: i0.ChangeDetectorRef }, { type: ViewContextService }, { type: ViewStateService }, { type: i1$4.IntlService }]; }, propDecorators: { selectedDateFormat: [{
17771
+ type: Input
17772
+ }], selectedShortDateFormat: [{
17773
+ type: Input
17774
+ }] } });
17775
+
17776
+ /**
17777
+ * @hidden
17778
+ */
17779
+ class YearViewModule {
17780
+ }
17781
+ YearViewModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: YearViewModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
17782
+ YearViewModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: YearViewModule, declarations: [YearViewComponent,
17783
+ YearViewInternalComponent], imports: [ViewsSharedModule,
17784
+ CalendarsModule,
17785
+ TooltipsModule,
17786
+ IntlModule], exports: [YearViewComponent] });
17787
+ YearViewModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: YearViewModule, imports: [[
17788
+ ViewsSharedModule,
17789
+ CalendarsModule,
17790
+ TooltipsModule,
17791
+ IntlModule
17792
+ ]] });
17793
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: YearViewModule, decorators: [{
17794
+ type: NgModule,
17795
+ args: [{
17796
+ imports: [
17797
+ ViewsSharedModule,
17798
+ CalendarsModule,
17799
+ TooltipsModule,
17800
+ IntlModule
17801
+ ],
17802
+ exports: [
17803
+ YearViewComponent
17804
+ ],
17805
+ declarations: [
17806
+ YearViewComponent,
17807
+ YearViewInternalComponent
17808
+ ]
17809
+ }]
17810
+ }] });
17811
+
16931
17812
  const TEMPLATES = [
16932
17813
  AgendaDateTemplateDirective,
16933
17814
  AgendaTimeTemplateDirective,
@@ -16973,6 +17854,7 @@ const declarations$1 = [
16973
17854
  const publicDirectives = [
16974
17855
  AgendaViewComponent,
16975
17856
  MonthViewModule,
17857
+ YearViewComponent,
16976
17858
  MultiDayViewModule,
16977
17859
  ReactiveEditingDirective,
16978
17860
  TimelineViewModule,
@@ -17057,7 +17939,8 @@ SchedulerModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version
17057
17939
  ResizeSensorModule,
17058
17940
  MonthViewModule,
17059
17941
  TimelineViewModule,
17060
- WatermarkModule, ButtonsModule,
17942
+ WatermarkModule,
17943
+ YearViewModule, ButtonsModule,
17061
17944
  CheckBoxModule,
17062
17945
  TextAreaModule,
17063
17946
  DateInputsModule,
@@ -17070,6 +17953,7 @@ SchedulerModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version
17070
17953
  LabelModule,
17071
17954
  FormFieldModule], exports: [AgendaViewComponent,
17072
17955
  MonthViewModule,
17956
+ YearViewComponent,
17073
17957
  MultiDayViewModule,
17074
17958
  ReactiveEditingDirective,
17075
17959
  TimelineViewModule, ToolbarNavigationComponent, ToolbarTemplateDirective, ToolbarViewSelectorComponent, SchedulerComponent,
@@ -17120,6 +18004,7 @@ SchedulerModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version
17120
18004
  MonthViewModule,
17121
18005
  TimelineViewModule,
17122
18006
  WatermarkModule,
18007
+ YearViewModule,
17123
18008
  ...importedKendoModules
17124
18009
  ], MonthViewModule,
17125
18010
  MultiDayViewModule,
@@ -17136,6 +18021,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
17136
18021
  MonthViewModule,
17137
18022
  TimelineViewModule,
17138
18023
  WatermarkModule,
18024
+ YearViewModule,
17139
18025
  ...importedKendoModules
17140
18026
  ],
17141
18027
  declarations: declarations$1,
@@ -17692,5 +18578,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
17692
18578
  * Generated bundle index. Do not edit.
17693
18579
  */
17694
18580
 
17695
- export { AddEvent, AgendaDateTemplateDirective, AgendaTimeTemplateDirective, AgendaViewComponent, AllDayEventTemplateDirective, AllDaySlotTemplateDirective, BaseEditService, CancelEvent, CrudOperation, DataBindingDirective, DateChangeEvent, DateHeaderTemplateDirective, DaySlotDirective, DayTimeModule, DayTimeSlotService, DayTimeViewItemComponent, DayViewComponent, DragEndEvent, DragEvent, DragStartEvent, EditDialogComponent, EditDialogTemplateDirective, EditEvent, EditEventBase, EditMode, EndRuleRadioButtonDirective, EventClickEvent, EventKeydownEvent, EventTemplateDirective, FocusService, FocusableDirective, GroupHeaderTemplateDirective, HintContainerComponent, IsSlotSelectedArgs, LoadingComponent, LocalizedMessagesDirective, MajorTimeHeaderTemplateDirective, MinorTimeHeaderTemplateDirective, MonthDaySlotTemplateDirective, MonthViewComponent, MonthViewModule, MultiDayViewComponent, MultiDayViewModule, 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, SharedModule, ShortcutsDirective, SingleResourceEditorComponent, SlotClickEvent, SlotDragEndEvent, SlotDragEvent, SlotDragStartEvent, SlotSelectableDirective, SortPipe, TimeSlotDirective, TimeSlotTemplateDirective, TimeZoneEditorComponent, TimelineBase, TimelineMonthViewComponent, TimelineMultiDayViewComponent, TimelineViewComponent, TimelineViewModule, TimelineWeekViewComponent, ToolbarNavigationComponent, ToolbarService, ToolbarTemplateDirective, ToolbarViewSelectorComponent, VIEW_EVENT_MAP, ViewContextService, ViewFooterComponent, ViewStateService, ViewsSharedModule, WeekViewComponent, WorkHoursFooterDirective, WorkWeekViewComponent };
18581
+ export { AddEvent, AgendaDateTemplateDirective, AgendaTimeTemplateDirective, AgendaViewComponent, AllDayEventTemplateDirective, AllDaySlotTemplateDirective, BaseEditService, CancelEvent, CrudOperation, DataBindingDirective, DateChangeEvent, DateHeaderTemplateDirective, DaySlotDirective, DayTimeModule, DayTimeSlotService, DayTimeViewItemComponent, DayViewComponent, DragEndEvent, DragEvent, DragStartEvent, EditDialogComponent, EditDialogTemplateDirective, EditEvent, EditEventBase, EditMode, EndRuleRadioButtonDirective, EventClickEvent, EventKeydownEvent, EventTemplateDirective, FocusService, FocusableDirective, GroupHeaderTemplateDirective, HintContainerComponent, IsSlotSelectedArgs, LoadingComponent, LocalizedMessagesDirective, MajorTimeHeaderTemplateDirective, MinorTimeHeaderTemplateDirective, MonthDaySlotTemplateDirective, MonthViewComponent, MonthViewModule, MultiDayViewComponent, MultiDayViewModule, 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, SharedModule, ShortcutsDirective, SingleResourceEditorComponent, SlotClickEvent, SlotDragEndEvent, SlotDragEvent, SlotDragStartEvent, SlotSelectableDirective, SortPipe, TimeSlotDirective, TimeSlotTemplateDirective, TimeZoneEditorComponent, TimelineBase, TimelineMonthViewComponent, TimelineMultiDayViewComponent, TimelineViewComponent, TimelineViewModule, TimelineWeekViewComponent, ToolbarNavigationComponent, ToolbarService, ToolbarTemplateDirective, ToolbarViewSelectorComponent, VIEW_EVENT_MAP, ViewContextService, ViewFooterComponent, ViewStateService, ViewsSharedModule, WeekViewComponent, WorkHoursFooterDirective, WorkWeekViewComponent, YearViewComponent };
17696
18582